.dosha-quiz-page {
	max-width: 720px;
	margin: 8px auto 56px;
	padding: 8px 16px 40px;
	color: #2a241c;
	box-sizing: border-box;
}

.dosha-quiz-page *,
.dosha-quiz-page *::before,
.dosha-quiz-page *::after {
	box-sizing: border-box;
}

.dosha-quiz-kicker {
	margin: 0 0 10px;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8a7355;
}

.dosha-quiz-page h1 {
	margin: 0 0 14px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 700;
	color: #1f1a14;
}

.dosha-quiz-lead {
	margin: 0 0 12px;
	font-size: 16px;
	line-height: 1.6;
	color: #4a4034;
	max-width: 54em;
}

.dosha-quiz-note {
	margin: 0 0 24px;
	font-size: 13px;
	line-height: 1.55;
	color: #7a6b58;
	max-width: 54em;
}

.dosha-quiz-note a {
	color: #6b5344;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.dosha-quiz-app {
	background: #f3ebe0;
	border: 1px solid #e0d3bf;
	border-radius: 18px;
	padding: 28px 28px 24px;
	box-shadow: 0 8px 24px rgba(74, 56, 32, 0.06);
}

.dosha-quiz-progress {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 26px;
}

.dosha-quiz-progress-bar {
	flex: 1;
	height: 6px;
	background: #e5d8c5;
	border-radius: 999px;
	overflow: hidden;
}

.dosha-quiz-progress-fill {
	height: 100%;
	width: 0;
	background: #8b6914;
	transition: width 0.25s ease;
}

.dosha-quiz-progress-text {
	font-size: 13px;
	font-weight: 600;
	color: #6b5a45;
	white-space: nowrap;
	min-width: 3.5em;
	text-align: right;
}

.dosha-quiz-section {
	margin: 0 0 6px;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8a7355;
}

.dosha-quiz-question {
	margin: 0 0 20px;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
	color: #1f1a14;
}

.dosha-quiz-options {
	display: grid;
	gap: 12px;
}

.dosha-quiz-app .dosha-quiz-option {
	display: block;
	width: 100%;
	margin: 0;
	text-align: left;
	padding: 16px 18px;
	border: 1px solid #d8caba;
	border-radius: 10px;
	background: #ffffff;
	color: #2a241c;
	font-size: 15px;
	line-height: 1.5;
	font-family: inherit;
	font-weight: 400;
	cursor: pointer;
	box-shadow: none;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.dosha-quiz-app .dosha-quiz-option:hover {
	border-color: #b89768;
	background: #fffdf9;
}

.dosha-quiz-app .dosha-quiz-option.is-selected {
	border-color: #8b6914;
	background: #fff8ee;
	box-shadow: 0 0 0 1px #8b6914;
}

.dosha-quiz-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #e0d3bf;
}

.dosha-quiz-app .dosha-quiz-btn {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	border-radius: 10px;
	padding: 12px 20px;
	min-width: 110px;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: none;
}

.dosha-quiz-app .dosha-quiz-btn:disabled {
	opacity: 0.4;
	cursor: default;
}

.dosha-quiz-app .dosha-quiz-btn-secondary {
	background: #fff;
	border: 1px solid #cbbba3;
	color: #5c4a36;
}

.dosha-quiz-app .dosha-quiz-btn-primary {
	background: #5c4335;
	border: 1px solid #5c4335;
	color: #fff;
}

.dosha-quiz-app .dosha-quiz-btn-primary:hover:not(:disabled) {
	background: #473328;
	border-color: #473328;
}

.dosha-quiz-result h2 {
	margin: 0 0 6px;
	font-size: 24px;
	color: #1f1a14;
}

.dosha-quiz-result-type {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 700;
	color: #5c4335;
}

.dosha-quiz-bars {
	display: grid;
	gap: 14px;
	margin-bottom: 22px;
}

.dosha-quiz-bar-row {
	display: grid;
	grid-template-columns: 64px 1fr 44px;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.dosha-quiz-bar-track {
	height: 10px;
	border-radius: 999px;
	background: #e5d8c5;
	overflow: hidden;
}

.dosha-quiz-bar-fill {
	height: 100%;
	border-radius: 999px;
}

.dosha-quiz-bar-fill.vata { background: #5b8db8; }
.dosha-quiz-bar-fill.pitta { background: #c45c3e; }
.dosha-quiz-bar-fill.kapha { background: #5f8f5b; }

.dosha-quiz-result-text {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.6;
	color: #4a4034;
}

.dosha-quiz-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid #e0d3bf;
}

.dosha-quiz-cta a {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 10px;
	background: #5c4335;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 600;
}

.dosha-quiz-cta a.secondary {
	background: #fff;
	border: 1px solid #cbbba3;
	color: #5c4a36 !important;
}

@media (max-width: 640px) {
	.dosha-quiz-page {
		padding: 0 12px 32px;
	}

	.dosha-quiz-page h1 {
		font-size: 24px;
	}

	.dosha-quiz-question {
		font-size: 18px;
		margin-bottom: 16px;
	}

	.dosha-quiz-app {
		padding: 20px 16px 18px;
		border-radius: 14px;
	}

	.dosha-quiz-app .dosha-quiz-option {
		padding: 14px 14px;
		font-size: 14px;
	}

	.dosha-quiz-app .dosha-quiz-btn {
		min-width: 0;
		flex: 1;
		padding: 12px 14px;
	}

	.dosha-quiz-nav {
		margin-top: 22px;
		padding-top: 16px;
	}
}
