:root {
	--bg: #f7f6f2;
	--bg-subtle: #ffffff;
	--card-bg: #ffffff;
	--card-border: rgba(0, 0, 0, 0.07);
	--card-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.02);
	--fg: #1c2024;
	--fg-muted: #68707d;
	--fg-subtle: #9ba3af;
	
	/* Palette - Warm Terracotta, Sage & Indigo */
	--primary: #d9534f;
	--primary-hover: #c94440;
	--primary-light: #fdf2f1;
	--primary-fg: #ffffff;

	--accent-sage: #407b64;
	--accent-sage-light: #edf7f2;
	--accent-indigo: #4854c7;
	--accent-indigo-light: #eeeffc;
	--accent-amber: #d97706;
	--accent-amber-light: #fef3c7;
	
	--border: #e8e7e1;
	--border-light: #f0efe9;
	--border-focus: #d9534f;
	
	--danger: #e11d48;
	--danger-light: #ffe4e6;
	--success: #16a34a;
	--success-light: #dcfce7;
	
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 20px;
	--radius-pill: 9999px;
	
	--font: "Heebo", "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--nav-height: 68px;
	--header-height: 62px;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #121316;
		--bg-subtle: #1a1c21;
		--card-bg: #1a1c21;
		--card-border: rgba(255, 255, 255, 0.08);
		--card-shadow: 0 4px 24px -2px rgba(0, 0, 0, 0.4);
		--fg: #f3f4f6;
		--fg-muted: #9ca3af;
		--fg-subtle: #6b7280;
		
		--primary: #f87171;
		--primary-hover: #ef4444;
		--primary-light: rgba(248, 113, 113, 0.15);
		--primary-fg: #121316;

		--accent-sage: #5eead4;
		--accent-sage-light: rgba(94, 234, 212, 0.12);
		--accent-indigo: #818cf8;
		--accent-indigo-light: rgba(129, 140, 248, 0.15);
		--accent-amber: #fbbf24;
		--accent-amber-light: rgba(251, 191, 36, 0.15);
		
		--border: #2a2e37;
		--border-light: #22252c;
		--border-focus: #f87171;
		
		--danger: #fb7185;
		--danger-light: rgba(251, 113, 133, 0.15);
		--success: #4ade80;
		--success-light: rgba(74, 222, 128, 0.15);
	}
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	min-height: 100%;
	background-color: var(--bg);
	color: var(--fg);
	font-family: var(--font);
	direction: rtl;
	text-align: right;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

body {
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

/* App Container */
.app-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 580px;
	margin: 0 auto;
	background: var(--bg);
	position: relative;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
	.app-container {
		max-width: 720px;
		border-left: 1px solid var(--border);
		border-right: 1px solid var(--border);
	}
}

/* Sticky App Header */
.app-header {
	position: sticky;
	top: 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.15rem;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--card-border);
}

@media (prefers-color-scheme: dark) {
	.app-header {
		background: rgba(26, 28, 33, 0.85);
	}
}

.header-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.brand-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, #d9534f, #f97316);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.15rem;
	box-shadow: 0 3px 10px rgba(217, 83, 79, 0.25);
}

.brand-info h1 {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	line-height: 1.2;
}

.brand-info span {
	font-size: 0.75rem;
	color: var(--fg-muted);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.header-btn {
	width: 38px;
	height: 38px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: var(--card-bg);
	color: var(--fg);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.15s ease;
	font-size: 1.05rem;
}

.header-btn:hover {
	background: var(--border-light);
	transform: translateY(-1px);
}

.header-partner-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.65rem;
	border-radius: var(--radius-pill);
	background: var(--primary-light);
	color: var(--primary);
	font-size: 0.78rem;
	font-weight: 600;
	border: 1px solid rgba(217, 83, 79, 0.2);
	cursor: pointer;
	transition: all 0.15s;
}

.header-partner-pill:hover {
	filter: brightness(0.95);
}

.partner-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow: 0 0 0 2px rgba(217, 83, 79, 0.3);
}

