/** Shopify CDN: Minification failed

Line 279:2 Unexpected "/"

**/



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* :root { */
/*   --font-paragraph--family: arial, sans-serif; */
/*   --font-h1--family: arial, sans-serif; */
/* } */

/* PDP EMBED — formerly `body { ... }` in the standalone harness. Scoped to
   .mpl-fyf-card (the modal card that hosts the quiz on the PDP) so these
   page-level styles don't leak onto the rest of the storefront. */
.mpl-fyf-card {
  background: linear-gradient(135deg, #f6b295 0%, #f06147 100%);

  min-height: 100vh;
  display: flex;
  /*flex direction for validation logic - remove for production */
   flex-direction: column;
   gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
  line-height: 3;

}

/* .shopify-section {

  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */


/* .fruit { */
/*   width: 100px; */
/*   height: 100px; */
/*   background-color: #d3d3d3; */
/*   border-radius: 85%; */
/*   filter: saturate(.75); */
/*   padding: 10px; */
/*   transition: all 0.3s ease; */
/* } */


/* .tangerine { */
/*   transform: scale(.8); */
/*   // background-color: #d4edda; */
/* } */

/* .option-label-fruit:hover .tangerine { */
/*   transform: scale(.9); */
/* } */

/* .orange { */
/*   transform: scale(.9); */
/*   // background-color:#c3e6cb ; */
/* } */
/* .option-label-fruit:hover .orange { */
/*   transform: scale(1); */
/* } */

/* .grapefruit { */
/*   transform: scale(1); */
/*   // background-color: #fff3cd; */
/* } */

/* .pomelo { */
/*   transform: scale(1.1); */
/*   // background-color: #ffe0b2; */
/* } */

/* .cantaloupe { */
/*   transform: scale(1.2) translateY(10px); */
/*   // background-color: #f8d7da ; */
/* } */

/* .watermelon { */
/*   transform: scale(1.4) translateY(10px); */
/*   // background-color: #f5c6cb; */
/* } */
.survey-container {
 
  background: #f0f0f0;
    flex: 0 0 600px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 40px;
  flex: 0 0 600px;
  box-sizing: border-box;
  transform: 3s cubic-bezier(0.4, 0, 0.2, 1); 
  opacity: 3s ease; 
  transform: translateX(0);
  opacity: 1;
  font-family: "Lexend", sans-serif;
  max-width: 600px;
  min-width: 600px;
}









.survey-header {
  text-align: center;
  margin-bottom: 40px;
}

/* .survey-header h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 28px;
} */



.survey-image-wrapper {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px auto;

}

/* Exit left: slide off left + fade out */
.exit-left {
  transform: translateY(-100vh);
  opacity: 0;
}

/* Enter from right: slide to center + fade in */
.enter-right {
  /* transform: translateX(0); */
  opacity: 1;
}

/* Exit right (for previous) */
.exit-right {
  /* transform: translateX(100vw); */
  opacity: 0;
}

/* Enter from left (for previous) */
.enter-left {
  /* transform: translateX(0); */
  opacity: 1;
}



.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #eb1751 0%, #f36a41 100%);
  width: 0%;
  transition: width 0.3s ease;
}

.progress-text {
  color: #eb1751;
  font-size: 14px;
}

.questions-wrapper {
  margin-bottom: 20px;
  animation: fadeIn 0.5s ease;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-form {
  width: 100%;
 
}

.slider-wrapper {
  width: 100%;
  background-color: pink;
}

.slider-wrapper input {
  width: 100%;
}

input[type="range"] {
  width: 100%;
  accent-color: #6b46c1;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  height: 12px;
  background: linear-gradient(to right, #e0e0e0 0%, #e0e0e0 100%);
  border-radius: 999px;
  outline: none;
}

    /* /* Custom track styling */ */
    /* input[type="range"]::-webkit-slider-runnable-track { */
    /*   height: 12px; */
    /*   background: linear-gradient(to right, #6b46c1, #9f7aea); */
    /*   border-radius: 999px; */
    /* } */

    /* input[type="range"]::-moz-range-track { */
    /*   height: 12px; */
    /*   background: linear-gradient(to right, #6b46c1, #9f7aea); */
    /*   border-radius: 999px; */
    /* } */

    /* /* Thumb styling */ */
    /* input[type="range"]::-webkit-slider-thumb { */
    /*   -webkit-appearance: none; */
    /*   appearance: none; */
    /*   height: 28px; */
    /*   width: 28px; */
    /*   background: white; */
    /*   border: 3px solid #6b46c1; */
    /*   border-radius: 50%; */
    /*   box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4); */
    /*   cursor: pointer; */
    /*   margin-top: -8px; */
    /*   transition: all 0.3s ease; */
    /* } */

    /* input[type="range"]::-moz-range-thumb { */
    /*   height: 28px; */
    /*   width: 28px; */
    /*   background: white; */
    /*   border: 3px solid #6b46c1; */
    /*   border-radius: 50%; */
    /*   box-shadow: 0 4px 15px rgba(107, 70, 193, 0.4); */
    /*   cursor: pointer; */
    /*   transition: all 0.3s ease; */
    /* } */

    /* input[type="range"]:hover::-webkit-slider-thumb { */
    /*   transform: scale(1.1); */
    /*   box-shadow: 0 6px 20px rgba(107, 70, 193, 0.5); */
    /* } */

.question-title {
  color: #333;
  margin-bottom: 24px;
  font-weight: 300;
    font-family: "Lexend", sans-serif;
  letter-spacing: 1px;
  text-align: center;
  /* border: 3px solid lime; */
  font-size: 2rem;
  line-height: 1.2;
}

.email-input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.email-input-group p {
  text-align: center;
  font-size: 14px;
  color: #eb1751;;
  line-height: 1;
  letter-spacing: 1px;
  margin: 0;
  font-weight: 300;
}
 .email-input-group input:last-of-type {
  margin-bottom: 0px;
 }

.full-width-input {
  width: 100%;                    /* Takes full width of its container */
  box-sizing: border-box;         /* Ensures padding/border don't add extra width */
  padding: 12px 16px;             /* Comfortable inner spacing (adjust as needed) */
  border: 1px solid #ccc;         /* Subtle border */
  border-radius: 8px;             /* Slightly rounded corners – feel free to tweak (e.g., 6px or 10px) */
  font-size: 16px;                /* Good readable size */
  background-color: #fff;
  font-weight: 300;         /* Clean background */
}

.full-width-input::placeholder {
  color: #333;                  /* Light gray placeholder */
  opacity: 1;   
  font-weight: 300;  
  letter-spacing: 1px;                /* Ensures consistent appearance across browsers */
}

.full-width-input:focus {
  outline: none;                  /* Optional: removes default browser outline */
  border-color: #b23373;          /* Optional: highlight border on focus */
  box-shadow: 0 0 0 3px rgba(178, 51, 115, 0.25); /* Optional: modern focus ring */
}

.options-group {
  /* display: flex;
   flex-direction: column;
   gap: 12px; */
    display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}


.options-group-flex {
  /* background-color: #b23373;*/
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.options-group-grid {
  /* background-color: pink; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}

.option-label-5926 {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

/* .option-label-fruit { */
/*   display: flex; */
/*   flex-direction: column; */
/*   align-items: center; */
/*   justify-content: center; */
/*   padding: 12px 16px; */
/*   // border: 2px solid #e0e0e0; */
/*   border-radius: 8px; */
/*   cursor: pointer; */
/*   transition: all 0.3s ease; */
/*   // gap: 25px; */
/*   position: relative; */


/* } */



/* .option-label-fruit:hover .fruit { */
/*   opacity: 1; */
/*   filter: saturate(1.5); */
/* } */

/* .option-label-fruit:hover .option-text-fruit { */
/*   opacity: 1; */
/*   color: rgba(0,0,0,.5); */
/*   font-size: 1.5rem; */
/*   transform: translate(-50%,-320%); */
/* } */

.option-label-5926 input[type="radio"] {
  position: absolute;
  opacity: 0;
  /* width: 0; */
  /* height: 0; */
  margin: 0;
  pointer-events: none; /* Ensures clicks pass through to the label */
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 12px;
  accent-color: #b23373;;
}

.option-label-5926:hover {
  border-color: #b23373;
  background-color: #f5f7ff;
}

/*  .option-label input[type="radio"] */
/*  { */

/* } */

/* .option-label input[type="radio"]:checked ~ .option-text, */
/* .option-label input[type="checkbox"]:checked ~ .option-text { */
/*   color: #b23373;; */
/*   font-weight: 600; */
/* } */

/* .option-label input[type="radio"]:checked, */
/* .option-label input[type="checkbox"]:checked { */
/*   accent-color: #b23373;; */
/* } */

/* .option-label:has(input:checked) { */
/*   border-color: #b23373;; */
/*   background-color: #f5f7ff; */
/* } */

.option-text {
  font-size: 24px;
  color: #333;
  flex: 1;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  height: 48px;
  display: grid;
  place-items: center;
  line-height: 1;
}

/* .option-text-fruit { */
/*  opacity: 0; */
/*   position: absolute; */
/*   top: 50%; */
/*   left: 50%; */
/*   transform: translate(-50%, -50%); */
/*   z-index: 10; */
/*   line-height: 1; */
/*   text-align: center; */
  
/* } */

.dontKnow {
  font-size: 20px;
  color: #333;
  flex: 1;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  height: 48px;
  display: grid;
  place-items: center;
  line-height: 1;
}

.button-group {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.btn {
  padding: 24px 24px;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 300;
  transition: all 0.3s ease;
  flex: 1;
  font-family: "Lexend", sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #eb1751 0%, #f36a41 100%);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px #b2337388;
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-secondary {
  /* background-color: #f0f0f0; */
  background-color: transparent;
  color: #eb1751;
  font-size: 14px;
}

.btn-secondary:hover:not(:disabled) {
  background-color: #e0e0e0;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-hidden {
  display: none; 
 
 
}
.completion-message {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0ebff 100%);
  border-radius: 12px;
  margin-bottom: 30px;
  animation: slideUp 0.5s ease;
  font-family: "Lexend", sans-serif;
}

.completion-message h3 {
  color: #b23373;
  margin-bottom:.5rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
}

.completion-message p {
  color: rgba(0 0 0 / .75);
  font-size: 16px;
  margin: 0 0 2rem 0;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

.completion-message .btn-secondary {
  font-weight: 300;
  text-decoration: underline;
  color: #b23373;
  font-size: 1rem;
}


.validation-message {
   animation: slideUp 0.5s ease;
   line-height: 1.5;
   background-color: #f1f1f1;
}



.validation-message div {
  align-items: center;
  border: 1px solid black;
  margin-bottom: 5px;
  padding: 5px;
}

.validation-message h2, .validation-message p, .validation-message pre {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}

.validation-message span {
  color: #b23373;

}

/* social media buttons section on completion page */

.social-media {
  width: 100%;
  line-height: 1;
  transition: transform 500ms;
}

  .social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;


}

.completion-message .social-media__p {
  text-align: center;
  /* margin-bottom: .5rem; */
  margin-top: 5rem;
  /* color: #b23373; */
  font-size: 1rem;
   color: rgba(0 0 0 / .75);

}




.social-media a:hover {
  transform: scale(1.1);
}



.social-media__buttons-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;

}



@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.answers-summary {
  text-align: left;
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.answers-summary h3 {
  color: #333;
  margin-bottom: 16px;
  text-align: center;
}

.answers-summary ul {
  list-style: none;
}

.answers-summary li {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
  font-size: 14px;
}

.answers-summary li:last-child {
  border-bottom: none;
}

.answers-summary strong {
  color: #b23373;;
}




@media (max-width: 600px) {
  .survey-container{
  flex: 0 0 500px;
  padding: 20px;
  max-width: auto;
  min-width: 500px;

  }

  .completion-message {
  text-align: left;
  padding: 15px;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0ebff 100%);
  border-radius: 12px;
  margin-bottom: 30px;

}

.completion-message h3 {
  font-size: 1.4rem;
  line-height: 1;
}

.completion-message p {
  color: rgba(0 0 0 / .75);
  font-size: 1rem;
  margin: 0 0 24px 0;
  font-weight: 300;
  line-height: 1.5;

}

.completion-message .social-media__p {
  text-align: center;
  /* margin-bottom: .5rem; */
  margin-top: 5rem;
  /* color: #b23373; */
  font-size: 1rem;
  color: rgba(0 0 0 / .75);
}

.completion-message .btn-secondary {
 
  text-align: center;
  padding: 1rem 1.5rem;
  margin: 0 auto;
  display: block;
  
}

}

@media (max-width: 500px) {
  .survey-container{
  flex: 0 0 400px;
    max-width: auto;
  min-width: 400px;
  }


  .dontKnow {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1;
    text-align: center
  }

  .question-title {
    font-size: 1.4rem;
  
  }

  .option-text {
    font-size: 1.4rem;
 
  }

  .btn {
    font-size: 1.4rem;
  }

  .btn-secondary {
    font-size: 14px;
  }
  
  
  .responsive-icon {
    width: 50px;
    height: 50px;
  }
 .survey-image-wrapper {
    width: 50px;
    height: 50px;
  }

  .completion-message .social-media__p {
  text-align: center;
  /* margin-bottom: .5rem; */
  margin-top: 5rem;
  /* color: #b23373; */

  font-size: 14px;
}



}

@media (max-width: 400px) {
  .survey-container {
    flex: 0 0 350px;
        max-width: auto;
  min-width: auto;
  }


  .question-title {
    font-size: .9rem;
    line-height:1.3;

  }


    .btn {
    font-size: .9rem;
      padding:1rem;

  }

    .option-text {
    font-size: .9rem;

  }
  .questions-wrapper {
    margin-bottom: 10px;
  }

  .survey-header {
    margin-bottom: 10px;

  }

  .option-label-5926 {
    padding: 0;
  }

  .completion-message .social-media__p {
  text-align: center;
  /* margin-bottom: .4rem; */
  margin-top: 5rem;
  /* color: #b23373; */

}

  /* social media section on completion page */

}

/*temporary classes  */




  .temporary p {
    color:#eb1751;
    font-size: 10px;
  }

  .temporary button {
    padding: 1.5rem .75rem;
    cursor: pointer;
    outline:#eb1751;
    transition: all 500ms;
  }

  .temporary button:hover {
    transform: translateY(-3px) scale(1.05);
  }

  .prototype {
    color:#eb1751;
    font-size: 10px;
    line-height: 1;
}

.prototype:last-of-type {
  margin-bottom: 1rem;
}
