/* ============================================================
   Waste Management Plugin - Public Styles
   Brand: rgb(2,71,49) = #024731 | #1c8200
   ============================================================ */

:root {
	--wm-primary:   #024731;
	--wm-secondary: #1c8200;
	--wm-primary-light: rgba(2,71,49,0.07);
	--wm-secondary-light: rgba(28,130,0,0.1);
	--wm-white:  #ffffff;
	--wm-gray-50: #f9fafb;
	--wm-gray-100: #f3f4f6;
	--wm-gray-200: #e5e7eb;
	--wm-gray-400: #9ca3af;
	--wm-gray-600: #4b5563;
	--wm-gray-800: #1f2937;
	--wm-danger: #dc2626;
	--wm-warning: #d97706;
	--wm-radius: 10px;
	--wm-shadow: 0 2px 12px rgba(0,0,0,0.08);
	--wm-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── Booking Wrapper ─────────────────────────────────────── */
.wm-booking-wrapper {
	max-width: 860px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	position: relative;
}

/* ── Steps Bar ───────────────────────────────────────────── */
.wm-steps-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	padding: 24px;
	background: #fff;
	border-radius: var(--wm-radius);
	box-shadow: var(--wm-shadow);
}

.wm-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex: 1;
	position: relative;
}

.wm-step-dot {
	width: 44px;
	height: 44px;
	background: var(--wm-gray-100);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	border: 3px solid var(--wm-gray-200);
	transition: all 0.3s;
}

.wm-step.active .wm-step-dot {
	background: var(--wm-primary);
	border-color: var(--wm-primary);
}

.wm-step.done .wm-step-dot {
	background: var(--wm-secondary);
	border-color: var(--wm-secondary);
}

.wm-step-label {
	font-size: 11px;
	color: var(--wm-gray-400);
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wm-step.active .wm-step-label { color: var(--wm-primary); }
.wm-step.done .wm-step-label   { color: var(--wm-secondary); }

.wm-step-line {
	flex: 2;
	height: 3px;
	background: var(--wm-gray-200);
	border-radius: 2px;
	margin-bottom: 22px;
}

/* ── Step Panels ─────────────────────────────────────────── */
.wm-step-panel {
	display: none;
	background: #fff;
	border-radius: var(--wm-radius);
	padding: 32px;
	box-shadow: var(--wm-shadow);
	animation: wm-fade-in 0.3s ease;
}

.wm-step-panel.active { display: block; }

@keyframes wm-fade-in {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.wm-step-title {
	margin: 0 0 8px;
	color: var(--wm-primary);
	font-size: 22px;
	font-weight: 700;
}

.wm-step-desc {
	color: var(--wm-gray-400);
	margin: 0 0 24px;
	font-size: 14px;
}

/* ── Form Elements ───────────────────────────────────────── */
.wm-form-group {
	margin-bottom: 20px;
}

.wm-form-group label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--wm-gray-600);
	margin-bottom: 6px;
}

.wm-input {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid var(--wm-gray-200);
	border-radius: 8px;
	font-size: 15px;
	color: var(--wm-gray-800);
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
	background: #fff;
}

.wm-input:focus {
	border-color: var(--wm-secondary);
	box-shadow: 0 0 0 3px var(--wm-secondary-light);
	outline: none;
}

.wm-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* ── Address Input ───────────────────────────────────────── */
.wm-address-input-wrap {
	position: relative;
	display: flex;
	gap: 8px;
}

.wm-address-input-wrap .wm-input { flex: 1; }

.wm-btn-locate {
	width: 48px;
	height: 48px;
	background: var(--wm-primary-light);
	border: 1.5px solid var(--wm-primary);
	border-radius: 8px;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s;
}

.wm-btn-locate:hover {
	background: var(--wm-primary);
	color: #fff;
}

/* ── Waste Type Cards ────────────────────────────────────── */
.wm-waste-types-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
}

.wm-waste-type-card { cursor: pointer; }
.wm-waste-type-card input { display: none; }

.wm-waste-type-inner {
	border: 2px solid var(--wm-gray-200);
	border-radius: var(--wm-radius);
	padding: 16px 12px;
	text-align: center;
	transition: all 0.2s;
	background: var(--wm-gray-50);
}

.wm-waste-type-card:hover .wm-waste-type-inner { border-color: var(--wm-secondary); }
.wm-waste-type-card input:checked + .wm-waste-type-inner {
	border-color: var(--wm-primary);
	background: var(--wm-primary-light);
	box-shadow: 0 0 0 3px var(--wm-primary-light);
}

.wm-waste-type-icon { font-size: 32px; margin-bottom: 8px; }
.wm-waste-type-name { font-size: 13px; font-weight: 600; color: var(--wm-gray-800); margin-bottom: 4px; }
.wm-waste-type-price { font-size: 12px; color: var(--wm-gray-400); margin-top: 4px; }

/* ── Badge ───────────────────────────────────────────────── */
.wm-badge {
	display: inline-block;
	padding: 2px 7px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 600;
	background: var(--wm-gray-100);
	color: var(--wm-gray-600);
	margin: 2px 0;
}
.wm-badge-green { background: #dcfce7; color: #15803d; }
.wm-badge-red   { background: #fee2e2; color: var(--wm-danger); }

/* ── Weight Hints ────────────────────────────────────────── */
.wm-weight-hints {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.wm-weight-hint {
	padding: 6px 14px;
	border: 1.5px solid var(--wm-gray-200);
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.2s;
}

.wm-weight-hint:hover, .wm-weight-hint.active {
	background: var(--wm-secondary);
	border-color: var(--wm-secondary);
	color: #fff;
}

/* ── Upload Zone ─────────────────────────────────────────── */
.wm-upload-zone {
	border: 2px dashed var(--wm-gray-200);
	border-radius: var(--wm-radius);
	padding: 24px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s;
}

.wm-upload-zone:hover { border-color: var(--wm-secondary); background: var(--wm-secondary-light); }
.wm-upload-zone.dragover { border-color: var(--wm-secondary); background: var(--wm-secondary-light); }

.wm-upload-placeholder {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--wm-gray-600);
	font-size: 14px;
}

.wm-upload-hint { font-size: 11px; color: var(--wm-gray-400); }

.wm-photo-previews {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
	justify-content: center;
}

.wm-photo-previews img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
	border: 2px solid var(--wm-gray-200);
}

/* ── Vehicle Cards ───────────────────────────────────────── */
.wm-vehicles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 14px;
}

.wm-vehicle-select-card { cursor: pointer; }
.wm-vehicle-select-card input { display: none; }

.wm-vehicle-card-inner {
	border: 2px solid var(--wm-gray-200);
	border-radius: var(--wm-radius);
	padding: 20px;
	text-align: center;
	transition: all 0.2s;
	background: #fff;
	position: relative;
}

.wm-vehicle-select-card:hover .wm-vehicle-card-inner { border-color: var(--wm-secondary); }
.wm-vehicle-select-card input:checked + .wm-vehicle-card-inner {
	border-color: var(--wm-primary);
	background: var(--wm-primary-light);
	box-shadow: 0 0 0 3px var(--wm-primary-light);
}

