/** Shopify CDN: Minification failed

Line 1852:53 Unexpected ";"
Line 1917:30 Expected ":"

**/
/* ============================
   XO QUIZ SHELL (Intro + Header)
   File: assets/xo-quiz.css
   ============================ */

/* Shell variables come from the section inline style:
   --bg, --text, --muted, --accent
   --progress-text, --progress-track, --progress-fill
   --card, --border, --card-radius
   --btn-bg, --btn-text, --btn-radius
   --font, --title-size, --subtitle-size
*/

.xo-quiz-shell{
  min-height: 100vh;
  background: var(--bg, #fbfaf7);
  color: var(--text, #2b2b2b);
  font-family: var(--font, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial);
}

/* Header */
.xo-quiz-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.xo-quiz-header__left{
  display: flex;
  align-items: center;
  gap: 14px;
}

.xo-quiz-header__right{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Back button */
.xo-quiz-back{
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  color: var(--text, #2b2b2b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.xo-quiz-back-icon{
  display: block;
}

/* Logo */
.xo-quiz-logo-wordmark{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text, #2b2b2b);
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1;
}

.xo-quiz-logo-plus{
  color: var(--accent, #7c5cff);
}

.xo-quiz-logo-image{
  height: 26px;
  width: auto;
  display: block;
}

/* Progress */
.xo-quiz-progress-percent{
  font-size: 14px;
  color: var(--progress-text, var(--muted, rgba(43,43,43,.7)));
}

.xo-quiz-progress-bar{
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: var(--progress-track, rgba(0,0,0,.08));
  overflow: hidden;
}

.xo-quiz-progress-bar__fill{
  height: 100%;
  width: 4%;
  background: var(--progress-fill, var(--accent, #7c5cff));
  border-radius: 999px;
}

/* Main */
.xo-quiz-main{
  padding: 24px 16px 48px;
}

/* Intro layout */
.xo-quiz-intro{
  max-width: 920px;
  margin: 0 auto;
}

.xo-quiz-intro__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 40px 0 10px;
}

/* Prescriber row */
.xo-quiz-intro__prescriber{
  display: flex;
  align-items: center;
  gap: 12px;
}

.xo-quiz-intro__avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  flex: 0 0 auto;
}

.xo-quiz-intro__avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.xo-quiz-intro__prescriber-text{
  text-align: left;
}

.xo-quiz-intro__prescriber-text h3{
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--prescriber-name-color, var(--text, #2b2b2b));
  font-size: var(--prescriber-name-mobile, 15px);
}

.xo-quiz-intro__prescriber-text p{
  margin: 0;
  line-height: 1.2;
  color: var(--prescriber-role-color, var(--muted, rgba(43,43,43,.7)));
  font-size: var(--prescriber-role-mobile, 13px);
}

/* Title + subtitle */
.xo-quiz-intro__title{
  margin: 14px 0 0;
  line-height: 1.1;
  font-weight: 900;
  color: var(--intro-title-color, var(--text, #2b2b2b));
  font-size: var(--intro-title-mobile, 30px);
}

.xo-quiz-intro__subtitle{
  margin: 0;
  max-width: 680px;
  line-height: 1.6;
  color: var(--intro-subtitle-color, var(--muted, rgba(43,43,43,.7)));
  font-size: var(--intro-subtitle-mobile, 14px);
}

/* Consent card */
.xo-quiz-intro__consent-card{
  width: min(720px, 100%);
  background: var(--card, #fff);
  border: 1px solid var(--border, rgba(43,43,43,.12));
  border-radius: var(--card-radius, 16px);
  padding: 18px;
  display: flex;
  gap: 14px;
  text-align: left;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.xo-quiz-intro__consent-icon{
  color: var(--accent, #7c5cff);
  flex: 0 0 auto;
  margin-top: 2px;
}

.xo-quiz-intro__consent-text{
  color: var(--consent-text-color, var(--muted, rgba(43,43,43,.7)));
  font-size: var(--consent-text-mobile, 13px);
  line-height: 1.6;
}

.xo-quiz-intro__consent-text p{
  margin: 0;
}

.xo-quiz-intro__consent-text a{
  color: var(--text, #2b2b2b);
  text-decoration: underline;
}

/* Button row */
.xo-quiz-intro__button{
  width: min(720px, 100%);
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.xo-quiz-button {
    border: 0;
    border-radius: var(--btn-radius, 20px);
    padding: 14px 20px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    line-height: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid black;
}

.xo-quiz-button__icon{
  display: block;
}

/* If you want slightly better contrast when using image backgrounds */
.xo-quiz-button[data-has-btn-image="true"]{
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

/* Basic responsive tweaks */
@media (max-width: 640px){
  .xo-quiz-header{
    padding: 14px 14px;
  }

  .xo-quiz-progress-bar{
    width: 96px;
  }

  .xo-quiz-intro__inner{
    padding-top: 24px;
  }

  .xo-quiz-intro__consent-card{
    padding: 14px;
  }

  .xo-quiz-intro__button{
    justify-content: center;
  }
}

@media (min-width: 768px){
  .xo-quiz-intro__prescriber-text h3{
    font-size: var(--prescriber-name-tablet, 15px);
  }
  .xo-quiz-intro__prescriber-text p{
    font-size: var(--prescriber-role-tablet, 13px);
  }
}

@media (min-width: 1024px){
  .xo-quiz-intro__prescriber-text h3{
    font-size: var(--prescriber-name-desktop, 15px);
  }
  .xo-quiz-intro__prescriber-text p{
    font-size: var(--prescriber-role-desktop, 13px);
  }
}
@media (min-width: 768px){
  .xo-quiz-intro__title{
    font-size: var(--intro-title-tablet, 38px);
  }
}
@media (min-width: 1024px){
  .xo-quiz-intro__title{
    font-size: var(--intro-title-desktop, 44px);
  }
}
@media (min-width: 768px){
  .xo-quiz-intro__subtitle{
    font-size: var(--intro-subtitle-tablet, 15px);
  }
}
@media (min-width: 1024px){
  .xo-quiz-intro__subtitle{
    font-size: var(--intro-subtitle-desktop, 16px);
  }
}
@media (min-width: 768px){
  .xo-quiz-intro__consent-text{
    font-size: var(--consent-text-tablet, 14px);
  }
}
@media (min-width: 1024px){
  .xo-quiz-intro__consent-text{
    font-size: var(--consent-text-desktop, 14px);
  }
}


/* ===== Quiz step inputs (Height/Weight step) ===== */

.quiz-step{
  max-width: 920px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

.quiz-step h2{
  text-align: center;
  margin: 18px 0 18px;
  font-weight: 900;
}

/* Toggle */
.quiz-toggle{
  display:flex;
  justify-content:center;
  margin: 0 0 22px;
}

.quiz-toggle__option{
  border: 1px solid var(--border, rgba(43,43,43,.18));
  background: #fff;
  color: var(--text, #2b2b2b);
  padding: 10px 18px;
  cursor:pointer;
  font-weight: 700;
}

.quiz-toggle__option:first-child{
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.quiz-toggle__option:last-child{
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  margin-left: -1px;
}

.quiz-toggle__option--active{
  background: #3b3b3f;
  color: #fff;
  border-color: #3b3b3f;
}

/* Fields */
.quiz-hw-fields{
  max-width: 540px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.quiz-input-row{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.quiz-input-label{
  font-weight: 800;
  color:  #2b2b2b;
  font-size: 13px;
}

.quiz-input-row--two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-input-wrap{
  position: relative;
  background: #fff;
  border: 1px solid rgba(43,43,43,.18));
  border-radius: 4px;
  overflow:hidden;
}

.quiz-input{
  width: 100%;
  border: 0;
  outline: 0;
  padding: 10px 44px 10px 12px;
  font-size: 14px;
  background: transparent;
}

.quiz-input-unit{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(43,43,43,.55);
  font-weight: 700;
  font-size: 13px;
}

/* ERROR state: red border + light red background (matches screenshot) */
.quiz-input-wrap.quiz-input-error{
  border-color: #e23b3b;
  background: #fff3f3;
}

.quiz-input-wrap.quiz-input-error .quiz-input-unit{
  color: #e23b3b;
}

/* Error card shown for invalid ranges (your validateHeightWeight message box) */
.quiz-hw-error{
  max-width: 540px;
  margin: 16px auto 0;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(226,59,59,.35);
  background: #fff3f3;
  color: #8b1d1d;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.quiz-hw-error__icon{
  color: #e23b3b;
  flex: 0 0 auto;
  margin-top: 1px;
}

.quiz-hw-error__text{
  font-size: 14px;
  line-height: 1.45;
}

/* Why we ask card */
.quiz-info-card{
  max-width: 540px;
  margin: 18px auto 0;
  padding: 16px 16px;
  border-radius: var(--card-radius, 16px);
  border: 1px solid rgba(43,43,43,.18));
  background: #ffffff;
  color: rgba(43,43,43,.7);
}

.quiz-info-card strong{
  display:block;
  margin-bottom: 8px;
  color: var(--text, #2b2b2b);
}

.quiz-info-card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

/* Continue button on steps should match your intro button */
.quiz-step .xo-quiz-button{
  width: min(720px, 100%);
  justify-content: center;
  padding: 18px 22px;
  font-size: 16px;
}

/* HARD FIX: theme hiding button text (use customizer colors) */
.quiz-step .xo-quiz-button{
  font-size: 16px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  
}

.quiz-step .xo-quiz-button span{
  display: inline !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  color: #ffffff !important;
  -webkit-text-fill-color:  #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.quiz-step .xo-quiz-button svg{
  display: inline-block !important;
  color: #ffffff !important;
}


/* ============================
   Step slide animation
   ============================ */
[data-quiz-root]{
  overflow: hidden;
}

.quiz-slide{
  transform: translateX(18px);
  opacity: 0;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), opacity 360ms cubic-bezier(.2,.8,.2,1);
}

.quiz-slide--enter-active{
  transform: translateX(0);
  opacity: 1;
}

/* ============================
   Journey step UI
   ============================ */
.journey{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.journey__title{
  margin: 18px 0 16px;
  font-weight: 900;
  font-size: 26px;
  color: var(--text, #2b2b2b);
}

.journey__metrics{
  display:flex;
  justify-content:center;
  gap: 28px;
  margin-bottom: 18px;
}

.journey__metricLabel{
  font-size: 12px;
  color: rgba(43,43,43,.7);
  margin-bottom: 4px;
}

.journey__metricValue{
  font-weight: 900;
  font-size: 22px;
  color: var(--text, #2b2b2b);
}

.journey__metricValue--accent{
  color: #380F5D;
}

.journey__card{
  background: #fff;
  border: 1px solid var(--border, rgba(43,43,43,.12));
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  padding: 16px;
}

.journey__cardTop,
.journey__cardBottom{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 2px;
}

.journey__smallLabel{
  font-size: 12px;
  color: rgba(43,43,43,.7);
}

.journey__bigValue{
  font-size: 22px;
  font-weight: 900;
  color:  #2b2b2b;
}

.journey__graphWrap{
  position: relative;
  margin: 12px 0;
  border-radius: 14px;
  overflow: hidden;
}

.journey__svg{
  width: 100%;
  height: 220px;      /* bigger like image 2 */
  display:block;
}


.journey__marker{
  position:absolute;
  right: 34px;
  top: 32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 6px;
  transition: opacity 250ms ease;
}

.journey__lossPill{
  background: #fbf9f3;
  border: 1px solid #e5ded0;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  color: #111;
}

.journey__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #111;
  border: 2px solid #fff;
}

.journey__line{
  width: 1px;
  height: 24px;
  border-left: 1px dashed #9ca3af;
}

.journey__footnote{
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(43,43,43,.7);
}

/* Choice options */
.quiz-reasons-options{
  max-width: 540px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.quiz-reasons-option{
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--border, rgba(43,43,43,.18));
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  color:  #2b2b2b;
}

.quiz-reasons-option.is-selected{
  border-color:  #7c5cff;
  box-shadow: 0 0 0 3px rgba(168,144,254,.25);
}

/* ============================
   Info step (Feel better card)
   ============================ */
.feel{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.feel__title{
  margin: 18px auto 18px;
  max-width: 680px;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  color: var(--text, #2b2b2b);
}

.feel__hero{
  position: relative;
  width: min(640px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.feel__heroImg{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px){
  .feel__heroImg{ height: 280px; }
}

.feel__heroOverlay{
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.10) 65%, rgba(0,0,0,0));
}

.feel__heroContent{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  text-align: left;
  color: #fff;
}

.feel__stat{
  font-size: 64px;
  font-weight: 1000;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.feel__statText{
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  max-width: 520px;
}

.feel__footnote{
  margin: 12px auto 0;
  max-width: 560px;
  font-size: 11px;
  color: rgba(43,43,43,.55);
  line-height: 1.4;
}

/* ============================
   Email step (card like screenshot)
   ============================ */

.emailCard{
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(43,43,43,.10);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 16px 50px rgba(0,0,0,.06);
  text-align: center;
}

.emailCard__logo{
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 14px;
  color: #111;
}

.emailCard__title{
  margin: 0 0 18px;
  font-weight: 900;
  font-size: 20px;
  color: #2b2b2b;
}

.emailCard__label{
  display:block;
  text-align:left;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #2b2b2b;
}

.emailCard__inputWrap{
  border: 1px solid rgba(43,43,43,.18);
  border-radius: 8px;
  padding: 10px 12px;
  text-align:left;
}

.emailCard__inputWrap--error{
  border-color: #e23b3b;
  background: #fff3f3;
}

.emailCard__input{
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
  background: transparent;
  color: #111;
}

.emailCard__helper{
  margin: 10px 0 16px;
  text-align:left;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(43,43,43,.65);
}

/* Terms row */
.emailCard__terms{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  text-align:left;
  border-top: 1px solid rgba(43,43,43,.08);
  padding-top: 14px;
  margin-top: 10px;
}

.emailCard__checkbox{
  width: 16px;
  height: 10px;
  margin-top: 3px;
  accent-color:  #7c5cff;
}

.emailCard__termsText{
  font-size: 12px;
  line-height: 1.45;
  color: rgba(43,43,43,.75);
}

.emailCard__termsText a{
  color: #2b2b2b;
  text-decoration: underline;
}

/* Big disabled Continue button area below card */
.emailCard__cta{
  width: min(720px, 100%);
  max-width: 720px;
  margin: 22px auto 0 !important;
  justify-content: center;
  padding: 18px 22px;
}

/* Ethnicity other input */
.quiz-ethnicity-input{
  width: 100%;
  border: 1px solid rgba(43,43,43,.18);
  border-radius: 10px;
  padding: 12px 12px;
  outline: none;
  font-size: 15px;
}
.quiz-ethnicity-input:focus{
  border-color: #7c5cff;
  box-shadow: 0 0 0 3px rgba(168,144,254,.25);
}
/* Center info screen (medical history) */
.centerInfo{
  max-width: 720px;
  margin: 60px auto 0;
  text-align: center;
}
.centerInfo__title{
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  color: var(--text, #2b2b2b);
}
.centerInfo__subtitle{
  margin: 14px auto 0;
  max-width: 520px;
  color: rgba(43,43,43,.65);
  line-height: 1.6;
  font-size: 14px;
}
.centerInfo__cta{
  width: min(720px, 100%);
  margin: 28px auto 0 !important;
  justify-content: center;
  padding: 18px 22px;
}

/* Scroll picker (image 3 style) */
.scrollPick{
  max-width: 560px;
  margin: 0 auto;
}

.scrollPick__title{
  text-align: left;
  margin: 0 0 6px;
  font-weight: 900;
  color: var(--text, #2b2b2b);
}

.scrollPick__sub{
  text-align: left;
  margin: 0 0 14px;
  color: rgba(43,43,43,.65);
  font-size: 14px;
  line-height: 1.5;
}

.scrollPick__wrap{
  border: 1px solid rgba(43,43,43,.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.scrollPick__list{
  max-height: 280px;
  overflow: auto;
  padding: 10px;
}

.scrollRow{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(43,43,43,.12);
  background: #fafafa;
  cursor: pointer;
  text-align:left;
}

.scrollRow + .scrollRow{ margin-top: 10px; }

.scrollRow__label{
  font-weight: 700;
  font-size: 13px;
  color: #2b2b2b;
}

.scrollRow__box{
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(43,43,43,.25);
  background: #fff;
  flex: 0 0 auto;
}

.scrollRow.is-selected{
  border-color: #7c5cff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(168,144,254,.18);
}

.scrollRow.is-selected .scrollRow__box{
  border-color:  #7c5cff;
  background:  #7c5cff;
}

.scrollPick__toggle{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(43,43,43,.14);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin: 10px auto 0;
  cursor:pointer;
}

.scrollPick__chev{
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(43,43,43,.55);
  border-bottom: 2px solid rgba(43,43,43,.55);
  transform: rotate(45deg);
}

.scrollPick__toggle--up .scrollPick__chev{
  transform: rotate(-135deg);
}

.scrollPick__cta{
  width: min(720px, 100%);
  margin: 18px auto 0 !important;
  justify-content: center;
  padding: 18px 22px;
}
/* Yes/No centered layout (optional) */
.quiz-step h2{
  text-align: center;
}
/* ============================
   GP Details (match reference)
   ============================ */

.gpCard{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gpCard__title{
  text-align: center;
  margin: 18px 0 8px;
  font-weight: 900;
  font-size: 28px;
  color:  #2b2b2b;
}

.gpCard__sub{
  text-align: center;
  margin: 0 0 18px;
  color: rgba(43,43,43,.65);
  font-size: 14px;
}

/* Search row: postcode + Find */
.gpCard__search{
  max-width: 520px;
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 10px;
  align-items: center;
}

.gpCard__postcode{
  width: 100%;
  border: 1px solid rgba(43,43,43,.14);
  border-radius: 0;
  padding: 12px 12px;
  background: #fff;
  outline: none;
}

.gpCard__find{
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  padding: 12px 10px;
  background: #000;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* No results */
.gpCard__noResults{
  max-width: 520px;
  margin: -6px auto 10px;
  text-align: left;
  color: rgba(43,43,43,.65);
  font-size: 13px;
}

/* Manual form box */
.gpCard__manual{
  max-width: 520px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(43,43,43,.14);
  background: rgba(255,255,255,.55);
}

.gpCard__input{
  width: 100%;
  border: 1px solid rgba(43,43,43,.14);
  border-radius: 0;
  padding: 10px 12px;
  outline: none;
  background: #fff;
  margin-top: 10px;
}

.gpCard__input--error{
  border-color: #e23b3b;
  background: #fff3f3;
}

/* Back to Search link on right */
.gpCard__back{
  display: block;
  width: 100%;
  text-align: right;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color:  #7c5cff;
  font-weight: 900;
  cursor: pointer;
}

/* Manual add link line */
.gpCard__manualBar{
  max-width: 520px;
  margin: 10px auto 0;
  display: flex;
  justify-content: flex-end;
}

.gpCard__manualLink{
  border: 0;
  background: transparent;
  color:  #7c5cff;
  font-weight: 900;
  cursor: pointer;
}

/* Why we ask */
.gpCard__info{
  max-width: 520px;
  margin: 18px auto 0;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
}

.gpCard__infoTitle{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  color:  #7c5cff;
}

.gpCard__infoText{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(43,43,43,.7);
}

/* Confirm CTA */
.gpCard + .xo-quiz-button{
  width: min(720px, 100%);
  margin: 26px auto 0 !important;
  justify-content: center;
  padding: 18px 22px;
}

/* Container for the list of GP results */
.gpCard__results {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;               /* space between each result card */
}

/* Each selectable GP result */
.gpResult {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;

  /* Make them look like buttons, not plain text */
  font-size: 14px;
  line-height: 1.4;
}

/* Name line (top, bold) */
.gpResult__name {
  display: block;
  font-weight: 600;
  color: #2b2b2b;
  margin-bottom: 2px;
}

/* Address line (smaller, grey) */
.gpResult__meta {
  display: block;
  font-size: 13px;
  color: #666;
}

/* Hover / focus states for better affordance */
.gpResult:hover,
.gpResult:focus-visible {
  border-color: #a890fe;
  box-shadow: 0 0 0 1px rgba(168, 144, 254, 0.3);
  background: #f9f7ff;
}

/* Mobile: ensure full-width clickable area */
@media (max-width: 768px) {
  .gpResult {
    padding: 12px 14px;
  }
}

/* ===== DOB STEP ===== */

.quiz-dob__title {
  margin: 0 0 20px;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #2b2b2b;
}

/* Main DOB card */
.quiz-dob-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 18px 20px 20px;
  border-radius: 12px;
  border: 1px solid rgba(43,43,43,.14);
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.quiz-dob-card__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(43,43,43,.78);
}

.quiz-dob-card__label {
  display: block;
  margin: 4px 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2b2b2b;
}

/* Input wrapper + error style, same idea as gpCard__input--error */
.quiz-dob-input-wrap {
  border: 1px solid rgba(43,43,43,.14);
  border-radius: 4px;
  background: #fff;
  padding: 0;
}

.quiz-dob-input-wrap--error {
  border-color: #e23b3b;
  background: #fff3f3;
}

.quiz-dob-input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  font-size: 14px;
  background: transparent;
  color: #2b2b2b;
}

.quiz-dob-card__helper {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(43,43,43,.7);
}

/* Continue button on DOB – full width like other CTAs */
.quiz-dob-card + .xo-quiz-button {
  width: min(720px, 100%);
  margin: 26px auto 0 !important;
  justify-content: center;
  padding: 16px 22px;
}


/* ===== RESULT SCREEN WRAPPER ===== */

.quiz-result {
  max-width: 720px;
  margin: 0 auto 40px;
  padding-top: 8px;
  color: #2b2b2b;
}

/* Hero card with product + stats */
.quiz-result__hero {
  border-radius: 16px;
  border: 1px solid rgba(43,43,43,.14);
  background: rgba(255,255,255,.9);
  padding: 20px 20px 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* Small intro line */
.quiz-result__subtitle {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(43,43,43,.7);
}

/* Tags row */
.quiz-result__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.quiz-result__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid transparent;
}

/* Tag variants, aligned with your accent + alert colours */
.quiz-result__tag--primary {
  background:  #7c5cff;
  color: #fff;
  border-color:  #7c5cff);
}

.quiz-result__tag--secondary {
  background: rgba(124,92,255,0.08);
  color:  #7c5cff;
  border-color: rgba(124,92,255,0.24);
}

.quiz-result__tag--danger {
  background: #fff3f3;
  color: #c82323;
  border-color: #f0b4b4;
}

/* Product title */
.quiz-result__title {
  margin: 4px 0 12px;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  color: #2b2b2b;
}

/* Image block */
.quiz-result__image {
  margin: 0 0 16px;
  text-align: left;
}

.quiz-result__image img {
  max-width: 120px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(43,43,43,.12);
  background: #fff;
}

/* Stats row: current weight + potential loss */
.quiz-result__stats {
  display: flex;
  gap: 12px;
  margin: 6px 0 14px;
}

.quiz-result__stat {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(124,92,255,0.04);
}

.quiz-result__stat-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(43,43,43,.7);
}

.quiz-result__stat-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
}

/* Small copy + price line */
.quiz-result__small-copy {
  margin: 6px 0 4px;
  font-size: 13px;
  color: rgba(43,43,43,.7);
}

.quiz-result__price {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  color: #2b2b2b;
}

/* Primary CTA – rely on .xo-quiz-button base, just tune spacing */
.quiz-result__primary-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 20px;
}

.quiz-result__primary-cta[disabled] {
  opacity: 0.5;
  cursor: default;
}

/* Secondary CTA (link-style button) */
.quiz-result__secondary-cta {
  margin: 12px 0 0;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  color:  #7c5cff;
  cursor: pointer;
}

/* Footer note */
.quiz-result__footer-note {
  margin: 16px 4px 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(43,43,43,.7);
}

/* ===== ACCORDION ON RESULT SCREEN ===== */

.quiz-accordion {
  margin: 20px 0 0;
  border-radius: 14px;
  border: 1px solid rgba(43,43,43,.12);
  background: #fff;
}

.quiz-accordion__item + .quiz-accordion__item {
  border-top: 1px solid rgba(43,43,43,.08);
}

.quiz-accordion__header {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
  cursor: pointer;
}

.quiz-accordion__icon {
  width: 18px;
  height: 18px;
  color: rgba(43,43,43,.6);
  transition: transform 0.2s ease;
}

.quiz-accordion__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(43,43,43,.78);
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

/* Open state */
.quiz-accordion__item.is-open .quiz-accordion__icon {
  transform: rotate(180deg);
}

.quiz-accordion__item.is-open .quiz-accordion__content {
  max-height: 200px; /* enough for 1–2 short paragraphs */
  padding-bottom: 12px;
}

/* ===== MODAL FOR OTHER TREATMENT OPTIONS ===== */

.quiz-result-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.quiz-result-modal--open {
  pointer-events: auto;
  opacity: 1;
}

.quiz-result-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.quiz-result-modal__dialog {
  position: relative;
  max-width: 520px;
  margin: 80px auto 0;
  padding: 18px 20px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(43,43,43,.18);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.quiz-result-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.quiz-result-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
}

.quiz-result-modal__close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: rgba(43,43,43,.7);
}

.quiz-result-modal__subtitle {
  margin: 4px 0 12px;
  font-size: 13px;
  color: rgba(43,43,43,.7);
}

.quiz-result-modal__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-result-modal__option {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(43,43,43,.12);
  background: rgba(248,248,255,0.9);
}

.quiz-result-modal__option-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.quiz-result-modal__option-name {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: #2b2b2b;
}

.quiz-result-modal__option-sub {
  margin: 0;
  font-size: 12px;
  color: rgba(43,43,43,.65);
}

.quiz-result-modal__pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(124,92,255,0.08);
  color:  #7c5cff;
}

/* "Select" button inside modal option */
.quiz-result-modal__select {
  width: 100%;
  justify-content: center;
  padding: 10px 14px;
}

.quiz-result__strengths {
  margin: 8px 0 10px;
}

.quiz-result__strengths-label {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(43,43,43,.78);
}

.quiz-result__strengths-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz-result__strength {
  border-radius: 999px;
  border: 1px solid rgba(43,43,43,.2);
  background: #fff;
  padding: 6px 10px;
  font-size: 13px;
  color: #2b2b2b;
  cursor: pointer;
}

.quiz-result__strength.is-selected {
  border-color: var(--accent, #7c5cff);
  background: rgba(124,92,255,0.08);
  color: var(--accent, #7c5cff);
}


/* Intro screen + every quiz step background */
.xo-quiz-intro,
.quiz-step {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.quiz-toggle__option--active {
  background: #380F5D;
  border:1px solid #A890FE;
}

/* Global style for all primary quiz buttons */
.xo-quiz-button {
  /* Force this background image on all quiz buttons */
  background-image: url('/cdn/shop/files/Trim_vertical_1.png?v=1766336628') !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* White text on top of the image */
  color: #ffffff !important;

  /* Just in case your base styles set something else */
  border-color: transparent;
}
/* Use Customizer button image + white text for all quiz buttons */
.xo-quiz-shell .xo-quiz-button {
  background-image: url ("/cdn/shop/files/Trim_vertical_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff !important; /* force white text */
}

/* On the quiz page, pull the whole quiz section up on large screens */
@media screen and (min-width: 1280px) {
 body  {
    margin-top: -100px;
  }
}

.quiz-result__subtitle
 {
  color: #380F5D;
  text-align:center;
 }

 /* Center product image on quiz result step */
.quiz-result__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quiz-result__image {
  display: flex;
  justify-content: center;
  margin: 12px 0 8px;
}

.quiz-result__image img {
  display: block;
  max-width: 260px; /* adjust as you like */
  width: 100%;
  height: auto;
}

/* Intro avatar: circle and image controlled independently via CSS variables */
.xo-quiz-intro__avatar {
  width: var(--intro-avatar-size, 120px);
  height: var(--intro-avatar-size, 120px);
  border-radius: 50%;
  overflow: hidden;

  background-image: var(--intro-avatar-image);
  background-size: var(--intro-avatar-zoom, 120%) auto;            /* zoom */
  background-position: var(--intro-avatar-pos-x, 50%) var(--intro-avatar-pos-y, 50%); /* pan */
  background-repeat: no-repeat;
}

/* Mobile sticky primary CTA on quiz result step */
@media screen and (max-width: 768px) {
  .quiz-result__hero {
    padding-bottom: 96px; /* space for sticky button */
  }

}

/* Visual style only – do NOT block clicks */
.xo-quiz-button--disabled {
  opacity: .55;
}

/* Optional: extra visual for locked state */
.quiz-result__primary-cta[data-locked="true"] {
  opacity: 0.75;
}


/* Quiz page: hide left/center header boxes, keep right (cart+login) */
.page-take-the-quiz #shopify-section-header .header_main_area .header_box.hd-left,
.page-take-the-quiz #shopify-section-header .header_main_area .header_box.hd-center {
  display: none;
}

/* In the right box, hide the login button, keep the cart */
.page-take-the-quiz #shopify-section-header .header_main_area .header_box.hd-right .header_btn {
  display: none;
}

/* Ensure the cart wrapper is visible */
.page-take-the-quiz #shopify-section-header .header_main_area .header_box.hd-right .hd-cart-btn {
  display: block !important;
}
/* Only add top margin when quiz is on the result (product selection) step */


/* Desktop / tablet: bottom block sticks at bottom of viewport when scrolling */
.quiz-result__bottom {
  position: sticky;
  bottom: 0;
  padding: 16px 16px 24px;
  background: #fff;
  z-index: 20;
}

/* Mobile: make it fixed at the very bottom */
@media screen and (max-width: 768px) {
  .quiz-result__bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 50px;
    padding: 12px 16px 20px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  }

  .quiz-result__hero {
    padding-bottom: 120px; /* space for sticky bottom */
  }
}

/* Height & weight – system toggle styles */
.quiz-toggle__option {
  background-color: #ffffff;
  color: #380F5D;
  border: 1px solid #380F5D;
}

/* Active tab: purple background, white text */
.quiz-toggle__option--active {
  background-color: #380F5D;
  color: #ffffff;
}
.journey__metricValue {color: #380F5D;}
.journey__metricValue1 {font-size:22px; font-weight:900; color: #000000;}
.quiz-input-label {color: #444444 !important;}
.quiz-info-card strong {color: #6b7280;}
.quiz-step h2 { font-size: 32px; }
.emailCard__checkbox {height:20px;}
input[type=checkbox], input[type=radio] {width:24px;}
.feel__heroImg {
  object-fit: cover;
  object-position: center top;
}
/* Feel step hero image – control visible area */
.feel__hero {
  overflow: hidden;
}

/* Adjust vertical focus of the image */
.feel__heroImg {
  width: 100%;
  height: 320px !important;          /* whatever height you’re using */
  object-fit: cover;
  /* Move the image down so the top isn’t cut off as much */
  object-position: center 30%;  /* try 20%, 30%, 40% to fine-tune */
}
.emailCard__logoImg {
  max-width: 120px;
  height: auto;
  display: block;
}
.gpCard__find {background: #380F5D !important;}
.gpCard__postcode {color: #380F5D !important;}
.gpResult__name {color: #380F5D !important;}
.gpCard__input {color: #380F5D !important;}
.gpCard__infoTitle {font-weight: 600 !important;}
.gpCard__back {font-weight: 600 !important;}
.quiz-result__image img {border:none !important;}
.quiz-accordion__header {color: #380F5D !important;}
.quiz-result__subtitle {font-size: 24px !important;}
.quiz-accordion__content {text-align:left !important};
.quiz-result__stat-value  {color: #ffffff !important;}
.quiz-result__strengths-list {justify-content: center !important;}
.quiz-input {color: #380F5D !important;}
.journey__metricValue {color: #A890FE !important}
.journey__bigValue {color: #A890FE !important}
.journey__lossPill {color: #A890FE !important}
.feel__heroOverlay {background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.65),
  rgba(0, 0, 0, 0.25) 65%,
  rgba(0, 0, 0, 0.15)
)
}

.xo-quiz-intro__button {
  margin-top: 24px;
}

.xo-quiz-intro__button .xo-quiz-button {
  width: 100%;              /* full width of the intro inner container */
  display: flex;
  justify-content: center;
}
/* Strength options container */
.quiz-result__strengths-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Box-style strength options (like your 5mg, 7.5mg, 10mg boxes) */
.quiz-result__strength {
  appearance: none;
  border: none;
  background-color: #f5f5f7;   /* light grey box */
  color: #380F5D;              /* brand purple text */
  border-radius: 16px;
  min-width: 90px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

/* Selected/active strength box */
.quiz-result__strength.is-selected {
  background-color: #380F5D;
  color: #ffffff;
  box-shadow: 0 0 0 1px #380F5D;
}

/* Optional hover effect */
.quiz-result__strength:hover {
  box-shadow: 0 0 0 1px rgba(56, 15, 93, 0.25);
}
.quiz-result__stat-label {color: #380F5D !important;}
.quiz-result__stat {background url(/cdn/shop/files/Trim_vertical_1.png?v=1766336628);}
.quiz-step .xo-quiz-button {
      /* Force this background image on all quiz buttons */
  background-color: url("/cdn/shop/files/Trim_vertical_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* White text on top of the image */
  color: #ffffff !important;

  /* Just in case your base styles set something else */
  border-color: transparent;
}
/* Keep stat label on one line */
.quiz-result__stat-label {
  white-space: nowrap;
}

/* Small arrow next to potential weight loss */
.quiz-result__stat-arrow {
  margin-left: 4px;
  font-size: 12px;
}
/* Strength block header: label + "Starting strength" pill */
.quiz-result__strengths-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.quiz-result__strengths-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}

.quiz-result__strengths-pill {
  padding: 4px 10px;
  border-radius: 999px;
  background: #380F5D;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
}

/* Dropdown shell */
.quiz-result__selectShell {
  position: relative;
  border-radius: 12px;
  border: 1px solid #d1d1dc;
  background: #ffffff;
  padding: 10px 40px 10px 12px;
  font-size: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.quiz-result__selectValue {
  color: #111111;
}

.quiz-result__selectArrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
}

/* Native select covers the whole shell, invisible */
.quiz-result__selectNative {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.quiz-result__selectShell {
  position: relative;
  border-radius: 12px;
  border: 1px solid #d1d1dc;
  background: #ffffff;
  padding: 10px 40px 10px 12px;
  font-size: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

/* value + arrow already fine */

/* Make the native select a fully invisible overlay */
.quiz-result__selectNative {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  opacity: 0;            /* hide it */
  cursor: pointer;

  /* IMPORTANT: kill all visual styling */
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.quiz-result__stat-value {
  display: inline-flex;      /* text + icon on one line */
  align-items: center;       /* vertical centering */
}

.quiz-result__stat-arrow {
  display: inline-flex;
  margin-left: 4px;          /* space between number and arrow */
}

/* Full-screen overlay */
.quiz-strength-modal {
  position: fixed;
  inset: 0;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.quiz-strength-modal--open {
  display: flex;
}

.quiz-strength-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* Dark rounded dialog (like iOS) */
.quiz-strength-modal__dialog {
  position: relative;
  width: 80%;
  max-width: 320px;
  background: #ffffff;
  color: #380F5D;
  border-radius: 24px;
  padding: 12px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* Options inside dialog */
.quiz-strength-modal__option {
  width: 100%;
  border: none;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.quiz-strength-modal__option + .quiz-strength-modal__option {
  margin-top: 4px;
}

/* Checkmark at left */
.quiz-strength-modal__check {
  width: 18px;
  text-align: center;
  opacity: 0;                 /* hidden for unselected */
}

.quiz-strength-modal__option.is-selected .quiz-strength-modal__check {
  opacity: 1;
}

.quiz-strength-modal__label {
  flex: 1;
}
.quiz-result__stat-label {
  margin: 0 0 4px;          /* label on its own line */
  white-space: nowrap;      /* keep "Potential weight loss" on one line */
}

.quiz-result__stat-value {
  margin: 0;
  display: inline-flex;     /* value + arrow on same line */
  align-items: center;
}

.quiz-result__stat-arrow {
  display: inline-flex;
  margin-left: 4px;         /* space between “kg” and arrow */
}
.journey__bigValue1 {color: #000000 !important; font-weight:900; font-size:22px;}
/* Loader row under postcode */
.gpCard__loading {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(43, 43, 43, 0.7);
}

/* Little circular spinner */
.gpCard__spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(56, 15, 93, 0.2);  /* light purple */
  border-top-color: #380F5D;                 /* brand purple */
  animation: gpCard-spin 0.7s linear infinite;
}

@keyframes gpCard-spin {
  to {
    transform: rotate(360deg);
  }
}
.quiz-result__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Base pill */
.quiz-result__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

/* Both of your tags are black pills */
.quiz-result__tag--primary,
.quiz-result__tag--secondary {
  background: #380F5D;
  color: #fff;
}

.quiz-result__tagText {
  line-height: 1;
}

/* White circular icon for "Most effective" */
.quiz-result__tagIconCircle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
}

.quiz-result__tagIconCircle svg {
  width: 10px;
  height: 10px;
  stroke: #000; /* black tick */
}

/* Cart icon for "In stock" */
.quiz-result__tagIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quiz-result__tagIcon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor; /* white on black pill */
}

/* Stats + Select strength share same width and are centered */
.quiz-result__stats,
.quiz-result__strengths {
  max-width: 360px;          /* adjust if your design uses a different width */
  margin-left: auto;
  margin-right: auto;
}

/* Header: "Select strength" left, "Starting strength" pill right */
.quiz-result__strengths-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.quiz-result__selectShell {
    width: 130% !important;
    margin-left: -30px !important;
}
.quiz-result__strengths-label {
  padding:0px 10px !important;
}

/* Center the “Explore other treatment options” button under the plan */
.quiz-result__secondary-cta {
  margin: 12px auto 8px;
  display: inline-block;
  background: transparent;
  border: none;
  color: #5b2ea7;      /* your brand purple */
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  position: static !important;  /* never sticky/fixed */
}


/* Base pill */
.quiz-result__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

/* Both are black pills in your design */
.quiz-result__tag--primary,
.quiz-result__tag--secondary {
  background: #000;
  color: #fff;
}

.quiz-result__tagText {
  line-height: 1;
}

/* White tick circle */
.quiz-result__tagIconCircle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #fff;
}

.quiz-result__tagIconCircle svg {
  width: 10px;
  height: 10px;
  stroke: #000;
}

/* Cart icon */
.quiz-result__tagIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quiz-result__tagIcon svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
}
.quiz-result-modal__option-main {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.quiz-result-modal__text {
  flex: 1 1 auto;
}

.quiz-result-modal__image {
  flex: 0 0 auto;
  width: 64px;
  height: auto;
  object-fit: contain;
}

.quiz-result-modal__pill {
  flex: 0 0 auto;
  background: #f3edff;
  color: #5b2ea7;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.gpCard__search {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  gap: 8px;
}

.gpCard__postcode {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

.gpCard__infoTitle {
  color: #666666;  /* grey instead of purple */
  font-weight: 600;
}

[data-quiz-progress-bar] {
  background-color: #A890FE;   /* bright Trim purple */
}

.quiz-result__tag--primary, .quiz-result__tag--secondary {background: #380F5D !important;}

.quiz-result__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Center when there is only one tag */
.quiz-result__tags--single {
  justify-content: center;
}

.quiz-result__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

/* existing black pills */
.quiz-result__tag--primary,
.quiz-result__tag--secondary {
  background: #000;
  color: #fff;
}

/* NEW: red/grey style for Out of stock */
.quiz-result__tag--danger {
  background: #ffe8e8;    /* light red */
  color: #b3261e;         /* brand red-ish */
}
@media (max-width: 768px) {
  .quiz-result__bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .quiz-result__bottom.quiz-result__bottom--hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
}