.notification-center-trigger {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid #e3e5e9;
  border-radius: 14px;
  color: #34363d;
  background: #fff;
  cursor: pointer;
}
.notification-center-trigger:hover,
.notification-center-trigger:focus-visible { border-color: #ef233c; color: #d71938; outline: none; }
.notification-center-trigger svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.notification-center-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #ef233c;
  font-size: 11px;
  font-weight: 800;
  line-height: 17px;
  text-align: center;
}
.notification-center-dialog {
  width: min(440px, 100vw);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 26px 0 0 26px;
  color: #34363d;
  background: #fff;
  box-shadow: -24px 0 70px rgba(22, 24, 30, .18);
}
.notification-center-dialog::backdrop { background: rgba(20, 22, 28, .42); backdrop-filter: blur(3px); }
.notification-center-shell { display: flex; flex-direction: column; height: 100%; }
.notification-center-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid #eceef1;
}
.notification-center-head .eyebrow { margin: 0 0 5px; color: #d71938; }
.notification-center-head h2 { margin: 0; font-size: 28px; line-height: 1.1; }
.notification-center-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 13px;
  background: #f2f3f5;
  color: #4d5159;
  font-size: 26px;
  cursor: pointer;
}
.notification-center-tools { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 28px; background: #fafafa; }
.notification-center-count { color: #757b86; font-size: 14px; }
.notification-center-mark-all { border: 0; color: #c91331; background: transparent; font-weight: 750; cursor: pointer; }
.notification-center-mark-all:disabled { color: #a5a9b1; cursor: default; }
.notification-center-list { flex: 1; overflow: auto; padding: 10px 16px 28px; }
.notification-center-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 17px 14px;
  border: 0;
  border-bottom: 1px solid #eff0f2;
  border-radius: 14px;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.notification-center-item:hover { background: #faf5f5; }
.notification-center-item.is-unread { background: #fff6f7; }
.notification-center-item__dot { width: 9px; height: 9px; margin-top: 6px; border-radius: 50%; background: transparent; }
.notification-center-item.is-unread .notification-center-item__dot { background: #ef233c; }
.notification-center-item strong { display: block; margin-bottom: 5px; font-size: 15px; line-height: 1.35; }
.notification-center-item p { margin: 0 0 8px; color: #666c77; font-size: 14px; line-height: 1.45; }
.notification-center-item time { color: #9297a1; font-size: 12px; }
.notification-center-empty { display: grid; place-items: center; min-height: 50vh; padding: 36px; text-align: center; }
.notification-center-empty span { display: grid; place-items: center; width: 64px; height: 64px; margin-bottom: 14px; border-radius: 22px; color: #c91331; background: #fff0f2; font-size: 28px; }
.notification-center-empty strong { margin-bottom: 7px; font-size: 19px; }
.notification-center-empty p { max-width: 280px; margin: 0; color: #7b8089; line-height: 1.5; }
.notification-center-loading { padding: 30px; color: #777d87; text-align: center; }
@media (max-width: 760px) {
  .notification-center-dialog { width: 100vw; border-radius: 0; }
  .notification-center-head { padding: 22px 20px 18px; }
  .notification-center-tools { padding: 13px 20px; }
  .notification-center-list { padding-inline: 10px; }
  .notification-center-trigger { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
}
