/* QUIZ BUTTON */

.trishnae-quiz-btn{
background:#000;
color:#fff;
padding:12px 20px;
border:none;
cursor:pointer;
}


/* POPUP OVERLAY */

#trishnaeQuizPopup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
z-index:9999;
}


/* QUIZ BOX */

.quiz-box{
background:#fff;
width:500px;
max-width:90%;
margin:80px auto;
padding:30px;
border-radius:6px;
position:relative;
}


/* CLOSE BUTTON */

#trishnaeQuizClose{
position:absolute;
right:15px;
top:10px;
font-size:22px;
cursor:pointer;
}


/* QUIZ STEP */

.quiz-step{
display:none;
}

.quiz-step.active{
display:block;
}


/* BUTTONS */

.next-step,
.prev-step,
#trishnaeQuizSubmit{
background:#000;
color:#fff;
padding:10px 18px;
border:none;
margin-top:20px;
margin-right:10px;
cursor:pointer;
}


/* PROGRESS BAR */

.quiz-progress{
width:100%;
height:6px;
background:#eee;
margin-bottom:20px;
border-radius:4px;
overflow:hidden;
}

.quiz-progress-bar{
height:100%;
width:0%;
background:#000;
transition:width 0.3s ease;
}


/* BEST MATCH BADGE */

.best-match-badge{
background:#000;
color:#fff;
padding:6px 12px;
font-size:12px;
border-radius:4px;
display:inline-block;
margin-top:10px;
}


/* USER UNDERTONE INFO */

.user-undertone{
background:#f5f5f5;
padding:10px;
margin-bottom:10px;
font-weight:600;
}


/* BEST SHADE HIGHLIGHT */

.best-shade{
border:2px solid #000;
box-shadow:0 0 5px rgba(0,0,0,0.3);
}

.best-shade::after{
content:"Best Match";
display:block;
font-size:11px;
margin-top:4px;
color:#000;
}


/* PRODUCT PAGE BANNER */

.undertone-banner{
background:#f7f7f7;
padding:12px;
margin-top:10px;
font-weight:600;
}


.undertone-box{
background:#f6f6f6;
padding:10px;
margin-bottom:10px;
font-size:15px;
}


.best-match{
background:#ffe9a8;
padding:10px;
margin-top:10px;
font-weight:600;
border-radius:5px;
}

.not-match{
background:#f8f8f8;
padding:10px;
margin-top:10px;
}

.tone-tick{
margin-top:10px;
padding:8px 12px;
background:#000;
color:#fff;
font-size:14px;
display:inline-block;
border-radius:4px;
}

/* =========================
QUIZ OPTIONS UI (NEW)
========================= */

#trishnaeQuizForm label{
  position: relative;
  display: block;
  padding: 12px 15px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: #fff;
}

/* Hover effect */
#trishnaeQuizForm label:hover{
  background: #f9f9f9;
  border-color: #bbb;
}

/* Hide radio */
#trishnaeQuizForm input[type="radio"]{
  display: none;
}

/* Active (selected) */
#trishnaeQuizForm label.active{
  border-color: #000;
  background: #f5f5f5;
}

/* ✔ Tick mark */
#trishnaeQuizForm label.active::after{
  content: "✔";
  position: absolute;
  right: 12px;
  top: 10px;
  color: #28a745;
  font-size: 16px;
  font-weight: bold;
}

/* Smooth click feel */
#trishnaeQuizForm label:active{
  transform: scale(0.98);
}

.quiz-step label{
display:block;
padding:10px;
border:1px solid #ccc;
margin-bottom:8px;
cursor:pointer;
border-radius:6px;
position:relative;
}

.quiz-step label.active{
border:2px solid black;
background:#000;
color:#fff;
}

/* ✔ TICK */
.quiz-step label.active::after{
content:"✔";
position:absolute;
right:10px;
top:8px;
font-size:14px;
color:#fff;
}