.wm-vehicle-icon { font-size: 36px; margin-bottom: 10px; }
.wm-vehicle-card-inner h4 { margin: 0 0 10px; color: var(--wm-primary); font-size: 14px; }
.wm-vehicle-card-inner ul { list-style: none; padding: 0; margin: 0; font-size: 12px; text-align: left; }
.wm-vehicle-card-inner ul li { padding: 3px 0; border-bottom: 1px solid var(--wm-gray-100); }
.wm-hazardous-tag { color: var(--wm-warning) !important; font-weight: 600; border-bottom: none !important; }

.wm-recommended-tag {
	position: absolute;
	top: -10px;
	right: -10px;
	background: var(--wm-secondary);
	color: #fff;
	font-size: 10px;
	padding: 3px 8px;
	border-radius: 20px;
	font-weight: 700;
}

/* ── Time Slots ──────────────────────────────────────────── */
.wm-time-slots {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wm-time-slot {
	padding: 8px 16px;
	border: 1.5px solid var(--wm-gray-200);
	border-radius: 20px;
	cursor: pointer;
	font-size: 13px;
	transition: all 0.2s;
}

.wm-time-slot:hover, .wm-time-slot.selected {
	background: var(--wm-primary);
	border-color: var(--wm-primary);
	color: #fff;
}

/* ── Recurring Options ───────────────────────────────────── */
.wm-recurring-options {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.wm-radio-card { cursor: pointer; }
.wm-radio-card input { display: none; }
.wm-radio-card span {
	display: inline-block;
	padding: 8px 18px;
	border: 1.5px solid var(--wm-gray-200);
	border-radius: 20px;
	font-size: 13px;
	transition: all 0.2s;
}
.wm-radio-card input:checked + span {
	background: var(--wm-primary);
	border-color: var(--wm-primary);
	color: #fff;
}

/* ── Summary ─────────────────────────────────────────────── */
.wm-summary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.wm-summary-card {
	background: var(--wm-gray-50);
	border-radius: var(--wm-radius);
	padding: 20px;
	border: 1px solid var(--wm-gray-200);
}

.wm-summary-card h3 { margin: 0 0 16px; color: var(--wm-primary); font-size: 15px; }

.wm-price-breakdown { margin-bottom: 16px; }

.wm-price-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--wm-gray-200);
	font-size: 14px;
}

.wm-price-row.wm-price-total {
	font-weight: 700;
	font-size: 16px;
	border-bottom: none;
	color: var(--wm-primary);
	padding-top: 12px;
	border-top: 2px solid var(--wm-primary);
}

.wm-price-row.wm-price-discount { color: var(--wm-secondary); }

.wm-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	border-top: 2px solid var(--wm-primary);
	margin: 16px 0;
	font-size: 15px;
	font-weight: 600;
}

.wm-total-amount { color: var(--wm-primary); font-size: 24px; }

/* ── Coupon Row ──────────────────────────────────────────── */
.wm-coupon-row {
	display: flex;
	gap: 8px;
	margin: 12px 0;
}

.wm-coupon-row .wm-input { flex: 1; padding: 10px 14px; }

/* ── Checkout Button ─────────────────────────────────────── */
.wm-btn-checkout {
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, var(--wm-primary) 0%, #036040 100%);
	color: #fff;
	border: none;
	border-radius: var(--wm-radius);
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	letter-spacing: 0.3px;
}

.wm-btn-checkout:hover {
	background: linear-gradient(135deg, #013825 0%, var(--wm-primary) 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(2,71,49,0.4);
}

.wm-secure-note { font-size: 12px; color: var(--wm-gray-400); text-align: center; margin-top: 10px; }

/* ── Nav Buttons ─────────────────────────────────────────── */
.wm-step-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--wm-gray-200);
	gap: 12px;
}

.wm-btn-next, .wm-btn-back, .wm-btn-primary, .wm-btn-secondary {
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}

.wm-btn-next, .wm-btn-primary {
	background: var(--wm-secondary);
	color: #fff;
	margin-left: auto;
}

.wm-btn-next:hover, .wm-btn-primary:hover {
	background: var(--wm-primary);
}

.wm-btn-back, .wm-btn-secondary {
	background: var(--wm-gray-100);
	color: var(--wm-gray-600);
}

.wm-btn-back:hover, .wm-btn-secondary:hover {
	background: var(--wm-gray-200);
}

/* ── Info/Warning Boxes ─────────────────────────────────── */
.wm-info-box {
	background: var(--wm-primary-light);
	border: 1px solid var(--wm-primary);
	border-left: 4px solid var(--wm-primary);
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	color: var(--wm-primary);
	margin: 12px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.wm-warning-box {
	background: #fef3c7;
	border: 1px solid var(--wm-warning);
	border-left: 4px solid var(--wm-warning);
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14px;
	color: #92400e;
	margin: 12px 0;
}

.wm-notice {
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	margin: 16px 0;
}

.wm-notice-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.wm-notice-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.wm-notice-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

.wm-hint { font-size: 13px; color: var(--wm-gray-400); }

/* ── Processing Overlay ─────────────────────────────────── */
.wm-processing-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wm-processing-box {
	background: #fff;
	border-radius: 12px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.wm-spinner {
	width: 48px;
	height: 48px;
	border: 5px solid var(--wm-gray-200);
	border-top-color: var(--wm-secondary);
	border-radius: 50%;
	animation: wm-spin 0.8s linear infinite;
	margin: 0 auto 16px;
}

@keyframes wm-spin { to { transform: rotate(360deg); } }

/* ── GDPR ────────────────────────────────────────────────── */
.wm-gdpr-check { margin-top: 16px; }
.wm-gdpr-check label { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; cursor: pointer; }

/* ── Rewards Page ────────────────────────────────────────── */
.wm-rewards-wrapper { max-width: 700px; margin: 0 auto; }

.wm-rewards-hero {
	background: linear-gradient(135deg, var(--wm-primary), #036040);
	border-radius: 12px;
	padding: 32px;
	color: #fff;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 32px;
	align-items: center;
	margin-bottom: 30px;
}

.wm-rewards-balance-display { text-align: center; }
.wm-rewards-icon { font-size: 48px; margin-bottom: 8px; }
.wm-rewards-number { font-size: 48px; font-weight: 800; line-height: 1; }
.wm-rewards-label { font-size: 13px; opacity: 0.7; }

.wm-redeem-form { background: rgba(255,255,255,0.1); border-radius: var(--wm-radius); padding: 20px; }
.wm-redeem-form h3 { margin: 0 0 8px; }
.wm-redeem-form p { margin: 0 0 12px; opacity: 0.8; font-size: 13px; }

.wm-reward-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--wm-gray-100);
}

.wm-reward-desc { font-size: 14px; font-weight: 500; }
.wm-reward-date { font-size: 12px; color: var(--wm-gray-400); margin-top: 2px; }
.wm-reward-points { font-size: 16px; font-weight: 700; }
.wm-reward-earned .wm-reward-points { color: var(--wm-secondary); }
.wm-reward-redeemed .wm-reward-points { color: var(--wm-warning); }

/* ── Subscriptions ───────────────────────────────────────── */
.wm-subscriptions-wrapper { max-width: 860px; margin: 0 auto; }
.wm-subs-header { text-align: center; margin-bottom: 30px; }
.wm-subs-header h2 { color: var(--wm-primary); font-size: 28px; }

.wm-current-sub-banner {
	background: var(--wm-primary-light);
	border: 1px solid var(--wm-primary);
	border-radius: var(--wm-radius);
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	font-size: 14px;
}

.wm-plans-public-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
}

