﻿/* Treat hearts (compact) + type grid */

.treat-send-hdr-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.treat-send-hdr-text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

/* Header treat balance â€” minimal line icon + count */
.hdr-treat-hearts {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  margin-right: 0;
  padding: 0;
  cursor: pointer;
}
body:not(.tab-home) .hdr-actions {
  gap: 6px;
}
body:not(.tab-home) .hdr-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body:not(.tab-home) .hdr-treat-hearts .treat-pip {
  padding: 0;
}
.hdr-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 2px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.hdr-icon-btn:active {
  opacity: 0.65;
}
.hdr-icon-svg {
  display: block;
  flex-shrink: 0;
}
.hdr-icon-svg path,
.treat-pip-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.treat-pip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: Manrope, sans-serif;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  pointer-events: none;
}
.treat-pip-n {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  min-width: 0.5em;
  text-align: center;
  letter-spacing: -0.02em;
}
.treat-pip--pro .treat-pip-n {
  color: var(--brand);
}
.treat-pip--empty .treat-pip-n {
  color: #c0392b;
}
.treat-pip--low .treat-pip-svg {
  color: var(--coral);
}
.treat-pip--empty .treat-pip-svg {
  opacity: 0.55;
}

.treats-tab-pip-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 8px 0 2px;
}
.treat-pip-daily {
  font-size: 10px;
  font-weight: 700;
  color: var(--t4);
  margin-left: 4px;
}
.treats-plan-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  margin: 0 0 8px;
}
.treat-pip-link {
  border: none;
  background: transparent;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.treat-battery-hdr,
.treat-battery-bar,
.treat-battery-step2 {
  display: none !important;
}
.assign-treat-battery {
  display: none !important;
}

.treat-type-grid-wrap--blocked .treat-type-grid {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(0.4);
}
.treat-type-grid-wrap--blocked::after {
  content: 'Refill treats above to pick a type';
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  margin-top: 8px;
}
.treat-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}
.treat-type-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--tt-color, var(--brand)) 35%, transparent);
  background: color-mix(in srgb, var(--tt-color, var(--brand)) 8%, var(--surface));
  cursor: pointer;
  font-family: Manrope, sans-serif;
  min-height: 88px;
  box-sizing: border-box;
  transition: border-color 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
}
.treat-type-btn--sel {
  border-color: var(--brand) !important;
  background: color-mix(in srgb, var(--brand) 14%, var(--surface)) !important;
  box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.2);
}
.treat-type-btn:active {
  transform: scale(0.97);
}
.treat-type-grid-wrap--assign {
  margin-bottom: 8px;
}
.treat-type-grid-wrap--assign .treat-type-grid {
  max-height: none;
  overflow: visible;
}
.treat-type-grid--assign {
  margin-bottom: 4px;
}
#asgn-step-treat .treat-type-grid,
#assign-treat-type-grid {
  display: grid !important;
}
#asgn-step-treat .treat-type-btn {
  min-height: 72px;
  padding: 10px 8px;
}
#asgn-step-treat .treat-type-emoji {
  font-size: 24px;
}
#asgn-step-treat .treat-type-sub {
  font-size: 9px;
  line-height: 1.2;
}
/* Send-treat sheet (double-tap): fit all types without scrolling */
#sh-treat .sheet {
  max-height: min(92vh, 780px);
  display: flex;
  flex-direction: column;
}
#sh-treat #treat-step-1 {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
#sh-treat .treat-type-grid-wrap .treat-type-grid,
#sh-treat #treat-type-grid.treat-type-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  max-height: none;
  overflow: visible;
  margin-bottom: 4px;
}
#sh-treat .treat-type-btn {
  min-height: 68px;
  padding: 8px 4px;
  gap: 2px;
}
#sh-treat .treat-type-emoji {
  font-size: 22px;
  line-height: 1;
}
#sh-treat .treat-type-lbl {
  font-size: 10px;
  line-height: 1.15;
}
#sh-treat .treat-type-sub {
  font-size: 8px;
  line-height: 1.1;
}
@media (max-width: 360px) {
  #sh-treat .treat-type-grid-wrap .treat-type-grid,
  #sh-treat #treat-type-grid.treat-type-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.treat-type-btn--pro {
  opacity: 0.78;
  filter: saturate(0.85);
}
.treat-type-btn--pro .treat-type-lbl,
.treat-type-btn--pro .treat-type-sub {
  color: var(--t3);
}
.treat-type-pro-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 14px;
  line-height: 1;
}
.treat-type-emoji {
  font-size: 26px;
  line-height: 1;
}
.treat-type-lbl {
  font-size: 10px;
  font-weight: 800;
  color: var(--text);
}
.spotify-search-wrap {
  margin-bottom: 8px;
}
.spotify-search-inp {
  margin-bottom: 6px;
}
.spotify-search-hint {
  font-size: 11px;
  color: var(--t3);
  margin: 8px 0 4px;
}
.spotify-results {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  background: var(--surface);
}
.spotify-pick-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--s2);
  border: 1px solid var(--border);
  margin-bottom: 8px;
}
.spotify-pick-art {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.spotify-pick-art--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--s3);
  font-size: 20px;
}
.spotify-pick-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.spotify-pick-artist {
  display: block;
  font-size: 11px;
  color: var(--t3);
}
.spotify-pick-embed {
  border-radius: 12px;
  width: 100%;
  height: 80px;
  border: none;
  display: block;
}
.spotify-pick-audio {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.spotify-preview {
  margin-bottom: 8px;
}
.social-video-paste {
  display: grid;
  gap: 8px;
}
.social-video-preview {
  min-height: 0;
}
.social-video-hint {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--s2);
  border: 1px dashed var(--border2);
  font-size: 12px;
  color: var(--t3);
}
.social-video-embed-card {
  margin: 8px 0 12px;
  border-radius: 16px;
  overflow: hidden;
  background: #0f1115;
  border: 1px solid var(--border);
}
.social-video-frame {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
  background: #0f1115;
}
.social-video-open {
  display: block;
  padding: 10px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
}

