/* QuvaElon — extracted from wireframe */

/* Kartochka menyusi — pastga sheet */
.sheet-overlay {
  position: absolute;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.sheet-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}
.sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 10px 14px calc(18px + env(safe-area-inset-bottom, 0px));
  transform: translateY(108%);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.12);
}
.sheet-overlay.open .sheet {
  transform: translateY(0);
}
.sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: #D1D5DB;
  margin: 2px auto 14px;
}
.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.sheet-action {
  border: none;
  background: #F3F4F6;
  border-radius: 14px;
  padding: 16px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.sheet-action svg {
  width: 26px;
  height: 26px;
  color: #374151;
}
.sheet-action.on {
  background: #F3F4F6;
  color: var(--ink);
}
.sheet-action.on svg {
  color: #1C1C1E;
  fill: currentColor;
}
.sheet-list {
  display: flex;
  flex-direction: column;
}
.sheet-row {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  width: 100%;
  padding: 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.sheet-row .sico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #6B7280;
}
.sheet-row .sico svg { width: 18px; height: 18px; }

/* Bildirishnomalar — qo‘ng‘iroqchadan */
.notif-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.4s;
}
.notif-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}
.notif-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  background: #fff;
  box-shadow: none;
  overflow-y: auto;
  transform-origin: calc(100% - 22px) 48px;
  transform: scale(0.08);
  opacity: 0;
  border-radius: 18px;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    border-radius 0.35s ease;
  display: flex;
  flex-direction: column;
}
.notif-overlay.open .notif-panel {
  transform: scale(1);
  opacity: 1;
  border-radius: 0;
}
.notif-overlay.myads-panel {
  z-index: 40;
  background: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: none;
}
.notif-overlay.myads-panel.open {
  pointer-events: auto;
}
.notif-overlay.myads-panel .notif-panel {
  transform: translateX(104%);
  opacity: 1;
  border-radius: 0;
  transform-origin: center center;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
}
.notif-overlay.myads-panel.open .notif-panel {
  transform: translateX(0);
  opacity: 1;
  border-radius: 0;
}
#mystore.notif-overlay.myads-panel .notif-panel {
  transform: translateX(-104%);
  box-shadow: 6px 0 24px rgba(0, 0, 0, 0.08);
}
#mystore.notif-overlay.myads-panel.open .notif-panel {
  transform: translateX(0);
}
#ad-detail.notif-overlay.myads-panel {
  z-index: 46;
  background: rgba(15, 23, 42, 0);
  transition: background 0.36s ease;
}
#ad-detail.notif-overlay.myads-panel.open {
  background: rgba(15, 23, 42, 0.22);
}
#ad-detail .notif-panel {
  position: absolute;
  overflow: hidden;
  transform-origin: center center;
  transform: scale(0.08);
  opacity: 0;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease,
    border-radius 0.4s ease;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
}
#ad-detail .notif-head {
  flex-shrink: 0;
}
#ad-detail.open .notif-panel {
  transform: scale(1);
  opacity: 1;
  border-radius: 0;
}
.myads-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 24px;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.myads-wrap .grid {
  padding: 0;
  width: 100%;
}
.myads-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.myad-item {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #86EFAC;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.12);
  cursor: default;
  padding: 0;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
}
.myad-item.vip {
  border-color: var(--accent);
  box-shadow: 0 3px 12px rgba(34, 197, 94, 0.16);
}
.myad-thumb {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #e4e4e7;
  position: relative;
  overflow: hidden;
  color: var(--mute);
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid #E8F8EE;
}
.myad-thumb:not(:has(img)) {
  display: grid;
  place-items: center;
}
.myad-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.myad-body {
  padding: 10px 12px 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.myad-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.myad-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}
