.vcr-quiz-wrap, .vcr-dashboard-wrap {
	direction: rtl;
	text-align: right;
	font-family: inherit;
	max-width: 600px;
}

.vcr-quiz-progress {
	background: #eee;
	border-radius: 6px;
	height: 8px;
	overflow: hidden;
	margin-bottom: 20px;
}
.vcr-quiz-progress-bar {
	background: linear-gradient(90deg, #ff6a00, #ffb700);
	height: 100%;
	transition: width 0.3s ease;
}

.vcr-quiz-question {
	margin-bottom: 14px;
	font-size: 18px;
}

.vcr-quiz-option {
	display: block;
	background: #f7f7f8;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.15s ease;
}
.vcr-quiz-option:hover {
	border-color: #ff8a00;
	background: #fff6ec;
}
.vcr-quiz-option input {
	margin-left: 10px;
}

.vcr-quiz-nav {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.vcr-btn {
	display: inline-block;
	padding: 10px 22px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-size: 15px;
	text-decoration: none;
	transition: opacity 0.15s ease;
}
.vcr-btn:hover { opacity: 0.9; }
.vcr-btn-primary {
	background: #ff6a00;
	color: #fff;
}
.vcr-btn-secondary {
	background: #eee;
	color: #333;
}

.vcr-result-card, .vcr-rec-card {
	position: relative;
	background: #fff8f0;
	border: 1px solid #ffd9a8;
	border-radius: 12px;
	padding: 20px;
	margin-top: 10px;
}

.vcr-badge {
	position: absolute;
	top: -10px;
	left: 14px;
	background: #111;
	color: #ffd700;
	font-size: 12px;
	padding: 3px 10px;
	border-radius: 20px;
	font-weight: bold;
}

.vcr-hot-offers-container {
	margin-bottom: 20px;
}

.vcr-hot-offer-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: linear-gradient(135deg, #fff3e0, #ffe0cc);
	border: 1px solid #ffb066;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 12px;
	position: relative;
}
.vcr-hot-offer-fire {
	font-size: 22px;
}
.vcr-hot-offer-body strong {
	display: block;
	margin-bottom: 4px;
	font-size: 16px;
}
.vcr-hot-offer-body p {
	margin: 0 0 10px;
	font-size: 14px;
	color: #444;
}
.vcr-offer-close {
	position: absolute;
	top: 8px;
	left: 10px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	color: #999;
}
.vcr-offer-close:hover { color: #333; }

.vcr-latest-recommendation h4 {
	margin-bottom: 10px;
}

.vcr-notice {
	background: #f7f7f8;
	border-radius: 8px;
	padding: 14px 18px;
}