.photo-camera-wrap {
  margin: 0 0 10px;
  padding: 12px;
  border-radius: 18px;
  background: var(--s2);
  border: 1px solid var(--border);
}
.photo-camera-stage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #08090d;
  aspect-ratio: 4 / 3;
}
.photo-camera-live,
.photo-camera-still {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #08090d;
}
.photo-camera-live--mirror {
  transform: scaleX(-1);
}
.photo-camera-still {
  display: none;
}
.photo-camera-status {
  margin: 9px 0 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--t3);
  text-align: center;
}
.photo-camera-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.photo-camera-btn {
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  touch-action: manipulation;
}
.photo-camera-btn--primary {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}
.photo-camera-btn--ghost {
  color: var(--text);
  background: var(--surface);
}
.photo-camera-btn--plain {
  color: var(--t3);
  background: transparent;
}

.partner-voucher-shelf,
.money-deposit-panel {
  margin: 18px 0;
}
.reward-shelf-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.reward-kicker {
  margin: 0 0 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.reward-link-btn {
  border: none;
  background: transparent;
  color: var(--brand);
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.reward-voucher-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reward-voucher-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--border2);
  background: linear-gradient(145deg, var(--surface), var(--s2));
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}
.reward-voucher-card--compact {
  min-width: 210px;
  scroll-snap-align: start;
}
.reward-voucher-emoji {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(var(--brand-rgb), 0.1);
  font-size: 22px;
}
.reward-voucher-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.reward-voucher-card h3 {
  margin: 4px 0 0;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}
.reward-voucher-brand,
.reward-voucher-card p {
  margin: 0;
  font-size: 11px;
  color: var(--t3);
  line-height: 1.4;
}
.reward-voucher-brand {
  font-weight: 900;
  color: var(--text);
}
.reward-voucher-card small {
  font-size: 10px;
  color: var(--t4);
  line-height: 1.35;
}
.reward-voucher-tech {
  margin: 4px 0 0;
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(var(--brand-rgb), 0.06);
  border: 1px solid rgba(var(--brand-rgb), 0.12);
}
.reward-voucher-tech-row {
  display: grid;
  grid-template-columns: minmax(72px, 34%) 1fr;
  gap: 4px 8px;
  margin: 0;
}
.reward-voucher-tech-row + .reward-voucher-tech-row {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid rgba(var(--brand-rgb), 0.1);
}
.reward-voucher-tech dt {
  margin: 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t3);
}
.reward-voucher-tech dd {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}
.voucher-sheet-detail {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: var(--s2);
  border: 1px solid var(--border2);
}
.voucher-sheet-note--muted {
  margin-top: 8px;
  margin-bottom: 0;
}
.reward-voucher-btn,
.money-deposit-btn {
  margin-top: auto;
  padding: 9px 11px;
  border-radius: 12px;
  border: none;
  background: var(--brand);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}
