/* Reset and Variables */
:root {
  --red: #D9043D;
  --navy: #0E2B5C;
  --yellow: #FDB515;
  --bg: #f4f6fb;
  --white: #ffffff;
  --border: #e4e8f0;
  --muted: #8892a4;
  --text: #1a2333;
  --r: 12px;
}

.quiz-subtext {
  font-size: 13px;
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 16px;
  font-weight: 600;
}

.nav-next-btn {
  border-radius: 12px;
  font-weight: 700;
  background: var(--red);
  border: none;
}

.result-score-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}

.result-score-main #qr-score-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}

.result-score-main span:last-child {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 800;
  margin-left: 2px;
}

.result-score-label {
  font-size: 9px;
  color: #4b5563;
  font-weight: 700;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.risk-details-box {
  margin-top: 10px;
  text-align: left;
  background: rgba(14, 43, 92, 0.025);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: none;
}

.risk-details-title {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 12.5px;
}

.risk-details-box ul {
  margin: 0;
  padding-left: 16px;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}

.prod-match-label {
  background: rgba(14, 43, 92, 0.08);
  color: var(--navy);
  border: none;
}

#qr-prod-extra {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(253, 181, 21, 0.06);
  border-left: 4.5px solid var(--yellow);
  border-radius: 8px;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
  font-weight: 500;
  display: none;
}

.quiz-product-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quiz-product-result-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}

.quiz-product-result-card:hover {
  border-color: rgba(217, 4, 61, .35);
  box-shadow: 0 8px 20px rgba(14, 43, 92, .08);
  color: var(--text);
  transform: translateY(-1px);
}

.quiz-product-result-image {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: rgba(14, 43, 92, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.quiz-product-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quiz-product-result-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.quiz-product-result-body strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.quiz-product-result-body small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.quiz-product-result-body em {
  color: var(--red);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 800;
}

.quiz-product-result-extra {
  margin-top: 4px;
  color: #475569;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
}

.quiz-lead-pop .quiz-lead-desc {
  font-size: 13.5px;
  color: #667085;
  line-height: 1.6;
  margin: 0 0 16px;
}

.quiz-lead-benefits {
  background: rgba(217, 4, 61, 0.05);
  border-left: 3.5px solid var(--red);
  padding: 12px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--navy);
  text-align: left;
  font-weight: 500;
}

.quiz-lead-benefits-title {
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--red);
}

.quiz-lead-benefits ul {
  margin: 0;
  padding-left: 20px;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quiz-lead-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.quiz-lead-fields label {
  display: block;
  font-size: 13px !important;
  font-weight: 700;
  color: #374151;
  line-height: 1.35;
}

.quiz-lead-fields label span {
  color: var(--red);
  display: inline;
  margin-left: 2px;
}

.quiz-lead-fields label small {
  color: #9ca3af;
  display: inline;
  font-weight: 400;
  margin-left: 4px;
}

.quiz-lead-fields input,
.quiz-lead-fields textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  padding: 12px 14px !important;
  border: 1.5px solid #e4e8f0;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-family: inherit;
  outline: none;
}

.quiz-lead-fields input:focus,
.quiz-lead-fields textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 4, 61, .12);
}

.quiz-redirect-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  text-align: center;
}

.quiz-redirect-body {
  margin-bottom: 16px;
}

.quiz-redirect-note {
  color: #8892a4;
  font-size: 13px;
  line-height: 1.45;
}

