.signe-order-bell-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-inline-end: 12px;
}
.signe-order-bell-btn {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px 8px;
  font-size: 18px;
  line-height: 1;
}
.signe-order-bell-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}
.signe-order-notif-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 9999;
}
.signe-order-notif-item {
  display: block;
  width: 100%;
  text-align: right;
  border: none;
  border-bottom: 1px solid #f0ebe4;
  background: #fff;
  padding: 12px 14px;
  cursor: pointer;
}
.signe-order-notif-item.unread {
  background: #faf8f5;
}
.signe-order-notif-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.signe-order-notif-item span {
  display: block;
  font-size: 13px;
  color: #555;
}
.signe-order-notif-item small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #999;
}
.signe-order-notif-empty {
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 13px;
}
.signe-order-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 360px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.signe-order-toast.visible {
  opacity: 1;
  transform: translateY(0);
}
.signe-order-toast strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.signe-order-toast span {
  font-size: 13px;
  opacity: 0.9;
}
