/**
 * Calculator specific styles – Cash Credit & future tools
 * v1.0.1 – better mobile, a11y, touch targets
 */

.bz-calculator-page {
	padding: 24px 0 56px;
	background: var(--bz-bg);
	min-height: 60vh;
}

.bz-calc-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.bz-calc-icon {
	font-size: 2.4rem;
	line-height: 1;
	flex-shrink: 0;
}

.bz-calc-header h1 {
	margin: 0 0 4px;
	font-size: clamp(1.35rem, 4vw, 1.6rem);
	font-weight: 700;
	color: var(--bz-text);
}

.bz-calc-header p {
	margin: 0;
	color: var(--bz-text-muted);
	font-size: 0.9rem;
}

.bz-calc-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: start;
}

.bz-calc-card {
	background: var(--bz-card-bg);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--bz-border);
	border-radius: var(--bz-radius);
	padding: 22px;
	box-shadow: var(--bz-shadow);
}

.bz-calc-card h2 {
	margin: 0 0 18px;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--bz-text);
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bz-form-group {
	margin-bottom: 16px;
}

.bz-form-group label,
.bz-label-text {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--bz-text);
}

.bz-field-hint {
	display: block;
	font-size: 0.75rem;
	color: var(--bz-text-muted);
	margin-top: 4px;
}

.bz-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 16px;
	border: 1.5px solid #cdd5df;
	border-radius: 10px;
	background: #fff;
	color: var(--bz-text);
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: inherit;
	min-height: 44px;
	-webkit-appearance: none;
	appearance: none;
}

.bz-input:focus {
	outline: none;
	border-color: var(--bz-primary);
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.18);
}

.bz-radio-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.bz-radio {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	min-height: 44px;
	border: 1.5px solid #cdd5df;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 500;
	font-size: 0.95rem;
	background: #fff;
	transition: all 0.2s;
	user-select: none;
}

.bz-radio:hover {
	border-color: var(--bz-primary);
}

.bz-radio input {
	accent-color: var(--bz-primary);
	width: 16px;
	height: 16px;
}

.bz-radio input:checked + span {
	color: var(--bz-primary);
	font-weight: 600;
}

.bz-error-msg {
	background: #f8d7da;
	color: #842029;
	border: 1px solid #f5c2c7;
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 0.875rem;
	margin-bottom: 12px;
}

.bz-btn-row {
	display: flex;
	gap: 10px;
	margin-top: 6px;
	flex-wrap: wrap;
}

.bz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	min-height: 44px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
	-webkit-tap-highlight-color: transparent;
}

.bz-btn:active {
	transform: scale(0.97);
}

.bz-btn-primary {
	background: linear-gradient(135deg, var(--bz-primary), var(--bz-secondary));
	color: #fff;
	box-shadow: 0 4px 14px rgba(13, 110, 253, 0.32);
	flex: 1;
}

.bz-btn-primary:hover {
	box-shadow: 0 6px 18px rgba(13, 110, 253, 0.42);
}

.bz-btn-secondary {
	background: #e9ecef;
	color: #343a40;
	flex: 0 0 auto;
}

.bz-btn-secondary:hover {
	background: #dee2e6;
}

.bz-btn-outline {
	background: transparent;
	border: 1.5px solid var(--bz-primary);
	color: var(--bz-primary);
}

.bz-btn-outline:hover:not(:disabled) {
	background: rgba(13, 110, 253, 0.08);
}

.bz-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.bz-results {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.bz-result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	gap: 12px;
}

.bz-result-item:last-child {
	border-bottom: none;
}

.bz-result-label {
	font-size: 0.875rem;
	color: var(--bz-text-muted);
	flex: 1;
}