.reward-voucher-grid {
  display: grid;
  gap: 10px;
}
.voucher-sheet-lede,
.voucher-sheet-note {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--t3);
}
.money-deposit-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(26, 110, 66, 0.18), transparent 35%),
    var(--surface);
  border: 1px solid var(--border2);
}
.money-deposit-amount-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.money-deposit-amount-row span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--s2);
  border: 1px solid var(--border2);
  font-weight: 900;
  color: var(--brand);
}
.money-deposit-warning,
.money-deposit-safety,
.money-deposit-status {
  margin: 10px 0 0;
  padding: 11px 12px;
  border-radius: 14px;
  background: var(--s2);
  border: 1px solid var(--border2);
  font-size: 12px;
  line-height: 1.45;
  color: var(--t3);
}
.money-deposit-warning {
  border-color: rgba(192, 57, 43, 0.25);
  background: rgba(192, 57, 43, 0.08);
}
.money-deposit-status {
  font-weight: 800;
  color: var(--brand);
}
.money-deposit-status--error {
  color: #c0392b;
  border-color: rgba(192, 57, 43, 0.25);
  background: rgba(192, 57, 43, 0.08);
}
.reward-pay-trail-slot {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}
.reward-pay-trail {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 11px;
  background: var(--surface);
}
.reward-pay-trail--ok {
  border-color: rgba(45, 106, 79, 0.3);
  background: rgba(45, 106, 79, 0.08);
}
.reward-pay-trail--warn {
  border-color: rgba(192, 57, 43, 0.28);
  background: rgba(192, 57, 43, 0.08);
}
.reward-pay-trail--muted {
  border-color: rgba(28, 25, 23, 0.16);
  background: var(--s2);
}
.reward-pay-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 800;
}
.reward-pay-task {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.reward-pay-meta {
  margin: 3px 0 0;
  font-size: 11px;
  color: var(--t3);
}
.reward-pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.reward-pay-chip {
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  cursor: pointer;
}
.reward-pay-chip--primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.reward-pay-inline-status {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--t2);
  min-height: 1.2em;
}
.reward-pay-inline-status:not(:empty) {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(45, 106, 79, 0.08);
  color: var(--brand);
  font-weight: 700;
}
.spotify-result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: Manrope, sans-serif;
}
.spotify-result-row:last-child {
  border-bottom: none;
}
.spotify-result-art {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.spotify-result-art--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--s2);
  font-size: 18px;
}
.spotify-result-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.spotify-result-artist {
  display: block;
  font-size: 11px;
  color: var(--t3);
}
.spotify-results-loading,
.spotify-results-empty {
  padding: 12px;
  font-size: 12px;
  color: var(--t3);
  text-align: center;
  margin: 0;
}
.bomb-builder-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #17122f 0%, #6d28d9 48%, #f97316 100%);
  box-shadow: 0 18px 38px rgba(76, 29, 149, 0.28);
}
.bomb-builder-kicker {
  margin: 0 0 5px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.bomb-builder-title {
  margin: 0 0 6px;
  font-family: Manrope, sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.12;
}
.bomb-fuse {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}
.bomb-fuse span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  opacity: 0.85;
  box-shadow: 0 0 18px rgba(255,255,255,0.75);
}
.bomb-fuse span:nth-child(2) {
  background: #fde68a;
}
.bomb-fuse span:nth-child(3) {
  background: #fb7185;
}
.bomb-target-card {
  display: grid;
  gap: 3px;
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--s2);
  border: 1px solid var(--border);
}
.bomb-target-card span,
.bomb-target-card small {
  font-size: 10px;
  font-weight: 800;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bomb-target-card strong {
  font-size: 14px;
  color: var(--text);
}
.bomb-slots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0 10px;
}
.bomb-slot {
  min-width: 0;
  padding: 8px 3px;
  border-radius: 15px;
  border: 1.5px solid rgba(124, 58, 237, 0.22);
  background: linear-gradient(180deg, var(--surface), var(--s2));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: Manrope, sans-serif;
  box-shadow: inset 0 -8px 18px rgba(124, 58, 237, 0.05);
}
.bomb-slot--filled {
  border-color: rgba(124, 58, 237, 0.38);
}
.bomb-slot--active {
  border-color: #7c3aed;
  background: color-mix(in srgb, #7c3aed 12%, var(--surface));
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}
.bomb-slot-num {
  font-size: 9px;
  font-weight: 900;
  color: var(--t3);
}
.bomb-slot-emoji {
  font-size: 21px;
  line-height: 1;
}
.bomb-slot-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
  font-weight: 900;
  color: var(--t3);
}
.bomb-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}
.bomb-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 14px;
  border: 2px solid color-mix(in srgb, var(--tt-color, var(--brand)) 35%, transparent);
  background: var(--surface);
  cursor: pointer;
  font-family: Manrope, sans-serif;
}
.bomb-type-btn--sel {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.15);
}
.bomb-type-emoji {
  font-size: 22px;
}
.bomb-type-lbl {
  font-size: 9px;
  font-weight: 800;
}
.bomb-builder-intro,
.bomb-pick-label,
.bomb-slot-hint {
  font-size: 12px;
  color: var(--t3);
  margin: 0 0 8px;
}
.bomb-builder-hero .bomb-builder-intro {
  color: rgba(255,255,255,0.84);
  line-height: 1.45;
}
.bomb-pick-label {
  font-weight: 900;
  color: var(--text);
}
.bomb-media-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px;
  margin-bottom: 10px;
  background: var(--s2);
  border-radius: 14px;
}
.bomb-media-status {
  font-size: 12px;
  color: var(--t3);
  text-align: center;
}
.bomb-media-record-btn {
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.25);
}
.bomb-media-timer {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
}
.bomb-media-playback {
  width: 100%;
  border-radius: 12px;
}
.bomb-photo-pick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.bomb-photo-pick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 8px;
  background: var(--s2);
  border-radius: 13px;
  border: 2px dashed var(--border2);
  cursor: pointer;
  font-family: inherit;
}
.bomb-photo-pick-btn span:last-child {
  font-size: 12px;
  color: var(--t3);
  font-weight: 700;
}
.bomb-photo-preview-wrap {
  position: relative;
  margin-bottom: 10px;
}
.bomb-photo-preview {
  width: 100%;
  border-radius: 12px;
  max-height: 180px;
  object-fit: cover;
}
.bomb-photo-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
}
.bomb-video-live {
  width: 100%;
  max-height: 180px;
  border-radius: 12px;
  background: #000;
}
.bomb-gif-search-wrap {
  position: relative;
  margin-bottom: 8px;
}
.bomb-gif-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  max-height: 180px;
  overflow-y: auto;
  border-radius: 10px;
  margin-bottom: 8px;
}
.bomb-gif-hit {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid transparent;
}
.bomb-gif-hit:hover {
  border-color: var(--brand);
}
.bomb-gif-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 16px;
  color: var(--t3);
  font-size: 13px;
}
.bomb-gif-selected {
  position: relative;
  margin-bottom: 10px;
}
.bomb-gif-preview {
  width: 100%;
  border-radius: 12px;
  max-height: 180px;
  object-fit: cover;
}
.bomb-gif-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
}
.treat-type-sub {
  font-size: 9px;
  color: var(--t4);
  text-align: center;
  line-height: 1.25;
}

