:root {
	color-scheme: light;
	--bg-canvas: #faf6f0;
	--bg-surface: #ffffff;
	--bg-surface-subtle: #f6efe6;
	--bg-card: #ffffff;
	--border: #ebdccf;
	--border-subtle: #f1e7dc;
	--border-focus: #d96b27;
	
	--primary: #d96b27;
	--primary-hover: #c35717;
	--primary-light: #fdf2ea;
	--primary-text: #ffffff;

	--secondary: #2c6e49;
	--secondary-hover: #22573a;
	--secondary-light: #edf7f1;

	--accent-gold: #b45309;
	--accent-gold-bg: #fffbeb;

	--fg: #2b231d;
	--fg-muted: #6e6157;
	--fg-light: #948579;

	--danger: #c53030;
	--danger-light: #fee2e2;
	--success: #15803d;
	--success-light: #dcfce7;
	--info: #0284c7;
	--info-light: #e0f2fe;

	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 20px;
	--radius-full: 9999px;

	--shadow-sm: 0 1px 3px rgba(43, 35, 29, 0.05);
	--shadow-md: 0 4px 14px rgba(43, 35, 29, 0.08);
	--shadow-lg: 0 10px 28px rgba(43, 35, 29, 0.1);

	--font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
	--font-display: "Fraunces", Georgia, serif;
	--space: 1rem;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg-canvas);
	color: var(--fg);
	font-family: var(--font-sans);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

/* Layout */
.app-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.shell {
	max-width: 60rem;
	margin: 0 auto;
	padding: 1.25rem 1rem 3.5rem;
	width: 100%;
}

/* Navigation Header */
.top-nav {
	background: var(--bg-surface);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.94);
}

.nav-inner {
	max-width: 60rem;
	margin: 0 auto;
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	text-decoration: none;
	color: var(--fg);
}

.brand-icon {
	width: 2.35rem;
	height: 2.35rem;
	background: var(--primary);
	color: #fff;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	box-shadow: 0 2px 8px rgba(217, 107, 39, 0.35);
}

.brand-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.brand-subtitle {
	font-size: 0.75rem;
	color: var(--fg-muted);
	font-weight: 500;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Hero Section */
.hero-banner {
	background: linear-gradient(135deg, #fffaf5 0%, #f7efe6 100%);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem 1.5rem;
	margin-bottom: 2rem;
	position: relative;
	overflow: hidden;
}

.hero-banner::after {
	content: "🐾 🛁 ✂️ 🐾";
	position: absolute;
	right: 1.5rem;
	bottom: -0.75rem;
	font-size: 3rem;
	opacity: 0.08;
	pointer-events: none;
	letter-spacing: 0.5rem;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--primary-light);
	color: var(--primary);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-full);
	font-size: 0.8125rem;
	font-weight: 600;
	margin-bottom: 0.85rem;
}

.hero-title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 5vw, 2.75rem);
	line-height: 1.15;
	color: var(--fg);
	margin: 0 0 0.65rem;
}

.hero-title span {
	color: var(--primary);
	font-style: italic;
}

.hero-desc {
	font-size: 1.05rem;
	color: var(--fg-muted);
	max-width: 36rem;
	margin: 0;
	line-height: 1.5;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-top: 1.25rem;
	padding-top: 1.25rem;
	border-top: 1px dashed var(--border);
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.875rem;
	color: var(--fg);
	font-weight: 500;
}

/* Section Headings */
.section-header {
	margin-bottom: 1.5rem;
}

.section-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin: 0 0 0.35rem;
	color: var(--fg);
}

.section-subtitle {
	color: var(--fg-muted);
	font-size: 0.925rem;
	margin: 0;
}

/* Step Progress Indicator */
.step-tracker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
	background: var(--bg-surface);
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	overflow-x: auto;
	gap: 0.5rem;
}

.step-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--fg-light);
	white-space: nowrap;
}

.step-item.active {
	color: var(--primary);
}

.step-item.done {
	color: var(--secondary);
}