.bz-result-value {
	font-size: 1rem;
	font-weight: 700;
	color: var(--bz-text);
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

.bz-result-highlight {
	background: linear-gradient(135deg, rgba(13, 110, 253, 0.07), rgba(102, 16, 242, 0.07));
	margin: 4px -10px;
	padding: 12px 10px;
	border-radius: 10px;
	border-bottom: none;
}

.bz-result-highlight .bz-result-value {
	color: var(--bz-primary);
	font-size: 1.1rem;
}

.bz-results-actions {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bz-calc-note {
	margin-top: 28px;
	padding: 14px 16px;
	background: rgba(13, 110, 253, 0.06);
	border-left: 4px solid var(--bz-primary);
	border-radius: 0 10px 10px 0;
	font-size: 0.85rem;
	color: var(--bz-text-muted);
}

.bz-calc-note p {
	margin: 0;
}

.bz-tools-wrapper.bz-dark .bz-input,
.bz-tools-wrapper.bz-dark .bz-radio {
	background: #1e293b;
	border-color: #334155;
	color: #f1f5f9;
}

.bz-tools-wrapper.bz-dark .bz-btn-secondary {
	background: #334155;
	color: #e2e8f0;
}

@media (max-width: 900px) {
	.bz-calc-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.bz-calculator-page {
		padding: 16px 0 40px;
	}

	.bz-calc-header {
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 8px;
	}

	.bz-calc-card {
		padding: 18px 14px;
	}

	.bz-btn-row {
		flex-direction: column;
	}

	.bz-btn {
		width: 100%;
	}

	.bz-result-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		padding: 10px 0;
	}

	.bz-result-value {
		text-align: left;
		font-size: 1.05rem;
	}

	.bz-result-highlight .bz-result-value {
		font-size: 1.2rem;
	}
}

@media print {
	.bz-back-link,
	.bz-btn-row,
	.bz-calc-note,
	.bz-error-msg {
		display: none !important;
	}

	.bz-calc-layout {
		grid-template-columns: 1fr;
	}

	.bz-calc-card {
		box-shadow: none;
		border: 1px solid #ccc;
		break-inside: avoid;
	}
}

/* ========== Profit Margin Calculator Pro (v1.0.4) ========== */
.bz-mode-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	padding: 4px;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 12px;
}

.bz-mode-tab {
	flex: 1 1 auto;
	min-width: 120px;
	padding: 11px 14px;
	min-height: 44px;
	border: 1.5px solid transparent;
	border-radius: 10px;
	background: transparent;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	color: var(--bz-text-muted);
	transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
	text-align: center;
}

.bz-mode-tab:hover {
	color: var(--bz-text);
	background: rgba(255, 255, 255, 0.7);
}

.bz-mode-tab:focus-visible {
	outline: 2px solid var(--bz-primary);
	outline-offset: 2px;
}

.bz-mode-tab.is-active {
	background: linear-gradient(135deg, var(--bz-primary), var(--bz-secondary));
	color: #fff;
	box-shadow: 0 4px 14px rgba(13, 110, 253, 0.28);
}

.bz-margin-meter {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bz-meter-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.bz-meter-label {
	font-size: 0.85rem;
	font-weight: 600;
}

.bz-meter-status {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.bz-meter-bar {
	height: 10px;
	background: #e9ecef;
	border-radius: 6px;
	overflow: hidden;
}

.bz-meter-fill {
	height: 100%;
	width: 0;
	border-radius: 6px;
	transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
	background: #198754;
}

.bz-meter-scale {
	display: flex;
	justify-content: space-between;
	font-size: 0.68rem;
	color: var(--bz-text-muted);
	margin-top: 5px;
}

.bz-charts-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 22px;
}

.bz-chart-card h3 {
	margin: 0 0 16px;
	font-size: 0.95rem;
	font-weight: 700;
}

.bz-pie-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	min-height: 150px;
}

.bz-pie-legend {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 500;
}

.bz-leg-cost,
.bz-leg-profit {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bz-leg-cost::before,
.bz-leg-profit::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 3px;
	flex-shrink: 0;
}

