/* 
Wizard CSS 
*/

.tb-wizard-container {
	max-width: 850px;
	margin: 5rem auto;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 20px 60px -15px rgba(2, 132, 199, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
	padding: 4rem;
	position: relative;
	min-height: 450px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.tb-wizard-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background: linear-gradient(90deg, #fbbf24, #10b981, #0284c7);
}

/* Steps */
.tb-wizard-step {
	display: none;
	text-align: center;
	animation: fadeIn 0.5s ease forwards;
}

.tb-wizard-step.active {
	display: block;
}

.tb-wizard-step h2 {
	font-size: 2rem;
	color: #0a1128 !important;
	margin-bottom: 1rem;
	font-weight: 800;
	letter-spacing: -0.5px;
}

.tb-wizard-step p {
	color: #475569 !important;
	margin-bottom: 2.5rem;
	font-size: 1.15rem;
}

/* Inputs & Buttons */
.tb-wiz-input-group {
	display: flex;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto;
}

.tb-wiz-input-group input {
	flex: 1;
	padding: 1rem;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1.1rem;
	transition: border-color 0.3s;
 padding: 1.25rem; font-size: 1.2rem; background: #f8fafc; border: 2px solid #cbd5e1; box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); }

.tb-wiz-input-group input:focus {
	outline: none;
	border-color: #0284c7;
 border-color: #fbbf24; box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2); background: #ffffff; }

.tb-wiz-btn {
	background: linear-gradient(135deg, #0284c7, #0369a1);
	color: #fff;
	border: none;
	padding: 1.25rem 2.5rem;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.tb-wiz-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
	background: linear-gradient(135deg, #0369a1, #075985);
}

.tb-wiz-error {
	color: #ef4444 !important;
	font-size: 0.9rem !important;
	margin-top: 1rem !important;
	display: none;
}

/* Options */
.tb-wiz-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto;
}

@media(min-width: 600px) {
	.tb-wiz-options {
		grid-template-columns: 1fr 1fr;
	}
}

.tb-wiz-opt-btn {
	background: #f8fafc;
	border: 2px solid #e2e8f0;
	padding: 1.5rem;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #334155;
	cursor: pointer;
	transition: all 0.3s;
 display: flex; align-items: center; justify-content: center; padding: 2rem 1.5rem; font-size: 1.25rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); background: #ffffff; border: 2px solid #e2e8f0; }

.tb-wiz-opt-btn:hover {
	border-color: #0284c7;
	background: #f0f9ff;
	color: #0284c7;
 transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.15); border-color: #fbbf24; color: #d97706; background: #fffbeb; }

/* Loading */
.tb-wizard-loading {
	display: none;
	text-align: center;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tb-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #0284c7;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 2rem;
}

.tb-wizard-loading h3 {
	font-size: 1.5rem;
	color: #0a1128;
}

/* Results */
.tb-wizard-results {
	display: none;
	text-align: center;
	animation: fadeIn 0.8s ease forwards;
}

.tb-wizard-results h2 {
	font-size: 2rem;
	color: #0a1128;
	margin-bottom: 1rem;
	font-weight: 800;
}

.tb-wizard-results > p {
	color: #475569;
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.tb-wiz-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media(min-width: 768px) {
	.tb-wiz-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

.premium-wiz-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2rem;
	text-align: left;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.premium-wiz-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #fbbf24, #10b981);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.premium-wiz-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
	border-color: #cbd5e1;
}

.premium-wiz-card:hover::before {
	opacity: 1;
}

.wiz-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
	gap: 1rem;
}

.wiz-card-header h3 {
	font-size: 1.3rem;
	color: #0f172a;
	margin: 0;
	font-weight: 800;
}

.match-badge {
	background: #ecfdf5;
	color: #059669;
	padding: 0.3rem 0.6rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	white-space: nowrap;
	border: 1px solid #a7f3d0;
}

.wiz-card-desc {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.wiz-card-footer {
	margin-top: auto;
}

.wiz-card-footer .tb-wiz-btn {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 0.8rem 1rem;
	background: #f8fafc;
	color: #0284c7;
	border: 1px solid #bae6fd;
}

.wiz-card-footer .tb-wiz-btn:hover {
	background: #0284c7;
	color: #ffffff;
}

/* Animations */
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}