.myad-date {
  font-size: 10px;
  color: var(--mute);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 1px;
}
.myad-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}
.myad-note {
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
}
.myad-note.kelish { color: #15803D; }
.myad-main {
  cursor: pointer;
}
.myad-actions {
  display: flex;
  border-top: 1px solid #E8F8EE;
}
.myad-sold-btn {
  flex: 1;
  width: auto;
  border: none;
  border-top: none;
  background: #F0FDF4;
  color: #15803D;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.myad-del-btn {
  flex: 0 0 38%;
  border: none;
  border-left: 1px solid #FEE2E2;
  background: #FEF2F2;
  color: #DC2626;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.myad-sold-btn:active { background: #DCFCE7; }
.myad-item.sold {
  opacity: 0.88;
  border-color: #CBD5E1;
  box-shadow: none;
  cursor: default;
}
.myad-item.sold .myad-main { cursor: default; }
.myad-item.sold .myad-thumb::after {
  content: attr(data-sold-label);
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
}
.myad-sold-btn.done {
  background: #F1F5F9;
  color: #64748B;
  cursor: default;
}
.sold-overlay {
  position: absolute;
  inset: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}
.sold-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.22s ease, visibility 0s linear 0s;
}
.sold-modal {
  width: 100%;
  max-width: 300px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 18px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  text-align: center;
}
.sold-modal h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
}
.sold-modal p {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.4;
}
.sold-modal-actions {
  display: flex;
  gap: 8px;
}
.sold-modal-actions button {
  flex: 1;
  height: 44px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
.sold-modal-actions .no {
  background: #F1F5F9;
  color: #334155;
}
.sold-modal-actions .yes {
  background: var(--accent);
  color: #fff;
}
.report-modal {
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  text-align: left;
}
.report-modal h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}
.report-modal .report-hint {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.35;
  text-align: center;
}
.report-modal textarea {
  width: 100%;
  min-height: 72px;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 10px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
  resize: vertical;
  box-sizing: border-box;
  outline: none;
  margin-bottom: 10px;
}
.report-modal textarea:focus {
  border-color: #86EFAC;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}
.report-modal-actions {
  display: flex;
  gap: 8px;
}
.report-modal-actions button {
  flex: 1;
  height: 40px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
.report-modal-actions .cancel {
  background: #F1F5F9;
  color: #334155;
}
.report-modal-actions .send {
  background: var(--accent);
  color: #fff;
}
.report-modal-actions .send:active { filter: brightness(0.95); }
.post-status {
  position: absolute;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(2px);
}
.post-status[hidden] { display: none !important; }
.post-status-card {
  width: min(260px, 78%);
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  animation: post-status-in 0.28s ease;
}
@keyframes post-status-in {
  from { transform: scale(0.92) translateY(10px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.post-status-spin {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid #E2E8F0;
  border-top-color: var(--accent);
  animation: post-spin 0.7s linear infinite;
}
.post-status-spin[hidden] { display: none !important; }
@keyframes post-spin {
  to { transform: rotate(360deg); }
}
.post-status-check {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: grid;
  place-items: center;
  animation: post-check-pop 0.42s cubic-bezier(0.22, 1.4, 0.36, 1);
}
.post-status-check[hidden] { display: none !important; }
.post-status-check svg { width: 26px; height: 26px; }
@keyframes post-check-pop {
  0% { transform: scale(0.4); opacity: 0; }
  70% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}
.post-status-card.warn .post-status-check {
  background: #FEF3C7;
  color: #B45309;
}
#post-status-txt {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.35;
}
.sold-toast {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -20px) scale(0.92);
  z-index: 90;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  text-align: center;
  width: min(280px, 82%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}
.sold-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0s;
}
.sold-toast .emoji {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}
.sold-toast strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.sold-toast span {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.35;
}
.sec-toast {
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%) scale(0.96);
  z-index: 88;
  background: transparent;
  color: #334155;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  max-width: 86%;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
  text-shadow:
    0 0 2px #fff,
    0 0 5px #fff,
    0 1px 0 #fff,
    0 -1px 0 #fff,
    1px 0 0 #fff,
    -1px 0 0 #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}
.sec-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}
.confetti-layer {
  position: absolute;
  inset: 0;
  z-index: 85;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  opacity: 0.95;
  animation: confetti-fly 1.35s ease-out forwards;
}
@keyframes confetti-fly {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0.6); opacity: 0; }
}
.boost-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 28px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.boost-body.show { display: flex; }
.cab-page-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px 28px;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cab-page-lead {
  margin: 0;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}
