.hair-quiz {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
font-family: inherit;
} .hair-quiz .quiz-title {
text-align: center;
margin-bottom: 20px;
font-size: 17px;
color: #333;
} .hair-quiz .progress-bar {
height: 6px;
background: #eee;
border-radius: 3px;
margin: 15px 0 25px 0;
overflow: hidden;
}
.hair-quiz .progress-bar-fill {
height: 100%;
width: 0;
background: #4CAF50;
border-radius: 3px;
transition: width 0.3s ease;
} .hair-quiz .quiz-question {
display: none;
padding: 10px 0;
}
.hair-quiz .quiz-question.active {
display: block !important;
animation: fadeIn 0.3s ease;
}
.hair-quiz .question-title {
font-size: 18px;
margin-bottom: 20px;
color: #333;
font-weight: 500;
} .hair-quiz .answer-button {
display: block;
width: 100%;
padding: 15px 20px;
margin: 10px 0;
border: 2px solid #e0e0e0;
border-radius: 8px;
background: white;
text-align: left;
font-size: 16px;
cursor: pointer;
transition: all 0.2s;
color: #333;
position: relative;
font-family: 'Inter';
font-weight: 600;
}
.hair-quiz .answer-button:hover {
border-color: #4CAF50;
background: #f9f9f9;
}
.hair-quiz .answer-button:after {
content: "→";
position: absolute;
right: 20px;
opacity: 0;
transition: opacity 0.2s;
}
.hair-quiz .answer-button:hover:after {
opacity: 1;
} .hair-quiz .results {
display: none;
}
.hair-quiz .results.active {
display: block !important;
animation: fadeIn 0.3s ease;
}
.hair-quiz .results h3 {
color: #2E7D32;
font-size: 24px;
margin-bottom: 15px;
text-align: center;
}
.hair-quiz .results p {
color: #555;
text-align: center;
margin-bottom: 20px;
} .hair-quiz .benefits {
margin: 30px 0;
padding: 5px;
background: #f9f9f9;
border-radius: 8px;
}
.hair-quiz .benefits ul {
list-style: none;
padding: 0;
margin: 0;
}
.hair-quiz .benefits li {
padding: 12px 0;
color: #333;
position: relative;
padding-left: 10px;
font-size: 16px;
} .hair-quiz .quiz-form {
margin-top: 30px;
padding: 5px;
background: #ffffff;
border-radius: 8px;
}
.hair-quiz .wpcf7-form {
margin: 0;
}
.hair-quiz .wpcf7-form label {
display: block;
margin-bottom: 8px;
color: #333;
font-weight: 500;
}
.hair-quiz .wpcf7-form input[type="email"] {
width: 100%;
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 6px;
font-size: 16px;
margin-bottom: 15px;
transition: border-color 0.2s;
}
.hair-quiz .wpcf7-form input[type="email"]:focus {
border-color: #4CAF50;
outline: none;
font-family: 'Inter';
}
.hair-quiz .wpcf7-form input[type="submit"] {
background: #4CAF50;
color: white;
padding: 12px 30px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: background 0.2s;
width: 100%;
font-family: 'Inter';
}
.hair-quiz .wpcf7-form input[type="submit"]:hover {
background: #43A047;
} @keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} @media (max-width: 640px) {
.hair-quiz {
margin: 10px;
padding: 15px;
}
.hair-quiz .question-title {
font-size: 16px;
}
.hair-quiz .answer-button {
padding: 12px 15px;
font-size: 15px;
}
.hair-quiz .results h3 {
font-size: 20px;
}
.hair-quiz .benefits li {
font-size: 14px;
}
} .hair-quiz .wpcf7-not-valid-tip {
color: #dc3232;
font-size: 14px;
margin-top: 5px;
}
.hair-quiz .wpcf7-response-output {
margin: 20px 0 0 0;
padding: 12px;
border-radius: 4px;
text-align: center;
} .hair-quiz .results-message {
margin: 20px 0;
padding: 15px;
background: #E8F5E9;
border-radius: 6px;
color: #2E7D32;
text-align: center;
}