/* Main Content Area */
.app-content {
	flex: 1;
	padding: 1rem 1.15rem 6.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Bottom Navigation Bar */
.bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	max-width: 580px;
	margin: 0 auto;
	height: var(--nav-height);
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-top: 1px solid var(--card-border);
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 0 0.5rem;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
	.bottom-nav {
		max-width: 720px;
	}
}

@media (prefers-color-scheme: dark) {
	.bottom-nav {
		background: rgba(26, 28, 33, 0.92);
	}
}

.nav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	height: 100%;
	color: var(--fg-muted);
	background: transparent;
	border: none;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s ease;
	position: relative;
}

.nav-item.active {
	color: var(--primary);
	font-weight: 700;
}

.nav-icon-wrapper {
	font-size: 1.25rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.nav-item.active .nav-icon-wrapper {
	transform: scale(1.15);
}

.nav-badge {
	position: absolute;
	top: 8px;
	left: 50%;
	margin-left: 6px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 99px;
	background: var(--primary);
	color: white;
	font-size: 0.65rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Floating Quick Add (+) Button */
.fab-button {
	position: fixed;
	bottom: calc(var(--nav-height) + 14px);
	left: 20px;
	z-index: 45;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #d9534f, #ea580c);
	color: white;
	border: none;
	box-shadow: 0 6px 20px rgba(217, 83, 79, 0.38);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 400;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-button:hover {
	transform: scale(1.08) translateY(-2px);
	box-shadow: 0 8px 24px rgba(217, 83, 79, 0.45);
}

.fab-button:active {
	transform: scale(0.96);
}

/* Card Styling */
.card-box {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 1.15rem;
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
}

.card-header-clean {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.9rem;
}

.card-title-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.card-title-row h2, .card-title-row h3 {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.section-tag {
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-pill);
	background: var(--border-light);
	color: var(--fg-muted);
}

/* Dashboard Specifics */
.hero-greeting {
	padding: 1.25rem 1.15rem;
	background: linear-gradient(135deg, var(--card-bg) 0%, rgba(253, 242, 241, 0.65) 100%);
	border-radius: var(--radius-lg);
	border: 1px solid var(--card-border);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	position: relative;
}

@media (prefers-color-scheme: dark) {
	.hero-greeting {
		background: linear-gradient(135deg, #1e2129 0%, rgba(248, 113, 113, 0.1) 100%);
	}
}

.greeting-date {
	font-size: 0.8rem;
	color: var(--fg-muted);
	font-weight: 500;
}

.greeting-title {
	font-size: 1.45rem;
	font-weight: 800;
	color: var(--fg);
	letter-spacing: -0.02em;
}

.greeting-subtitle {
	font-size: 0.875rem;
	color: var(--fg-muted);
}

/* Metric Pill Grid */
.metric-summary-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.metric-pill-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	box-shadow: var(--card-shadow);
}

.metric-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--fg-muted);
}

.metric-values {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.metric-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 0.2rem 0.5rem;
	border-radius: var(--radius-sm);
	background: var(--border-light);
	color: var(--fg);
}

.metric-tag.highlight {
	background: var(--primary-light);
	color: var(--primary);
}

.metric-tag.indigo {
	background: var(--accent-indigo-light);
	color: var(--accent-indigo);
}

.metric-tag.sage {
	background: var(--accent-sage-light);
	color: var(--accent-sage);
}

/* Week Day Strip Interactive */
.week-strip {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.35rem;
	margin: 0.5rem 0;
}

.day-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.6rem 0.2rem;
	border-radius: var(--radius-sm);
	background: var(--border-light);
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.15s ease;
	position: relative;
}

.day-cell.active {
	background: var(--primary);
	color: white;
	box-shadow: 0 4px 12px rgba(217, 83, 79, 0.3);
}

.day-cell.today {
	border-color: var(--primary);
	font-weight: 700;
}

.day-name {
	font-size: 0.7rem;
	color: var(--fg-muted);
	margin-bottom: 0.2rem;
}

.day-cell.active .day-name {
	color: rgba(255, 255, 255, 0.85);
}

.day-num {
	font-size: 0.95rem;
	font-weight: 700;
}

.day-dots {
	display: flex;
	gap: 2px;
	margin-top: 4px;
	height: 4px;
}

.day-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--primary);
}

