*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #101113;
  --card:     #1a1c20;
  --card2:    #24272d;
  --red:      #E63946;
  --red-dark: #c1121f;
  --green:    #2dc653;
  --gray:     #8b9099;
  --gray-dk:  #333;
  --white:    #f5f7fb;
  --muted:    #b6bcc8;
  --border:   rgba(255,255,255,.09);
  --nav-h:    82px;
  --header-h: 68px;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --shadow: 0 14px 38px rgba(0,0,0,.28);
  --soft-red: rgba(230,57,70,.13);
}

body {
  background:
    radial-gradient(circle at 20% -10%, rgba(230,57,70,.18), transparent 34%),
    linear-gradient(180deg, #15171b 0%, var(--bg) 42%, #0b0c0e 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3,
.logo-title,
.section-title,
.study-title,
.prod-name,
.program-name,
.service-name,
.result-service-name,
.summary-number {
  font-family: var(--font-title);
}

/*  HEADER  */
header {
  height: var(--header-h);
  background: rgba(13,14,17,.84);
  border-bottom: 1px solid rgba(230,57,70,.35);
  padding: 0 18px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.logo { display: flex; align-items: center; gap: 12px; }

.logo-badge {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(230,57,70,.28);
}

.logo-title { font-size: 17px; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -.02em; }
.logo-sub   { font-size: 11px; color: var(--muted); margin-top: 5px; font-weight: 700; }

/*  MAIN  */
main {
  padding: 18px 14px;
  padding-bottom: 112px;
  max-width: 520px;
  margin: 0 auto;
}

.tab-section         { display: none; }
.tab-section.active  { display: block; }

/* APP MENU */
.app-menu-shell {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  z-index: 160;
  pointer-events: none;
}

.menu-trigger {
  pointer-events: auto;
  min-width: 178px;
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34,37,43,.96), rgba(18,19,23,.96));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 18px 42px rgba(0,0,0,.42), 0 0 0 6px rgba(255,255,255,.03);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-trigger-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: grid;
  grid-template-columns: repeat(2, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 5px;
  place-content: center;
  box-shadow: 0 10px 18px rgba(230,57,70,.28);
}
.menu-trigger-icon span { width: 6px; height: 6px; border-radius: 2px; background: #fff; opacity: .95; }
.menu-trigger-text { font-size: 14px; letter-spacing: -.01em; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 170;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  backdrop-filter: blur(3px);
}
.nav-backdrop.show { opacity: 1; pointer-events: auto; }

.app-menu {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 180;
  background: linear-gradient(180deg, #202329, #15171b);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 10px 12px 14px;
  box-shadow: 0 28px 80px rgba(0,0,0,.56);
  transform: translateY(calc(100% + 28px));
  transition: transform .24s ease;
  max-width: 520px;
  margin: 0 auto;
}
.app-menu.open { transform: translateY(0); }

.menu-handle {
  width: 44px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
  margin: 2px auto 12px;
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 2px 12px;
}
.menu-kicker { color: var(--red); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.menu-title { color: var(--white); font-family: var(--font-title); font-size: 20px; font-weight: 800; margin-top: 2px; }
.menu-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.nav-btn {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s, background .15s, border-color .15s, color .15s;
  padding: 10px 6px;
  letter-spacing: 0;
}
.nav-btn svg { width: 21px; height: 21px; }
.nav-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(230,57,70,.28), rgba(193,18,31,.18));
  border-color: rgba(230,57,70,.55);
}
.nav-btn:active { transform: scale(.96); }

/*  SECTION HEADER  */
.section-header {
  margin-bottom: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 14px;
}
.section-title  { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -.03em; }
.section-desc   { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.55; font-weight: 600; }

.study-hero {
  background:
    linear-gradient(135deg, rgba(230,57,70,.2), rgba(255,255,255,.04)),
    #1d2026;
  border: 1px solid rgba(230,57,70,.38);
  border-radius: 22px;
  padding: 24px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.study-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.study-hero h1 {
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -.05em;
  margin-bottom: 10px;
}

.study-hero p {
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.study-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.study-summary > div {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 8px;
  min-height: 62px;
}

.summary-number {
  display: block;
  color: var(--white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.summary-label {
  display: block;
  color: #9a9a9a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 6px;
}

.study-section-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 18px 0 10px;
  font-family: var(--font-title);
}

.study-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.study-head {
  width: 100%;
  min-height: 58px;
  background: none;
  border: none;
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
}

.study-tag {
  color: var(--red);
  background: rgba(230,57,70,.13);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.study-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.study-chevron {
  color: var(--gray);
  transition: transform .2s;
}
.study-card.open .study-chevron { transform: rotate(180deg); }

.study-body {
  display: none;
  border-top: 1px solid var(--border);
  padding: 13px 14px 14px;
}
.study-card.open .study-body { display: block; }

.study-body p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  margin-bottom: 10px;
}

.study-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.study-body li {
  position: relative;
  color: #b8b8b8;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  padding-left: 16px;
}
.study-body li::before { content: '>'; position: absolute; left: 0; color: var(--red); }

.map-card,
.check-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.map-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.map-row:last-child { border-bottom: none; }
.map-row span { color: var(--gray); font-size: 12px; line-height: 1.35; }
.map-row strong { color: var(--white); font-size: 14px; line-height: 1.25; }

.check-row {
  min-height: 50px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.check-row:last-child { border-bottom: none; }
.check-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}
.check-row span {
  color: var(--white);
  font-size: 13px;
  line-height: 1.4;
}

/*  SEGMENT GRID  */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.segment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
  user-select: none;
}
.segment-card:active   { transform: scale(.94); }
.segment-card.selected {
  border-color: var(--red);
  background: rgba(230, 57, 70, .12);
}

.segment-icon { font-size: 26px; line-height: 1; }
.segment-name { font-size: 11px; font-weight: 600; color: var(--white); line-height: 1.3; }

/*  DIAGNOSIS RESULT  */
.diagnosis-result {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  animation: fadeUp .22s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }

.result-header {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 14px 16px;
}

.result-segment-label { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.result-service-name  { font-size: 18px; font-weight: 800; margin-top: 3px; }

.result-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 14px; }

.rec-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.rec-block.essential {
  border-color: rgba(230,57,70,.55);
  background: rgba(230,57,70,.09);
}

.rec-block.recommended {
  border-color: rgba(45,198,83,.35);
  background: rgba(45,198,83,.07);
}

.rec-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.essential-badge { background: rgba(230,57,70,.18); color: var(--red); }
.recommended-badge { background: rgba(45,198,83,.14); color: var(--green); }

.rec-service-name {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.oneday-badge {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding: 3px 6px;
  border-radius: 4px;
}

.rec-reason {
  font-size: 13px;
  line-height: 1.55;
  color: var(--white);
}

.result-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0;
  margin-bottom: 6px;
}

.result-text {
  font-size: 13px;
  color: var(--white);
  line-height: 1.55;
}

.result-gray { color: var(--gray) !important; }

.copy-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  padding-right: 72px;
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.copy-btn:hover  { color: var(--white); border-color: var(--gray); }
.copy-btn.copied { color: var(--green); border-color: var(--green); }

/*  SERVICE CARDS  */
.service-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 10px;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.service-icon { font-size: 22px; flex-shrink: 0; }

.service-name-wrap { flex: 1; min-width: 0; }
.service-name      { font-size: 14px; font-weight: 700; }

.priority-badge {
  display: inline-block;
  background: rgba(230,57,70,.15);
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 2px 7px;
  border-radius: 4px;
  margin-top: 3px;
}

.chevron {
  color: var(--gray);
  transition: transform .2s;
  flex-shrink: 0;
}
.service-card.open .chevron { transform: rotate(180deg); }

.service-body {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
}
.service-card.open .service-body { display: block; }

.svc-section        { margin-top: 13px; }
.svc-label          { font-size: 12px; font-weight: 800; color: var(--red); letter-spacing: 0; margin-bottom: 5px; }
.svc-text           { font-size: 13px; color: var(--white); line-height: 1.55; }
.svc-text-gray      { color: var(--gray); }

.need-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 13px;
}

.need-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
}

.need-card.strong {
  border-color: rgba(230,57,70,.5);
  background: rgba(230,57,70,.08);
}

.need-title {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.need-text {
  color: var(--white);
  font-size: 12px;
  line-height: 1.55;
}

.signal-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.signal-list li,
.help-list li {
  font-size: 12px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.signal-list li::before,
.help-list li::before { content: '>'; position: absolute; left: 0; color: var(--red); }

.help-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.program-rule {
  background: rgba(230,57,70,.1);
  border: 1px solid rgba(230,57,70,.35);
  border-radius: 10px;
  padding: 13px 14px;
  margin-bottom: 12px;
}

.program-rule-title {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.program-rule-text {
  color: var(--white);
  font-size: 13px;
  line-height: 1.55;
}

.program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
}

.program-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.program-icon {
  min-width: 42px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,57,70,.14);
  border: 1px solid rgba(230,57,70,.25);
  border-radius: 6px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .4px;
}

.program-name-wrap { flex: 1; min-width: 0; }
.program-name { color: var(--white); font-size: 14px; font-weight: 800; line-height: 1.25; }
.program-promise { color: var(--gray); font-size: 11px; line-height: 1.35; margin-top: 3px; }

.program-body {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
}
.program-card.open .program-body { display: block; }
.program-card.open .chevron { transform: rotate(180deg); }

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  counter-reset: flow;
}

.flow-list span {
  counter-increment: flow;
  position: relative;
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.35;
  padding: 9px 10px 9px 34px;
}

.flow-list span::before {
  content: counter(flow);
  position: absolute;
  left: 9px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
}

/*  QUESTIONS  */
.q-category       { margin-bottom: 22px; }
.q-category-title { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }

.q-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.q-text   { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.45; margin-bottom: 10px; }
.q-listen-label { font-size: 10px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.q-listen {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  border-left: 2px solid var(--border);
  padding-left: 10px;
}

/*  SCRIPTS  */
.script-category        { margin-bottom: 24px; }
.script-category-title  { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }

.script-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
  position: relative;
}

.script-title   { font-size: 11px; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.script-message {
  font-size: 13px;
  color: var(--white);
  line-height: 1.65;
  white-space: pre-wrap;
  padding-right: 44px;
}

.script-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
}
.script-copy-btn:hover  { color: var(--white); }
.script-copy-btn.copied { color: var(--green); border-color: var(--green); }

/*  OBJECTIONS  */
.obj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 8px;
}

.obj-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.obj-text { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.35; }

.obj-chevron { color: var(--gray); transition: transform .2s; flex-shrink: 0; }
.obj-card.open .obj-chevron { transform: rotate(180deg); }

.obj-body  { display: none; padding: 0 16px 14px; border-top: 1px solid var(--border); }
.obj-card.open .obj-body { display: block; }

.obj-resp-label { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .5px; margin: 12px 0 6px; }
.obj-resp       { font-size: 13px; color: var(--white); line-height: 1.65; }

/* PRODUTOS */
.prod-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-wrap: wrap;
}
.prod-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray);
  font-weight: 600;
}
.prod-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-what    { background: #3b82f6; }
.dot-deliver { background: #10b981; }
.dot-who     { background: #f59e0b; }

.prod-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
}

.prod-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--pbg);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.prod-emoji { font-size: 34px; line-height: 1; flex-shrink: 0; }

.prod-name    { font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.2; }
.prod-tagline { font-size: 12px; color: var(--pcolor); margin-top: 4px; line-height: 1.35; font-weight: 600; }

.prod-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prod-block-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 6px;
}
.prod-block-text { font-size: 14px; color: #f4f4f4; line-height: 1.6; font-weight: 500; }

.prod-deliver-row  { display: flex; flex-direction: column; gap: 6px; }
.prod-deliver-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  width: fit-content;
}
.prod-deliver-detail { font-size: 12px; color: var(--gray); line-height: 1.5; }

.prod-who-list { display: flex; flex-direction: column; gap: 8px; }
.prod-who-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.prod-who-label  { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.prod-who-reason { font-size: 12px; color: var(--gray); line-height: 1.45; }

/*  TOAST  */
.toast {
  position: fixed;
  bottom: 92px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--card2);
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  opacity: 0;
  transition: all .22s;
  z-index: 300;
  white-space: nowrap;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
