/* ===========================================================
   Customer Panel — Professional, Modern, Responsive
   =========================================================== */

:root {
	--cust-primary: var(--theme-primary, #c9a961);
	--cust-primary-dark: var(--theme-primary-hover, #a8843f);
	--cust-bg: #f6f7fb;
	--cust-card: #ffffff;
	--cust-border: #ececf3;
	--cust-text: #1c2030;
	--cust-text-muted: #6b7280;
	--cust-success: #10b981;
	--cust-danger: #ef4444;
	--cust-warning: #f59e0b;
	--cust-info: #3b82f6;
	--cust-shadow: 0 18px 40px rgba(20, 22, 36, 0.08);
	--cust-shadow-sm: 0 6px 18px rgba(20, 22, 36, 0.05);
	--cust-radius-lg: 22px;
	--cust-radius: 16px;
	--cust-radius-sm: 12px;
}

.cust-section {
	padding: 60px 0 80px;
	background: linear-gradient(180deg, #f6f7fb 0%, #f0f2f9 100%);
	min-height: 70vh;
}

.cust-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 575px) {
	.cust-section { padding: 40px 0 60px; }
}

/* ==================== HERO HEADERS ==================== */
.cust-hero {
	background: linear-gradient(135deg, #1f2732 0%, #151b24 100%);
	color: #fff;
	border-radius: var(--cust-radius-lg);
	padding: 32px 36px;
	position: relative;
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: var(--cust-shadow);
}
.cust-hero::before {
	content: '';
	position: absolute;
	top: -80px; right: -80px;
	width: 280px; height: 280px;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 70%);
	border-radius: 50%;
}
.cust-hero::after {
	content: '';
	position: absolute;
	bottom: -100px; left: 30%;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.10), transparent 70%);
	border-radius: 50%;
}
.cust-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.cust-hero-avatar {
	width: 76px; height: 76px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	box-shadow: 0 14px 30px rgba(201, 169, 97, 0.45);
	flex-shrink: 0;
	border: 3px solid rgba(255, 255, 255, 0.1);
}
.cust-hero h1 {
	margin: 0 0 6px;
	font-size: 1.7rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.2px;
}
.cust-hero p {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}
.cust-hero-actions {
	margin-left: auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
@media (max-width: 575px) {
	.cust-hero { padding: 24px; }
	.cust-hero h1 { font-size: 1.35rem; }
	.cust-hero-actions { width: 100%; margin-left: 0; }
}

/* ==================== LAYOUT GRID ==================== */
.cust-grid {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 26px;
	align-items: start;
}
@media (max-width: 991px) {
	.cust-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==================== SIDEBAR ==================== */
.cust-sidebar {
	background: var(--cust-card);
	border-radius: var(--cust-radius);
	padding: 22px;
	box-shadow: var(--cust-shadow-sm);
	border: 1px solid var(--cust-border);
	position: sticky;
	top: 90px;
}
@media (max-width: 991px) {
	.cust-sidebar { position: static; }
}
.cust-sidebar-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px dashed var(--cust-border);
	margin-bottom: 16px;
}
.cust-sidebar-avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	flex-shrink: 0;
}
.cust-sidebar-name {
	font-weight: 700;
	color: var(--cust-text);
	font-size: 15px;
	margin: 0;
	line-height: 1.2;
}
.cust-sidebar-role {
	color: var(--cust-text-muted);
	font-size: 12px;
	margin: 2px 0 0;
}
.cust-nav { list-style: none; padding: 0; margin: 0; }
.cust-nav-item { margin-bottom: 4px; }
.cust-nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	border-radius: 12px;
	color: var(--cust-text);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
	border: 1px solid transparent;
	background: transparent;
	width: 100%;
	text-align: left;
	cursor: pointer;
}
.cust-nav-link i {
	width: 18px;
	font-size: 14px;
	color: var(--cust-text-muted);
	transition: color 0.25s ease;
}
.cust-nav-link:hover {
	background: rgba(201, 169, 97, 0.08);
	color: var(--cust-primary-dark);
}
.cust-nav-link:hover i { color: var(--cust-primary); }
.cust-nav-link.active {
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	color: #fff;
	box-shadow: 0 10px 22px rgba(201, 169, 97, 0.35);
}
.cust-nav-link.active i { color: #fff; }
.cust-nav-link.danger { color: var(--cust-danger); }
.cust-nav-link.danger i { color: var(--cust-danger); }
.cust-nav-link.danger:hover { background: rgba(239, 68, 68, 0.08); }

/* ==================== CARDS ==================== */
.cust-card {
	background: var(--cust-card);
	border-radius: var(--cust-radius);
	padding: 24px 26px;
	box-shadow: var(--cust-shadow-sm);
	border: 1px solid var(--cust-border);
	margin-bottom: 22px;
}
.cust-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--cust-border);
	margin-bottom: 22px;
	flex-wrap: wrap;
}
.cust-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--cust-text);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}
.cust-card-title i {
	color: var(--cust-primary);
	font-size: 16px;
}
.cust-card-sub {
	color: var(--cust-text-muted);
	font-size: 13px;
	margin: 4px 0 0;
}