.wm-plan-public-card {
	background: #fff;
	border: 2px solid var(--wm-gray-200);
	border-radius: 12px;
	padding: 28px;
	text-align: center;
	transition: all 0.2s;
	position: relative;
}

.wm-plan-public-card:hover {
	border-color: var(--wm-secondary);
	box-shadow: var(--wm-shadow-lg);
	transform: translateY(-4px);
}

.wm-plan-current { border-color: var(--wm-primary) !important; box-shadow: 0 0 0 3px var(--wm-primary-light); }

.wm-plan-current-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--wm-primary);
	color: #fff;
	font-size: 11px;
	padding: 4px 14px;
	border-radius: 20px;
	font-weight: 700;
	white-space: nowrap;
}

.wm-plan-public-card h3 { color: var(--wm-primary); font-size: 20px; margin: 0 0 12px; }

.wm-plan-public-price {
	font-size: 36px;
	font-weight: 800;
	color: var(--wm-secondary);
	margin-bottom: 20px;
	line-height: 1;
}

.wm-plan-public-price span { font-size: 14px; font-weight: 400; color: var(--wm-gray-400); }

.wm-plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	text-align: left;
	font-size: 14px;
}

.wm-plan-features li {
	padding: 7px 0;
	border-bottom: 1px solid var(--wm-gray-100);
}

.wm-plan-features li:last-child { border-bottom: none; }

/* ── My Bookings ─────────────────────────────────────────── */
.wm-booking-item {
	background: #fff;
	border-radius: var(--wm-radius);
	border: 1px solid var(--wm-gray-200);
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: var(--wm-shadow);
}

.wm-booking-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 20px;
	background: var(--wm-gray-50);
	border-bottom: 1px solid var(--wm-gray-200);
}

.wm-booking-item-body {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	padding: 14px 20px;
	font-size: 14px;
}

.wm-booking-item-body > div { display: flex; gap: 6px; align-items: center; }

.wm-booking-item-actions {
	padding: 10px 20px;
	border-top: 1px solid var(--wm-gray-100);
	display: flex;
	gap: 8px;
}