.swal-pop .swal2-title {
  color: var(--navy) !important;
  font-size: 1.55rem !important;
  line-height: 1.25 !important;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
  /* NGĂN SCROLL TRANG */
  font-family: 'Be Vietnam Pro', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── PAGE LAYOUT ── */
.navicare-quiz-page {
  min-height: calc(100vh - 76px);
  /* margin-top: 76px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: var(--bg);
}

.quiz-shell {
  width: 100%;
  max-width: 860px;
  max-height: none;
  overflow-y: auto;
  /* Cuộn trong nếu màn hình quá thấp (landscape mobile) */
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quiz-shell::-webkit-scrollbar {
  display: none;
}

/* Override navbar để nền trắng và nổi hơn */
.navbar.bg-transparent {
  background-color: #fff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

/* ── INTRO HEADER ── */
.quiz-intro {
  text-align: center;
  margin-bottom: 16px;
}

.quiz-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(217, 4, 61, .08);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.quiz-intro-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}

.quiz-intro-desc {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 680px;
  margin: 16px auto 0 !important;
  text-align: left;
  font-weight: 500;
}

/* SweetAlert2 Styles Override */
.swal2-popup {
  font-size: 13px !important;
  padding: 20px 24px !important;
  border-radius: 16px !important;
  font-family: 'Be Vietnam Pro', -apple-system, sans-serif !important;
}

.swal2-title {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  margin-top: 8px !important;
}

.swal2-html-container {
  font-size: 12.5px !important;
  line-height: 1.5 !important;
  color: #4b5563 !important;
  margin: 10px 0 0 0 !important;
}

.swal2-icon {
  transform: scale(0.7) !important;
  margin: 10px auto 0 !important;
}

.swal2-popup input,
.swal2-popup textarea,
.swal2-popup select {
  font-size: 13.5px !important;
  padding: 10px 12px !important;
  border-radius: 8px !important;
}

.swal2-popup label {
  font-size: 12px !important;
  margin-bottom: 4px !important;
}

.swal-ok-btn {
  font-size: 13px !important;
  padding: 11px 16px !important;
  border-radius: 10px !important;
}

div#swal2-validation-message {
  margin: 10px 0 0 0 !important;
  padding: 8px 12px !important;
  font-size: 11px !important;
  border-radius: 6px !important;
}

/* ===== Premium Toast Notification ===== */
.swal2-container.swal2-top-end .swal2-toast,
.swal2-container.swal2-top-right .swal2-toast {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  height: auto !important;
  max-height: 80px !important;
  overflow: hidden !important;
}

.swal2-toast {
  background: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  border-left: 4px solid #D9043D !important;
  box-shadow: 0 8px 24px rgba(14, 43, 92, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  padding: 12px 16px 12px 14px !important;
  gap: 10px !important;
  width: auto !important;
  max-width: 320px !important;
  height: auto !important;
  min-height: unset !important;
  flex-direction: row !important;
  align-items: center !important;
  display: flex !important;
}

.swal2-toast .swal2-title {
  color: #0E2B5C !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  text-align: left !important;
  flex: 1 !important;
}

.swal2-toast .swal2-icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  min-height: 26px !important;
  max-width: 26px !important;
  max-height: 26px !important;
  transform: none !important;
  margin: 0 !important;
  border-width: 2px !important;
  flex-shrink: 0 !important;
  order: -1 !important;
}

.swal2-toast .swal2-icon.swal2-success {
  border-color: #22c55e !important;
  background-color: rgba(34, 197, 94, 0.08) !important;
}

.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(34, 197, 94, 0.25) !important;
  width: 26px !important;
  height: 26px !important;
}

.swal2-toast .swal2-icon.swal2-success [class^='swal2-success-line'] {
  background-color: #22c55e !important;
}

.swal2-toast .swal2-html-container,
.swal2-toast .swal2-actions,
.swal2-toast .swal2-footer {
  display: none !important;
}

.swal2-toast .swal2-timer-progress-bar-container {
  position: absolute !important;
  bottom: 0 !important;
  left: 4px !important;
  right: 0 !important;
  height: 3px !important;
}

.swal2-toast .swal2-timer-progress-bar {
  background: rgba(217, 4, 61, 0.4) !important;
  border-radius: 0 0 12px 0 !important;
  height: 3px !important;
}

@media (min-width: 480px) {
  .quiz-intro-title {
    font-size: 2rem;
  }
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}

/* ── PROGRESS ── */
.prog-wrap {
  margin-bottom: 16px;
}

.prog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.prog-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.prog-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}

.prog-bar {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, #ff6b6b 100%);
  border-radius: 99px;
  transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

/* ── STEP ── */
.quiz-step {
  display: block;
  animation: slideIn .3s ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(217, 4, 61, .08);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.quiz-question {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 16px;
}

@media (min-width: 480px) {
  .quiz-question {
    font-size: 1.6rem;
  }
}

/* ── OPTIONS ── */
.opts-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
  overflow-y: visible;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 43, 92, 0.15) transparent;
}

.opts-list::-webkit-scrollbar {
  width: 6px;
}

.opts-list::-webkit-scrollbar-track {
  background: transparent;
}

.opts-list::-webkit-scrollbar-thumb {
  background: rgba(14, 43, 92, 0.15);
  border-radius: 99px;
}

.opts-list::-webkit-scrollbar-thumb:hover {
  background: rgba(14, 43, 92, 0.3);
}

.opt-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r);
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  min-height: 56px;
  transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
}

.opt-btn:hover {
  border-color: rgba(217, 4, 61, .5);
  background: rgba(217, 4, 61, .03);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 4, 61, .08);
}

.opt-btn:active {
  transform: scale(.98);
}