/* ==================== STAT CARDS ==================== */
.cust-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
	margin-bottom: 26px;
}
.cust-stat {
	background: var(--cust-card);
	border-radius: var(--cust-radius);
	padding: 22px;
	box-shadow: var(--cust-shadow-sm);
	border: 1px solid var(--cust-border);
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.cust-stat::before {
	content: '';
	position: absolute;
	top: 0; right: 0;
	width: 80px; height: 80px;
	background: var(--cust-stat-color, rgba(201, 169, 97, 0.08));
	border-radius: 50%;
	transform: translate(30%, -30%);
	transition: transform 0.4s ease;
}
.cust-stat:hover {
	transform: translateY(-3px);
	box-shadow: var(--cust-shadow);
}
.cust-stat:hover::before { transform: translate(20%, -40%) scale(1.2); }
.cust-stat-icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	box-shadow: 0 10px 22px rgba(201, 169, 97, 0.32);
	flex-shrink: 0;
	z-index: 1;
}
.cust-stat-icon.cs-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); box-shadow: 0 10px 22px rgba(59, 130, 246, 0.3); }
.cust-stat-icon.cs-green { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 10px 22px rgba(16, 185, 129, 0.3); }
.cust-stat-icon.cs-orange { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 10px 22px rgba(245, 158, 11, 0.3); }
.cust-stat-icon.cs-red { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 10px 22px rgba(239, 68, 68, 0.3); }
.cust-stat-info { z-index: 1; }
.cust-stat-label {
	font-size: 12px;
	color: var(--cust-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
	margin: 0 0 4px;
}
.cust-stat-value {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--cust-text);
	margin: 0;
	line-height: 1;
}

/* ==================== QUICK ACTIONS ==================== */
.cust-quick {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
}
.cust-quick-item {
	background: var(--cust-card);
	border: 1px solid var(--cust-border);
	border-radius: var(--cust-radius-sm);
	padding: 18px;
	text-decoration: none;
	color: var(--cust-text);
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.25s ease;
}
.cust-quick-item:hover {
	transform: translateY(-2px);
	border-color: var(--cust-primary);
	box-shadow: var(--cust-shadow-sm);
	color: var(--cust-text);
}
.cust-quick-icon {
	width: 42px; height: 42px;
	border-radius: 12px;
	background: rgba(201, 169, 97, 0.12);
	color: var(--cust-primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.cust-quick-text { flex: 1; min-width: 0; }
.cust-quick-title {
	font-weight: 700;
	font-size: 14px;
	color: var(--cust-text);
	margin: 0;
	line-height: 1.2;
}
.cust-quick-desc {
	font-size: 12px;
	color: var(--cust-text-muted);
	margin: 3px 0 0;
}

/* ==================== AUTH (login/register) ==================== */
.cust-auth-wrap {
	min-height: calc(100vh - 60px);
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	background: var(--cust-bg);
}
@media (max-width: 991px) {
	.cust-auth-wrap { grid-template-columns: 1fr; min-height: auto; }
}
.cust-auth-illust {
	background:
		radial-gradient(circle at 20% 20%, rgba(201, 169, 97, 0.25), transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.12), transparent 50%),
		linear-gradient(135deg, #1f2732 0%, #0f1320 100%);
	color: #fff;
	padding: 60px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.cust-auth-illust::before {
	content: '';
	position: absolute;
	width: 460px; height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.18), transparent 70%);
	bottom: -180px; left: -150px;
	animation: cust-float 9s ease-in-out infinite;
}
@keyframes cust-float {
	0%, 100% { transform: translate(0, 0); }
	50%      { transform: translate(20px, -10px); }
}
.cust-auth-illust h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: #fff;
	position: relative;
	z-index: 1;
}
.cust-auth-illust p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	max-width: 460px;
	line-height: 1.65;
	margin-bottom: 32px;
	position: relative;
	z-index: 1;
}
.cust-auth-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 14px;
	position: relative;
	z-index: 1;
}
.cust-auth-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}
.cust-auth-features li i {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: rgba(201, 169, 97, 0.18);
	color: var(--cust-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.cust-auth-form {
	padding: 60px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 575px) {
	.cust-auth-illust { padding: 40px 24px; }
	.cust-auth-form { padding: 40px 24px; }
}

.cust-auth-card {
	max-width: 460px;
	margin: 0 auto;
	width: 100%;
}
.cust-auth-card .brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	color: var(--cust-primary-dark);
	font-weight: 700;
}
.cust-auth-card .brand i {
	width: 36px; height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
}
.cust-auth-card h1 {
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--cust-text);
	margin: 0 0 8px;
}
.cust-auth-card .lead {
	color: var(--cust-text-muted);
	font-size: 14px;
	margin: 0 0 28px;
}

