:root {
	--smp-primary: #0f62fe;
	--smp-dark: #0b1a3c;
	--smp-muted: #6c7393;
	--smp-card: #ffffff;
	--smp-border: #e4e7fb;
}

.smp-client-portal {
	font-family: "Poppins", "Segoe UI", Arial, sans-serif;
	background: radial-gradient(circle at top, rgba(15, 98, 254, 0.2), transparent 50%),
		linear-gradient(135deg, #eef2ff, #fdfdff);
	padding: 48px;
	border-radius: 32px;
	box-shadow: 0 35px 80px rgba(15, 32, 128, 0.18);
	color: var(--smp-dark);
	border: 1px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.smp-client-portal::before {
	content: "";
	position: absolute;
	top: -60px;
	left: -60px;
	width: 180px;
	height: 180px;
	background: rgba(255, 255, 255, 0.25);
	filter: blur(10px);
	border-radius: 50%;
}

.smp-auth-page {
	max-width: 640px;
	margin: 0 auto;
}

.smp-client-portal h2,
.smp-client-portal h3,
.smp-client-portal h4 {
	margin: 0 0 12px;
}

.smp-hero {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 36px;
	background: linear-gradient(120deg, #091b4d, #1143c3);
	color: #fff;
	border-radius: 28px;
	box-shadow: 0 30px 60px rgba(9, 27, 77, 0.35);
	position: relative;
	overflow: hidden;
}

.smp-hero::after {
	content: "";
	position: absolute;
	top: -30px;
	right: -30px;
	width: 160px;
	height: 160px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.smp-badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	margin-top: 12px;
}

.smp-badge.smp-accent {
	background: rgba(255, 255, 255, 0.25);
}

.smp-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.smp-button {
	padding: 12px 22px;
	background: var(--smp-primary);
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border: none;
	cursor: pointer;
	box-shadow: 0 12px 25px rgba(15, 98, 254, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.smp-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 35px rgba(15, 98, 254, 0.45);
}

.smp-button.ghost {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.smp-auth-forms {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.smp-profile {
	margin: 30px 0;
}

.smp-panel {
	background: rgba(255, 255, 255, 0.92);
	padding: 28px;
	border-radius: 24px;
	box-shadow: 0 25px 55px rgba(15, 32, 128, 0.12);
	border: 1px solid rgba(17, 67, 195, 0.08);
	position: relative;
	overflow: hidden;
}

.smp-panel::after {
	content: "";
	position: absolute;
	top: -35px;
	right: -35px;
	width: 120px;
	height: 120px;
	background: rgba(17, 67, 195, 0.08);
	border-radius: 50%;
}

.smp-client-orders {
	margin: 30px 0;
}

.smp-order-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.smp-order-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 22px;
	border-radius: 20px;
	border: 1px solid rgba(17, 67, 195, 0.08);
	box-shadow: 0 18px 35px rgba(4, 6, 28, 0.12);
	position: relative;
	overflow: hidden;
}

.smp-order-card::before {
	content: "";
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100px;
	height: 100px;
	background: rgba(15, 98, 254, 0.08);
	border-radius: 50%;
}

.smp-order-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--smp-muted);
	font-size: 14px;
}

.smp-milestone-group {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.smp-milestone {
	border: 1px solid var(--smp-border);
	border-radius: 12px;
	padding: 12px;
	background: #f4f6ff;
}

.smp-milestone.done {
	border-color: #1dd1a1;
	background: #f1fff8;
}

.smp-milestone-header {
	display: flex;
	justify-content: space-between;
	font-weight: 600;
	margin-bottom: 6px;
}

.smp-milestone ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	color: var(--smp-dark);
}

.smp-documents {
	margin-top: 12px;
}

.smp-documents ul {
	list-style: none;
	padding: 0;
	margin: 6px 0 0;
}

.smp-documents li a {
	color: var(--smp-primary);
	text-decoration: none;
}

.smp-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 30px;
}

.smp-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.smp-form label {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	color: var(--smp-muted);
	gap: 6px;
}

.smp-form input,
.smp-form textarea {
	padding: 12px;
	border-radius: 10px;
	border: 1px solid var(--smp-border);
	font-size: 14px;
}

.smp-form textarea {
	resize: vertical;
	min-height: 100px;
}

.smp-form.inline {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
}

.smp-form.inline label {
	flex: 1 1 160px;
}

.smp-form.inline .smp-button {
	flex: 0 0 auto;
}

.smp-form-response {
	margin-top: 8px;
	font-weight: 600;
	min-height: 20px;
}

.smp-inventory-tools {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.smp-alert-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.smp-alert-list li {
	display: flex;
	flex-direction: column;
	padding: 12px;
	border: 1px dashed var(--smp-border);
	border-radius: 12px;
	margin-bottom: 10px;
}

.smp-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 18px;
	margin-top: 16px;
}

.smp-car-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 24px;
	border-radius: 20px;
	border: 1px solid rgba(17, 67, 195, 0.08);
	box-shadow: 0 25px 40px rgba(15, 18, 70, 0.12);
	position: relative;
	overflow: hidden;
}

.smp-pill-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 12px 0;
}

.smp-pill {
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef2ff;
	font-size: 12px;
	color: var(--smp-dark);
}

.smp-pill.accent {
	background: #fdebef;
	color: #c1124e;
}

.smp-car-card::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 120px;
	height: 120px;
	background: rgba(15, 98, 254, 0.08);
	border-radius: 50%;
}

.smp-auth-floating {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 8px;
	z-index: 999;
}

@media (max-width: 768px) {
	.smp-client-portal {
		padding: 24px;
	}

	.smp-dashboard-layout {
		grid-template-columns: 1fr;
	}

	.smp-sidebar {
		position: relative;
		top: 0;
	}

	.smp-hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.smp-auth-floating {
		flex-direction: column;
		right: 12px;
	}
}
.smp-payment-center {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.smp-payment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.smp-payment-list li {
	border: 1px dashed var(--smp-border);
	border-radius: 12px;
	padding: 12px;
	margin-bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.smp-muted-text {
	color: var(--smp-muted);
	font-size: 12px;
}
.smp-dashboard-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
}

.smp-dashboard-layout.smp-no-sidebar {
	grid-template-columns: 1fr;
}

.smp-sidebar {
	background: rgba(6, 12, 30, 0.95);
	color: #fff;
	padding: 24px;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
	position: sticky;
	top: 30px;
	height: fit-content;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.smp-sidebar h3 {
	margin: 0 0 18px;
	text-transform: uppercase;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 1px;
}

.smp-sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.smp-sidebar li {
	margin-bottom: 10px;
}

.smp-sidebar a {
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	display: block;
	padding: 10px 14px;
	border-radius: 12px;
	transition: background 0.2s ease, padding-left 0.2s ease;
}

.smp-sidebar a:hover {
	background: rgba(255, 255, 255, 0.12);
	padding-left: 18px;
}

.smp-main-content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.smp-wishlist,
.smp-feedback,
.smp-map-panel,
.smp-checkout {
	margin: 30px 0;
}
