.elementor-22284 .elementor-element.elementor-element-07eb30e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0e3b13f */#quiz-trigger {
    position: fixed; left: 15px; bottom: 15px;
    background: #7b1e2d; color: #fff; border: none; cursor: pointer;
    padding: 13px 22px; font-size: 14px ; font-weight: 700; letter-spacing: 0.4px;
    border-radius: 999px; z-index: 9998;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(123,30,45,0.35);
  }
  #quiz-trigger:hover { background: #5e1621; transform: translateY(-2px); }

  #quiz-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); z-index: 9999; opacity: 0; transition: opacity 0.3s;
  }
  #quiz-overlay.active  { display: block; }
  #quiz-overlay.visible { opacity: 1; }

  #quiz-panel {
    position: fixed; top: 0; right: -480px;
    width: 440px; max-width: 100vw; height: 100vh;
    background: #fff; z-index: 10000; overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -6px 0 32px rgba(0,0,0,0.18);
    display: flex; flex-direction: column;
  }
  #quiz-panel.open { right: 0; }

  .panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid #ece2e4;
    position: sticky; top: 0; background: #fff; z-index: 2;
  }
  .panel-logo  { height: 44px; }
 #quiz-panel .panel-close {
    background: none; border: none; font-size: 22px; cursor: pointer;
    color: #777; line-height: 1; padding: 4px 8px; border-radius: 6px; transition: background 0.15s;
  }
  .panel-close:hover { background: #f5f5f5; color: #333; }

  .panel-body { padding: 20px; flex: 1; }

  .card {
    background: #fff; border: 1px solid #ece2e4;
    border-radius: 12px; padding: 20px; margin-bottom: 14px;
  }
  .badge {
    display: inline-block; background: #fdf7f8; color: #7b1e2d;
    padding: 4px 12px; border-radius: 999px; font-size: 10px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
  }
  #quiz-panel .q-label  { font-size: 10px !important; color: #999; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 8px; }
  #quiz-panel h1        { color: #7b1e2d; font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; font-family: Georgia, serif; }
  #quiz-panel h2        { color: #1a1a1a; font-size: 15px; font-weight: 600; line-height: 1.5; margin-bottom: 14px; }
  .subtitle { color: #555; font-size: 13px; line-height: 1.6; margin-bottom: 6px; }
  #quiz-panel .hint     { color: #999; font-size: 12px !important; font-style: italic; }

  .progress-wrap { margin-bottom: 16px; }
  .progress-meta { display: flex; justify-content: space-between; margin-bottom: 6px; }
  .progress-step { font-size: 11px; color: #999; }
  .progress-pct  { font-size: 11px; color: #7b1e2d; font-weight: 700; }
  .progress-bar  { background: #f0e8ea; border-radius: 999px; height: 4px; overflow: hidden; }
  .progress-fill { height: 100%; background: #7b1e2d; border-radius: 999px; transition: width 0.4s ease; }

  /* ── OPTION: now a <label> wrapping a hidden <input type="radio"> ── */
  .option {
    display: block; width: 100%; text-align: left;
    padding: 10px 14px; border: 1px solid #ece2e4; border-radius: 8px;
    font-size: 13px !important; line-height: 1.5; color: #333; background: #fff; font-family: Arial !important;
    cursor: pointer; margin-bottom: 8px;
    transition: border-color 0.15s, background 0.15s, transform 0.1s;
    /* labels are inline by default — force block */
    box-sizing: border-box;
  }
  .option:last-child { margin-bottom: 0; }
  .option:hover     { border-color: #7b1e2d; background: #fdf7f8; transform: translateX(3px); }
  .option.selected  { border-color: #7b1e2d; background: #fdf7f8; transform: translateX(3px); }
  .option.disabled  { cursor: not-allowed; opacity: 0.6; pointer-events: none; }
  .option strong    { color: #7b1e2d; margin-right: 4px; }

  /* Hide the radio input visually but keep it accessible */
  .option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }

  .field-group { margin-bottom: 12px; }
  .field-group label {
    display: block; font-size: 11px; color: #777; margin-bottom: 4px;
    font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  }
  .field-group input {
    width: 100%; padding: 9px 12px; border: 1px solid #ddd;
    border-radius: 7px; font-size: 13px; color: #1a1a1a;
    outline: none; transition: border-color 0.15s;
  }
  .field-group input:focus { border-color: #7b1e2d; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .btn-primary {
    display: block; width: 100%; padding: 12px;
    background: #7b1e2d; color: #fff; border: none; border-radius: 999px;
    font-size: 14px; font-weight: 700; cursor: pointer; margin-top: 6px;
    transition: background 0.15s; letter-spacing: 0.3px;
  }
  .btn-primary:hover    { background: #5e1621; }
  .btn-primary:disabled { background: #c0788a; cursor: not-allowed; }

  .btn-start {
    display: inline-block; padding: 12px 30px;
    background: #7b1e2d; color: #fff; border: none; border-radius: 999px;
    font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.15s;
  }
  .btn-start:hover { background: #5e1621; }

  .privacy    { font-size: 11px; color: #aaa; margin-top: 10px; text-align: center; }
  .form-error { color: #c0392b; font-size: 12px; margin-top: 8px; text-align: center; display: none; }

  .result-wrap        { text-align: center; padding: 16px 8px; }
  .result-icon        { font-size: 44px; margin-bottom: 10px; }
  .result-match-label { font-size: 10px; color: #aaa; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
  .result-title       { color: #7b1e2d; font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.2; font-family: Georgia, serif; }
  .result-desc        { color: #555; font-size: 13px; line-height: 1.7; margin-bottom: 20px; text-align: left; }
  .result-actions     { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

  #quiz-panel .btn-cta {
    display: inline-block; background: #7b1e2d; color: #fff;
    padding: 11px 24px; border-radius: 999px; font-size: 13px; font-weight: 700;
    text-decoration: none; border: none; cursor: pointer; transition: background 0.15s;
  }
#quiz-panel  .btn-cta:hover { background: #5e1621; }

 #quiz-panel .btn-retake {
    display: inline-block; background: transparent; color: #7b1e2d;
    padding: 11px 20px; border-radius: 999px; font-size: 13px; font-weight: 600;
    border: 1.5px solid #7b1e2d; cursor: pointer; transition: background 0.15s;
  }
 #quiz-panel .btn-retake:hover { background: #fdf7f8; }

  /* ── Test-mode data summary ── */
  .test-banner {
    background: #fff8e1; border: 1.5px dashed #f5a623;
    border-radius: 10px; padding: 14px 16px; margin-top: 16px; font-size: 12px;
  }
  .test-banner-title {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    color: #b07d00; margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
  }
  .test-banner-title span { background:#f5a623; color:#fff; border-radius:4px; padding:2px 7px; font-size:9px; }
  .test-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    border-bottom: 1px solid #fce8a0; padding: 5px 0; gap: 10px;
  }
  .test-row:last-child { border-bottom: none; }
  .test-key   { color: #999; font-weight: 600; white-space: nowrap; min-width: 110px; }
  .test-val   { color: #1a1a1a; font-weight: 500; text-align: right; word-break: break-all; }
  .test-val.match { color: #7b1e2d; font-weight: 700; }
  .test-note  { color: #b07d00; font-size: 11px; margin-top: 10px; line-height: 1.5; }

  .hidden  { display: none !important; }
  .fade-in { animation: fadeUp 0.25s ease both; }
  @keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

  @media (max-width: 480px) {
    #quiz-panel { width: 100vw; }
    .field-row  { grid-template-columns: 1fr; }
  }/* End custom CSS */