/* ==================== FORMS ==================== */
.cust-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
@media (max-width: 575px) { .cust-row { grid-template-columns: 1fr; } }

.cust-field { margin-bottom: 16px; }
.cust-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--cust-text);
	margin-bottom: 6px;
	letter-spacing: 0.2px;
}
.cust-label .opt { color: var(--cust-text-muted); font-weight: 400; }
.cust-label .req { color: var(--cust-danger); }
.cust-input-wrap { position: relative; }
.cust-input-wrap > i {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	color: var(--cust-text-muted);
	font-size: 14px;
	pointer-events: none;
	z-index: 2;
}
.cust-input,
.cust-textarea,
.cust-select {
	width: 100%;
	padding: 12px 16px 12px 46px;
	font-size: 14px;
	color: var(--cust-text);
	background: #fbfbfd;
	border: 1px solid var(--cust-border);
	border-radius: 12px;
	transition: all 0.25s ease;
	font-family: inherit;
	outline: none;
}
.cust-input-wrap .cust-input {
	padding-left: 46px !important;
}
.cust-input-wrap .cust-input[type="password"] {
	padding-right: 46px !important;
}
.cust-input:focus,
.cust-textarea:focus,
.cust-select:focus {
	border-color: var(--cust-primary);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}
.cust-textarea { padding-left: 16px; min-height: 90px; resize: vertical; }
.cust-input-wrap.no-icon .cust-input { padding-left: 16px; }