.day-cell.active .day-dot {
	background: white;
}

/* Task & Item Row Design */
.item-row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.8rem 0.9rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: var(--card-bg);
	transition: all 0.15s ease;
	margin-bottom: 0.5rem;
}

.item-row:hover {
	border-color: rgba(217, 83, 79, 0.3);
	background: var(--card-bg);
}

.item-row.completed {
	opacity: 0.65;
	background: var(--border-light);
}

.item-checkbox {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: 2px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 2px;
	transition: all 0.15s ease;
	background: transparent;
	color: transparent;
}

.item-checkbox:hover {
	border-color: var(--primary);
}

.item-checkbox.checked {
	background: var(--primary);
	border-color: var(--primary);
	color: white;
}

.item-details {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.item-title {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--fg);
	word-break: break-word;
	line-height: 1.35;
}

.item-row.completed .item-title {
	text-decoration: line-through;
	color: var(--fg-muted);
}

.item-meta-row {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	flex-wrap: wrap;
	font-size: 0.75rem;
	color: var(--fg-muted);
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.15rem 0.45rem;
	border-radius: var(--radius-pill);
	font-size: 0.72rem;
	font-weight: 600;
}

.badge-assignee {
	background: var(--accent-sage-light);
	color: var(--accent-sage);
}

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

.badge-recurring {
	background: var(--accent-indigo-light);
	color: var(--accent-indigo);
}

.badge-category {
	background: var(--border-light);
	color: var(--fg-muted);
}

/* Chore Distribution (חלוקת הבית) Screen */
.chore-balance-card {
	background: linear-gradient(135deg, var(--card-bg) 0%, var(--accent-indigo-light) 100%);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	border: 1px solid var(--card-border);
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.balance-header {
	text-align: center;
}

.balance-header h3 {
	font-size: 1.15rem;
	font-weight: 700;
}

.balance-header p {
	font-size: 0.8rem;
	color: var(--fg-muted);
	margin-top: 0.15rem;
}

.balance-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.6rem;
}

.balance-stat-box {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: var(--radius);
	padding: 0.85rem 0.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	box-shadow: var(--card-shadow);
}

.balance-stat-number {
	font-size: 1.45rem;
	font-weight: 800;
	color: var(--primary);
}

.balance-stat-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--fg-muted);
}

/* Shopping List Styles */
.shopping-category-block {
	margin-bottom: 1.25rem;
}

.shopping-category-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--fg);
	margin-bottom: 0.5rem;
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--border);
}

.shopping-item-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.65rem 0.85rem;
	border-radius: var(--radius-sm);
	background: var(--card-bg);
	border: 1px solid var(--border);
	margin-bottom: 0.4rem;
	transition: all 0.15s ease;
}

.shopping-item-card.completed {
	opacity: 0.6;
	background: var(--border-light);
}

.shopping-item-left {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex: 1;
}

.shopping-name {
	font-size: 0.9rem;
	font-weight: 500;
}

.shopping-item-card.completed .shopping-name {
	text-decoration: line-through;
	color: var(--fg-muted);
}

.shopping-qty {
	font-size: 0.75rem;
	padding: 0.15rem 0.45rem;
	border-radius: var(--radius-pill);
	background: var(--border-light);
	color: var(--fg-muted);
	font-weight: 600;
}

/* Payment & Bill Cards */
.payment-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 1rem;
	border-radius: var(--radius);
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	margin-bottom: 0.6rem;
	box-shadow: var(--card-shadow);
}

.payment-amount-box {
	text-align: left;
	direction: ltr;
}

.payment-amount {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--fg);
}

.payment-due {
	font-size: 0.72rem;
	color: var(--fg-muted);
}

/* AI Assistant Banner & Form */
.ai-assistant-card {
	background: linear-gradient(135deg, #2b1055, #75225b, #b9375e);
	color: white;
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(117, 34, 91, 0.25);
}

.ai-assistant-card::after {
	content: "✨";
	position: absolute;
	top: -10px;
	left: -10px;
	font-size: 5rem;
	opacity: 0.12;
	pointer-events: none;
}

.ai-title-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.ai-desc {
	font-size: 0.82rem;
	opacity: 0.9;
	margin-bottom: 0.85rem;
	line-height: 1.4;
}

.ai-input-wrapper {
	display: flex;
	gap: 0.5rem;
}

.ai-input {
	flex: 1;
	padding: 0.65rem 0.85rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.15);
	color: white;
	font-family: inherit;
	font-size: 0.88rem;
}

