:root {
	--bg: #fbf8f3;
	--surface: #ffffff;
	--surface-subtle: #f6f1eb;
	--surface-active: #f0e8de;
	--fg: #2c2523;
	--fg-muted: #6e645f;
	--fg-subtle: #9c918a;
	--border: #e8e0d6;
	--border-subtle: #f0eae2;
	--border-hover: #d3c4b4;

	--primary: #c25e1a;
	--primary-hover: #a84e12;
	--primary-light: #fdf3eb;
	--primary-glow: rgba(194, 94, 26, 0.15);

	--accent: #1e7058;
	--accent-light: #eef7f3;
	--accent-border: #c4e4d6;

	--completed-bg: #ecfdf5;
	--completed-fg: #047857;
	--completed-border: #a7f3d0;

	--badge-bg: #f2ede6;
	--badge-fg: #5a4f48;

	--danger: #be123c;
	--danger-light: #fff1f2;
	--danger-border: #fecdd3;

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

	--shadow-sm: 0 1px 3px rgba(44, 37, 35, 0.05);
	--shadow-md: 0 4px 12px rgba(44, 37, 35, 0.08);
	--shadow-lg: 0 12px 28px rgba(44, 37, 35, 0.1);

	--font-heading: "Fraunces", Georgia, serif;
	--font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: var(--bg);
	background-image: radial-gradient(#e8dfd5 0.75px, transparent 0.75px);
	background-size: 24px 24px;
	color: var(--fg);
	font-family: var(--font-body);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
}

/* App Header & Navigation Bar */
.app-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 0.85rem 1.25rem;
}

.header-container {
	max-width: 68rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

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

.brand-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: var(--primary-light);
	color: var(--primary);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
}

.brand-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
	line-height: 1.1;
}

.brand-subtitle {
	font-size: 0.75rem;
	color: var(--fg-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nav-tabs {
	display: flex;
	background: var(--surface-subtle);
	padding: 4px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border);
	gap: 2px;
}

.nav-tab-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-full);
	border: none;
	background: transparent;
	color: var(--fg-muted);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

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

.nav-tab-btn.active {
	background: var(--surface);
	color: var(--fg);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.count-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.1rem 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	border-radius: 999px;
	background: var(--primary-light);
	color: var(--primary);
}

/* Layout Container */
.shell {
	max-width: 68rem;
	margin: 0 auto;
	padding: 1.75rem 1.25rem 4rem;
}

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

.hero-content {
	max-width: 38rem;
	position: relative;
	z-index: 2;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: var(--accent-light);
	color: var(--accent);
	border: 1px solid var(--accent-border);
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	margin-bottom: 0.85rem;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(1.85rem, 4vw, 2.6rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #1f1917;
	margin: 0 0 0.75rem;
}

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

.hero-perks {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.25rem;
}

.perk-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fg-muted);
}

/* Booking Flow Card */
.booking-container {
	display: grid;
	gap: 2rem;
}

.step-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
}

.step-header {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.25rem;
}

.step-num {
	width: 2rem;
	height: 2rem;
	background: var(--primary);
	color: #ffffff;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.step-title-group h2 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	margin: 0;
	line-height: 1.2;
}

.step-title-group p {
	font-size: 0.875rem;
	color: var(--fg-muted);
	margin: 0.2rem 0 0;
}

/* Service Selection Cards */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
	gap: 1.25rem;
}

.service-card {
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 1.35rem;
	background: var(--surface);
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: left;
}

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

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

.service-badge {
	position: absolute;
	top: -10px;
	right: 14px;
	background: var(--primary);
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.15rem 0.55rem;
	border-radius: var(--radius-full);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.service-icon-box {
	width: 3rem;
	height: 3rem;
	background: var(--surface-subtle);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	margin-bottom: 0.85rem;
	transition: background 0.2s;
}

.service-card.selected .service-icon-box {
	background: var(--primary-light);
}

.service-name {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}

.service-tagline {
	font-size: 0.85rem;
	color: var(--fg-muted);
	margin: 0 0 0.85rem;
	line-height: 1.35;
	flex-grow: 1;
}

.service-price-box {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-top: 0.85rem;
	border-top: 1px solid var(--border-subtle);
	margin-top: auto;
}

.service-price {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--fg);
}

.service-price span {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--fg-muted);
}

.service-duration {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--fg-muted);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

/* Dog Size Selection Grid */
.sizes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
	gap: 1rem;
}

.size-card {
	border: 2px solid var(--border);
	border-radius: var(--radius);
	padding: 1.15rem 1rem;
	background: var(--surface);
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.size-card:hover {
	border-color: var(--border-hover);
	transform: translateY(-2px);
}

.size-card.selected {
	border-color: var(--primary);
	background: #fffdfb;
	box-shadow: 0 0 0 1px var(--primary), var(--shadow-sm);
}

.size-icon {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.size-title {
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 0.15rem;
}

.size-weight {
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary);
	background: var(--primary-light);
	padding: 0.1rem 0.5rem;
	border-radius: var(--radius-full);
	margin-bottom: 0.4rem;
}

.size-examples {
	font-size: 0.75rem;
	color: var(--fg-muted);
	line-height: 1.25;
}

.size-est-price {
	margin-top: 0.65rem;
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--fg);
}

