/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 526:0 Unexpected "<"

**/
<style>
.quiz-page{
  background:#f6f3ee;
  min-height:100vh;
}

.quiz-topbar{
  background:#4d1708;
  color:#fff;
  text-align:center;
  padding:12px;
  font-size:14px;
  font-family:'Cormorant Garamond', serif;
}

.quiz-container{
  max-width:1280px;
  margin:auto;
  padding:40px 20px;
}

.quiz-breadcrumb{
  font-size:11px;
  color:#555;
  margin-bottom:25px;
}

.quiz-subtitle{
  text-align:center;
  color:#c7a66c;
  font-size:20px;
  margin-bottom:10px;
}

.quiz-title{
  text-align:center;
  font-size:58px;
  color:#7b5b39;
  font-family:"Cormorant Garamond", serif;
  margin:0;
}
.quiz-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    display: none;
}
.quiz-description{
  max-width:720px;
  margin:20px auto 40px;
  text-align:center;
  color:#666;
  line-height:1.6;
}

.quiz-box{
  background:#FFFCF5;
  padding:40px;
  border-radius:14px;
}

.quiz-time{
  font-size:18px;
  color:#444;
  margin-bottom:30px;
}

.quiz-steps{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:50px;
    padding:0 25px;
}

/* Dashed connector */
.quiz-steps::before{
    content: "";
    position: absolute;
    top: 6rem;
    left: 16%;
    right: 16%;
    border-top: 2px dashed #d8b98c;
    z-index: 0;
}
.quiz-step{
    width:25%;
    text-align:center;
    position:relative;
    z-index:1;
}

.step-label{
    display:block;
    font-size:16px;
    color:#7b5b39;
    margin-bottom:8px;
    font-family:"Cormorant Garamond", serif;
}

.step-icon{
    width:5.5rem;
    height:5.5rem;
    margin:0 auto;
    border-radius:50%;
    background:#FEEBD1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
    color:#b8882a;
    font-size:20px;
}
step-icon img{width:3rem;}
.quiz-step.active .step-icon,
.quiz-step.completed .step-icon{
    border-color: #705C2B;
    background: #FEEBD1;
    border: 2px solid;
}
.quiz-step p{
    margin-top:12px;
    color:#6d6d6d;
    font-size:18px;
    font-family:"Cormorant Garamond", serif;
}
.quiz-step.active p,
.quiz-step.completed p{
    color:#b8882a;
}

.quiz-content{
  display:flex;
  gap:40px;
}

.quiz-left{
  flex:2;
}

.quiz-left h3{
  font-size:18px;
  color:#4b3b2b;
  margin-bottom:20px;
}

.quiz-left label{
  display:block;
  margin-bottom:12px;
  font-size:14px;
  color:#555;
}

.quiz-left input[type="checkbox"]{
  margin-right:8px;
}

.submit-btn{
  margin-top:20px;
  padding:12px 26px;
  background:#b88b2c;
  color:#fff;
  border:none;
  cursor:pointer;
}

.quiz-right{
  flex:1;
  background:#F6F6F6;
  border:1px solid #7A5C3A;
  border-radius:0.8rem;
  overflow:hidden;
  height:32.5rem;
}

.question-tab, .quiz-list-header{
  padding:14px;
  border-bottom:1px solid #705C2B;
  font-size:14px;
  color:#705C2B;
  font-family: "Cormorant Garamond", serif;
}

.question-tab.active{
  background:#f4ebdd;
  color:#B8882A;
  font-weight:600;
}

.manna-flow{
  display:flex;
  gap:40px;
  margin-top:50px;
  align-items:center;
}

.flow-left{
  flex:1;
}

.flow-left h2{
  font-size:54px;
  color:#7b5b39;
  font-family:"Cormorant Garamond", serif;
}

.flow-left p{
  color:#666;
  line-height:1.6;
}

.flow-left input{
  width:100%;
  height:46px;
  margin:20px 0 10px;
  padding:0 14px;
}

