/* Birzha app-specific overrides & new components */

/* --- game tile (landing / catalog rail) --- */
#games-grid, .games-grid {
  list-style: none;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin: 0; padding: 0;
}
.game-tile-wrap { list-style: none; }
.game-tile {
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--c-surface-2, #f5f5f5);
  border: 1px solid var(--c-line-2, #e5e5e5);
  border-radius: var(--r-block, 14px);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.game-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.game-tile__cover {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: linear-gradient(135deg, #1c1c22, #2f2f38);
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: .5px;
  overflow: hidden;
  position: relative;
}
.game-tile__cover::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}
.game-tile__bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.game-tile__name { font-weight: 600; font-size: 16px; }
.game-tile__count { color: var(--c-muted-2, #7a7a7a); font-size: 13px; white-space: nowrap; }

/* --- lot grid & cards --- */
.lots-grid {
  list-style: none;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin: 0; padding: 0;
}

.lot-card {
  display: flex; flex-direction: column;
  background:var(--glass);
  border: 1px solid var(--c-line-2, #e5e5e5);
  border-radius: var(--r-block, 14px);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.lot-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.lot-card__thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1c1c22, #40404c);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.lot-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lot-card__tag {
  position: absolute;
  left: 12px; top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  color: #fff;
}
.lot-card__bump {
  position: absolute;
  right: 12px; top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  background: linear-gradient(135deg, #ffb347, var(--acc-3));
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,95,191,.4);
  letter-spacing: .5px;
}
.lot-card--bumped { border-color: #ffcf99; }
.lot-card__heart {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(6px);
  color: #999;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .15s ease, color .15s;
  z-index: 2;
}
.lot-card__heart:hover { transform: scale(1.1); color: var(--acc-3); }
.lot-card__heart.is-on { color: var(--acc-3); }

.lot-card--sold { opacity: .78; filter: grayscale(.4); }
.lot-card--sold .lot-card__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(15,15,25,.35);
  pointer-events: none;
}
.lot-card__sold {
  position: absolute;
  left: 12px; top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  background: rgba(255,255,255,.95);
  color:var(--txt);
  letter-spacing: 1.5px;
  z-index: 2;
}
.lot-card__thumb { position: relative; }
.lot-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.lot-card__title {
  margin: 0;
  font-size: 15px; line-height: 1.35; font-weight: 600;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.lot-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--c-muted-2, #7a7a7a);
}
.lot-card__price {
  font-size: 22px; font-weight: 700; letter-spacing: .3px;
}
.lot-card__seller { display: flex; align-items: center; gap: 8px; }
.lot-card__avatar {
  width: 22px; height: 22px; border-radius: 999px; object-fit: cover; background: #ddd;
}

/* --- sellers strip --- */
.sellers-band {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  list-style: none; padding: 0; margin: 0;
}
.seller-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: var(--c-surface-2, #f5f5f5);
  border: 1px solid var(--c-line-2, #e5e5e5);
  border-radius: var(--r-block, 14px);
  color: inherit; text-decoration: none;
  transition: transform .15s ease;
}
.seller-card:hover { transform: translateY(-2px); }
.seller-card__avatar {
  width: 56px; height: 56px; border-radius: 14px; object-fit: cover; background: #ddd; flex: none;
}
.seller-card__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.seller-card__name { font-weight: 700; font-size: 16px; }
.seller-card__stat { font-size: 13px; color: var(--c-muted-2, #7a7a7a); display: flex; gap: 10px; }
.seller-card__stat b { color: inherit; font-weight: 700; }
.seller-card__badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: #101014; color: #fff;
}

/* --- filter side rail (catalog) --- */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin-top: 40px;
}
.filters {
  position: sticky;
  top: 20px;
  background: var(--c-surface-2, #f5f5f5);
  border: 1px solid var(--c-line-2, #e5e5e5);
  border-radius: var(--r-block, 14px);
  padding: 18px;
  height: max-content;
}
.filters__title {
  font-size: 12px; text-transform: uppercase; letter-spacing: .5px;
  color: var(--c-muted-2, #7a7a7a);
  margin: 0 0 10px;
}
.filters__list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 4px; }
.filters__link {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  text-decoration: none; color: inherit; font-size: 14px;
}
.filters__link:hover { background: rgba(0,0,0,.05); }
.filters__link.is-active { background: #101014; color: #fff; }
.filters__link.is-active .filters__count { color: rgba(255,255,255,.7); }
.filters__count { color: var(--c-muted-2, #7a7a7a); font-size: 12px; }

.catalog__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  margin-bottom: 20px;
}
.catalog__head h1 { font-size: 28px; margin: 0; }
.catalog__count { color: var(--c-muted-2, #7a7a7a); font-size: 14px; }

.empty {
  padding: 40px; text-align: center;
  color: var(--c-muted-2, #7a7a7a);
  background: var(--c-surface-2, #f5f5f5);
  border: 1px dashed var(--c-line-2, #e5e5e5);
  border-radius: var(--r-block, 14px);
}

/* -------- Payment method tiles (shared) -------- */
.pm-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pm-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 600px) {
  .pm-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
.pm-tile--disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.pm-wallet {
  width: 30px; height: 30px; border-radius: 999px;
  background: linear-gradient(135deg, var(--acc), var(--acc-3));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.pm-tile {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 10px;
  background:var(--glass);
  border:2px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .15s, transform .1s, box-shadow .15s;
  text-align: center;
}
.pm-tile:hover { transform: translateY(-2px); border-color: #cfd2ea; }
.pm-tile.is-active { border-color: var(--acc); box-shadow: 0 6px 18px rgba(75,63,255,.18); background: linear-gradient(180deg, #fbfbff, #fff); }
.pm-tile__name { font-weight: 700; font-size: 13px; }
.pm-tile__sub  { color:var(--txt-2); font-size: 11px; line-height: 1.3; }
.pm-tile__ico  { height: 30px; display: flex; align-items: center; gap: 3px; }
.pm-brand {
  display: inline-flex; align-items: center; justify-content: center;
  height: 20px; padding: 0 7px;
  border-radius: 5px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 10px; letter-spacing: .5px; color: #fff;
}
.pm-brand--visa { background: #1a1f71; }
.pm-brand--mc   { background: #eb001b; position: relative; padding-right: 20px; }
.pm-brand--mc::after { content: ""; position: absolute; right: 3px; top: 3px; width: 14px; height: 14px; border-radius: 999px; background: #f79e1b; mix-blend-mode: multiply; }
.pm-brand--mir  { background: #0f754e; }
.pm-sbp {
  width: 30px; height: 30px; border-radius: 999px;
  background: linear-gradient(90deg, #ff4141 0%, #ff4141 50%, #1c53f5 50%, #1c53f5 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 9px; font-family: Arial, sans-serif; letter-spacing: .5px;
}
.pm-coin {
  width: 26px; height: 26px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px; font-family: Arial, sans-serif;
}
.pm-coin--usdt { background: #26a17b; }
.pm-coin--btc  { background: #f7931a; margin-left: -6px; border:2px solid var(--bg-1); }
.pm-coin--eth  { background: #627eea; margin-left: -6px; border:2px solid var(--bg-1); }

/* -------- Checkout modal -------- */
.co-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.co-modal[data-open="1"] { display: flex; }
.co-modal__back {
  position: absolute; inset: 0;
  background: rgba(14,14,24,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: co-fade .18s ease;
}
.co-modal__body {
  position: relative; margin: auto;
  width: min(520px, 94vw); max-height: 92vh;
  padding: 28px 30px 24px;
  background:var(--glass);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(20,15,60,.28);
  display: flex; flex-direction: column; gap: 16px;
  animation: co-pop .22s cubic-bezier(.2,.9,.3,1.25);
  overflow-y: auto;
}
@keyframes co-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes co-pop  { from { opacity: 0; transform: translateY(20px) scale(.96) } to { opacity: 1; transform: none } }

.co-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: 0; border-radius: 999px;
  background:var(--glass);
  font-size: 20px; line-height: 1; color:var(--txt);
  cursor: pointer;
}
.co-close:hover { background:var(--glass-hi); }

.co-modal__title { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.01em; padding-right: 30px; }
.co-modal__sub   { margin: -8px 0 0; color:var(--txt-2); font-size: 13px; }

.co-summary {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 16px;
  background:var(--glass); border-radius: 12px;
}
.co-summary__lbl { color:var(--txt-2); font-size: 13px; }
.co-summary__val {
  font-size: 26px; font-weight: 800; letter-spacing: -.5px;
  background: linear-gradient(135deg, #101014, var(--acc));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.co-summary__strike { text-decoration: line-through; color: #999; font-size: 14px; margin-right: 8px; font-weight: 600; }
.co-summary__pct {
  display: inline-block; margin-left: 8px; padding: 2px 8px;
  border-radius: 999px; background: #eaf7ee; color: var(--ok);
  font-size: 11px; font-weight: 700;
}

.co-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  border: 0; border-radius: 16px;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #fff;
  font: inherit; font-weight: 700; font-size: 17px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(75,63,255,.32);
  transition: transform .1s, box-shadow .15s, opacity .15s;
  width: 100%;
}
.co-btn:hover  { box-shadow: 0 14px 30px rgba(75,63,255,.42); }
.co-btn:active { transform: translateY(1px); }
.co-btn:disabled { opacity: .6; cursor: default; box-shadow: none; }
.co-btn__ico { font-size: 20px; }
.co-btn__amt { font-size: 20px; font-weight: 800; }

.co-legal { color: #999; font-size: 12px; line-height: 1.5; margin: 0; text-align: center; }
.co-legal b { color:var(--txt-2); }

.co-msg {
  padding: 10px 14px; border-radius: 10px;
  font-size: 13px; line-height: 1.5; display: none;
}
.co-msg.is-error   { display: block; background: #fdecec; color: var(--err); border: 1px solid #f3c9c9; }
.co-msg.is-info    { display: block; background: #eef1ff; color: var(--acc); border: 1px solid #d5daff; }
.co-msg.is-ok      { display: block; background: #eaf7ee; color: var(--ok); border: 1px solid #c9e4d3; }

.co-status {
  padding: 32px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.co-status__ico { font-size: 48px; }
.co-status__title { font-weight: 800; font-size: 20px; }
.co-status__sub { color:var(--txt-2); font-size: 14px; }
.co-spinner {
  width: 48px; height: 48px; border-radius: 999px;
  border: 4px solid #eaeaef; border-top-color: var(--acc);
  animation: co-spin .8s linear infinite;
}
@keyframes co-spin { to { transform: rotate(360deg) } }

/* --- product page --- */
.product {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.product__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-block, 14px);
  background: linear-gradient(135deg, #1c1c22, #40404c);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; font-weight: 700;
  overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.product__thumb {
  padding: 0; border: 2px solid transparent; border-radius: 8px;
  aspect-ratio: 1; overflow: hidden; background:var(--bg-2); cursor: pointer;
}
.product__thumb.is-active { border-color: #101014; }
.product__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product__crumbs { font-size: 13px; color: var(--c-muted-2, #7a7a7a); margin-bottom: 8px; }
.product__crumbs a { color: inherit; text-decoration: none; }
.product__crumbs a:hover { text-decoration: underline; }
.product__title { font-size: 26px; margin: 0 0 16px; line-height: 1.25; }
.product__price {
  font-size: 34px; font-weight: 800; margin: 0 0 20px;
}
.product__desc {
  padding: 16px; margin: 20px 0;
  background: var(--c-surface-2, #f5f5f5);
  border-radius: var(--r-block, 14px);
  white-space: pre-wrap;
}
.product__seller {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background:var(--glass);
  border: 1px solid var(--c-line-2, #e5e5e5);
  border-radius: var(--r-block, 14px);
  margin-bottom: 20px;
  text-decoration: none; color: inherit;
}
.product__seller-avatar {
  width: 52px; height: 52px; border-radius: 12px; object-fit: cover;
}
.product__actions {
  display: flex; gap: 12px;
}
.product__actions .btn { flex: 1; justify-content: center; padding: 14px 20px; font-size: 16px; }

/* --- seller page --- */
.seller-hero {
  display: flex; gap: 24px; align-items: center;
  padding: 24px;
  background: var(--c-surface-2, #f5f5f5);
  border-radius: var(--r-block, 14px);
  margin-top: 32px;
}
.seller-hero__avatar {
  width: 88px; height: 88px; border-radius: 20px; object-fit: cover;
}
.seller-hero__meta { display: flex; flex-direction: column; gap: 6px; }
.seller-hero__name { font-size: 26px; font-weight: 700; margin: 0; }
.seller-hero__stats {
  display: flex; gap: 20px;
  color: var(--c-muted-2, #7a7a7a);
  font-size: 14px;
}
.seller-hero__stats b { color: inherit; font-weight: 700; }
.seller-hero__bio { margin: 0; max-width: 640px; color: var(--c-muted-2, #7a7a7a); }

/* --- product-new form / settings form --- */
.form {
  max-width: 640px;
  margin: 32px 0;
  display: flex; flex-direction: column;
  gap: 18px;
}
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row label {
  font-size: 13px; font-weight: 600; color: var(--c-muted-2, #7a7a7a);
}
.form__row input,
.form__row select,
.form__row textarea {
  padding: 12px 14px;
  border: 1px solid var(--c-line-2, #e5e5e5);
  border-radius: 10px;
  font-family: inherit; font-size: 15px;
  background:var(--glass);
}
.form__row textarea { min-height: 120px; resize: vertical; }
.form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__submit {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 999px;
  border: 0;
  background: #101014; color: #fff;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
}

/* mobile */
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product { grid-template-columns: 1fr; }
  .seller-hero { flex-direction: column; align-items: flex-start; }
}

/* ---------- Центр уведомлений: колокольчик + выпадашка ---------- */
.bell { position: relative; display: inline-flex; }

.bell__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  line-height: 1;
}
.bell__glyph { display: inline-flex; color: #1a1a1f; }
.bell__btn:hover .bell__glyph { color: var(--acc); }

.bell__badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--acc-3);
  color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px #fff;
}

.bell__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 380px;
  max-width: calc(100vw - 32px);
  background:var(--glass);
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(20, 16, 60, .18);
  z-index: 120;
  overflow: hidden;
}

.bell__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 12px;
  border-bottom:1px solid var(--line);
}
.bell__title { font-weight: 700; font-size: 15px; }
.bell__action {
  background: none; border: 0; cursor: pointer;
  color: var(--acc); font-size: 12px; font-weight: 600;
  padding: 4px 6px; border-radius: 8px;
}
.bell__action:hover { background: #eef1ff; }

.bell__list { max-height: 420px; overflow-y: auto; }

.bell__empty {
  margin: 0; padding: 28px 20px;
  color:var(--txt-2); font-size: 13px; text-align: center;
}

.bell__all {
  display: block;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px; font-weight: 600;
  color: var(--acc); text-decoration: none;
  border-top:1px solid var(--line);
  background: #fbfbff;
}
.bell__all:hover { background: #eef1ff; }

/* ---------- Строка уведомления (выпадашка + /notifications) ---------- */
.notif-row {
  display: flex; gap: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f5f5fa;
  transition: background .15s;
}
.notif-row:last-child { border-bottom: 0; }
.notif-row:hover { background: #fafaff; }
.notif-row.is-unread { background: #f5f4ff; }
.notif-row.is-unread:hover { background: #eef1ff; }

.notif-row__dot {
  flex: 0 0 auto;
  width: 9px; height: 9px;
  margin-top: 6px;
  border-radius: 999px;
}
.notif-row__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.notif-row__head { display: flex; align-items: center; gap: 8px; }
.notif-row__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.notif-row__time { font-size: 11px; color: #9a9aa5; }
.notif-row__title { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.notif-row__text {
  font-size: 12.5px; color: #6a6a75; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Страница /notifications ---------- */
.notif-page__head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  margin: 32px 0 18px;
}
.notif-tabs { display: inline-flex; gap: 6px; }
.notif-tab {
  border:1px solid var(--line); background:var(--glass); cursor: pointer;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: #4a4a55;
}
.notif-tab:hover { border-color: #c9c9ff; color: var(--acc); }
.notif-tab.is-active {
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  border-color: transparent; color: #fff;
}
.notif-page__tools { display: inline-flex; gap: 8px; }

.notif-list {
  background:var(--glass);
  border:1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 48px;
}
.notif-list .notif-row { padding: 15px 20px; }

@media (max-width: 560px) {
  .bell__panel { width: calc(100vw - 24px); right: -8px; }
}

/* Колокольчик добавил ещё одну кнопку в шапку — ужимаем интервалы,
   иначе на 1440px ряд действий не помещается и страница едет вбок. */
.nav__actions { gap: 12px; flex-wrap: nowrap; }
.nav__actions .btn { padding: 10px 16px; font-size: 14.5px; }
.bell__badge[hidden] { display: none; }