.invite-hero {
  border-radius: 16px;
  padding: 12px 14px 12px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(22, 163, 74, 0.12), transparent 55%),
    #F0FDF4;
  border: 1px solid #BBF7D0;
}
.invite-hero-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  margin-bottom: 2px;
}
.invite-hero strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #14532D;
  letter-spacing: -0.04em;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}
.invite-hero p {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #166534;
  line-height: 1.35;
}
.invite-bonus-amt {
  color: #15803D;
  font-weight: 800;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.stat-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px 14px;
  background: #fff;
}
.stat-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.stat-card-head strong {
  display: block;
  font-size: 15px;
  margin: 0;
}
.stat-type {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 999px;
  background: #F3F4F6;
  color: #4B5563;
}
.stat-type.top {
  background: #DBEAFE;
  color: #1D4ED8;
}
.stat-type.rec {
  background: #DCFCE7;
  color: #15803D;
}
.stat-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.stat-row.four {
  grid-template-columns: 1fr 1fr 1fr;
}
.stat-pill {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.stat-pill b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.stat-pill span {
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
  line-height: 1.25;
}
.stat-extra {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-extra-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.stat-line span { color: var(--mute); font-weight: 600; }
.stat-line b { font-weight: 800; font-variant-numeric: tabular-nums; }
.stat-line b.up { color: #15803D; }
.pay-hist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.pay-hist-item:last-child { border-bottom: none; }
.pay-hist-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pay-hist-meta strong { font-size: 14px; }
.pay-hist-meta span {
  font-size: 12px;
  color: var(--mute);
}
.pay-hist-right {
  text-align: right;
  flex-shrink: 0;
}
.pay-hist-right .sum {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
.pay-hist-status {
  font-size: 11px;
  font-weight: 700;
  color: #15803D;
}
.pay-hist-status.wait { color: #B45309; }
.wallet-pack {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.wallet-pack:last-child { border-bottom: none; }
.wallet-pack:active { opacity: 0.75; }
.wallet-pack-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wallet-pack-meta strong {
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.wallet-pack-meta span {
  font-size: 11px;
  font-weight: 700;
  color: #15803D;
}
.wallet-pack-go {
  font-size: 20px;
  font-weight: 500;
  color: var(--mute);
  line-height: 1;
}
.wallet-pack.best .wallet-pack-meta strong {
  color: #15803D;
}
.wallet-topup-body {
  min-height: 0;
  flex: 0 1 auto;
}
.wallet-topup-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wallet-topup-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.wallet-amount-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0 14px;
  min-height: 52px;
}
.wallet-amount-wrap:focus-within {
  border-color: var(--accent);
}
.wallet-amount-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-weight: 800;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  padding: 12px 0;
}
.wallet-amount-wrap input::placeholder {
  color: #CBD5E1;
  font-weight: 700;
}
.wallet-amount-wrap > span {
  font-size: 14px;
  font-weight: 700;
  color: var(--mute);
  flex-shrink: 0;
}
.wallet-amount-hint {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
}
.wallet-topup-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 8px;
}
.wallet-topup-btn {
  flex: 1;
  min-width: 0;
  margin-top: 0;
  width: auto;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
.wallet-paylog-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.wallet-paylog-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}
.wallet-paylog-btn:active {
  transform: scale(0.96);
  background: #F8FAFC;
}
.wallet-topup-btn:active {
  transform: scale(0.98);
  opacity: 0.92;
}
.wallet-topup-btn:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}
.wallet-pending {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wallet-pending[hidden] {
  display: none !important;
}
.wallet-pending strong {
  font-size: 14px;
  font-weight: 800;
  color: #92400E;
}
.wallet-pending-check {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #FDE68A;
  background: #fff;
  display: block;
}
.wallet-pending-check[hidden] {
  display: none !important;
}
.wallet-pending-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wallet-pending-row[hidden] {
  display: none !important;
}
.wallet-pending-timer {
  flex-shrink: 0;
  min-width: 40px;
  font-size: 14px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #B45309;
  line-height: 1;
}
.wallet-pending-row > span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: #92400E;
  line-height: 1.3;
}
.wallet-pending-remind {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: #92400E;
  line-height: 1.35;
}
.wallet-pending-remind[hidden] {
  display: none !important;
}
.wallet-paylog-body {
  min-height: 0;
}
.wallet-confirm-log {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.wallet-paylog-empty {
  margin: 28px 8px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--mute);
}
.wallet-confirm-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #DCFCE7;
  border-radius: 14px;
  background: #F0FDF4;
}
.wallet-confirm-card.is-no {
  border-color: #FECACA;
  background: #FEF2F2;
}
.wallet-confirm-ph {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.wallet-confirm-no {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #DC2626;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.wallet-confirm-card.is-no em {
  color: #DC2626;
}
.wallet-confirm-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.wallet-confirm-main strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.wallet-confirm-main em {
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  color: #16A34A;
}
.wallet-confirm-main span {
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}
.wallet-confirm-ok {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #16A34A;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wallet-confirm-ok svg {
  width: 15px;
  height: 15px;
}
.invite-wallet {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px 0 6px;
}
.invite-wallet-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
}
.invite-wallet-meta > span:first-child {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
}
.invite-wallet-meta strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.invite-wallet-cur {
  font-size: 13px;
  font-weight: 700;
  color: var(--mute);
}
.invite-box {
  border: 1.5px dashed #86EFAC;
  background: #F0FDF4;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}
.invite-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.invite-ch {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.invite-ch-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.invite-ch-lab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mute);
}
.invite-ch-brand {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.invite-ch-brand svg {
  width: 13px;
  height: 13px;
}
.invite-ch-brand.ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
}
.invite-ch-brand.tg {
  background: #2AABEE;
}
.invite-ch-brand.play {
  background: #34A853;
}
.invite-ch-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: #F8FAFC;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: #15803D;
  -webkit-tap-highlight-color: transparent;
}
.invite-ch-link:active {
  opacity: 0.85;
}
.invite-ch-link > span:first-child {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-all;
}
.invite-ch-copy {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.invite-ch-copy svg {
  width: 14px;
  height: 14px;
}
.invite-ch-share {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}
.invite-ch-share svg {
  width: 20px;
  height: 20px;
}
.invite-ch-share:active {
  transform: scale(0.96);
  border-color: var(--accent);
  color: var(--accent);
}
.invite-link-box {
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
}
.invite-link-lab {
  font-size: 12px;
  font-weight: 700;
  color: var(--mute);
  margin-bottom: 8px;
}
.invite-link {
  flex: 1;
  min-width: 0;
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #15803D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.35;
  padding: 0;
  background: none;
  border-radius: 0;
  margin: 0;
}
.invite-link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 10px 12px;
  background: #F8FAFC;
  border-radius: 12px;
  margin-bottom: 10px;
}
.invite-link-copy {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.invite-link-copy svg {
  width: 16px;
  height: 16px;
}
.invite-link-copy:active {
  transform: scale(0.94);
}
.invite-share-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
}
.invite-share-btn:active {
  transform: scale(0.98);
  opacity: 0.92;
}
.invite-actions {
  display: flex;
  gap: 8px;
}
.invite-actions button {
  flex: 1;
  height: 44px;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.invite-actions button:active {
  transform: scale(0.98);
  opacity: 0.92;
}
.invite-actions .copy {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.invite-actions .share {
  background: var(--accent);
  color: #fff;
}
.invite-rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.invite-rules li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.invite-rules .n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #15803D;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.invite-bonus {
  margin: 0;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}
.support-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
}
.support-btn .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #F3F4F6;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #111827;
}
.support-btn .ico svg { width: 20px; height: 20px; }
.support-btn strong { display: block; font-size: 15px; }
.support-btn span {
  font-size: 12px;
  color: var(--mute);
}
.support-faq {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-faq li {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.support-faq li b {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
.support-faq li span { color: var(--mute); }
.cab-page-body.support-page {
  gap: 10px;
  min-height: 0;
  overflow: hidden;
  padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
}
.support-thread {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 4px;
}
.support-bubble {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-word;
}
.support-bubble.me {
  align-self: flex-end;
  background: #DCFCE7;
  color: #14532D;
  border-bottom-right-radius: 6px;
}
.support-bubble.them {
  align-self: flex-start;
  background: #F1F5F9;
  color: var(--ink);
  border-bottom-left-radius: 6px;
}
.support-tick {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}
.support-ask {
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.support-ask-title {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}
.support-ask-hint {
  margin: -4px 0 0;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.35;
}
.support-ask-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.support-ask textarea {
  flex: 1;
  width: auto;
  min-height: 42px;
  max-height: 120px;
  border: 1.5px solid #E2E8F0;
  border-radius: 22px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.35;
  resize: none;
  background: #F8FAFC;
  color: var(--ink);
}
.support-ask textarea:focus {
  outline: none;
  border-color: #86EFAC;
  background: #fff;
}
.support-ask-send {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.support-ask-send svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: 2px;
}
.support-ask-send:active { filter: brightness(0.95); }
.support-ask-send:disabled { opacity: 0.55; cursor: default; }

.ad-detail-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.ad-detail-gallery {
  position: relative;
  background: #e4e4e7;
  flex-shrink: 0;
}
.ad-detail-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.ad-detail-track::-webkit-scrollbar { display: none; }
.ad-detail-slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  background: #e4e4e7;
  color: rgba(0, 0, 0, 0.35);
  font-size: 14px;
  font-weight: 600;
}
.ad-detail-slide:not(:has(img)) {
  display: grid;
  place-items: center;
}
.ad-detail-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  background: #e4e4e7;
}
.ad-detail-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
  z-index: 2;
}
.ad-detail-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}
.ad-detail-dots span.on {
  background: #16A34A;
  transform: scale(1.15);
}
.ad-detail-body {
  flex: none;
  min-height: 0;
  overflow: visible;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ad-detail-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}