/* Date & Time Slot Picker */
.date-selector-container {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.75rem;
	margin-bottom: 1.25rem;
	scrollbar-width: thin;
}

.date-pill {
	flex: 0 0 5rem;
	border: 2px solid var(--border);
	border-radius: var(--radius);
	background: var(--surface);
	padding: 0.65rem 0.5rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.15s ease;
}

.date-pill:hover {
	border-color: var(--border-hover);
}

.date-pill.selected {
	border-color: var(--primary);
	background: var(--primary);
	color: #ffffff;
}

.date-pill .day-name {
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	opacity: 0.85;
}

.date-pill .day-num {
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.2;
}

.date-pill.selected .day-name,
.date-pill.selected .day-num {
	color: #ffffff;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(9rem, 100%), 1fr));
	gap: 0.75rem;
}

.slot-btn {
	border: 1px solid var(--border);
	background: var(--surface);
	border-radius: var(--radius-sm);
	padding: 0.75rem 0.5rem;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--fg);
	cursor: pointer;
	transition: all 0.15s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
}

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

.slot-btn.selected {
	border-color: var(--primary);
	background: var(--primary);
	color: #ffffff;
}

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

.slot-status {
	font-size: 0.7rem;
	font-weight: 500;
	opacity: 0.85;
}

/* Contact & Dog Info Form */
.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
	gap: 1rem;
}

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

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

.field {
	display: grid;
	gap: 0.35rem;
}

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

.field .required {
	color: var(--primary);
	margin-left: 2px;
}

/* Summary & Submit Box */
.summary-bar {
	background: #231c19;
	color: #ffffff;
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	box-shadow: var(--shadow-md);
}

.summary-details {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.summary-heading {
	font-size: 0.8rem;
	color: #c9bfb8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
}

.summary-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
	color: #ffffff;
}

.summary-meta {
	font-size: 0.875rem;
	color: #e5ded7;
}

.summary-action {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.summary-price-box {
	text-align: right;
}

.summary-total {
	font-size: 1.6rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
}

.summary-total-label {
	font-size: 0.75rem;
	color: #c9bfb8;
}

.btn-book {
	background: var(--primary);
	color: #ffffff;
	border: none;
	border-radius: var(--radius-full);
	padding: 0.85rem 1.75rem;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(194, 94, 26, 0.4);
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-book:hover:not(:disabled) {
	background: var(--primary-hover);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(194, 94, 26, 0.5);
}

.btn-book:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	box-shadow: none;
}

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

.confirm-icon-bubble {
	width: 4.5rem;
	height: 4.5rem;
	background: var(--completed-bg);
	color: var(--completed-fg);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
	border: 2px solid var(--completed-border);
}

.confirm-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.confirm-subtitle {
	color: var(--fg-muted);
	font-size: 1rem;
	margin: 0 0 1.5rem;
}

.receipt-box {
	background: var(--surface-subtle);
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	padding: 1.25rem;
	text-align: left;
	margin-bottom: 1.75rem;
}

.receipt-row {
	display: flex;
	justify-content: space-between;
	padding: 0.4rem 0;
	font-size: 0.9rem;
	border-bottom: 1px solid var(--border-subtle);
}

.receipt-row:last-child {
	border-bottom: none;
	padding-top: 0.75rem;
	font-weight: 700;
	font-size: 1.05rem;
}

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

.receipt-value {
	font-weight: 600;
	color: var(--fg);
}

/* =========================================
   GROOMER SCHEDULE / ADMIN WEEK VIEW
   ========================================= */
.schedule-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.schedule-title-group h1 {
	font-family: var(--font-heading);
	font-size: 1.85rem;
	font-weight: 700;
	margin: 0;
}

.schedule-title-group p {
	color: var(--fg-muted);
	margin: 0.2rem 0 0;
	font-size: 0.9rem;
}

.week-nav-group {
	display: flex;
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-full);
	padding: 0.25rem;
	box-shadow: var(--shadow-sm);
}

.week-btn {
	background: transparent;
	border: none;
	color: var(--fg-muted);
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.week-btn:hover {
	background: var(--surface-subtle);
	color: var(--fg);
}

.week-label {
	font-weight: 700;
	font-size: 0.9rem;
	padding: 0 0.85rem;
	color: var(--fg);
	min-width: 11rem;
	text-align: center;
}

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

.stat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.stat-label {
	font-size: 0.78rem;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--fg-muted);
}

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

.stat-desc {
	font-size: 0.75rem;
	color: var(--fg-subtle);
}