.opt-btn.selected {
  border-color: var(--red);
  background: rgba(217, 4, 61, .05);
}

.opt-btn.selected .opt-ico {
  transform: scale(1.15);
}

.opt-ico {
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}

.opt-text {
  flex: 1;
}

/* ── NAV ── */
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2px;
}

.nav-back {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.nav-back:hover {
  color: var(--red);
}

.nav-hint {
  font-size: 11px;
  color: var(--muted);
}

/* ── RESULT ── */
.result-wrap {
  display: none;
  animation: slideIn .4s ease both;
}

.result-wrap.on {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── RISK RESULT: two-column layout ── */
.result-top-row {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #fff;
  border-radius: 24px;
  padding: 36px 44px;
  border: 1.5px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-score-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.result-info-col {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.result-header {
  text-align: center;
  margin-bottom: 0;
}

.result-emoji {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 0;
  line-height: 1.2;
}

.result-risk {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 0;
}

.risk-low {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #065f46 !important;
  border: 1.5px solid rgba(16, 185, 129, 0.2) !important;
}

.risk-medium {
  background: rgba(245, 158, 11, 0.08) !important;
  color: #92400e !important;
  border: 1.5px solid rgba(245, 158, 11, 0.2) !important;
}

.risk-high {
  background: rgba(217, 4, 61, 0.06) !important;
  color: #991b1b !important;
  border: 1.5px solid rgba(217, 4, 61, 0.18) !important;
}

.result-score-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 140px !important;
  height: 140px !important;
  flex-direction: column;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  margin: 0;
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.result-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.result-desc {
  font-size: 16.5px;
  color: #1a2333;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Compact CTA card: horizontal layout */
.result-cta-inline {
  background: linear-gradient(135deg, rgba(14, 43, 92, 0.03) 0%, rgba(217, 4, 61, 0.02) 100%);
  border: 2px dashed var(--navy);
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.result-cta-inline-text h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.result-cta-inline-text p {
  font-size: 15px;
  color: #4b5563;
  font-weight: 500;
  margin: 0;
  line-height: 1.45;
}

.btn-cta-compact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red) 0%, #ff4757 100%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(217, 4, 61, 0.25);
  text-decoration: none;
  animation: pulse 2.5s infinite;
}

.btn-cta-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 4, 61, 0.35);
  color: #fff;
}

/* Compact disclaimer note */
.result-note-mini {
  font-size: 14px;
  line-height: 1.6;
  padding: 16px 22px;
  background: rgba(14, 43, 92, 0.035);
  border-left: 5px solid var(--red);
  border-radius: 0 16px 16px 0;
  color: #374151;
  font-weight: 500;
}

.result-note-mini strong {
  color: var(--navy);
}

/* ── DEVICE RESULT COMPACT ── */
.product-match-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 26px 20px 18px;
  margin: 8px 0;
  box-shadow: 0 8px 24px rgba(217, 4, 61, 0.12);
  text-align: left;
}

.match-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(217, 4, 61, 0.3);
}

.prod-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
  text-align: left;
}

.prod-sub {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}

.prod-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prod-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.prod-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

.prod-features .fc {
  display: none;
}

.result-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 0;
  text-align: center;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
}

.btn-cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--red) 0%, #ff4757 100%);
  color: #fff;
  border-radius: 12px;
  padding: 13px 20px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(217, 4, 61, 0.25);
  animation: pulse 2.5s infinite;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 4, 61, 0.35);
  color: #fff;
}

.cta-icon {
  font-size: 24px;
  animation: wiggle 2.5s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  10% {
    transform: rotate(0);
  }

  15% {
    transform: rotate(-15deg);
  }

  20% {
    transform: rotate(10deg);
  }

  25% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  40%,
  100% {
    transform: rotate(0);
  }
}

.cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-text strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.cta-text span {
  font-size: 11px;
  opacity: 0.95;
  font-weight: 500;
}

.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--navy);
  border: 2px solid rgba(14, 43, 92, 0.15);
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.btn-cta-secondary:hover {
  background: rgba(14, 43, 92, 0.03);
  border-color: var(--navy);
  color: var(--navy);
}

.btn-restart {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 8px;
  margin-top: 10px;
  transition: color 0.2s;
}

.btn-restart:hover {
  color: var(--red);
}

/* Option Multi Checkbox Icon */
.opt-chk {
  width: 22px;
  height: 22px;
  border: 2.5px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.opt-btn.selected .opt-chk {
  background: var(--red);
  border-color: var(--red);
}

.opt-btn.selected .opt-chk::after {
  content: '✓';
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