.flow-left button{
  width:100%;
  height:46px;
  background:#b88b2c;
  color:#fff;
  border:none;
}

.flow-right{
  flex:1;
}

.flow-right img{
  width:100%;
  border-radius:10px;
}
.quiz-nav-btns{
  display:flex;
  gap:12px;
  margin-top:30px;
}

.quiz-nav-btns button{
  padding:12px 26px;
  background:#B8882A;
  color:#fff;
  border:none;
  cursor:pointer;
}

.options label{
  display:block;
  margin-bottom:12px;
}

.options{
  margin-top:25px;
}

.quiz-option{
  display:block;
  margin-bottom:14px;
  font-size:15px;
  cursor:pointer;
}

.quiz-option input{
  margin-right:10px;
}



/* ------success part completed---------- */
.score-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:99999;
}

.score-modal.active{
  display:flex;
  align-items:center;
  justify-content:center;
}

.score-modal-content{
  width:420px;
  background:#fff;
  border-radius:16px;
  padding:40px 30px;
  text-align:center;
  position:relative;
  animation:popup .3s ease;
}

@keyframes popup{
  from{
    transform:scale(.8);
    opacity:0;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}

#closeScoreModal{
  position:absolute;
  top:15px;
  right:18px;
  cursor:pointer;
  font-size:24px;
}

.score-modal-content h2{
  color:#7A5C3A;
  font-family:"Cormorant Garamond", serif;
  font-size:36px;
  margin-bottom:20px;
}

.score-circle{
  width:120px;
  height:120px;
  margin:auto;
  border-radius:50%;
  background:#B8882A;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:40px;
  font-weight:bold;
}

#scoreMessage{
  margin:24px 0;
  color:#555;
  line-height:1.6;
}

#continueQuizBtn{
  background:#B8882A;
  color:white;
  border:none;
  padding:14px 30px;
  cursor:pointer;
  border-radius:6px;
}
.quiz-step.completed .step-icon{
background:#B8882A;
color:#fff;
}

.quiz-step.completed p{
color:#B8882A;
}

/* .quiz-step.active .step-icon{
background: #FEEBD1;
color:#fff;
} */
/* ===========================
   ASSESSMENT POPUP
=========================== */

.assessment-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.assessment-popup-box {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #ffffff;
  border-radius: 12px;
  padding: 45px 42px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: #3d2c1f;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.popup-close:hover {
  color: #b88b2c;
}

.assessment-popup-box h2 {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: #8c6239;
  text-align: left;
}

.assessment-popup-box input {
  width: 100%;
  height: 52px;
  margin-bottom: 16px;
  padding: 0 18px;
  border: 1px solid #ece7df;
  background: #f8f8f8;
  border-radius: 4px;
  outline: none;
  font-size: 15px;
  color: #555;
  transition: 0.3s;
}

.assessment-popup-box input:focus {
  border-color: #b88b2c;
  background: #fff;
}

.assessment-popup-box input::placeholder {
  color: #999;
}

#startAssessment {
  width: 100%;
  height: 50px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  background: #b88b2c;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

#startAssessment:hover {
  background: #9f7625;
}

.assessment-popup-box p {
  margin-top: 18px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

  .assessment-popup {
    padding: 20px;
  }

  .assessment-popup-box {
    padding: 30px 22px;
  }

  .assessment-popup-box h2 {
    font-size: 32px;
    margin-bottom: 22px;
  }

  .assessment-popup-box input {
    height: 46px;
    font-size: 14px;
  }

  #startAssessment {
    height: 46px;
    font-size: 13px;
  }

}

@media (max-width:991px){

    .quiz-content,
    .manna-flow,
    .quiz-steps{
        flex-direction:column;
    }

    .quiz-steps::before{
        display:none;
    }

    .quiz-step{
        width:100%;
        margin-bottom:30px;
    }

    .quiz-title{
        font-size:36px;
    }
}
</style>