/* Filter Bar */
.filter-bar {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.filter-tabs {
	display: flex;
	gap: 0.35rem;
	background: var(--surface-subtle);
	padding: 3px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
}

.filter-tab {
	border: none;
	background: transparent;
	padding: 0.4rem 0.8rem;
	border-radius: calc(var(--radius-sm) - 2px);
	font-size: 0.825rem;
	font-weight: 600;
	color: var(--fg-muted);
	cursor: pointer;
}

.filter-tab.active {
	background: var(--surface);
	color: var(--fg);
	box-shadow: var(--shadow-sm);
}

.search-input-wrap {
	position: relative;
	min-width: 14rem;
}

.search-input {
	width: 100%;
	padding: 0.5rem 0.75rem 0.5rem 2.2rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	background: var(--surface);
}

.search-icon {
	position: absolute;
	left: 0.7rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--fg-subtle);
	pointer-events: none;
}

/* Days Columns in Schedule */
.week-columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
	gap: 1.25rem;
}

.day-column {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.15rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
}

.day-column.is-today {
	border-color: var(--primary);
	box-shadow: 0 0 0 1px var(--primary), var(--shadow-md);
}

.day-column-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--border-subtle);
	margin-bottom: 0.85rem;
}

.day-title-box {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

.day-title-name {
	font-weight: 700;
	font-size: 1.05rem;
}

.day-title-date {
	font-size: 0.825rem;
	color: var(--fg-muted);
}

.today-pill {
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	background: var(--primary);
	color: #ffffff;
	padding: 0.15rem 0.45rem;
	border-radius: var(--radius-full);
}

/* Booking Card inside Day Column */
.booking-item-card {
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
	background: #ffffff;
	margin-bottom: 0.75rem;
	transition: all 0.15s ease;
	position: relative;
}

.booking-item-card:last-child {
	margin-bottom: 0;
}

.booking-item-card:hover {
	border-color: var(--border-hover);
	box-shadow: var(--shadow-sm);
}

.booking-item-card.completed {
	background: #fcfdfc;
	border-color: var(--completed-border);
}

.booking-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.65rem;
}

.booking-time-badge {
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--fg);
	background: var(--surface-subtle);
	padding: 0.2rem 0.55rem;
	border-radius: var(--radius-sm);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
}

.booking-status-badge {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-full);
}

.booking-status-badge.upcoming {
	background: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
}

.booking-status-badge.completed {
	background: var(--completed-bg);
	color: var(--completed-fg);
	border: 1px solid var(--completed-border);
}

.booking-dog-row {
	display: flex;
	align-items: baseline;
	gap: 0.4rem;
	margin-bottom: 0.25rem;
}

.dog-name-label {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--fg);
}

.dog-breed-label {
	font-size: 0.8rem;
	color: var(--fg-muted);
}

.booking-service-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.65rem;
}

.booking-owner-line {
	font-size: 0.825rem;
	color: var(--fg-muted);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.tel-link {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.15rem 0.4rem;
	background: var(--accent-light);
	border-radius: var(--radius-sm);
}

.tel-link:hover {
	text-decoration: underline;
}

.booking-notes {
	background: var(--surface-subtle);
	border-left: 2px solid var(--primary);
	padding: 0.4rem 0.6rem;
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 0.775rem;
	color: var(--fg-muted);
	margin-bottom: 0.75rem;
	line-height: 1.35;
}

.booking-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.65rem;
	border-top: 1px solid var(--border-subtle);
}

.btn-mark-done {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.8rem;
	border-radius: var(--radius-full);
	font-size: 0.8rem;
	font-weight: 700;
	border: 1.5px solid var(--completed-border);
	background: var(--completed-bg);
	color: var(--completed-fg);
	cursor: pointer;
	transition: all 0.15s ease;
}

.btn-mark-done:hover {
	background: #d1fae5;
	border-color: #34d399;
}

.btn-mark-done.is-done {
	background: var(--surface-subtle);
	border-color: var(--border);
	color: var(--fg-muted);
}

.btn-mark-done.is-done:hover {
	background: var(--surface);
	color: var(--fg);
}

.btn-delete-booking {
	background: transparent;
	border: none;
	color: var(--fg-subtle);
	cursor: pointer;
	padding: 0.3rem;
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	transition: color 0.15s;
}

.btn-delete-booking:hover {
	color: var(--danger);
	background: var(--danger-light);
}

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

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

/* Empty day placeholder */
.empty-day-state {
	padding: 1.5rem 1rem;
	text-align: center;
	color: var(--fg-subtle);
	font-size: 0.825rem;
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	background: var(--surface-subtle);
}

/* Responsive tweaks */
@media (max-width: 640px) {
	.app-header {
		padding: 0.65rem 0.85rem;
	}
	.header-container {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
	}
	.nav-tabs {
		width: 100%;
		justify-content: center;
	}
	.hero-card {
		padding: 1.25rem;
	}
	.step-card {
		padding: 1.25rem;
	}
	.summary-bar {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
	.summary-action {
		justify-content: space-between;
	}
}