.ad-detail-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}
.ad-detail-note {
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  margin-top: 2px;
}
.ad-detail-note.kelish { color: #15803D; }
.ad-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.ad-detail-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mute);
  background: #F8FAFC;
  border-radius: 10px;
  padding: 7px 10px;
}
.ad-detail-fact b {
  color: var(--ink);
  font-weight: 800;
}
.ad-detail-holat {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.ad-detail-holat.holat-yangi {
  background: #E8F8EE;
  color: #15803D;
  border-color: #BBF7D0;
}
.ad-detail-holat.holat-yaxshi {
  background: #EEF6FF;
  color: #1D4ED8;
  border-color: #BFDBFE;
}
.ad-detail-holat.holat-orta {
  background: #FFF7E8;
  color: #B45309;
  border-color: #FDE68A;
}
.ad-detail-holat.holat-tamir {
  background: #FEECEC;
  color: #B91C1C;
  border-color: #FECACA;
}
.ad-detail-head-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.ad-detail-tools {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
}
.ad-detail-report {
  border: 1px solid #FECACA;
  background: #FEF2F2;
  padding: 0 9px;
  height: 30px;
  margin: 0 0 0 auto;
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #DC2626;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.ad-detail-report:active { background: #FEE2E2; }
.ad-detail-views {
  min-width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px 4px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #6B7280;
}
.ad-detail-views svg {
  width: 18px;
  height: 18px;
  display: block;
}
.ad-detail-views b {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ad-detail-save {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #6B7280;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.ad-detail-save svg {
  width: 18px;
  height: 18px;
  display: block;
}
.ad-detail-save.on {
  color: #1C1C1E;
  border-color: #CBD5E1;
  background: #F8FAFC;
}
.ad-detail-save.on svg { fill: currentColor; }
.ad-detail-save:active { transform: scale(0.94); }
.ad-detail-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475569;
}
.ad-detail-privacy {
  margin: 0;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.4;
  background: #F8FAFC;
  border-radius: 12px;
  padding: 10px 12px;
}
.ad-detail-foot {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  flex-shrink: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.ad-detail-foot:has(.ad-detail-tg[hidden]) .ad-detail-call {
  flex: 1;
}
.ad-detail-call,
.ad-detail-tg {
  flex: 1;
  height: 50px;
  border-radius: 14px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}
.ad-detail-share {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-self: stretch;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: #1C1C1E;
  color: #fff;
  box-shadow: 0 4px 12px rgba(28, 28, 30, 0.22);
  padding: 0;
}
.ad-detail-call {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.28);
}
.ad-detail-tg {
  background: #229ED9;
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.3);
}
.ad-detail-tg[hidden] {
  display: none !important;
}
.ad-detail-call:active,
.ad-detail-tg:active,
.ad-detail-share:active { transform: scale(0.97); }
.ad-detail-call svg,
.ad-detail-tg svg { width: 20px; height: 20px; flex-shrink: 0; }
.ad-detail-share svg { width: 22px; height: 22px; display: block; }

.boost-lead {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}
.boost-lead .boost-num {
  color: #111827;
  font-weight: 800;
  font-size: 15px;
}
.boost-mid {
  margin: 8px 0 2px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}
.boost-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 1.5px solid #BBF7D0;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.08);
}
.boost-card-rec {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.14);
}
.boost-card-rec .boost-ico {
  background: #DCFCE7;
  color: #15803D;
}
.boost-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #F3F4F6;
  color: #111827;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.boost-ico svg {
  width: 20px;
  height: 20px;
}
.boost-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.boost-txt strong {
  font-size: 15px;
  font-weight: 800;
}
.boost-txt span {
  font-size: 12px;
  color: var(--mute);
  font-weight: 500;
  line-height: 1.3;
}
.boost-chev {
  color: #9CA3AF;
  font-size: 18px;
  flex-shrink: 0;
}
.boost-field-label {
  font-size: 12px;
  font-weight: 700;
  margin: 4px 0 2px;
  color: var(--ink);
}
.boost-ads {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boost-ad {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
}
.boost-ad.on {
  border-color: var(--accent);
  background: #F0FDF4;
}
.boost-ad .disc {
  display: none;
  font-size: 10px;
  font-weight: 800;
  color: #15803D;
  background: #DCFCE7;
  padding: 3px 7px;
  border-radius: 8px;
  flex-shrink: 0;
}
.boost-ad.on .disc { display: none; }
.boost-ad.disc-on .disc { display: inline-block; }
.boost-ad-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e4e4e7;
  display: grid;
  place-items: center;
  color: var(--mute);
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.boost-ad-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.boost-ad-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.boost-ad-meta strong {
  font-size: 13px;
  font-weight: 700;
}
.boost-ad-meta span {
  font-size: 12px;
  color: var(--mute);
  font-weight: 600;
}
.boost-price-box {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.boost-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.boost-price-box .lab {
  font-size: 12px;
  color: var(--mute);
  font-weight: 600;
}
.boost-price-box .val {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.boost-price-box .old {
  font-size: 12px;
  color: var(--mute);
  text-decoration: line-through;
  font-weight: 600;
}
.boost-price-box .disc-hint {
  font-size: 11px;
  color: #15803D;
  font-weight: 700;
}
.boost-price-box .disc-hint.hide { display: none; }
.boost-price-box .old.hide { display: none; }
.boost-note {
  margin: 0;
  font-size: 12px;
  color: var(--mute);
  line-height: 1.4;
}
.boost-pay {
  width: 100%;
  height: 50px;
  margin-top: 6px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}

.pay-overlay {
  position: absolute;
  inset: 0;
  z-index: 70;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.pay-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}
.pay-modal {
  width: 100%;
  max-width: none;
  max-height: 92%;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.pay-overlay.open .pay-modal {
  transform: translateY(0) scale(1);
}
.pay-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.pay-modal-top h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}
.pay-modal-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
}
.pay-card-visual {
  width: 100%;
  aspect-ratio: 2.12 / 1;
  border-radius: 14px;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.08) 0%, transparent 35%),
    linear-gradient(155deg, #1a3a5c 0%, #16324f 38%, #0f2438 72%, #0a1a2a 100%);
  color: #fff;
  padding: 18px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
}
.pay-card-visual:active {
  transform: scale(0.965) translateY(3px);
  filter: brightness(0.88);
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pay-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.pay-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.06) 50%, transparent 58%);
  pointer-events: none;
}
.pay-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-top: 22px;
}
.pay-card-chip-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pay-card-chip {
  width: 42px;
  height: 32px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.4), transparent 42%),
    linear-gradient(135deg, #ffe9a8 0%, #f5c542 32%, #d4a017 68%, #9a6a0c 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 2px rgba(0,0,0,0.28),
    0 1px 3px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}