.bz-leg-cost::before { background: #0d6efd; }
.bz-leg-profit::before { background: #198754; }

.bz-bar-chart {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 48px;
	height: 160px;
	padding-bottom: 4px;
}

.bz-bar-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.bz-bar {
	width: 52px;
	border-radius: 10px 10px 4px 4px;
	transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
	min-height: 12px;
}

.bz-bar-cost {
	background: linear-gradient(180deg, #3d8bfd, #0d6efd 60%, #6610f2);
	box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

.bz-bar-selling {
	background: linear-gradient(180deg, #2dd4a8, #198754 60%, #146c43);
	box-shadow: 0 4px 12px rgba(25, 135, 84, 0.25);
}

.bz-bar-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--bz-text-muted);
}

.bz-insights,
.bz-whatif,
.bz-tips,
.bz-faq {
	margin-top: 22px;
}

.bz-insights h3,
.bz-whatif h3,
.bz-tips h3,
.bz-faq h3 {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 700;
}

.bz-insights ul,
.bz-tips ul {
	margin: 0;
	padding-left: 1.15rem;
}

.bz-insights li,
.bz-tips li {
	margin-bottom: 10px;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--bz-text);
}

.bz-insights li:last-child,
.bz-tips li:last-child {
	margin-bottom: 0;
}

.bz-whatif-desc {
	font-size: 0.9rem;
	color: var(--bz-text-muted);
	margin: 0 0 16px;
	line-height: 1.5;
}

.bz-whatif-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.bz-whatif-grid strong {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--bz-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.bz-whatif-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bz-whatif-btns button {
	padding: 9px 14px;
	min-height: 40px;
	border: 1.5px solid #d0d7de;
	border-radius: 9px;
	background: #fff;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	font-family: inherit;
	color: var(--bz-text);
	transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.1s;
}

.bz-whatif-btns button:hover {
	border-color: var(--bz-primary);
	color: var(--bz-primary);
	background: rgba(13, 110, 253, 0.04);
}

.bz-whatif-btns button:active {
	transform: scale(0.97);
}

.bz-whatif-btns button:focus-visible {
	outline: 2px solid var(--bz-primary);
	outline-offset: 2px;
}

.bz-whatif-result {
	margin-top: 16px;
	padding: 14px 16px;
	background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(102, 16, 242, 0.05));
	border-radius: 10px;
	font-size: 0.9rem;
	line-height: 1.5;
	min-height: 1.5em;
	border: 1px solid rgba(13, 110, 253, 0.1);
}

.bz-edu-section {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 16px;
	margin-top: 22px;
}

.bz-edu-section .bz-calc-card {
	padding: 20px;
}

.bz-edu-section .bz-calc-card h3 {
	margin: 0 0 10px;
	font-size: 0.98rem;
	font-weight: 700;
}

.bz-edu-section .bz-calc-card p {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--bz-text-muted);
}

.bz-faq-item {
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bz-faq-item:first-of-type {
	padding-top: 4px;
}

.bz-faq-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.bz-faq-item h4 {
	margin: 0 0 6px;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--bz-text);
}

.bz-faq-item p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--bz-text-muted);
}

.bz-articles {
	margin-top: 28px;
}

.bz-articles h3 {
	margin: 0 0 14px;
	font-size: 1.05rem;
	font-weight: 700;
}

.bz-article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 12px;
}

.bz-article-card {
	background: var(--bz-card-bg);
	backdrop-filter: blur(8px);
	border: 1px solid var(--bz-border);
	border-radius: 12px;
	padding: 16px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	box-shadow: var(--bz-shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.bz-article-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(31, 38, 135, 0.12);
}

/* Dark mode tweaks for PM */
.bz-tools-wrapper.bz-dark .bz-mode-tabs {
	background: rgba(255, 255, 255, 0.05);
}

.bz-tools-wrapper.bz-dark .bz-mode-tab {
	color: var(--bz-text-muted);
}

.bz-tools-wrapper.bz-dark .bz-mode-tab:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--bz-text);
}

