/* ── TZ Tabs Widget ─────────────────────────────────────────────────── */

.tz-tabs-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Nav */
.tz-tabs-nav-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tz-tabs-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	background: #f0eeeb;
	border-radius: 50px;
	padding: 6px;
	width: 100%;
}

.tz-tab-nav-item {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	border: 1px solid transparent;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	user-select: none;
	line-height: 1;
	flex-shrink: 0;
	white-space: nowrap;
}

.tz-tab-nav-item.is-active {
	background: #ffffff;
	border-color: #e0ddd8;
	color: #1a1a1a;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.tz-tab-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.tz-tab-icon i {
	font-size: 15px;
	line-height: 1;
}

.tz-tab-icon svg {
	width: 15px;
	height: 15px;
}

/* Panel */
.tz-tab-panel {
	display: none;
	border-radius: 16px;
	overflow: hidden;
	min-height: 340px;
}

.tz-tab-panel.is-active {
	display: flex;
}

/* Left */
.tz-panel-left {
	flex: 0 0 58%;
	background: #ffffff;
	padding: 48px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

/* Badge */
.tz-badge {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	flex-shrink: 0;
}

.tz-badge i {
	font-size: 24px;
	color: #f5c842;
	line-height: 1;
}

.tz-badge svg {
	width: 24px;
	height: 24px;
	fill: #f5c842;
}

/* Heading */
.tz-heading {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
	line-height: 1.3;
	padding: 0;
}

/* Description */
.tz-description {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 28px;
}

/* CTA */
.tz-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 700;
	font-size: 15px;
	color: #1a1a1a;
	text-decoration: none;
	transition: opacity 0.15s ease;
	margin-top: auto;
}

.tz-cta-link:hover {
	opacity: 0.65;
	color: #1a1a1a;
}

.tz-cta-arrow {
	font-style: normal;
	font-size: 1em;
}

/* Right */
.tz-panel-right {
	flex: 1;
	background: #ece9e3;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}


/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
	.tz-panel-left {
		padding: 36px;
	}

	.tz-heading {
		font-size: 24px;
	}
}

@media (max-width: 768px) {
	.tz-tab-panel.is-active {
		flex-direction: column;
	}

	.tz-panel-left {
		flex: none;
		padding: 32px 24px;
	}

	.tz-panel-right {
		min-height: 180px;
		flex: none;
	}

	.tz-tab-nav-item {
		padding: 7px 12px;
		font-size: 13px;
	}

	.tz-heading {
		font-size: 22px;
	}
}

