.nh-estimator {
	max-width: 1200px;
	margin: 0 auto 3rem;
	padding: 0 1rem;
	font-family: inherit;
}

.nh-estimator__layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1.5rem;
	align-items: start;
}

@media (max-width: 900px) {
	.nh-estimator__layout { grid-template-columns: 1fr; }
}

.nh-estimator__map-wrap { overflow: hidden; padding: 0; }

.nh-estimator__tabs {
	display: flex;
	gap: 0.5rem;
	padding: 1rem 1rem 0;
}

.nh-estimator__tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border: 2px solid rgba(15,23,42,0.1);
	border-radius: 10px;
	background: #f8fafc;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.2s ease;
	color: var(--nh-navy);
}

.nh-estimator__tab--active {
	background: var(--nh-primary);
	border-color: var(--nh-primary);
	color: #fff;
}

.nh-estimator__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.nh-estimator__dot--pickup { background: #22c55e; }
.nh-estimator__dot--dropoff { background: var(--nh-navy); }
.nh-estimator__tab--active .nh-estimator__dot { box-shadow: 0 0 0 2px #fff; }

.nh-estimator__search { padding: 0.75rem 1rem; }

.nh-estimator__input {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 2px solid rgba(15,23,42,0.1);
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.2s;
}

.nh-estimator__input:focus {
	outline: none;
	border-color: var(--nh-primary);
}

.nh-estimator__map {
	height: 380px;
	width: 100%;
	z-index: 1;
}

.nh-estimator__panel { padding: 1.5rem; }

.nh-estimator__addresses {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.nh-estimator__addr-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--nh-primary);
	margin-bottom: 0.25rem;
}

.nh-estimator__addr-text {
	margin: 0;
	color: var(--nh-navy);
	font-size: 0.95rem;
	line-height: 1.4;
}

.nh-estimator__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.nh-estimator__stat {
	text-align: center;
	padding: 1rem;
	background: var(--nh-ice);
	border-radius: 10px;
}

.nh-estimator__stat-value {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--nh-navy);
}

.nh-estimator__stat-label {
	font-size: 0.8rem;
	color: var(--nh-slate);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.nh-estimator__breakdown {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--nh-slate);
}

.nh-estimator__breakdown div {
	display: flex;
	justify-content: space-between;
	padding: 0.35rem 0;
	border-bottom: 1px solid rgba(15,23,42,0.06);
}

.nh-estimator__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, var(--nh-navy) 0%, #1e293b 100%);
	color: #fff;
	border-radius: 12px;
	margin-bottom: 1rem;
	font-size: 1rem;
}

.nh-estimator__total strong {
	font-size: 1.75rem;
	color: var(--nh-accent);
}

.nh-estimator__disclaimer {
	font-size: 0.8rem;
	color: var(--nh-slate);
	line-height: 1.5;
	margin: 0 0 1.25rem;
}

.nh-estimator__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.nh-estimator__actions .nh-btn { width: 100%; text-align: center; }

.nh-estimator__deposit {
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, var(--nh-ice) 0%, #fff 100%);
	border: 2px solid rgba(181, 1, 1, 0.15);
}

.nh-estimator__deposit-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.35rem 0;
	font-size: 0.95rem;
	color: var(--nh-navy);
}

.nh-estimator__deposit-row strong {
	color: var(--nh-primary);
	font-size: 1.15rem;
}

.nh-estimator__deposit-row--balance strong {
	color: var(--nh-slate);
	font-size: 1rem;
}

.nh-estimator__deposit-note {
	margin: 0.75rem 0 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--nh-slate);
	padding: 0.65rem 0.75rem;
	background: rgba(245, 158, 11, 0.12);
	border-radius: 8px;
	border-left: 3px solid var(--nh-accent);
}

.nh-estimator__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1rem;
	padding-top: 0.5rem;
}

.nh-estimator__label {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--nh-navy);
}

.nh-estimator__terms {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.82rem;
	line-height: 1.45;
	color: #6b6358;
	padding: 0.75rem 0.85rem;
	background: #f5f0e8;
	border: 1px solid #d9cfc0;
	border-radius: 8px;
	cursor: pointer;
}

.nh-estimator__terms input {
	margin-top: 0.2rem;
	flex-shrink: 0;
	accent-color: var(--nh-accent, #c41e3a);
}

.nh-estimator__terms a {
	color: #8b4513;
	font-weight: 600;
}

.nh-estimator__msg {
	font-size: 0.9rem;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin: 0;
}

.nh-estimator__msg--ok {
	background: #dcfce7;
	color: #166534;
	border: 1px solid #86efac;
}

.nh-estimator__msg--err {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

.nh-estimator--loading .nh-estimator__map { opacity: 0.6; pointer-events: none; }

.nh-map-pin span {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	border: 3px solid #fff;
	box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

.nh-map-pin--pickup span { background: #22c55e; }
.nh-map-pin--dropoff span { background: var(--nh-navy); }