.step-circle {
	width: 1.85rem;
	height: 1.85rem;
	border-radius: 50%;
	background: var(--bg-surface-subtle);
	border: 1.5px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-weight: 700;
	flex-shrink: 0;
}

.step-item.active .step-circle {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px var(--primary-light);
}

.step-item.done .step-circle {
	background: var(--secondary);
	color: #fff;
	border-color: var(--secondary);
}

.step-arrow {
	color: var(--border);
	font-size: 0.85rem;
}

/* Cards & Grids */
.card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
}

.grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}

/* Service Card Selection */
.service-card {
	background: var(--bg-surface);
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.service-card:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.service-card.selected {
	border-color: var(--primary);
	background: #fffdf9;
	box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
}

.service-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.service-icon {
	font-size: 2rem;
	line-height: 1;
}

.service-price {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
}

.service-name {
	font-weight: 700;
	font-size: 1.1rem;
	margin: 0 0 0.35rem;
	color: var(--fg);
}

.service-duration {
	font-size: 0.8125rem;
	color: var(--secondary);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.service-desc {
	font-size: 0.875rem;
	color: var(--fg-muted);
	line-height: 1.45;
	margin: 0;
}

.service-badge-check {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 1.5rem;
	height: 1.5rem;
	background: var(--primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: bold;
}

/* Date & Time Picker Components */
.date-selector-row {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.date-pill {
	flex: 0 0 auto;
	padding: 0.75rem 1rem;
	background: var(--bg-surface);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	text-align: center;
	cursor: pointer;
	min-width: 5.5rem;
	transition: all 0.12s ease;
}

.date-pill:hover {
	border-color: var(--primary);
	background: var(--bg-surface-subtle);
}

.date-pill.selected {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
	box-shadow: 0 3px 10px rgba(217, 107, 39, 0.3);
}

.date-pill .pill-day {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.85;
}

.date-pill .pill-num {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.2;
}

.date-pill .pill-month {
	font-size: 0.75rem;
}

.time-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));
	gap: 0.65rem;
}

.time-slot-btn {
	padding: 0.85rem 0.65rem;
	background: var(--bg-surface);
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	text-align: center;
	transition: all 0.12s ease;
	color: var(--fg);
}

.time-slot-btn:hover:not(:disabled) {
	border-color: var(--primary);
	color: var(--primary);
	background: var(--primary-light);
}

.time-slot-btn.selected {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: 0 3px 10px rgba(217, 107, 39, 0.3);
}

.time-slot-btn:disabled {
	background: var(--bg-surface-subtle);
	border-color: var(--border-subtle);
	color: var(--fg-light);
	cursor: not-allowed;
	text-decoration: line-through;
	opacity: 0.6;
}

/* Dog Size Selector */
.size-selector {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(9rem, 100%), 1fr));
	gap: 0.6rem;
}

.size-btn {
	padding: 0.75rem 0.5rem;
	border: 1.5px solid var(--border);
	background: var(--bg-surface);
	border-radius: var(--radius);
	text-align: center;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--fg);
	transition: all 0.12s ease;
}

.size-btn:hover {
	border-color: var(--primary);
}

.size-btn.selected {
	border-color: var(--primary);
	background: var(--primary-light);
	color: var(--primary);
	font-weight: 700;
}

/* Forms & Inputs */
.field {
	display: grid;
	gap: 0.4rem;
	margin-bottom: 1.15rem;
}

.field label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--fg);
}

.field .required {
	color: var(--danger);
	margin-left: 0.2rem;
}

.input,
.select,
.textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	background: var(--bg-surface);
	color: var(--fg);
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.15s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
	outline: none;
	border-color: var(--border-focus);
	box-shadow: 0 0 0 3px var(--primary-light);
}

.textarea {
	resize: vertical;
	min-height: 5.5rem;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.35rem;
	border: 1.5px solid transparent;
	border-radius: var(--radius);
	background: var(--primary);
	color: #fff;
	font-family: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.15s ease;
	text-decoration: none;
}