.ai-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.ai-submit-btn {
	padding: 0.65rem 1rem;
	border-radius: var(--radius);
	background: white;
	color: #75225b;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.15s ease;
}

.ai-submit-btn:hover {
	transform: scale(1.03);
}

.ai-prompt-chips {
	display: flex;
	gap: 0.4rem;
	overflow-x: auto;
	padding-top: 0.6rem;
	scrollbar-width: none;
}

.ai-prompt-chips::-webkit-scrollbar {
	display: none;
}

.ai-chip {
	white-space: nowrap;
	font-size: 0.74rem;
	padding: 0.3rem 0.6rem;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: background 0.15s;
}

.ai-chip:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* Modal / Bottom Sheet Overlay */
.modal-backdrop {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	animation: fadeIn 0.15s ease-out;
}

@media (min-width: 580px) {
	.modal-backdrop {
		align-items: center;
		padding: 1rem;
	}
}

.modal-sheet {
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	background: var(--bg-subtle);
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	padding: 1.25rem 1.25rem 2rem;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
	animation: slideUp 0.2s ease-out;
}

@media (min-width: 580px) {
	.modal-sheet {
		border-radius: var(--radius-lg);
		padding: 1.5rem;
		max-height: 85vh;
	}
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--border);
}

.modal-header h3 {
	font-size: 1.15rem;
	font-weight: 700;
}

.close-btn {
	background: var(--border-light);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	cursor: pointer;
	color: var(--fg-muted);
}

/* Segmented Control / Tabs */
.tab-pills {
	display: flex;
	gap: 0.35rem;
	overflow-x: auto;
	padding: 0.25rem;
	background: var(--border-light);
	border-radius: var(--radius);
	scrollbar-width: none;
}

.tab-pill-btn {
	flex: 1;
	white-space: nowrap;
	padding: 0.45rem 0.85rem;
	border-radius: var(--radius-sm);
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--fg-muted);
	cursor: pointer;
	transition: all 0.15s ease;
	text-align: center;
}

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

/* Category Filter Chips */
.filter-chips {
	display: flex;
	gap: 0.35rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
	scrollbar-width: none;
}

.filter-chip {
	white-space: nowrap;
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border);
	background: var(--card-bg);
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--fg-muted);
	cursor: pointer;
	transition: all 0.15s;
}

.filter-chip.active {
	background: var(--fg);
	color: var(--bg);
	border-color: var(--fg);
	font-weight: 600;
}

/* Forms & Inputs */
.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

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

.form-input, .form-select, .form-textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: var(--bg-subtle);
	color: var(--fg);
	font-family: inherit;
	font-size: 0.9rem;
	outline: none;
	transition: border-color 0.15s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	border-color: var(--border-focus);
	box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.15);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}

.btn-primary {
	width: 100%;
	padding: 0.75rem 1.25rem;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #d9534f, #ea580c);
	color: white;
	font-weight: 700;
	font-size: 0.95rem;
	border: none;
	cursor: pointer;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.15s ease;
	box-shadow: 0 4px 14px rgba(217, 83, 79, 0.25);
}

.btn-primary:hover {
	opacity: 0.95;
	transform: translateY(-1px);
}

.btn-secondary {
	padding: 0.6rem 1rem;
	border-radius: var(--radius-sm);
	background: var(--border-light);
	color: var(--fg);
	border: 1px solid var(--border);
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideUp {
	from { transform: translateY(100%); }
	to { transform: translateY(0); }
}

/* Quick Add Picker Grid */
.quick-add-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin: 0.5rem 0;
}

.quick-add-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1.15rem 0.5rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: var(--card-bg);
	cursor: pointer;
	transition: all 0.15s;
}

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

.quick-add-icon {
	font-size: 1.8rem;
}

.quick-add-title {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--fg);
}