.wm-btn-sm {
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.wm-btn-track { background: var(--wm-primary-light); color: var(--wm-primary); }
.wm-btn-track:hover { background: var(--wm-primary); color: #fff; }
.wm-btn-cancel { background: #fee2e2; color: var(--wm-danger); }
.wm-btn-cancel:hover { background: var(--wm-danger); color: #fff; }

/* ── Status Badges (public) ─────────────────────────────── */
.wm-status-badge {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.wm-status-pending    { background: #fef3c7; color: #92400e; }
.wm-status-approved   { background: #d1fae5; color: #065f46; }
.wm-status-assigned   { background: #dbeafe; color: #1e40af; }
.wm-status-on_the_way { background: #ede9fe; color: #5b21b6; }
.wm-status-arrived    { background: #e0f2fe; color: #0c4a6e; }
.wm-status-collected  { background: #f0fdf4; color: #14532d; }
.wm-status-completed  { background: #dcfce7; color: var(--wm-primary); }
.wm-status-cancelled  { background: #fee2e2; color: #991b1b; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
	.wm-steps-bar { overflow-x: auto; padding: 16px; gap: 4px; }
	.wm-step-label { display: none; }
	.wm-step-panel { padding: 20px; }
	.wm-form-row { grid-template-columns: 1fr; }
	.wm-summary-grid { grid-template-columns: 1fr; }
	.wm-waste-types-grid { grid-template-columns: repeat(2, 1fr); }
	.wm-vehicles-grid { grid-template-columns: repeat(2, 1fr); }
	.wm-tracking-grid { grid-template-columns: 1fr; }
	.wm-rewards-hero { grid-template-columns: 1fr; text-align: center; }
}


/* ══════════════════════════════════════════════════════════
   TRACKING PAGE — Full redesign
   ══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&display=swap');

/* ── Lookup Form ─────────────────────────────────────────── */
.wmt-lookup-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 40px 20px;
}
.wmt-lookup-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	padding: 48px 40px;
	text-align: center;
	max-width: 440px;
	width: 100%;
	box-shadow: 0 8px 40px rgba(2,71,49,0.08);
}
.wmt-lookup-icon { font-size: 56px; margin-bottom: 20px; }
.wmt-lookup-card h2 { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; color: #024731; margin: 0 0 10px; }
.wmt-lookup-card p  { color: #6b7280; font-size: 14px; margin: 0 0 28px; }
.wmt-lookup-form    { display: flex; flex-direction: column; gap: 12px; }
.wmt-input {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 15px;
	box-sizing: border-box;
	transition: border-color 0.2s;
}
.wmt-input:focus { border-color: #024731; outline: none; }
.wmt-btn {
	padding: 14px;
	background: #024731;
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}
.wmt-btn:hover { background: #035c3e; transform: translateY(-1px); }
.wmt-back-link { display: block; margin-top: 20px; font-size: 13px; color: #6b7280; text-decoration: none; }
.wmt-back-link:hover { color: #024731; }

/* ── Error ───────────────────────────────────────────────── */
.wmt-error-wrap { text-align: center; padding: 60px 20px; }
.wmt-error-icon { font-size: 56px; margin-bottom: 16px; }
.wmt-error-wrap h3 { color: #dc2626; margin: 0 0 16px; }
.wmt-error-wrap a { color: #024731; }

/* ── Main Wrapper ────────────────────────────────────────── */
.wmt-wrapper {
	width: 100%;
	max-width: 100%;
	font-family: 'Sora', system-ui, sans-serif;
}

/* ── Map Hero ────────────────────────────────────────────── */
.wmt-map-hero {
	position: relative;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(2,71,49,0.15);
	margin-bottom: 20px;
}
.wmt-map {
	width: 100%;
	height: 460px;
	display: block;
}

/* Floating booking pill */
.wmt-map-pill {
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(2,71,49,0.15);
	border-radius: 50px;
	padding: 8px 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 4px 20px rgba(0,0,0,0.12);
	z-index: 10;
}
.wmt-pill-id   { color: #024731; font-weight: 800; }
.wmt-pill-sep  { color: #d1d5db; }
.wmt-pill-type { color: #374151; }
.wmt-pill-status {
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.wmt-status-pending    { background: #fef3c7; color: #92400e; }
.wmt-status-approved   { background: #dcfce7; color: #15803d; }
.wmt-status-assigned   { background: #dbeafe; color: #1e40af; }
.wmt-status-on_the_way { background: #ede9fe; color: #6d28d9; }
.wmt-status-arrived    { background: #e0f2fe; color: #0369a1; }
.wmt-status-collected  { background: #fef3c7; color: #92400e; }
.wmt-status-completed  { background: #dcfce7; color: #15803d; }

/* Live badge */
.wmt-live-badge {
	position: absolute;
	bottom: 16px;
	right: 16px;
	background: #ef4444;
	color: #fff;
	border-radius: 50px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.5px;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 12px rgba(239,68,68,0.4);
	z-index: 10;
}
.wmt-live-dot {
	width: 7px;
	height: 7px;
	background: #fff;
	border-radius: 50%;
	animation: wmt-pulse 1.4s infinite;
}
@keyframes wmt-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.5; transform: scale(0.7); }
}
.wmt-live-badge.offline {
	background: #9ca3af;
	box-shadow: none;
}

/* ── Info Panels Row ─────────────────────────────────────── */
.wmt-panels {
	display: grid;
	grid-template-columns: 1fr 1fr auto;
	gap: 14px;
	margin-bottom: 14px;
	align-items: start;
}

/* ── Card Base ───────────────────────────────────────────── */
.wmt-card {
	background: #fff;
	border: 1px solid #e8f0e8;
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: 0 2px 16px rgba(2,71,49,0.06);
}
.wmt-card-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #9ca3af;
	margin-bottom: 14px;
}

/* ── Driver Card ─────────────────────────────────────────── */
.wmt-driver-row {
	display: flex;
	align-items: center;
	gap: 14px;
}
.wmt-driver-avatar {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #024731, #035c3e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}
.wmt-driver-details { flex: 1; min-width: 0; }
.wmt-driver-name {
	font-size: 15px;
	font-weight: 700;
	color: #111827;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wmt-driver-vehicle { font-size: 12px; color: #6b7280; margin-top: 3px; }
.wmt-call-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	background: #dcfce7;
	color: #15803d;
	border: 1px solid #bbf7d0;
	border-radius: 10px;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.18s;
}
.wmt-call-btn:hover { background: #1c8200; color: #fff; border-color: #1c8200; }
.wmt-no-driver { color: #9ca3af; font-size: 14px; display: flex; align-items: center; gap: 8px; }

/* ── Details Card ────────────────────────────────────────── */
.wmt-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.wmt-detail-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.wmt-detail-icon {
	font-size: 20px;
	flex-shrink: 0;
}
.wmt-detail-val {
	font-size: 14px;
	font-weight: 700;
	color: #111827;
	line-height: 1.2;
}
.wmt-detail-key {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #9ca3af;
	font-weight: 600;
	margin-top: 2px;
}

/* ── ETA Card ────────────────────────────────────────────── */
.wmt-eta-card { text-align: center; min-width: 140px; }
.wmt-eta-value {
	font-family: 'Sora', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #024731;
	line-height: 1;
	margin-bottom: 6px;
}
.wmt-eta-sub {
	font-size: 11px;
	color: #9ca3af;
	font-weight: 600;
}

/* ── Progress Steps ──────────────────────────────────────── */
.wmt-progress-wrap {
	background: #fff;
	border: 1px solid #e8f0e8;
	border-radius: 16px;
	padding: 24px 28px;
	box-shadow: 0 2px 16px rgba(2,71,49,0.06);
}
.wmt-progress-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #9ca3af;
	margin-bottom: 20px;
}
.wmt-progress-steps {
	display: flex;
	align-items: flex-start;
	position: relative;
}
.wmt-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
	text-align: center;
}
.wmt-step-dot {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f3f4f6;
	border: 2px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #9ca3af;
	font-weight: 700;
	margin-bottom: 8px;
	transition: all 0.3s;
	z-index: 2;
	position: relative;
}
.wmt-step.done .wmt-step-dot {
	background: #dcfce7;
	border-color: #1c8200;
	color: #15803d;
}
.wmt-step.current .wmt-step-dot {
	background: #024731;
	border-color: #024731;
	color: #fff;
	box-shadow: 0 0 0 4px rgba(2,71,49,0.15);
	font-size: 16px;
}
.wmt-step-label {
	font-size: 11px;
	font-weight: 600;
	color: #9ca3af;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	max-width: 70px;
	line-height: 1.3;
}
.wmt-step.done    .wmt-step-label { color: #15803d; }
.wmt-step.current .wmt-step-label { color: #024731; font-weight: 800; }

/* Connecting line between steps */
.wmt-step-line {
	position: absolute;
	top: 17px;
	left: calc(50% + 18px);
	right: calc(-50% + 18px);
	height: 2px;
	background: #e5e7eb;
	z-index: 1;
}
.wmt-step-line.done { background: #1c8200; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
	.wmt-map { height: 320px; }
	.wmt-panels { grid-template-columns: 1fr; }
	.wmt-eta-card { display: none; }
	.wmt-step-label { font-size: 9px; max-width: 50px; }
	.wmt-step-dot { width: 28px; height: 28px; font-size: 12px; }
}
@media (max-width: 480px) {
	.wmt-progress-wrap { padding: 20px 12px; }
	.wmt-map-pill { font-size: 11px; padding: 6px 14px; }
}

/* ── Tracking Error Card ─────────────────────────────────── */
.wmt-error-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 55vh;
	padding: 40px 20px;
}
.wmt-error-card {
	background: #fff;
	border: 1px solid #fee2e2;
	border-radius: 20px;
	padding: 52px 44px;
	text-align: center;
	max-width: 420px;
	width: 100%;
	box-shadow: 0 8px 40px rgba(220,38,38,0.07);
}
.wmt-error-icon-wrap {
	font-size: 56px;
	margin-bottom: 20px;
	display: block;
	filter: grayscale(0.2);
}
.wmt-error-card h3 {
	font-family: 'Sora', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #111827;
	margin: 0 0 10px;
}
.wmt-error-card p {
	font-size: 14px;
	color: #6b7280;
	margin: 0 0 28px;
	line-height: 1.6;
}
.wmt-error-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #024731;
	color: #fff;
	text-decoration: none;
	padding: 12px 28px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.18s, transform 0.15s;
}
.wmt-error-btn:hover {
	background: #035c3e;
	color: #fff;
	transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════════════
   CUSTOMER PORTAL — My Bookings
   Mobile-first · Tablet · Desktop
   ══════════════════════════════════════════════════════════ */

/* ── Portal Wrapper ──────────────────────────────────────── */
.wmb-portal {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 0 60px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Portal Header ───────────────────────────────────────── */
.wmb-portal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}
.wmb-portal-title {
	font-size: 22px;
	font-weight: 800;
	color: #024731;
	margin: 0 0 4px;
	line-height: 1.2;
}
.wmb-portal-sub {
	font-size: 13px;
	color: #9ca3af;
	margin: 0;
}
.wmb-new-booking-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #024731;
	color: #fff !important;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 700;
	transition: background 0.18s, transform 0.15s;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}
.wmb-new-booking-btn:hover {
	background: #035c3e;
	transform: translateY(-1px);
	color: #fff !important;
	text-decoration: none;
}
.wmb-plus-icon { font-size: 16px; font-weight: 400; }

/* ── Stats Strip ─────────────────────────────────────────── */
.wmb-stats-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 20px;
}
.wmb-stat-chip {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 14px 12px;
	text-align: center;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.wmb-stat-chip--active { border-color: #bbf7d0; background: #f0fdf4; }
.wmb-stat-chip--done   { border-color: #a7f3d0; background: #ecfdf5; }
.wmb-stat-chip--off    { border-color: #fecaca; background: #fef2f2; }
.wmb-stat-num {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: #024731;
	line-height: 1.1;
}
.wmb-stat-chip--off .wmb-stat-num { color: #dc2626; }
.wmb-stat-tag {
	display: block;
	font-size: 11px;
	color: #9ca3af;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-top: 3px;
}

/* ── Filter Bar ──────────────────────────────────────────── */
.wmb-filter-bar {
	display: flex;
	gap: 6px;
	margin-bottom: 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 2px;
	scrollbar-width: none;
}
.wmb-filter-bar::-webkit-scrollbar { display: none; }
.wmb-filter-btn {
	padding: 7px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	border: 2px solid #e5e7eb;
	background: #fff;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.18s;
	white-space: nowrap;
	flex-shrink: 0;
}
.wmb-filter-btn.active,
.wmb-filter-btn:hover {
	background: #024731;
	border-color: #024731;
	color: #fff;
}

/* ── Booking Card ────────────────────────────────────────── */
.wmb-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	margin-bottom: 14px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: box-shadow 0.2s;
}
.wmb-card:hover { box-shadow: 0 4px 20px rgba(2,71,49,0.1); }

.wmb-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	background: #f9fbf9;
	border-bottom: 1px solid #f0f0f0;
	flex-wrap: wrap;
	gap: 8px;
}
.wmb-card-top-left {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.wmb-card-id {
	font-weight: 800;
	font-size: 15px;
	color: #024731;
}
.wmb-card-waste {
	background: #e8f5e9;
	color: #1b5e20;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/* ── Card Info Grid ──────────────────────────────────────── */
.wmb-card-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 14px 18px;
	border-bottom: 1px solid #f9f9f9;
}
.wmb-card-meta {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 4px 0;
}
.wmb-meta-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.wmb-meta-val {
	font-size: 13px;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}
.wmb-meta-key {
	font-size: 10px;
	color: #9ca3af;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-top: 2px;
}

/* ── Address ─────────────────────────────────────────────── */
.wmb-card-address {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 10px 18px;
	font-size: 12px;
	color: #6b7280;
	border-bottom: 1px solid #f9f9f9;
	line-height: 1.5;
}

/* ── Action Buttons ──────────────────────────────────────── */
.wmb-card-actions {
	display: flex;
	gap: 8px;
	padding: 12px 18px;
	flex-wrap: wrap;
}
.wmb-act-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: all 0.18s;
	white-space: nowrap;
}
.wmb-act-track    { background: #e0f2fe; color: #0369a1; }
.wmb-act-track:hover { background: #0369a1; color: #fff; text-decoration: none; }
.wmb-act-invoice  { background: #f0fdf4; color: #166534; }
.wmb-act-invoice:hover { background: #166534; color: #fff; text-decoration: none; }
.wmb-act-reschedule { background: #fef9c3; color: #854d0e; }
.wmb-act-reschedule:hover { background: #854d0e; color: #fff; }
.wmb-act-cancel   { background: #fee2e2; color: #dc2626; }
.wmb-act-cancel:hover { background: #dc2626; color: #fff; }

/* ── Empty State ─────────────────────────────────────────── */
.wmb-empty-state {
	text-align: center;
	padding: 60px 20px;
	background: #fff;
	border: 2px dashed #e5e7eb;
	border-radius: 16px;
}
.wmb-empty-emoji { font-size: 56px; margin-bottom: 16px; }
.wmb-empty-state h3 { color: #111827; font-size: 18px; margin: 0 0 8px; }
.wmb-empty-state p  { color: #9ca3af; font-size: 14px; margin: 0; }

/* ══════════════════════════════════════════════════════════
   MODALS
   ══════════════════════════════════════════════════════════ */
body.wmb-modal-open { overflow: hidden; }

.wmb-modal-bg {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	backdrop-filter: blur(3px);
}
.wmb-modal-box {
	background: #fff;
	border-radius: 18px;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
	animation: wmb-modal-in 0.22s ease;
}
.wmb-modal-sm { max-width: 380px; }

@keyframes wmb-modal-in {
	from { opacity:0; transform: scale(0.94) translateY(10px); }
	to   { opacity:1; transform: scale(1) translateY(0); }
}
.wmb-modal-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 22px 16px;
	border-bottom: 1px solid #f0f0f0;
	font-weight: 800;
	font-size: 16px;
	color: #024731;
}
.wmb-modal-x {
	background: #f3f4f6;
	border: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 13px;
	color: #6b7280;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.18s;
	flex-shrink: 0;
}
.wmb-modal-x:hover { background: #e5e7eb; color: #111; }
.wmb-modal-bd { padding: 20px 22px; }
.wmb-modal-ft {
	display: flex;
	gap: 10px;
	padding: 16px 22px 20px;
	border-top: 1px solid #f0f0f0;
	justify-content: flex-end;
}

.wmb-modal-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #374151;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	margin-bottom: 8px;
}
.wmb-modal-row { margin-bottom: 18px; }
.wmb-modal-input {
	width: 100%;
	padding: 10px 14px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 14px;
	color: #111827;
	box-sizing: border-box;
	transition: border-color 0.18s;
	outline: none;
}
.wmb-modal-input:focus { border-color: #024731; }

/* ── Time Slot Grid (in modal) ───────────────────────────── */
.wmb-slot-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 4px 0;
}
.wmb-slot-hint { font-size: 13px; color: #9ca3af; }
.wmb-slot-btn {
	padding: 7px 14px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	cursor: pointer;
	transition: all 0.18s;
}
.wmb-slot-btn:hover,
.wmb-slot-btn.selected {
	border-color: #024731;
	background: #024731;
	color: #fff;
}

/* ── Modal Buttons ───────────────────────────────────────── */
.wmb-modal-btn-pri {
	background: #024731;
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s;
}
.wmb-modal-btn-pri:hover { background: #035c3e; }
.wmb-modal-btn-pri:disabled { opacity: 0.6; cursor: not-allowed; }
.wmb-modal-btn-sec {
	background: #f3f4f6;
	color: #374151;
	border: none;
	padding: 10px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s;
}
.wmb-modal-btn-sec:hover { background: #e5e7eb; }
.wmb-modal-btn-danger {
	background: #dc2626;
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s;
}
.wmb-modal-btn-danger:hover { background: #b91c1c; }
.wmb-modal-btn-danger:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Cancel modal content ────────────────────────────────── */
.wmb-cancel-confirm-text { text-align: center; padding: 8px 0; }
.wmb-cancel-icon { font-size: 40px; margin-bottom: 12px; }
.wmb-cancel-confirm-text p { margin: 0 0 6px; font-size: 14px; color: #374151; }
.wmb-cancel-note { font-size: 12px; color: #9ca3af !important; }

/* ── Inline Notice ───────────────────────────────────────── */
.wmb-inline-notice {
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
}
.wmb-notice-ok  { background: #f0fdf4; color: #166534; }
.wmb-notice-err { background: #fef2f2; color: #dc2626; }


/* ══════════════════════════════════════════════════════════
   REWARDS PAGE
   ══════════════════════════════════════════════════════════ */
.wmr-wrap {
	max-width: 720px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.wmr-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #024731 0%, #1c8200 100%);
	color: #fff;
	border-radius: 18px;
	padding: 32px 36px;
	margin-bottom: 24px;
	overflow: hidden;
	position: relative;
}
.wmr-hero::before {
	content: '';
	position: absolute;
	right: -30px; top: -30px;
	width: 180px; height: 180px;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
}
.wmr-hero-label { font-size: 12px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.wmr-hero-points { font-size: 52px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.wmr-hero-worth  { font-size: 15px; opacity: 0.9; margin-bottom: 4px; }
.wmr-hero-note   { font-size: 11px; opacity: 0.6; }
.wmr-hero-icon   { font-size: 72px; opacity: 0.3; position: relative; z-index: 1; }

.wmr-how-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}
.wmr-how-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 20px 16px;
	text-align: center;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.wmr-how-icon  { font-size: 28px; margin-bottom: 8px; }
.wmr-how-title { font-weight: 800; font-size: 13px; color: #024731; margin-bottom: 6px; }
.wmr-how-desc  { font-size: 12px; color: #9ca3af; line-height: 1.5; }

.wmr-redeem-card,
.wmr-history-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 22px;
	margin-bottom: 16px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.wmr-section-title { font-size: 16px; font-weight: 800; color: #024731; margin: 0 0 12px; }
.wmr-redeem-note   { font-size: 13px; color: #9ca3af; margin: 0 0 14px; }
.wmr-redeem-row    { display: flex; gap: 10px; align-items: stretch; }
.wmr-input {
	flex: 1;
	padding: 10px 14px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.18s;
}
.wmr-input:focus { border-color: #024731; }
.wmr-redeem-btn {
	background: #024731;
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.18s;
	white-space: nowrap;
}
.wmr-redeem-btn:hover { background: #035c3e; }
.wmr-redeem-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.wmr-low-notice { font-size: 12px; color: #d97706; margin: 10px 0 0; }
.wmr-coupon-box {
	margin-top: 14px;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 10px;
	padding: 14px 16px;
	font-size: 14px;
	color: #166534;
	line-height: 1.6;
}
.wmr-err { color: #dc2626; font-size: 13px; margin: 10px 0 0; }

.wmr-history-list { display: flex; flex-direction: column; gap: 0; }
.wmr-history-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid #f3f4f6;
}
.wmr-history-row:last-child { border-bottom: none; }
.wmr-history-dot {
	width: 32px; height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	flex-shrink: 0;
}
.wmr-dot-earn { background: #dcfce7; color: #166534; }
.wmr-dot-use  { background: #fee2e2; color: #dc2626; }
.wmr-history-info { flex: 1; }
.wmr-history-desc { font-size: 13px; color: #374151; font-weight: 600; margin-bottom: 2px; }
.wmr-history-date { font-size: 11px; color: #9ca3af; }
.wmr-history-pts  { font-size: 14px; font-weight: 800; white-space: nowrap; }
.wmr-pts-earn { color: #166534; }
.wmr-pts-use  { color: #dc2626; }
.wmr-empty { text-align: center; padding: 30px 0; color: #9ca3af; }
.wmr-empty div { font-size: 36px; margin-bottom: 8px; }
.wmr-empty p { font-size: 13px; margin: 0; }


/* ══════════════════════════════════════════════════════════
   SUBSCRIPTIONS PAGE
   ══════════════════════════════════════════════════════════ */
.wms-wrap {
	max-width: 900px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	padding-bottom: 40px;
}
.wms-header { text-align: center; margin-bottom: 28px; }
.wms-title  { font-size: 26px; font-weight: 900; color: #024731; margin: 0 0 8px; }
.wms-sub    { color: #9ca3af; font-size: 15px; margin: 0; }

.wms-current-banner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	background: linear-gradient(135deg, #024731, #1c8200);
	color: #fff;
	border-radius: 14px;
	padding: 18px 24px;
	margin-bottom: 28px;
	position: relative;
	overflow: hidden;
}
.wms-current-label { font-size: 11px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.wms-current-name  { font-size: 18px; font-weight: 800; }
.wms-current-right { display: flex; gap: 20px; flex-wrap: wrap; }
.wms-current-detail { display: flex; align-items: center; gap: 6px; font-size: 13px; opacity: 0.9; }
.wms-current-badge {
	margin-left: auto;
	background: rgba(255,255,255,0.2);
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
}

.wms-plans-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 20px;
	margin-bottom: 32px;
}
.wms-plan-card {
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 18px;
	padding: 28px 24px;
	position: relative;
	transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.wms-plan-card:hover { box-shadow: 0 8px 30px rgba(2,71,49,0.12); transform: translateY(-2px); }
.wms-plan-current { border-color: #024731 !important; box-shadow: 0 0 0 3px rgba(2,71,49,0.1); }
.wms-plan-popular { border-color: #1c8200; }

.wms-popular-badge,
.wms-current-plan-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 20px;
	letter-spacing: 0.3px;
}
.wms-popular-badge     { background: #1c8200; color: #fff; }
.wms-current-plan-badge { background: #024731; color: #fff; }

.wms-plan-name  { font-size: 18px; font-weight: 800; color: #024731; margin: 6px 0 10px; }
.wms-plan-price { margin-bottom: 20px; }
.wms-plan-amount { font-size: 28px; font-weight: 900; color: #111827; }
.wms-plan-per   { font-size: 13px; color: #9ca3af; }

.wms-plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.wms-plan-features li { font-size: 13px; color: #374151; display: flex; align-items: flex-start; gap: 8px; }
.wms-feat-check { color: #1c8200; font-weight: 800; flex-shrink: 0; }

.wms-subscribe-btn {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	border: 2px solid #024731;
	background: #fff;
	color: #024731;
	transition: all 0.18s;
}
.wms-subscribe-btn:hover { background: #024731; color: #fff; }
.wms-subscribe-btn--primary { background: #024731; color: #fff; }
.wms-subscribe-btn--primary:hover { background: #035c3e; }
.wms-subscribe-btn--current { border-color: #e5e7eb; color: #9ca3af; cursor: not-allowed; }

.wms-trust-strip {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	padding: 20px;
	background: #f9fbf9;
	border-radius: 14px;
}
.wms-trust-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
}


/* ══════════════════════════════════════════════════════════
   PORTAL RESPONSIVE — Mobile-first
   ══════════════════════════════════════════════════════════ */

/* ── Filter Empty State ──────────────────────────────────── */
.wmb-filter-empty-state {
	text-align: center;
	padding: 50px 20px;
	border: 2px dashed #e5e7eb;
	border-radius: 16px;
	background: #fafafa;
	animation: wmb-fadein 0.25s ease;
}
@keyframes wmb-fadein {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}
.wmb-filter-empty-icon {
	font-size: 44px;
	margin-bottom: 14px;
	display: block;
}
.wmb-filter-empty-state p {
	font-size: 14px;
	color: #9ca3af;
	line-height: 1.7;
	margin: 0;
}

/* Tablet (max 768px) */
@media (max-width: 768px) {
	.wmb-stats-strip { grid-template-columns: repeat(2, 1fr); }
	.wmb-card-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.wmr-how-grid    { grid-template-columns: 1fr; gap: 10px; }
	.wmr-hero        { padding: 24px; }
	.wmr-hero-icon   { font-size: 48px; }
	.wms-plans-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (max 480px) */
@media (max-width: 480px) {
	.wmb-portal { padding: 0 0 40px; }
	.wmb-portal-header { flex-direction: column; align-items: flex-start; gap: 10px; }
	.wmb-new-booking-btn { width: 100%; justify-content: center; }
	.wmb-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.wmb-stat-num    { font-size: 22px; }
	.wmb-card-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.wmb-card-top    { padding: 12px 14px; }
	.wmb-card-grid   { padding: 12px 14px; }
	.wmb-card-address { padding: 8px 14px; }
	.wmb-card-actions { padding: 10px 14px; gap: 6px; }
	.wmb-act-btn     { padding: 6px 10px; font-size: 11px; }
	.wmb-modal-box   { border-radius: 14px; }
	.wmb-modal-hd,
	.wmb-modal-bd,
	.wmb-modal-ft    { padding-left: 16px; padding-right: 16px; }
	.wmb-modal-ft    { flex-direction: column-reverse; }
	.wmb-modal-btn-pri,
	.wmb-modal-btn-sec,
	.wmb-modal-btn-danger { width: 100%; text-align: center; padding: 12px; }
	.wmr-hero        { flex-direction: column; gap: 12px; padding: 22px 18px; }
	.wmr-hero-icon   { display: none; }
	.wmr-hero-points { font-size: 42px; }
	.wmr-how-grid    { grid-template-columns: 1fr; }
	.wmr-redeem-row  { flex-direction: column; }
	.wms-plans-grid  { grid-template-columns: 1fr; }
	.wms-current-banner { flex-direction: column; align-items: flex-start; }
	.wms-current-badge { margin-left: 0; }
	.wms-trust-strip { gap: 14px; }
}


/* ══════════════════════════════════════════════════════════
   UNIFIED CUSTOMER DASHBOARD
   Desktop: sidebar + main | Mobile: bottom tabs
   ══════════════════════════════════════════════════════════ */

/* ── Login Gate ──────────────────────────────────────────── */
.wmd-login-gate {
	display:flex; align-items:center; justify-content:center;
	min-height:60vh; padding:40px 20px;
}
.wmd-login-box {
	background:#fff; border-radius:20px; padding:48px 40px;
	text-align:center; max-width:400px; width:100%;
	box-shadow:0 8px 40px rgba(0,0,0,0.08);
	border:1px solid #e5e7eb;
}
.wmd-login-icon { font-size:52px; margin-bottom:16px; }
.wmd-login-box h2 { color:#024731; font-size:22px; margin:0 0 8px; }
.wmd-login-box p  { color:#9ca3af; font-size:14px; margin:0 0 24px; }
.wmd-login-btn {
	display:inline-block; background:#024731; color:#fff;
	padding:12px 32px; border-radius:12px; font-weight:700;
	font-size:14px; text-decoration:none; transition:background 0.18s;
}
.wmd-login-btn:hover { background:#035c3e; color:#fff; text-decoration:none; }

/* ── Outer Wrap ──────────────────────────────────────────── */
.wmd-wrap {
	display:flex;
	min-height:calc(100vh - 120px);
	max-width:1200px;
	margin:0 auto;
	font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
	position:relative;
}

/* ── Sidebar ─────────────────────────────────────────────── */
.wmd-sidebar {
	width:240px;
	flex-shrink:0;
	background:#fff;
	border-right:1px solid #f0f0f0;
	display:flex;
	flex-direction:column;
	position:sticky;
	top:0;
	height:100vh;
	overflow-y:auto;
	box-shadow:2px 0 12px rgba(0,0,0,0.04);
}

/* Profile Card */
.wmd-profile-card {
	display:flex; align-items:center; gap:10px;
	padding:20px 16px 16px;
	border-bottom:1px solid #f3f4f6;
}
.wmd-avatar {
	width:40px; height:40px; border-radius:50%;
	background:linear-gradient(135deg,#024731,#1c8200);
	color:#fff; font-size:16px; font-weight:800;
	display:flex; align-items:center; justify-content:center;
	flex-shrink:0;
}
.wmd-profile-name  { font-size:13px; font-weight:700; color:#111827; line-height:1.3; }
.wmd-profile-since { font-size:11px; color:#9ca3af; margin-top:2px; }

/* Nav */
.wmd-nav {
	flex:1; padding:10px 10px;
	display:flex; flex-direction:column; gap:2px;
}
.wmd-nav-item {
	display:flex; align-items:center; gap:10px;
	padding:10px 12px; border-radius:10px;
	font-size:13px; font-weight:600; color:#6b7280;
	background:none; border:none; cursor:pointer;
	width:100%; text-align:left;
	transition:background 0.15s, color 0.15s;
	position:relative;
}
.wmd-nav-item:hover { background:#f9fafb; color:#024731; }
.wmd-nav-item.active { background:#f0fdf4; color:#024731; }
.wmd-nav-item.active .wmd-nav-icon { filter:none; }
.wmd-nav-icon  { font-size:17px; flex-shrink:0; }
.wmd-nav-label { flex:1; }
.wmd-nav-badge {
	background:#024731; color:#fff;
	font-size:10px; font-weight:800;
	padding:2px 7px; border-radius:20px;
}
.wmd-badge-green { background:#1c8200; }
.wmd-nav-pts {
	font-size:10px; font-weight:700; color:#d97706;
	background:#fef9c3; padding:2px 7px; border-radius:20px;
}

/* Sidebar Footer */
.wmd-sidebar-footer {
	padding:14px 12px;
	border-top:1px solid #f3f4f6;
	display:flex; flex-direction:column; gap:8px;
}
.wmd-book-btn {
	display:flex; align-items:center; justify-content:center; gap:6px;
	background:#024731; color:#fff;
	padding:10px; border-radius:10px;
	font-size:13px; font-weight:700;
	text-decoration:none; transition:background 0.18s;
}
.wmd-book-btn:hover { background:#035c3e; color:#fff; text-decoration:none; }
.wmd-logout-btn {
	display:flex; align-items:center; justify-content:center; gap:6px;
	background:#f9fafb; color:#9ca3af;
	padding:8px; border-radius:10px;
	font-size:12px; font-weight:600;
	text-decoration:none; transition:all 0.18s;
}
.wmd-logout-btn:hover { background:#fee2e2; color:#dc2626; text-decoration:none; }

/* ── Main Content ────────────────────────────────────────── */
.wmd-main {
	flex:1; min-width:0;
	padding:28px 28px 80px;
	background:#f9fbf9;
	overflow-y:auto;
}

/* ── Panel ───────────────────────────────────────────────── */
.wmd-panel { display:none; }
.wmd-panel.active { display:block; }

.wmd-panel-header {
	display:flex; align-items:flex-start;
	justify-content:space-between; flex-wrap:wrap;
	gap:12px; margin-bottom:24px;
}
.wmd-panel-title { font-size:20px; font-weight:800; color:#111827; margin:0 0 4px; }
.wmd-panel-sub   { font-size:13px; color:#9ca3af; margin:0; }
.wmd-cta-btn {
	display:inline-flex; align-items:center; gap:6px;
	background:#024731; color:#fff;
	padding:10px 20px; border-radius:10px;
	font-size:13px; font-weight:700;
	text-decoration:none; transition:background 0.18s;
	white-space:nowrap;
}
.wmd-cta-btn:hover { background:#035c3e; color:#fff; text-decoration:none; }

/* ── Stats Grid ──────────────────────────────────────────── */
.wmd-stats-grid {
	display:grid; grid-template-columns:repeat(4,1fr);
	gap:12px; margin-bottom:20px;
}
.wmd-stat-card {
	background:#fff; border:1px solid #e5e7eb;
	border-radius:14px; padding:16px 14px;
	box-shadow:0 1px 4px rgba(0,0,0,0.04);
	transition:box-shadow 0.18s;
}
.wmd-stat-card:hover { box-shadow:0 4px 16px rgba(2,71,49,0.08); }
.wmd-stat-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.wmd-stat-icon {
	width:36px; height:36px; border-radius:10px;
	display:flex; align-items:center; justify-content:center;
	font-size:18px;
}
.wmd-stat-num   { font-size:26px; font-weight:900; color:#024731; line-height:1; }
.wmd-stat-label { font-size:11px; color:#9ca3af; font-weight:600; text-transform:uppercase; letter-spacing:0.4px; }

/* ── Active Alert ────────────────────────────────────────── */
.wmd-active-alert {
	display:flex; align-items:center; gap:10px;
	background:#f0fdf4; border:1px solid #bbf7d0;
	border-radius:10px; padding:12px 16px;
	font-size:13px; color:#166534; margin-bottom:20px;
}
.wmd-active-dot {
	width:8px; height:8px; border-radius:50%;
	background:#22c55e; flex-shrink:0;
	animation:wmd-pulse 1.5s infinite;
}
@keyframes wmd-pulse {
	0%,100%{ opacity:1; transform:scale(1); }
	50%     { opacity:0.6; transform:scale(1.3); }
}
.wmd-alert-link {
	margin-left:auto; background:none; border:none;
	color:#024731; font-weight:700; font-size:13px;
	cursor:pointer; padding:0;
}

/* ── Section Title ───────────────────────────────────────── */
.wmd-section-title {
	font-size:13px; font-weight:700; color:#374151;
	text-transform:uppercase; letter-spacing:0.5px;
	margin-bottom:12px;
}

/* ── Quick Actions Grid ──────────────────────────────────── */
.wmd-quick-actions {
	display:grid; grid-template-columns:repeat(4,1fr);
	gap:12px; margin-bottom:8px;
}
.wmd-action-card {
	background:#fff; border:1px solid #e5e7eb;
	border-radius:14px; padding:18px 14px;
	text-align:center; cursor:pointer;
	transition:all 0.18s; text-decoration:none; color:inherit;
	display:block; box-shadow:0 1px 4px rgba(0,0,0,0.04);
	font-family:inherit; border:1px solid #e5e7eb;
}
.wmd-action-card:hover {
	box-shadow:0 6px 20px rgba(2,71,49,0.1);
	transform:translateY(-2px); text-decoration:none; color:inherit;
}
.wmd-action-icon {
	width:44px; height:44px; border-radius:12px;
	display:flex; align-items:center; justify-content:center;
	font-size:22px; margin:0 auto 10px;
}
.wmd-action-label { font-size:13px; font-weight:700; color:#111827; margin-bottom:4px; }
.wmd-action-desc  { font-size:11px; color:#9ca3af; line-height:1.4; }

/* ── Recent Bookings List ────────────────────────────────── */
.wmd-recent-list {
	background:#fff; border:1px solid #e5e7eb;
	border-radius:14px; overflow:hidden;
	box-shadow:0 1px 4px rgba(0,0,0,0.04);
}
.wmd-recent-row {
	display:flex; align-items:center; gap:12px;
	padding:14px 16px; border-bottom:1px solid #f9f9f9;
	transition:background 0.15s;
}
.wmd-recent-row:last-child { border-bottom:none; }
.wmd-recent-row:hover { background:#fafcfa; }
.wmd-recent-icon {
	width:36px; height:36px; border-radius:10px;
	background:#f0fdf4; display:flex; align-items:center;
	justify-content:center; font-size:18px; flex-shrink:0;
}
.wmd-recent-info { flex:1; min-width:0; }
.wmd-recent-title { font-size:13px; font-weight:700; color:#111827; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.wmd-recent-meta  { font-size:11px; color:#9ca3af; margin-top:2px; }
.wmd-recent-right { display:flex; flex-direction:column; align-items:flex-end; gap:4px; flex-shrink:0; }
.wmd-recent-amount { font-size:13px; font-weight:700; color:#024731; }
.wmd-recent-actions { display:flex; gap:6px; flex-shrink:0; }
.wmd-mini-btn {
	width:30px; height:30px; border-radius:8px;
	display:flex; align-items:center; justify-content:center;
	font-size:14px; cursor:pointer; transition:all 0.15s;
	text-decoration:none; border:none; background:none;
}
.wmd-mini-track { background:#e0f2fe; }
.wmd-mini-track:hover { background:#0369a1; }
.wmd-mini-inv   { background:#f0fdf4; }
.wmd-mini-inv:hover { background:#166534; }
.wmd-see-all-btn {
	display:block; width:100%; padding:12px;
	text-align:center; background:#f9fafb;
	border:none; border-top:1px solid #f0f0f0;
	color:#024731; font-size:13px; font-weight:700;
	cursor:pointer; transition:background 0.15s;
}
.wmd-see-all-btn:hover { background:#f0fdf4; }
.wmd-overview-empty {
	text-align:center; padding:40px 20px;
	background:#fff; border-radius:14px;
	border:2px dashed #e5e7eb; color:#9ca3af;
	font-size:14px;
}
.wmd-overview-empty div { font-size:40px; margin-bottom:10px; }

/* ── Bottom Nav (mobile only) ────────────────────────────── */
.wmd-bottom-nav {
	display:none;
	position:fixed; bottom:0; left:0; right:0;
	background:#fff; border-top:1px solid #e5e7eb;
	z-index:9999;
	box-shadow:0 -4px 20px rgba(0,0,0,0.08);
	padding:0 8px;
	padding-bottom:env(safe-area-inset-bottom, 0px);
}
.wmd-tab-item {
	flex:1; display:flex; flex-direction:column;
	align-items:center; justify-content:center;
	padding:8px 4px; gap:3px;
	background:none; border:none; cursor:pointer;
	color:#9ca3af; font-size:10px; font-weight:600;
	position:relative; transition:color 0.15s;
	min-height:56px;
}
.wmd-tab-item.active { color:#024731; }
.wmd-tab-icon { font-size:20px; line-height:1; }
.wmd-tab-label { font-size:10px; font-weight:600; }
.wmd-tab-dot {
	position:absolute; top:8px; right:calc(50% - 14px);
	width:7px; height:7px; border-radius:50%;
	background:#22c55e;
}
.wmd-tab-book {
	color:#fff !important;
}
.wmd-tab-plus {
	width:44px; height:44px; border-radius:50%;
	background:linear-gradient(135deg,#024731,#1c8200);
	display:flex; align-items:center; justify-content:center;
	font-size:22px; color:#fff; margin-bottom:2px;
	box-shadow:0 4px 12px rgba(2,71,49,0.4);
}


/* ══════════════════════════════════════════════════════════
   DASHBOARD RESPONSIVE
   ══════════════════════════════════════════════════════════ */

/* Large tablet */
@media (max-width: 960px) {
	.wmd-stats-grid    { grid-template-columns:repeat(2,1fr); }
	.wmd-quick-actions { grid-template-columns:repeat(2,1fr); }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
	.wmd-wrap { flex-direction:column; min-height:unset; }

	/* Hide sidebar on mobile */
	.wmd-sidebar { display:none; }

	/* Show bottom nav */
	.wmd-bottom-nav {
		display:flex;
	}

	.wmd-main {
		padding:16px 14px 80px;
		min-height:calc(100vh - 80px);
	}

	.wmd-panel-header { flex-direction:column; }
	.wmd-cta-btn { width:100%; justify-content:center; }
	.wmd-stats-grid    { grid-template-columns:repeat(2,1fr); gap:8px; }
	.wmd-quick-actions { grid-template-columns:repeat(2,1fr); gap:8px; }

	.wmd-recent-row { gap:8px; }
	.wmd-recent-actions { display:none; }
}

/* Small mobile */
@media (max-width: 420px) {
	.wmd-stat-num  { font-size:22px; }
	.wmd-panel-title { font-size:18px; }
	.wmd-action-card { padding:14px 10px; }
	.wmd-action-icon { width:36px; height:36px; font-size:18px; }
}