.bz-tools-wrapper.bz-dark .bz-whatif-btns button {
	background: #1e293b;
	border-color: #334155;
	color: var(--bz-text);
}

.bz-tools-wrapper.bz-dark .bz-meter-bar {
	background: #334155;
}

@media (max-width: 800px) {
	.bz-charts-row,
	.bz-whatif-grid {
		grid-template-columns: 1fr;
	}

	.bz-mode-tabs {
		flex-direction: column;
		gap: 6px;
	}

	.bz-mode-tab {
		width: 100%;
		min-width: 0;
	}

	.bz-bar-chart {
		gap: 36px;
		height: 140px;
	}

	.bz-bar {
		width: 44px;
	}
}

@media (max-width: 480px) {
	.bz-edu-section {
		grid-template-columns: 1fr;
	}

	.bz-article-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bz-whatif-btns button {
		flex: 1 1 calc(50% - 8px);
		text-align: center;
	}
}

@media print {
	.bz-mode-tabs,
	.bz-whatif,
	.bz-articles,
	.bz-edu-section,
	.bz-tips,
	.bz-faq {
		break-inside: avoid;
	}
}

/* ========== Margin vs Markup Comparison ========== */
.bz-mm-compare {
	margin-top: 22px;
}

.bz-mm-title {
	margin: 0 0 18px;
	font-size: 1.1rem;
	font-weight: 700;
}

.bz-mm-table-wrap {
	overflow-x: auto;
	margin-bottom: 22px;
	-webkit-overflow-scrolling: touch;
}

.bz-mm-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
	min-width: 480px;
}

.bz-mm-table th,
.bz-mm-table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	vertical-align: top;
	line-height: 1.45;
}

.bz-mm-table thead th {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--bz-text);
	background: rgba(13, 110, 253, 0.04);
}

.bz-mm-table tbody th {
	font-weight: 600;
	color: var(--bz-text-muted);
	width: 22%;
	white-space: nowrap;
}

.bz-mm-table tbody td {
	color: var(--bz-text);
	width: 39%;
}

.bz-mm-table tbody tr:last-child th,
.bz-mm-table tbody tr:last-child td {
	border-bottom: none;
}

.bz-mm-bars {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 20px;
}

.bz-mm-bar-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bz-mm-bar-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bz-mm-bar-name {
	font-size: 0.85rem;
	font-weight: 600;
}

.bz-mm-bar-pct {
	font-size: 0.9rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.bz-mm-bar-track {
	height: 14px;
	background: #e9ecef;
	border-radius: 8px;
	overflow: hidden;
}

.bz-mm-bar-fill {
	height: 100%;
	width: 0;
	border-radius: 8px;
	transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bz-mm-fill-margin {
	background: linear-gradient(90deg, #0d6efd, #3d8bfd);
	box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.bz-mm-fill-markup {
	background: linear-gradient(90deg, #6610f2, #9b59b6);
	box-shadow: 0 2px 8px rgba(102, 16, 242, 0.3);
}

.bz-mm-note {
	padding: 14px 16px;
	background: rgba(13, 110, 253, 0.06);
	border-left: 4px solid var(--bz-primary);
	border-radius: 0 10px 10px 0;
	margin-bottom: 14px;
}

.bz-mm-note p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--bz-text);
}

.bz-mm-didyouknow {
	padding: 14px 16px;
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(253, 126, 20, 0.08));
	border: 1px solid rgba(255, 193, 7, 0.35);
	border-radius: 12px;
	margin-bottom: 18px;
}

.bz-mm-didyouknow strong {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: #9a7200;
}

.bz-mm-didyouknow p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--bz-text);
}

.bz-mm-learn {
	width: 100%;
	max-width: 280px;
}

.bz-tools-wrapper.bz-dark .bz-mm-table thead th {
	background: rgba(255, 255, 255, 0.05);
}

.bz-tools-wrapper.bz-dark .bz-mm-bar-track {
	background: #334155;
}

.bz-tools-wrapper.bz-dark .bz-mm-didyouknow strong {
	color: #ffc107;
}