.treat-reaction-bar {
  margin: 16px 0 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--s2);
  border: 1px solid var(--border2);
  text-align: center;
}
.treat-reaction-lbl {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--t3);
}
.treat-reaction-emojis {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.treat-reaction-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border2);
  background: var(--surface);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}
.treat-reaction-btn--on {
  border-color: var(--brand);
  background: var(--brand-dim);
}
.treat-reaction-sent {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.asgn-treat-depleted {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.25);
}
.asgn-treat-depleted-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: #c0392b;
}
.asgn-treat-depleted-body {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--t2);
}
.asgn-treat-depleted-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.asgn-treat-depleted-btn {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: var(--surface);
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.asgn-treat-depleted-btn--pro {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.out-of-treats-sheet {
  font-family: Manrope, sans-serif;
  padding: 22px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}
.out-of-treats-ico {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}
.out-of-treats-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.out-of-treats-body {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--t2);
}
.out-of-treats-btn {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 13px 16px;
  border-radius: 14px;
  border: none;
  font-family: Manrope, sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  touch-action: manipulation;
}
.out-of-treats-btn--packs {
  background: var(--brand);
  color: #fff;
}
.out-of-treats-btn--pro {
  background: linear-gradient(135deg, #312e81 0%, #7c3aed 72%, #a855f7 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(109, 40, 217, 0.28);
}
.out-of-treats-btn--ghost {
  background: var(--s2);
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.out-of-treats-dismiss {
  display: block;
  width: 100%;
  margin: 4px 0 0;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--t3);
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* Legacy hearts row (unused in dock) */
.treat-hearts-row {
  display: none;
}

}
