.elementor-80 .elementor-element.elementor-element-d9eef60{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}body.elementor-page-80:not(.elementor-motion-effects-element-type-background), body.elementor-page-80 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFCF7;}body.elementor-page-80{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-1548b83 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:           #f0ede6;
    --white:        #ffffff;
    --pink:         #e8527a;
    --pink-checked: #fce9ee;
    --pink-track:   #f5d0da;
    --text-dark:    #2c2420;
    --text-mid:     #6b6560;
    --text-light:   #a09a95;
    --border:       #e4e0da;
    --border-hover: #ccc8c2;
    --radius:       14px;
  }

  body {
    background: var(--bg);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px 60px;
  }

  .quiz-wrap {
    width: 100%;
    max-width: 660px;
  }

  /* ── Progress ── */
  .progress-bar-wrap { margin-bottom: 40px; }
  .progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .progress-track {
    height: 5px;
    background: var(--pink-track);
    border-radius: 99px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: var(--pink);
    border-radius: 99px;
    transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
  }

  /* ── Question blocks ── */
  .question-block { display: none; }
  .question-block.active {
    display: block;
    animation: fadeIn 0.3s ease forwards;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  .question-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4.5vw, 30px);
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .question-subtitle {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 6px;
  }
  .select-all-hint {
    font-size: 13px;
    color: var(--pink);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
  }
  .question-title + .question-subtitle { margin-bottom: 24px; }
  .question-subtitle + .select-all-hint { margin-top: 2px; }

  /* ── Options ── */
  .options { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

  /* Single select – radio */
  .option-single input[type="radio"] { display: none; }
  .option-single label,
  .option-multi label {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  }
  .option-single label:hover,
  .option-multi label:hover {
    border-color: var(--border-hover);
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  }

  /* Selected single */
  .option-single input[type="radio"]:checked + label {
    border-color: var(--pink);
    background: var(--pink-checked);
  }

  /* Multi select – checkbox */
  .option-multi input[type="checkbox"] { display: none; }
  .option-multi input[type="checkbox"]:checked + label {
    border-color: var(--pink);
    background: var(--pink-checked);
  }

  /* Custom circle */
  .radio-circle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.18s, background 0.18s;
    position: relative;
  }

  /* Single – dot fill */
  .option-single input[type="radio"]:checked + label .radio-circle {
    border-color: var(--pink);
    background: var(--pink);
  }
  .option-single input[type="radio"]:checked + label .radio-circle::after {
    content: '';
    display: block;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
  }

  /* Multi – checkmark */
  .option-multi input[type="checkbox"]:checked + label .radio-circle {
    border-color: var(--pink);
    background: var(--pink);
  }
  .option-multi input[type="checkbox"]:checked + label .radio-circle::after {
    content: '';
    display: block;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
  }

  /* Option text */
  .opt-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
  }
  .opt-sub {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
  }

  /* Email input */
  .email-wrap { margin-top: 24px; }
  .email-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .text-field {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.18s;
  }
  .text-field:focus { border-color: var(--pink); }
  .text-field::placeholder { color: var(--text-light); }

  /* Error */
  .error-msg {
    display: none;
    color: var(--pink);
    font-size: 13px;
    margin-top: 10px;
  }
  .error-msg.show { display: block; }

  /* ── Navigation ── */
  .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
  }
  .btn-back {
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-mid);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    transition: color 0.18s;
  }
  .btn-back:hover { color: var(--text-dark); }
  .btn-back svg { width: 16px; height: 16px; }

  .btn-next {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 99px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, transform 0.15s, opacity 0.18s;
  }
  .btn-next:hover:not(:disabled) { background: #d44068; transform: translateY(-1px); }
  .btn-next:disabled {
    background: #d8d4ce;
    color: #a09a95;
    cursor: not-allowed;
    transform: none;
  }
  .btn-next svg { width: 16px; height: 16px; }

  /* ── Thank you ── */
  .thankyou {
    display: none;
    text-align: center;
    padding: 48px 20px;
    animation: fadeIn 0.4s ease forwards;
  }
  .thankyou.active { display: block; }
  .ty-icon {
    width: 68px;
    height: 68px;
    background: var(--pink-checked);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
  }
  .ty-icon svg { width: 32px; height: 32px; color: var(--pink); }
  .thankyou h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .thankyou p {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.65;
  }/* End custom CSS */