.pay-card-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 18%, rgba(0,0,0,0.2) 18.5%, transparent 19.5%),
    linear-gradient(90deg, transparent 36%, rgba(0,0,0,0.2) 36.5%, transparent 37.5%),
    linear-gradient(90deg, transparent 54%, rgba(0,0,0,0.2) 54.5%, transparent 55.5%),
    linear-gradient(90deg, transparent 72%, rgba(0,0,0,0.2) 72.5%, transparent 73.5%),
    linear-gradient(0deg, transparent 30%, rgba(0,0,0,0.18) 30.5%, transparent 32%),
    linear-gradient(0deg, transparent 68%, rgba(0,0,0,0.18) 68.5%, transparent 70%);
}
.pay-card-chip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 2px;
  background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(0,0,0,0.1));
}
.pay-card-contactless {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  color: #fff;
  position: static;
  flex-shrink: 0;
}
.pay-card-num-row {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-bottom: 12px;
  padding-top: 18px;
}
.pay-card-num {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  flex: 1;
  min-width: 0;
  color: #e8eef5;
  text-shadow: 0 1px 1px rgba(0,0,0,0.35);
}
.pay-card-copy {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.pay-card-copy:active { background: rgba(255, 255, 255, 0.26); }
.pay-card-copy svg {
  width: 15px;
  height: 15px;
}
.pay-card-name {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.pay-check {
  border: 1.5px dashed #CBD5E1;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  background: #F8FAFC;
  margin-bottom: 12px;
  font-family: inherit;
  width: 100%;
  color: var(--ink);
}
.pay-check.has {
  border-style: solid;
  border-color: #86EFAC;
  background: #F0FDF4;
}
.pay-check .ph {
  font-size: 11px;
  color: var(--mute);
  font-weight: 600;
  margin-top: 4px;
}
.pay-check-ico {
  width: 36px;
  height: 36px;
  margin: 0 auto 4px;
  border-radius: 10px;
  background: #E5E7EB;
  display: grid;
  place-items: center;
  color: #6B7280;
}
.pay-check-ico svg { width: 18px; height: 18px; }
.pay-check img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  display: none;
  margin: 0 auto 4px;
}
.pay-check.has img { display: block; }
.pay-check.has .pay-check-ico { display: none; }
.pay-send {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
}
.notif-head {
  padding: 14px 16px;
  padding-top: calc(14px + 28px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-shrink: 0;
}
.notif-head .title {
  font-size: 18px;
  font-weight: 800;
}
.notif-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.notif-head.cab-sub-head {
  justify-content: flex-start;
  gap: 10px;
}
.notif-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 0 12px 0 7px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
}
.notif-back svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}
.notif-head.cab-sub-head .title {
  flex: 1;
  min-width: 0;
}
.notif-list {
  padding: 12px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
}
.notif-empty {
  margin: 32px 8px 0;
  text-align: center;
  color: #8E8E93;
  font-size: 14px;
  font-weight: 600;
}
.notif-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.notif-item.unread {
  border-color: #86EFAC;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.12);
}
.notif-item .n-body {
  padding: 12px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.notif-item .n-time {
  font-size: 11px;
  color: #9CA3AF;
  font-weight: 500;
  order: -1;
}
.notif-item .n-top {
  display: block;
}
.notif-item .n-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  display: block;
}
.notif-item .n-text {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.notif-item .n-thumb {
  margin: 0 10px 10px;
  width: calc(100% - 20px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #f2f2f7;
  position: relative;
  overflow: hidden;
  color: var(--mute);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notif-item .n-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.notif-sheet-overlay {
  z-index: 45;
}
.notif-ad-sheet {
  max-height: min(88%, 720px);
  display: flex;
  flex-direction: column;
  padding: 10px 0 calc(12px + env(safe-area-inset-bottom, 0px));
}
.notif-sheet-head {
  padding: 0 18px 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.notif-sheet-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 16px 12px;
  -webkit-overflow-scrolling: touch;
}
.notif-sheet-loading,
.notif-sheet-miss {
  padding: 28px 8px;
  text-align: center;
  color: var(--mute);
  font-size: 14px;
}
.notif-sheet-meta {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.notif-sheet-warn {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.notif-sheet-warn .nw-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.notif-sheet-warn .nw-text {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.45;
  white-space: pre-wrap;
}
.notif-sheet-ad {
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.notif-sheet-gallery {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  background: #f2f2f7;
  position: relative;
}
.notif-sheet-gallery img,
.notif-sheet-gallery .ns-ph {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  scroll-snap-align: start;
  display: block;
}
.notif-sheet-gallery .ns-ph {
  display: grid;
  place-items: center;
  color: var(--mute);
  font-weight: 600;
  font-size: 13px;
}
.notif-sheet-ad-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.notif-sheet-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.notif-sheet-ad-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.notif-sheet-ad-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.45;
  white-space: pre-wrap;
}
.notif-sheet-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 4px;
  font-size: 12px;
  color: #6B7280;
}
.notif-sheet-facts b {
  color: var(--ink);
  font-weight: 700;
}
.notif-sheet-close {
  margin: 8px 16px 0;
  height: 50px;
  border: none;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28);
}
.notif-sheet-close:active {
  filter: brightness(0.96);
}

/* Yangi narsalar — cabinet subpages tone */
.phone[data-sec="yangi"] .myad-item {
  border-color: #F1E5DB;
  box-shadow: 0 2px 10px rgba(var(--accent-rgb), 0.12);
}
.phone[data-sec="yangi"] .myad-item.vip {
  border-color: var(--accent);
}
.phone[data-sec="yangi"] .myad-thumb {
  border-bottom-color: #F1E5DB;
}
.phone[data-sec="yangi"] .myad-sold-btn {
  border-top-color: #F1E5DB;
  background: #FFF6EF;
  color: #D65A00;
}

/* Xizmatlar — slate cabinet subpages */
.phone[data-sec="xizmatlar"] .myad-item {
  border-color: #E2E8F0;
  box-shadow: 0 2px 10px rgba(71, 85, 105, 0.08);
}
.phone[data-sec="xizmatlar"] .myad-item.vip {
  border-color: var(--accent);
}
.phone[data-sec="xizmatlar"] .myad-thumb {
  border-bottom-color: #E2E8F0;
  background: #F1F5F9;
}
.phone[data-sec="xizmatlar"] .myad-sold-btn {
  border-top-color: #E2E8F0;
  background: #F1F5F9;
  color: #334155;
}
.phone[data-sec="xizmatlar"] .notif-head {
  background: #F8FAFC;
  border-bottom-color: #E2E8F0;
}
.phone[data-sec="xizmatlar"] .picker-card.on {
  border-color: #475569;
  box-shadow: 0 0 0 2px rgba(71, 85, 105, 0.2);
}