.btn:hover:not(:disabled) {
	background: var(--primary-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(217, 107, 39, 0.25);
}

.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.btn-secondary {
	background: var(--bg-surface);
	color: var(--fg);
	border-color: var(--border);
}

.btn-secondary:hover:not(:disabled) {
	background: var(--bg-surface-subtle);
	border-color: var(--fg-muted);
	box-shadow: var(--shadow-sm);
}

.btn-success {
	background: var(--secondary);
}

.btn-success:hover:not(:disabled) {
	background: var(--secondary-hover);
}

.btn-danger {
	background: var(--danger);
}

.btn-danger-outline {
	background: transparent;
	border-color: var(--danger);
	color: var(--danger);
}

.btn-danger-outline:hover:not(:disabled) {
	background: var(--danger-light);
}

.btn-sm {
	padding: 0.45rem 0.75rem;
	font-size: 0.8125rem;
	border-radius: var(--radius-sm);
}

.btn-lg {
	padding: 0.9rem 1.85rem;
	font-size: 1.05rem;
}

.btn-block {
	width: 100%;
}

.button-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.75rem;
	flex-wrap: wrap;
}

/* Booking Summary Card */
.summary-box {
	background: var(--bg-surface-subtle);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px dashed var(--border);
	font-size: 0.925rem;
}

.summary-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.summary-row .label {
	color: var(--fg-muted);
}

.summary-row .value {
	font-weight: 600;
	color: var(--fg);
	text-align: right;
}

.summary-total {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary);
	border-top: 2px solid var(--border);
	padding-top: 0.75rem;
	margin-top: 0.5rem;
}

/* Confirmation Screen */
.confirmation-card {
	text-align: center;
	background: #fff;
	border: 2px solid #e0ebdf;
	border-radius: var(--radius-lg);
	padding: 2.5rem 1.5rem;
	box-shadow: var(--shadow-md);
	max-width: 38rem;
	margin: 0 auto;
}

.confirm-icon-circle {
	width: 4.5rem;
	height: 4.5rem;
	background: var(--secondary-light);
	color: var(--secondary);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2.25rem;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 16px rgba(44, 110, 73, 0.18);
}

.booking-code-chip {
	display: inline-block;
	background: var(--bg-surface-subtle);
	border: 2px dashed var(--primary);
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius);
	font-family: monospace;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: 0.1em;
	margin: 1rem 0 1.5rem;
}

/* Badges */
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.65rem;
	border-radius: var(--radius-full);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
}

.badge-confirmed {
	background: var(--info-light);
	color: var(--info);
}

.badge-in_salon {
	background: var(--primary-light);
	color: var(--primary);
}

.badge-ready {
	background: var(--accent-gold-bg);
	color: var(--accent-gold);
}

.badge-completed {
	background: var(--success-light);
	color: var(--success);
}

.badge-cancelled {
	background: var(--danger-light);
	color: var(--danger);
}

/* Owner Portal Dashboard */
.owner-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.owner-title-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.stat-card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: var(--shadow-sm);
}

.stat-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
}

.stat-icon.orange {
	background: var(--primary-light);
	color: var(--primary);
}

.stat-icon.green {
	background: var(--secondary-light);
	color: var(--secondary);
}

.stat-icon.amber {
	background: var(--accent-gold-bg);
	color: var(--accent-gold);
}

.stat-value {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--fg);
	line-height: 1.1;
}

.stat-label {
	font-size: 0.8125rem;
	color: var(--fg-muted);
	font-weight: 500;
}

/* Filter Bar */
.filter-bar {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 0.85rem;
	margin-bottom: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.filter-pills {
	display: flex;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border);
	background: var(--bg-surface-subtle);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--fg-muted);
	cursor: pointer;
	transition: all 0.12s ease;
}

.filter-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
}

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

/* Appointment List / Cards */
.appointment-card {
	background: var(--bg-surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	margin-bottom: 0.85rem;
	box-shadow: var(--shadow-sm);
	transition: border-color 0.15s ease;
}

.appointment-card:hover {
	border-color: var(--fg-muted);
}

.appt-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
}

.appt-dog-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.dog-avatar {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: var(--primary-light);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	flex-shrink: 0;
}

.dog-name-text {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fg);
	margin: 0;
}