@media (max-width: 600px) {
	.bz-mm-table {
		font-size: 0.82rem;
		min-width: 420px;
	}

	.bz-mm-table th,
	.bz-mm-table td {
		padding: 10px 10px;
	}

	.bz-mm-learn {
		max-width: 100%;
	}
}

/* ========== Continue Learning ========== */
.bz-continue-learning {
	margin-top: 36px;
	padding-top: 8px;
}

.bz-cl-header {
	margin-bottom: 20px;
	text-align: center;
}

.bz-cl-header h3 {
	margin: 0 0 8px;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--bz-text);
}

.bz-cl-subtitle {
	margin: 0;
	font-size: 0.95rem;
	color: var(--bz-text-muted);
	line-height: 1.5;
}

.bz-cl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 18px;
}

.bz-cl-card {
	background: var(--bz-card-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--bz-border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--bz-shadow);
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bz-cl-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(31, 38, 135, 0.14);
}

.bz-cl-image-link {
	display: block;
	overflow: hidden;
}

.bz-cl-image {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
	background: #e9ecef;
}

.bz-cl-image-placeholder {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(102, 16, 242, 0.1));
}

.bz-cl-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.bz-cl-title {
	margin: 0 0 8px;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
}

.bz-cl-title a {
	color: var(--bz-text);
	text-decoration: none;
}

.bz-cl-title a:hover {
	color: var(--bz-primary);
}

.bz-cl-excerpt {
	margin: 0 0 10px;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--bz-text-muted);
	flex: 1;
}

.bz-cl-meta {
	margin-bottom: 12px;
}

.bz-cl-time {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--bz-text-muted);
	background: rgba(0, 0, 0, 0.04);
	padding: 3px 8px;
	border-radius: 20px;
}

.bz-cl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	min-height: 40px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--bz-primary);
	border: 1.5px solid var(--bz-primary);
	border-radius: 9px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
	text-align: center;
}

.bz-cl-btn:hover {
	background: var(--bz-primary);
	color: #fff;
	text-decoration: none;
}

.bz-tools-wrapper.bz-dark .bz-cl-time {
	background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 500px) {
	.bz-cl-grid {
		grid-template-columns: 1fr;
	}
}

/* Working Capital Pro */
.bz-wc-group-label {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bz-text-muted);
	margin: 12px 0 8px;
	padding-bottom: 4px;
	border-bottom: 1px dashed rgba(0,0,0,0.08);
}

.bz-wc-hint {
	font-size: 0.85rem;
	color: var(--bz-text-muted);
	margin: 0 0 14px;
	line-height: 1.45;
}

.bz-wc-status {
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.bz-wc-status-label {
	font-size: 0.85rem;
	font-weight: 600;
}

.bz-wc-status-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.bz-wc-excellent { background: #d1e7dd; color: #0f5132; }
.bz-wc-healthy { background: #cfe2ff; color: #084298; }
.bz-wc-average { background: #fff3cd; color: #664d03; }
.bz-wc-critical { background: #f8d7da; color: #842029; }

.bz-wc-health {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(0,0,0,0.06);
}

.bz-wc-health-score {
	margin-top: 8px;
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
	color: var(--bz-text);
}

/* Export Profit Pro */
.bz-ep-incoterm-cards {
	display: grid;
	gap: 12px;
}
.bz-ep-incard {
	padding: 14px;
	border-radius: 10px;
	background: rgba(13, 110, 253, 0.06);
	border: 1px solid rgba(13, 110, 253, 0.12);
}
.bz-ep-incard strong {
	display: block;
	margin-bottom: 6px;
	font-size: 1rem;
}
.bz-ep-incard p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--bz-text-muted);
	line-height: 1.45;
}
.bz-ep-checklist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 8px 16px;
	margin: 0 0 12px;
	padding-left: 1.2rem;
	font-size: 0.9rem;
}
.bz-ep-summary-body {
	margin-top: 8px;
}