.cust-toggle-pass {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	cursor: pointer;
	color: var(--cust-text-muted);
	width: 28px; height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cust-toggle-pass:hover { color: var(--cust-primary-dark); }

/* ==================== BUTTONS ==================== */
.cust-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	letter-spacing: 0.2px;
	background: transparent;
}
.cust-btn-primary {
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	color: #fff;
	box-shadow: 0 12px 26px rgba(201, 169, 97, 0.32);
}
.cust-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(201, 169, 97, 0.42);
	color: #fff;
}
.cust-btn-dark {
	background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
	color: #fff;
}
.cust-btn-dark:hover { background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark)); color: #fff; }
.cust-btn-outline {
	background: #fff;
	color: var(--cust-text);
	border-color: var(--cust-border);
}
.cust-btn-outline:hover {
	border-color: var(--cust-primary);
	color: var(--cust-primary-dark);
	background: rgba(201, 169, 97, 0.06);
}
.cust-btn-danger {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #fff;
	box-shadow: 0 8px 18px rgba(239, 68, 68, 0.28);
}
.cust-btn-danger:hover { transform: translateY(-2px); color: #fff; }
.cust-btn-warning {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #fff;
	box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28);
}
.cust-btn-warning:hover { transform: translateY(-2px); color: #fff; }
.cust-btn-block { width: 100%; }
.cust-btn-sm { padding: 8px 14px; font-size: 12.5px; border-radius: 10px; }

/* ==================== ALERTS ==================== */
.cust-alert {
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 14px;
	margin-bottom: 18px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid transparent;
}
.cust-alert i { font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.cust-alert-success { background: #ecfdf5; color: #065f46; border-color: #a7f3d0; }
.cust-alert-error { background: #fef2f2; color: #991b1b; border-color: #fecaca; }

/* ==================== ORDER LIST ==================== */
.cust-orders { display: grid; gap: 16px; }
.cust-order {
	background: var(--cust-card);
	border: 1px solid var(--cust-border);
	border-radius: var(--cust-radius);
	padding: 20px 22px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 14px;
	align-items: center;
	transition: all 0.25s ease;
}
.cust-order:hover {
	transform: translateY(-2px);
	box-shadow: var(--cust-shadow-sm);
	border-color: rgba(201, 169, 97, 0.4);
}
.cust-order-info { min-width: 0; }
.cust-order-ref {
	font-size: 11px;
	letter-spacing: 1.5px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--cust-text-muted);
}
.cust-order-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-top: 8px;
	color: var(--cust-text-muted);
	font-size: 13px;
}
.cust-order-meta strong { color: var(--cust-text); font-weight: 700; }
.cust-order-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}
@media (max-width: 575px) {
	.cust-order { grid-template-columns: 1fr; }
	.cust-order-actions { justify-content: flex-start; }
}

.cust-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}
.cust-status::before {
	content: '';
	display: inline-block;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: currentColor;
}
.cust-status.s-pending { background: #fef3c7; color: #92400e; }
.cust-status.s-processing { background: #dbeafe; color: #1e40af; }
.cust-status.s-shipped { background: #ede9fe; color: #5b21b6; }
.cust-status.s-completed { background: #d1fae5; color: #065f46; }
.cust-status.s-cancelled { background: #fee2e2; color: #991b1b; }

.cust-order-items {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--cust-border);
	display: grid;
	gap: 8px;
}
.cust-order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	background: #f7f8fb;
	border-radius: 10px;
	font-size: 13px;
}
.cust-order-item-name { color: var(--cust-text); font-weight: 600; }
.cust-order-item-qty { color: var(--cust-text-muted); font-size: 12px; }

/* ==================== WISHLIST GRID ==================== */
.cust-wishlist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 18px;
}
.cust-wish-card {
	background: var(--cust-card);
	border: 1px solid var(--cust-border);
	border-radius: var(--cust-radius);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}
.cust-wish-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--cust-shadow);
	border-color: rgba(201, 169, 97, 0.4);
}
.cust-wish-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f7f4eb;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cust-text-muted);
	font-size: 12px;
	overflow: hidden;
}
.cust-wish-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.cust-wish-card:hover .cust-wish-img img { transform: scale(1.06); }
.cust-wish-body { padding: 16px 18px 18px; }
.cust-wish-name {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--cust-text);
	margin: 0 0 6px;
	line-height: 1.3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 38px;
}
.cust-wish-price {
	font-size: 16px;
	font-weight: 800;
	color: var(--cust-text);
	margin-bottom: 12px;
}
.cust-wish-price .cur { color: var(--cust-primary-dark); font-weight: 700; }
.cust-wish-actions {
	display: flex;
	gap: 8px;
}
.cust-wish-actions .cust-btn { flex: 1; padding: 9px 10px; font-size: 12.5px; }

/* ==================== EMPTY STATE ==================== */
.cust-empty {
	text-align: center;
	padding: 50px 24px;
}
.cust-empty-icon {
	width: 96px; height: 96px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, #faf6ec, #fff);
	color: var(--cust-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	border: 2px dashed rgba(201, 169, 97, 0.4);
}
.cust-empty h4 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--cust-text);
	margin: 0 0 6px;
}
.cust-empty p {
	color: var(--cust-text-muted);
	margin: 0 0 22px;
	font-size: 14px;
}

/* ==================== TIMELINE ==================== */
.cust-timeline {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	padding: 18px 0 0;
}
.cust-timeline-step {
	flex: 1;
	min-width: 90px;
	text-align: center;
	position: relative;
	color: var(--cust-text-muted);
}
.cust-timeline-step::before {
	content: '';
	position: absolute;
	top: 16px; left: 50%; right: -50%;
	height: 2px;
	background: var(--cust-border);
}
.cust-timeline-step:last-child::before { display: none; }
.cust-timeline-dot {
	width: 34px; height: 34px;
	border-radius: 50%;
	background: var(--cust-border);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	font-size: 13px;
	z-index: 1;
	position: relative;
	transition: all 0.3s ease;
}
.cust-timeline-step.done .cust-timeline-dot,
.cust-timeline-step.current .cust-timeline-dot {
	background: linear-gradient(135deg, var(--cust-primary), var(--cust-primary-dark));
	box-shadow: 0 8px 16px rgba(201, 169, 97, 0.4);
}
.cust-timeline-step.done::before,
.cust-timeline-step.current::before { background: var(--cust-primary); }
.cust-timeline-step.done,
.cust-timeline-step.current { color: var(--cust-text); }
.cust-timeline-label { font-size: 12px; font-weight: 600; }

/* ==================== UTILITY ==================== */
.cust-mb-0 { margin-bottom: 0 !important; }
.cust-text-muted { color: var(--cust-text-muted); }
.cust-row-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cust-divider { height: 1px; background: var(--cust-border); margin: 18px 0; }