.dog-sub-info {
	font-size: 0.8125rem;
	color: var(--fg-muted);
}

.appt-grid-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
	gap: 0.75rem;
	background: var(--bg-surface-subtle);
	padding: 0.85rem 1rem;
	border-radius: var(--radius-sm);
	margin-bottom: 0.85rem;
	font-size: 0.875rem;
}

.appt-detail-item {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.appt-detail-label {
	font-size: 0.75rem;
	color: var(--fg-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.appt-detail-val {
	font-weight: 600;
	color: var(--fg);
}

.appt-notes-box {
	background: #fffdf5;
	border-left: 3px solid var(--accent-gold);
	padding: 0.6rem 0.85rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 0.845rem;
	margin-bottom: 0.75rem;
	color: var(--fg);
}

.appt-staff-notes-box {
	background: var(--secondary-light);
	border-left: 3px solid var(--secondary);
	padding: 0.6rem 0.85rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 0.845rem;
	margin-bottom: 0.75rem;
	color: #17402a;
}

.appt-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	padding-top: 0.75rem;
	border-top: 1px dashed var(--border);
}

.status-select {
	padding: 0.4rem 0.65rem;
	border-radius: var(--radius-sm);
	border: 1.5px solid var(--border);
	font-size: 0.845rem;
	font-weight: 600;
	background: #fff;
	cursor: pointer;
}

/* Modal Dialog */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(43, 35, 29, 0.45);
	backdrop-filter: blur(4px);
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-content {
	background: var(--bg-surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	width: 100%;
	max-width: 32rem;
	max-height: 90vh;
	overflow-y: auto;
	padding: 1.75rem;
	border: 1px solid var(--border);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
}

.modal-title {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin: 0;
}

.close-btn {
	background: transparent;
	border: none;
	font-size: 1.25rem;
	cursor: pointer;
	color: var(--fg-muted);
	padding: 0.25rem;
	line-height: 1;
}

.close-btn:hover {
	color: var(--fg);
}

/* Primitives from seeded UI */
.loading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: calc(var(--space) * 2);
	color: var(--fg-muted);
	font-weight: 500;
}

.spinner {
	flex: none;
	width: 1.35rem;
	height: 1.35rem;
	border: 2.5px solid var(--border);
	border-top-color: var(--primary);
	border-radius: 50%;
	animation: fab-spin 0.7s linear infinite;
}

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

.alert {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
	padding: 0.85rem 1rem;
	border: 1px solid var(--border);
	border-left: 4px solid var(--fg-muted);
	border-radius: var(--radius);
	margin-bottom: 1rem;
}

.alert-error {
	background: var(--danger-light);
	border-color: #fca5a5;
	border-left-color: var(--danger);
	color: #991b1b;
	font-weight: 500;
}

.alert-success {
	background: var(--success-light);
	border-color: #86efac;
	border-left-color: var(--success);
	color: #166534;
	font-weight: 500;
}

.empty {
	padding: calc(var(--space) * 3) var(--space);
	text-align: center;
	color: var(--fg-muted);
}

.empty-title {
	margin: 0 0 0.4rem;
	color: var(--fg);
	font-weight: 700;
	font-size: 1.1rem;
}

/* Tabs */
.tabs-nav {
	display: flex;
	gap: 0.35rem;
	border-bottom: 1px solid var(--border);
	margin-bottom: 1.5rem;
}

.tab-link {
	padding: 0.75rem 1.25rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--fg-muted);
	border-bottom: 2px solid transparent;
	background: transparent;
	border-top: none;
	border-left: none;
	border-right: none;
	cursor: pointer;
	transition: all 0.15s ease;
}

.tab-link:hover {
	color: var(--primary);
}

.tab-link.active {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

/* Responsive tweaks */
@media (max-width: 480px) {
	.shell {
		padding: 1rem 0.75rem 2.5rem;
	}
	
	.hero-banner {
		padding: 1.5rem 1rem;
	}

	.button-row {
		flex-direction: column-reverse;
	}

	.button-row .btn {
		width: 100%;
	}
}
