:root {
	--font-base: 'Inter', sans-serif;
	--paper: #ffffff;
	--sand: #f7f2e8;
	--ink: #2d2c1f;
	--muted: #6d694f;
	--line: #ece4d7;
	--blue: #4e950f;
	--blue-deep: #1e6a10;
	--gold: #ef7a0b;
	--orange: #ef7a0b;
	--orange-deep: #d45500;
	--orange-soft: rgba(239, 122, 11, 0.12);
	--green-soft: rgba(78, 149, 15, 0.12);
	--card: #ffffff;
	--shadow: 0 18px 40px rgba(84, 71, 33, 0.08);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-base);
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(239, 122, 11, 0.05), transparent 22%),
		radial-gradient(circle at top right, rgba(78, 149, 15, 0.04), transparent 22%),
		linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
}

body.is-loading {
	cursor: progress;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.page-shell {
	width: min(1220px, calc(100% - 32px));
	margin: 14px auto;
}

.site-header,
.site-footer,
.hero,
.sidebar-card,
.results-panel,
.auth-panel,
.verification-banner,
.dashboard-panel,
.stat-card {
	background: #fff;
	backdrop-filter: none;
	border: 0;
	box-shadow: var(--shadow);
}

.site-header,
.site-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 20px;
}

.site-header {
	position: relative;
	z-index: 2000;
	display: grid;
	justify-items: center;
	gap: 18px;
	padding: 10px 0 12px;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	border-bottom: 0;
}

.site-header-main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	width: 100%;
}

.brand-block {
	width: 100%;
	display: flex;
	justify-content: center;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.brand-logo {
	display: block;
	width: 156px;
	height: auto;
}

.brand strong {
	display: block;
	font-size: 1.15rem;
	color: var(--blue-deep);
}

.brand small {
	display: block;
	color: var(--muted);
}

.top-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}

.mobile-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: #fff;
	color: var(--ink);
	box-shadow: var(--shadow);
	cursor: pointer;
}

.mobile-nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-header.is-mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
	opacity: 0;
}

.site-header.is-mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.top-nav > a {
	font-weight: 700;
	color: var(--ink);
}

.top-nav > a:not(.nav-button):hover {
	color: var(--blue-deep);
}

.nav-menu {
	position: relative;
	z-index: 2100;
}

.nav-trigger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 14px;
	border: 0;
	border-radius: 16px;
	background: transparent;
	color: var(--ink);
	font: inherit;
	cursor: pointer;
	box-shadow: none;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-trigger:hover {
	transform: translateY(-1px);
	background: #f8fafc;
}

.trades-trigger {
	padding-inline: 16px;
}

.books-trigger {
	padding-inline: 16px;
}

.help-trigger {
	padding-inline: 16px;
}

.profile-trigger-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	color: #fff;
	font-size: 0.84rem;
	font-weight: 800;
}

.profile-trigger-avatar.has-photo,
.dashboard-avatar.has-photo,
.messages-profile-avatar.has-photo,
.public-profile-avatar.has-photo,
.user-card-avatar.has-photo,
.account-avatar-preview.has-photo {
	padding: 0;
	overflow: hidden;
	color: transparent;
	background: #e8dcc0;
}

.profile-trigger-avatar img,
.dashboard-avatar img,
.messages-profile-avatar img,
.public-profile-avatar img,
.user-card-avatar img,
.account-avatar-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.nav-trigger-text {
	font-weight: 700;
}

.nav-trigger-caret {
	color: var(--muted);
	font-size: 0.9rem;
}

.nav-dropdown {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	width: 244px;
	padding: 14px 0;
	border: 0;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 34px rgba(81, 70, 29, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	z-index: 2200;
}

.trades-dropdown {
	width: 290px;
}

.books-dropdown {
	width: 250px;
}

.help-dropdown {
	width: 270px;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-dropdown-group + .nav-dropdown-group {
	margin-top: 6px;
	padding-top: 8px;
	border-top: 1px solid rgba(217, 207, 191, 0.65);
}

.nav-dropdown-title {
	padding: 0 18px 10px;
	margin-bottom: 6px;
	font-size: 1.35rem;
	font-family: var(--font-base);
	font-weight: 700;
}

.profile-dropdown .nav-dropdown-title {
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.nav-dropdown a {
	display: block;
	padding: 10px 18px;
	color: #3f3f3f;
	font-weight: 600;
}

.nav-link-with-badge {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
}

.nav-badge,
.conversation-unread-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
}

.nav-dropdown a:hover {
	background: var(--green-soft);
	color: var(--blue-deep);
}

.profile-dropdown-exit {
	margin-top: 6px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
}

.nav-button,
.primary-button,
.secondary-button,
.ghost-button,
.as-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 14px;
	border: 1px solid transparent;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, filter 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-button.is-loading,
.primary-button.is-loading,
.secondary-button.is-loading,
.ghost-button.is-loading,
.as-link.is-loading,
button.is-loading,
input[type="submit"].is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.nav-button,
.primary-button,
.as-link {
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	color: #fff;
	box-shadow: 0 12px 24px rgba(212, 85, 0, 0.22);
}

.nav-button:hover,
.primary-button:hover,
.as-link:hover,
.search-form .search-submit:hover,
.messages-search-form button:hover {
	filter: brightness(1.02);
	transform: translateY(-1px);
}

.secondary-button {
	background: var(--green-soft);
	border-color: rgba(78, 149, 15, 0.26);
	color: var(--blue-deep);
}

.secondary-button:hover {
	background: rgba(78, 149, 15, 0.18);
}

.confirmed-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 14px;
	border-radius: 14px;
	border: 1px solid rgba(65, 152, 87, 0.26);
	background: rgba(65, 152, 87, 0.12);
	color: #2c6b3f;
	font-weight: 700;
	cursor: default;
	align-self: flex-start;
}

.confirmed-button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #419857;
	color: #fff;
	font-size: 0.72rem;
	line-height: 1;
}

.ghost-button {
	background: transparent;
	border-color: var(--line);
	color: var(--ink);
}

.ghost-button:disabled,
.primary-button:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.page-content {
	margin-top: 14px;
}

.flash {
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: 18px;
	font-weight: 600;
}

.flash-success {
	background: rgba(65, 152, 87, 0.12);
	border: 1px solid rgba(65, 152, 87, 0.28);
}

.flash-error {
	background: rgba(182, 71, 71, 0.11);
	border: 1px solid rgba(182, 71, 71, 0.22);
}

.flash-warning {
	background: var(--orange-soft);
	border: 1px solid rgba(239, 122, 11, 0.22);
}

.hero {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 28px;
	padding: 32px;
	border-radius: 30px;
}

.hero-home {
	display: none;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--blue);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero h1,
.auth-copy h1,
.dashboard-hero h1 {
	margin: 0;
	font-family: var(--font-base);
	font-size: clamp(2.2rem, 4vw, 4.2rem);
	line-height: 0.96;
}

.hero p,
.auth-copy p,
.dashboard-hero p,
.sidebar-note p,
.panel-empty,
.empty-state p {
	color: var(--muted);
	line-height: 1.7;
}

.search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: #fff;
	border-radius: 22px;
	border: 0;
	box-shadow: var(--shadow);
}

.search-topbar {
	margin-bottom: 14px;
}

.search-topbar-home {
	margin-bottom: 16px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.search-topbar-home > * {
	position: static;
}

.search-topbar-home .search-form-top {
	z-index: 5;
	width: 100%;
	max-width: none;
}

.search-topbar-home .search-topbar-intro {
	z-index: 2;
}

.search-home-grid,
.search-home-stack {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
}

.search-topbar-intro {
	width: 100%;
	margin: 0;
	padding: 28px 30px;
	text-align: left;
	background: #fff;
	border: 0;
	border-radius: 30px;
	box-shadow: 0 20px 42px rgba(84, 71, 33, 0.12);
}

.seed-guide-accordion {
	overflow: hidden;
}

.seed-guide-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	cursor: pointer;
	list-style: none;
}

.seed-guide-summary::-webkit-details-marker {
	display: none;
}

.seed-guide-summary:focus-visible {
	outline: 3px solid rgba(78, 149, 15, 0.24);
	outline-offset: 6px;
	border-radius: 18px;
}

.seed-guide-summary-copy {
	min-width: 0;
}

.seed-guide-summary-hint {
	display: inline-flex;
	margin-top: 10px;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--blue-deep);
}

.seed-guide-summary-arrow {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-right: 3px solid var(--orange-deep);
	border-bottom: 3px solid var(--orange-deep);
	transform: rotate(45deg) translateY(-3px);
	transition: transform 0.2s ease;
}

.seed-guide-accordion[open] .seed-guide-summary-arrow {
	transform: rotate(225deg) translateY(-1px);
}

.seed-guide-content {
	padding-top: 18px;
	animation: seed-guide-reveal 0.22s ease;
}

.seed-guide-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.seed-guide-head img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	filter: drop-shadow(0 8px 14px rgba(239, 122, 11, 0.2));
}

.search-topbar-intro h1 {
	margin: 0;
	font-family: var(--font-base);
	font-size: clamp(1.7rem, 2.2vw, 2.3rem);
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.search-topbar-intro p {
	margin: 10px 0 0;
	max-width: 640px;
	color: var(--muted);
	font-size: 0.96rem;
	line-height: 1.6;
}

.seed-guide-steps {
	display: grid;
	gap: 18px;
	margin-top: 0;
}

.seed-guide-step {
	position: relative;
	padding: 0 0 0 20px;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.seed-guide-step strong,
.seed-guide-step span {
	display: block;
}

.seed-guide-step strong {
	font-size: 1.08rem;
	font-weight: 800;
	line-height: 1.35;
}

.seed-guide-step span {
	margin-top: 6px;
	color: var(--muted);
	line-height: 1.7;
}

.seed-guide-step::before {
	content: '';
	position: absolute;
	top: 0.5rem;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	box-shadow: 0 0 0 6px rgba(239, 122, 11, 0.1);
}

.seed-guide-status {
	margin-top: 22px;
	padding: 14px 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(78, 149, 15, 0.08), rgba(78, 149, 15, 0.04));
	color: var(--ink);
	font-weight: 600;
}

@keyframes seed-guide-reveal {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.search-form-home {
	order: -1;
	width: 100%;
	max-width: none;
	margin: 0;
	min-height: auto;
}

.search-topbar-home .search-form-top,
.search-topbar-home .search-topbar-intro {
	box-shadow: 0 18px 38px rgba(28, 22, 11, 0.14);
}

.dashboard-searchbar {
	margin-bottom: 20px;
}

.dashboard-searchbar .search-form-top {
	max-width: none;
}

.search-form-top {
	max-width: 1080px;
	margin: 0 auto;
	padding: 14px 18px;
	border-radius: 22px;
	background: rgba(255, 253, 249, 0.94);
	border: 1px solid rgba(78, 149, 15, 0.14);
	box-shadow: var(--shadow);
}

.search-input-wrap {
	position: relative;
	flex: 1;
	z-index: 8;
}

.search-input-stack {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.search-suggestions {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	padding: 8px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 18px;
	background: rgba(255, 252, 245, 0.99);
	box-shadow: 0 18px 30px rgba(81, 70, 29, 0.14);
	z-index: 60;
}

.search-suggestion-item {
	width: 100%;
	display: grid;
	gap: 4px;
	padding: 12px 14px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
}

.search-suggestion-item strong {
	font-size: 0.98rem;
}

.search-suggestion-item span {
	color: var(--muted);
	font-size: 0.88rem;
}

.search-suggestion-item:hover {
	background: var(--green-soft);
}

.search-form-top input {
	min-height: 48px;
	padding-inline: 16px;
	padding-right: 58px;
	border-radius: 16px;
}

.search-form-top .search-submit {
	min-width: 120px;
	min-height: 48px;
	border-radius: 16px;
}

.search-manual-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 10px 4px 0;
	color: var(--blue-deep);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.search-manual-link:hover {
	color: var(--orange-deep);
}

.search-manual-link-inline {
	margin: 10px 0 0;
}

.search-farmer {
	flex: 0 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	align-self: stretch;
	padding: 0 4px 0 2px;
}

.search-farmer img {
	display: block;
	width: 64px;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 10px 16px rgba(101, 79, 30, 0.16));
}

.search-form input,
.auth-form input,
.auth-form select,
.auth-form textarea {
	width: 100%;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 14px;
	padding: 16px 18px;
	font-size: 1rem;
	background: #fff;
	font: inherit;
}

.auth-form textarea {
	min-height: 160px;
	resize: vertical;
}

.search-form .search-submit {
	min-width: 120px;
	min-height: 54px;
	border: 0;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 14px 24px rgba(212, 85, 0, 0.2);
}

.search-form .search-submit.is-loading {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.search-form .search-submit.is-loading::before {
	content: '';
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: search-button-spin 0.75s linear infinite;
}

@keyframes search-button-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.search-clear {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 10px;
	background: #fff9ee;
	color: var(--orange-deep);
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.search-clear:hover {
	background: #fff1de;
	border-color: rgba(239, 122, 11, 0.26);
}

.search-clear[hidden] {
	display: none;
}

.catalog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.catalog-layout-search {
	grid-template-columns: 270px minmax(0, 1fr);
	align-items: start;
}

.catalog-sidebar {
	position: sticky;
	top: 20px;
	display: grid;
	gap: 16px;
	padding: 20px 18px;
	border-radius: 24px;
	background: #fff;
	border: 0;
	box-shadow: var(--shadow);
}

.catalog-sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.catalog-sidebar-head strong {
	font-size: 1rem;
}

.catalog-clear-link {
	color: var(--blue-deep);
	font-size: 0.88rem;
	font-weight: 700;
}

.catalog-facet {
	display: grid;
	gap: 10px;
}

.catalog-facet-title {
	font-size: 1rem;
	font-weight: 800;
}

.catalog-facet-list {
	display: grid;
	gap: 8px;
	max-height: 220px;
	overflow: auto;
	padding-right: 4px;
}

.catalog-facet-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 14px;
	border: 0;
	background: #f8f5ee;
	font-weight: 600;
}

.catalog-facet-item strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(78, 149, 15, 0.12);
	color: var(--blue-deep);
	font-size: 0.82rem;
}

.catalog-facet-item.is-active {
	border-color: rgba(239, 122, 11, 0.32);
	background: rgba(239, 122, 11, 0.08);
}

.catalog-layout > .sidebar-card {
	display: none;
}

.sidebar-card,
.results-panel,
.verification-banner,
.dashboard-panel {
	border-radius: 28px;
	padding: 24px;
}

.catalog-results-panel {
	display: grid;
	gap: 20px;
}

.catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(236, 228, 215, 0.9);
}

.catalog-toolbar-copy {
	display: grid;
	gap: 10px;
}

.catalog-manual-cta {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 10px 14px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fffaf2, #f7ecd8);
	border: 1px solid rgba(239, 122, 11, 0.14);
}

.catalog-manual-cta span {
	color: var(--muted);
	font-weight: 700;
}

.catalog-manual-cta .primary-button {
	min-height: 42px;
	white-space: nowrap;
}

.catalog-count {
	font-size: 1rem;
	font-weight: 800;
	color: var(--blue-deep);
}

.catalog-query-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(78, 149, 15, 0.08);
	border: 0;
	font-weight: 700;
}

.catalog-query-pill a {
	font-size: 1.1rem;
	line-height: 1;
}

.catalog-sort-form {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	font-weight: 700;
}

.catalog-sort-form select {
	min-width: 180px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 14px;
	background: #fff;
	font: inherit;
}

.catalog-tabs a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.catalog-tabs a span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 999px;
	background: rgba(78, 149, 15, 0.1);
	font-size: 0.82rem;
	font-weight: 800;
}

.catalog-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.catalog-book-card {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 18px;
	padding: 16px;
	border-radius: 22px;
	border: 0;
	background: #fff;
	box-shadow: 0 14px 30px rgba(84, 71, 33, 0.06);
}

.catalog-book-cover {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 162px;
	padding: 8px;
	border-radius: 18px;
	background: #fbf8f2;
	border: 0;
}

.catalog-book-cover img {
	max-height: 146px;
	width: auto;
	object-fit: contain;
}

.catalog-book-body {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.catalog-book-head h3 {
	margin: 0;
	font-size: 1.02rem;
}

.catalog-book-head h3 a {
	color: var(--blue-deep);
	font-weight: 800;
}

.catalog-book-head p {
	margin: 4px 0 0;
	color: var(--muted);
}

.catalog-book-authors {
	font-weight: 600;
}

.catalog-book-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	color: var(--muted);
	font-size: 0.9rem;
}

.catalog-book-statuses {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.catalog-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(78, 149, 15, 0.1);
	color: var(--ink);
	font-size: 0.84rem;
	font-weight: 700;
}

.catalog-chip-attention {
	background: rgba(239, 122, 11, 0.14);
	color: var(--orange-deep);
}

.catalog-chip-success {
	background: rgba(78, 149, 15, 0.18);
	color: var(--blue-deep);
}

.catalog-book-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.catalog-book-actions .inline-form {
	margin: 0;
}

.catalog-book-actions .ghost-button,
.catalog-book-actions .as-link {
	min-height: 40px;
	padding-inline: 14px;
	border-radius: 12px;
}

.stat-stack {
	display: grid;
	gap: 14px;
}

.stat-stack div,
.stat-card {
	padding: 16px;
	border-radius: 18px;
	background: #fff;
	border: 0;
	box-shadow: 0 10px 24px rgba(84, 71, 33, 0.05);
}

.stat-stack strong,
.stat-card strong {
	display: block;
	font-size: 1.9rem;
}

.stat-stack span,
.stat-card span,
.book-meta,
.mini-item span {
	color: var(--muted);
}

.sidebar-note {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.results-head,
.panel-head,
.dashboard-hero,
.verification-banner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.verification-chip {
	max-width: 320px;
	padding: 12px 14px;
	border-radius: 14px;
	background: var(--orange-soft);
	color: #8c4700;
	font-size: 0.95rem;
}

.tabs {
	display: flex;
	gap: 8px;
	margin: 24px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(236, 228, 215, 0.9);
	flex-wrap: wrap;
}

.tabs a {
	padding: 12px 18px;
	border-radius: 14px;
	color: var(--muted);
	font-weight: 700;
}

.tabs a.active {
	background: var(--green-soft);
	color: var(--blue-deep);
}

.catalog-filter-form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 24px;
	padding: 14px 16px;
	border-radius: 18px;
	background: #fff;
	border: 0;
	box-shadow: 0 10px 24px rgba(84, 71, 33, 0.05);
}

.catalog-filter-form label {
	font-weight: 700;
	color: var(--blue-deep);
}

.catalog-filter-form select {
	min-width: min(320px, 100%);
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 14px;
	padding: 12px 14px;
	font: inherit;
	background: #fff;
}

.book-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.book-card {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 18px;
	padding: 18px;
	border-radius: 22px;
	background: linear-gradient(180deg, #fffdf8, #f8f1e7);
	border: 1px solid rgba(217, 207, 191, 0.9);
}

.book-cover {
	width: 116px;
}

.book-cover-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.book-cover img,
.book-cover-placeholder {
	width: 100%;
	aspect-ratio: 2 / 3;
	border-radius: 16px;
	object-fit: cover;
}

.book-cover-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--orange), #f2ad38);
	color: #fff;
	font-size: 2rem;
	font-weight: 800;
}

.book-body h3 {
	margin: 0 0 8px;
	font-size: 1.15rem;
}

.book-link-title {
	color: inherit;
	text-decoration: none;
}

.book-link-title:hover {
	text-decoration: underline;
}

.book-meta,
.book-owner,
.book-desc,
.request-status {
	font-size: 0.95rem;
}

.book-owner,
.book-signals,
.book-desc {
	color: var(--muted);
}

.book-category {
	margin: 8px 0 0;
	color: #6d7f23;
	font-size: 0.9rem;
	font-weight: 700;
}

.book-signals {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 14px 0;
	font-size: 0.92rem;
}

.card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.inline-form {
	margin: 0;
}

.text-link {
	display: inline-flex;
	align-items: center;
	padding: 0 4px;
	color: var(--blue-deep);
	font-weight: 700;
}

.card-actions .text-link {
	display: none;
}

.empty-state {
	padding: 34px;
	border-radius: 22px;
	background: #fff;
	border: 0;
	box-shadow: 0 10px 24px rgba(84, 71, 33, 0.05);
}

.auth-shell {
	display: flex;
	justify-content: center;
}

.auth-panel {
	width: min(720px, 100%);
	padding: 34px;
	border-radius: 30px;
}

.contact-panel {
	width: min(820px, 100%);
}

.requests-page {
	display: flex;
	justify-content: center;
}

.requests-card {
	width: min(1080px, 100%);
	padding: 30px;
	border-radius: 30px;
	background: #fff;
	border: 0;
	box-shadow: var(--shadow);
}

.service-fee-page {
	display: flex;
	justify-content: center;
}

.service-fee-card {
	width: min(980px, 100%);
	padding: 30px;
	border-radius: 30px;
	background: #fff;
	border: 0;
	box-shadow: var(--shadow);
}

.service-fee-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.request-choice-page {
	display: flex;
	justify-content: center;
}

.request-choice-card {
	display: grid;
	gap: 24px;
}

.request-choice-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 18px;
	align-items: start;
}

.request-choice-book,
.request-choice-address,
.request-choice-owner-card {
	background: #fff;
	border: 0;
	border-radius: 24px;
	box-shadow: 0 12px 28px rgba(84, 71, 33, 0.06);
}

.request-choice-book {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 18px;
	padding: 22px;
}

.request-choice-book-cover img,
.request-choice-book-cover .book-cover-placeholder {
	width: 112px;
	height: 160px;
	border-radius: 16px;
	object-fit: cover;
}

.request-choice-book-copy {
	display: grid;
	gap: 10px;
	align-content: start;
}

.request-choice-book-copy h1,
.request-choice-address h2 {
	margin: 0;
	font-family: var(--font-base);
	font-size: 2rem;
}

.request-choice-book-copy p,
.request-choice-address p,
.request-choice-owner-copy p {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.request-choice-address {
	display: grid;
	gap: 14px;
	padding: 22px;
	background: rgba(246, 239, 221, 0.92);
}

.request-choice-listing {
	display: grid;
	gap: 16px;
}

.request-choice-owner-list {
	display: grid;
	gap: 14px;
}

.request-choice-owner-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 18px 20px;
}

.request-choice-owner-main {
	display: grid;
	grid-template-columns: 60px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.request-choice-owner-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(226, 172, 106, 0.25);
	color: var(--blue-deep);
	font-weight: 800;
	font-size: 1.25rem;
}

.request-choice-owner-copy {
	display: grid;
	gap: 4px;
}

.request-choice-owner-copy h3 {
	margin: 0;
	font-size: 1.1rem;
}

.request-choice-owner-copy h3 a {
	color: inherit;
	text-decoration: none;
}

.request-choice-owner-copy h3 a:hover {
	text-decoration: underline;
}

.request-choice-owner-rating {
	display: grid;
	gap: 6px;
	margin-top: 4px;
}

.request-choice-owner-rating small {
	color: var(--muted);
}

.request-choice-owner-form {
	margin: 0;
}

.service-fee-panel {
	padding: 24px;
	border-radius: 24px;
	background: #fff;
	border: 0;
	box-shadow: 0 12px 28px rgba(84, 71, 33, 0.06);
}

.service-fee-panel h2 {
	margin: 0 0 12px;
}

.service-fee-pix-key,
.service-fee-book {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
	border-radius: 18px;
	background: #faf7f1;
	border: 0;
}

.service-fee-pix-key strong,
.service-fee-book strong {
	font-size: 1.12rem;
}

.service-fee-note {
	margin: 16px 0 0;
	color: var(--muted);
	line-height: 1.6;
}

.service-fee-qr-shell,
.service-fee-copy-code {
	margin-top: 16px;
	padding: 18px;
	border-radius: 18px;
	background: #faf7f1;
	border: 0;
}

.service-fee-qr-shell {
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-fee-qr-shell img {
	display: block;
	width: min(100%, 260px);
	border-radius: 14px;
}

.service-fee-copy-code {
	display: grid;
	gap: 10px;
}

.service-fee-copy-code textarea {
	width: 100%;
	padding: 14px;
	border-radius: 14px;
	border: 1px solid rgba(191, 170, 122, 0.28);
	background: #fffdfa;
	color: var(--text);
	font: inherit;
	resize: vertical;
}

.service-fee-book {
	margin-top: 16px;
}

.service-fee-upload-form {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}

.service-fee-proof-link,
.service-fee-return {
	margin-top: 14px;
}

.service-fee-proof-preview {
	margin-top: 14px;
	padding: 14px;
	border-radius: 18px;
	background: #faf7f1;
	border: 0;
}

.service-fee-proof-preview img {
	display: block;
	max-width: 100%;
	border-radius: 12px;
}

.faq-page {
	display: grid;
	gap: 22px;
}

.faq-hero,
.faq-card,
.faq-cta {
	background: #fff;
	border: 0;
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.faq-hero,
.faq-cta {
	padding: 28px 30px;
}

.faq-hero h1,
.faq-cta h2,
.faq-card h2 {
	margin: 0 0 10px;
	font-family: var(--font-base);
	font-size: 2.2rem;
}

.faq-hero p,
.faq-cta p,
.faq-item p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.faq-card {
	padding: 24px;
}

.faq-card-head {
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(236, 228, 215, 0.9);
}

.faq-list {
	display: grid;
	gap: 16px;
}

.faq-item {
	padding: 16px 18px;
	border-radius: 18px;
	background: #faf7f1;
	border: 0;
}

.faq-item h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
}

.faq-cta {
	text-align: center;
}

.faq-cta .primary-button {
	margin-top: 16px;
}

.how-it-works-page {
	display: grid;
	gap: 22px;
}

.how-it-works-hero,
.how-it-works-flow,
.how-it-works-step,
.how-it-works-cta,
.how-it-works-note {
	background: rgba(255, 253, 249, 0.94);
	border: 1px solid rgba(78, 149, 15, 0.12);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.how-it-works-hero,
.how-it-works-cta,
.how-it-works-note {
	padding: 28px 30px;
}

.how-it-works-hero h1,
.how-it-works-flow h2,
.how-it-works-step h3,
.how-it-works-cta h2,
.how-it-works-note h2 {
	margin: 0 0 10px;
	font-family: var(--font-base);
}

.how-it-works-hero h1 {
	font-size: 2.7rem;
}

.how-it-works-hero p,
.how-it-works-flow-head p,
.how-it-works-step p,
.how-it-works-cta p,
.how-it-works-note p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.how-it-works-flow {
	padding: 28px 30px;
}

.how-it-works-flow-head {
	margin-bottom: 18px;
}

.how-it-works-flow-head h2 {
	font-size: 2.1rem;
}

.how-it-works-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.how-it-works-step {
	padding: 24px;
}

.how-it-works-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: var(--green-soft);
	color: var(--blue-deep);
	font-weight: 800;
}

.how-it-works-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

@media (max-width: 760px) {
	.how-it-works-page {
		gap: 16px;
	}

	.how-it-works-hero,
	.how-it-works-flow,
	.how-it-works-cta,
	.how-it-works-note {
		padding: 22px 18px;
		border-radius: 22px;
	}

	.how-it-works-hero h1 {
		font-size: clamp(2rem, 11vw, 2.5rem);
		line-height: 1.05;
	}

	.how-it-works-flow-head h2,
	.how-it-works-cta h2,
	.how-it-works-note h2 {
		font-size: clamp(1.55rem, 8vw, 2rem);
		line-height: 1.1;
	}

	.how-it-works-steps {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.how-it-works-step {
		padding: 20px 18px;
	}

	.how-it-works-step h3 {
		font-size: 1.3rem;
	}

	.how-it-works-actions {
		flex-direction: column;
		align-items: stretch;
	}
}

.auth-form {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.auth-form label span {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
}

.shelf-edit-panel textarea {
	min-height: 220px;
}

.shelf-edit-preview {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 18px;
	margin-top: 24px;
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 248, 238, 0.82);
	border: 1px solid rgba(239, 122, 11, 0.12);
}

.shelf-edit-cover img,
.shelf-edit-cover .backpack-cover-placeholder {
	width: 128px;
	aspect-ratio: 2 / 3;
	border-radius: 16px;
	object-fit: cover;
}

.shelf-edit-copy {
	display: grid;
	gap: 8px;
	align-content: start;
}

.shelf-edit-copy strong {
	font-size: 1.15rem;
}

.shelf-edit-copy span,
.shelf-edit-copy p {
	color: var(--muted);
}

.account-highlight {
	margin-top: 18px;
	padding: 14px 16px;
	border-radius: 18px;
	background: linear-gradient(180deg, #fff6e8, #f7ecd6);
	border: 1px solid rgba(239, 122, 11, 0.18);
	color: #8c5b1c;
	font-weight: 600;
}

.condominium-section {
	display: grid;
	gap: 16px;
	padding: 18px;
	border-radius: 24px;
	background: linear-gradient(180deg, #fffaf2, #f5efe2);
	border: 1px solid rgba(239, 122, 11, 0.14);
}

.condominium-section-copy {
	display: grid;
	gap: 8px;
}

.condominium-section-copy h2 {
	margin: 0;
	font-size: 1.5rem;
}

.condominium-section-copy p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.condominium-choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.condominium-choice-card {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(78, 149, 15, 0.12);
	cursor: pointer;
}

.condominium-choice-card.is-active {
	border-color: rgba(239, 122, 11, 0.28);
	box-shadow: 0 10px 24px rgba(84, 71, 33, 0.06);
}

.condominium-choice-card input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.condominium-choice-card strong,
.condominium-choice-card small {
	display: block;
	grid-column: 2;
}

.condominium-choice-card small {
	margin-top: 6px;
	color: var(--muted);
	line-height: 1.55;
}

.condominium-inputs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.condominium-inputs.is-hidden {
	display: none;
}

.condominium-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-weight: 700;
}

.condominium-divider span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(78, 149, 15, 0.12);
}

.condominium-match-hint {
	grid-column: 1 / -1;
	margin: 0;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(78, 149, 15, 0.08);
	border: 1px solid rgba(78, 149, 15, 0.16);
	color: #41672e;
	font-weight: 600;
}

.user-edited-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(239, 122, 11, 0.12);
	border: 1px solid rgba(239, 122, 11, 0.24);
	color: #9b5200;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.book-condition-chip {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(78, 149, 15, 0.12);
	border: 1px solid rgba(78, 149, 15, 0.24);
	color: #497306;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}

.form-actions-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.cep-feedback {
	margin: 4px 0 0;
	padding: 12px 14px;
	border-radius: 14px;
	font-weight: 600;
}

.cep-feedback[hidden] {
	display: none;
}

.cep-feedback.is-loading {
	background: rgba(78, 149, 15, 0.1);
	border: 1px solid rgba(78, 149, 15, 0.2);
	color: var(--blue-deep);
}

.cep-feedback.is-success {
	background: rgba(65, 152, 87, 0.12);
	border: 1px solid rgba(65, 152, 87, 0.22);
	color: #2d7a44;
}

.cep-feedback.is-error {
	background: rgba(182, 71, 71, 0.11);
	border: 1px solid rgba(182, 71, 71, 0.2);
	color: #9a3d3d;
}

.notification-page {
	display: block;
}

.notification-panel {
	display: grid;
	gap: 18px;
}

.notification-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.notification-card {
	padding: 22px;
	border-radius: 26px;
	background: #fff;
	border: 0;
	box-shadow: 0 12px 28px rgba(84, 71, 33, 0.06);
}

.notification-card h2 {
	margin: 0 0 12px;
	font-size: 1.8rem;
	font-family: var(--font-base);
}

.notification-badge {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.notification-badge.is-granted {
	background: rgba(65, 152, 87, 0.12);
	color: #2d7a44;
}

.notification-badge.is-denied {
	background: rgba(182, 71, 71, 0.11);
	color: #9a3d3d;
}

.notification-badge.is-default {
	background: var(--orange-soft);
	color: #8c4700;
}

.notification-status-card .panel-empty {
	margin-bottom: 0;
}

.notification-toggle {
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	gap: 14px;
	padding: 16px;
	border-radius: 18px;
	background: #faf7f1;
	border: 0;
}

.notification-toggle input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
}

.notification-toggle strong,
.notification-toggle small {
	display: block;
}

.notification-toggle small {
	margin-top: 6px;
	color: var(--muted);
	line-height: 1.6;
}

.notification-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.notification-notes-card {
	background: #fff;
	box-shadow: var(--shadow);
}

.account-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.account-field-span-2 {
	grid-column: 1 / -1;
}

.account-danger-card {
	margin-top: 28px;
	padding: 24px;
	border-radius: 24px;
	background: linear-gradient(180deg, #fff6f3, #fff0eb);
	border: 1px solid rgba(168, 64, 37, 0.18);
	display: grid;
	gap: 16px;
}

.account-danger-copy h2 {
	margin: 6px 0 10px;
	font-size: 1.75rem;
}

.account-danger-copy p {
	margin: 0;
	color: #7f4a3f;
	line-height: 1.7;
}

.account-delete-note {
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(168, 64, 37, 0.08);
	border: 1px solid rgba(168, 64, 37, 0.16);
	color: #8a3f30;
	font-weight: 600;
}

.account-delete-note.is-blocked {
	background: rgba(168, 64, 37, 0.11);
}

.account-delete-list {
	margin: 0;
	padding-left: 20px;
	color: #7f4a3f;
	display: grid;
	gap: 8px;
}

.account-delete-help {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.account-delete-form {
	display: grid;
	gap: 16px;
}

.account-delete-check {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	color: #7f4a3f;
}

.account-delete-check input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
}

.danger-button {
	width: fit-content;
	padding: 14px 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #b64747, #8f2e2e);
	color: #fff;
	font: inherit;
	font-weight: 800;
	box-shadow: 0 14px 28px rgba(143, 46, 46, 0.24);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.danger-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 32px rgba(143, 46, 46, 0.28);
	filter: brightness(1.03);
}

.auth-alt {
	margin-top: 22px;
	color: var(--muted);
}

.auth-alt a {
	color: var(--blue-deep);
	font-weight: 700;
}

.auth-helper-link {
	margin: -4px 0 0;
	text-align: right;
}

.auth-helper-link a {
	color: var(--blue-deep);
	font-weight: 700;
}

.dashboard-hero {
	margin-bottom: 20px;
}

.verification-banner {
	margin-bottom: 20px;
}

.dashboard-alert {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 16px 18px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: #fff6ea;
	border: 0;
	color: #8c4700;
	font-weight: 600;
}

.dashboard-alert-wait,
.progress-task-hint {
	color: var(--muted);
	font-size: 0.95rem;
}

.user-search-page {
	display: grid;
	gap: 18px;
}

.public-profile-page {
	display: grid;
}

.messages-page-reference {
	display: grid;
}

.messages-reference-grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
}

.messages-profile-panel,
.messages-content-panel {
	background: #fff;
	border: 0;
	border-radius: 26px;
	box-shadow: var(--shadow);
}

.messages-profile-panel {
	padding: 26px 18px 20px;
	text-align: center;
}

.messages-profile-avatar {
	width: 150px;
	height: 150px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-size: 3rem;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(30, 106, 16, 0.2);
}

.messages-profile-panel h1 {
	margin: 0 0 12px;
	font-size: 2rem;
	font-family: var(--font-base);
}

.messages-profile-icons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 18px;
}

.messages-profile-metrics {
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.messages-metric-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	text-align: left;
}

.messages-metric-row:last-child {
	border-bottom: 0;
}

.messages-metric-row span {
	color: var(--muted);
}

.messages-profile-email {
	padding: 14px 0;
	color: var(--blue-deep);
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	word-break: break-word;
}

.messages-profile-links {
	display: grid;
}

.messages-profile-links a {
	padding: 12px 4px;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	color: var(--blue-deep);
	font-weight: 700;
	text-align: left;
}

.messages-content-panel {
	padding: 22px;
}

.messages-title-row {
	padding-bottom: 14px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.messages-title-row h2 {
	margin: 0;
	font-size: 2rem;
}

.messages-workspace {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 24px;
}

.messages-conversation-list {
	display: grid;
	align-content: start;
}

.messages-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 52px;
	gap: 0;
	margin-bottom: 14px;
}

.messages-search-form input {
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-right: 0;
	border-radius: 12px 0 0 12px;
	background: #fff;
	font: inherit;
}

.messages-search-form button {
	border: 0;
	border-radius: 0 12px 12px 0;
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	color: #fff;
	font-size: 1.1rem;
	cursor: pointer;
}

.messages-list-scroll {
	max-height: 560px;
	overflow: auto;
	padding-right: 6px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
}

.conversation-row {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) auto;
	gap: 12px;
	padding: 16px 8px;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	align-items: center;
}

.conversation-row.is-active {
	background: var(--green-soft);
	border-radius: 14px;
}

.conversation-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-weight: 800;
}

.conversation-avatar.has-photo,
.thread-avatar.has-photo {
	padding: 0;
	overflow: hidden;
	color: transparent;
	background: #e8dcc0;
}

.conversation-avatar img,
.thread-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.conversation-copy strong {
	display: block;
	margin-bottom: 4px;
	color: var(--blue-deep);
}

.conversation-copy span {
	color: var(--muted);
	line-height: 1.35;
}

.conversation-unread-badge {
	min-width: 28px;
	height: 28px;
	padding-inline: 9px;
	box-shadow: 0 10px 18px rgba(212, 85, 0, 0.18);
}

.messages-thread-panel {
	display: grid;
	gap: 18px;
	align-content: start;
}

.thread-scroll {
	display: grid;
	gap: 18px;
	max-height: 360px;
	overflow: auto;
	padding-right: 6px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.thread-row {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
}

.thread-row.is-self {
	grid-template-columns: minmax(0, 1fr) 42px;
}

.thread-row.is-self .thread-avatar {
	order: 2;
}

.thread-row.is-self .thread-bubble {
	order: 1;
	justify-self: end;
	background: #f3f8e8;
}

.thread-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--orange), var(--orange-deep));
	color: #fff;
	font-weight: 800;
}

.thread-bubble {
	max-width: 86%;
	padding: 16px 18px;
	border-radius: 18px;
	background: #fffaf1;
	border: 1px solid rgba(217, 207, 191, 0.75);
}

.thread-bubble p {
	margin: 0 0 10px;
	line-height: 1.6;
}

.thread-meta {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.thread-meta span,
.thread-meta small {
	color: var(--muted);
}

.thread-compose {
	display: grid;
	gap: 10px;
}

.thread-compose textarea {
	min-height: 96px;
	padding: 14px 16px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 0;
	resize: vertical;
	font: inherit;
	background: #fff;
}

.thread-compose-actions {
	display: flex;
	justify-content: flex-end;
}

.public-profile-grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr) 320px;
	gap: 20px;
	align-items: start;
}

.public-profile-sidebar,
.public-quote-card,
.public-message-card,
.public-books-card,
.public-profile-right .dashboard-suggestion-card {
	background: rgba(255, 253, 249, 0.94);
	border: 1px solid rgba(217, 207, 191, 0.9);
	border-radius: 26px;
	box-shadow: var(--shadow);
}

.public-profile-sidebar {
	padding: 26px 18px 20px;
	text-align: center;
}

.public-profile-avatar {
	width: 150px;
	height: 150px;
	margin: 0 auto 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-size: 3.2rem;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(30, 106, 16, 0.2);
}

.public-profile-sidebar h1 {
	margin: 0 0 6px;
	font-size: 2rem;
	font-family: var(--font-base);
}

.public-profile-location {
	margin: 0 0 16px;
	color: var(--blue-deep);
}

.public-profile-actions {
	margin-bottom: 18px;
}

.public-profile-meta {
	display: grid;
	gap: 0;
	margin-bottom: 18px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.public-profile-meta div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	text-align: left;
}

.public-profile-meta div:last-child {
	border-bottom: 0;
}

.public-profile-meta span {
	color: var(--muted);
}

.public-profile-links {
	display: grid;
}

.public-profile-links a {
	padding: 12px 4px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
	color: var(--blue-deep);
	font-weight: 700;
	text-align: left;
}

.public-profile-main,
.public-profile-right {
	display: grid;
	gap: 18px;
}

.public-quote-card,
.public-message-card,
.public-books-card {
	padding: 22px;
}

.public-quote-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.public-quote-card h2 {
	margin: 0 0 10px;
	font-size: 2rem;
	font-family: var(--font-base);
}

.public-quote-card p {
	margin: 0;
	color: var(--muted);
}

.public-message-card form {
	display: grid;
	gap: 12px;
}

.public-card-note strong {
	display: block;
	margin-bottom: 6px;
	color: var(--blue-deep);
}

.public-card-note p {
	margin: 0;
	color: var(--muted);
}

.public-message-card textarea {
	min-height: 92px;
	padding: 14px 16px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 12px;
	resize: vertical;
	font: inherit;
	background: #fff;
}

.public-book-list {
	display: grid;
	gap: 12px;
}

.public-review-summary {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 16px;
	padding: 18px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: rgba(243, 248, 232, 0.75);
	border: 1px solid rgba(78, 149, 15, 0.12);
}

.public-review-summary-score {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.public-review-summary-score strong {
	font-size: 2.4rem;
	line-height: 1;
	color: var(--blue-deep);
}

.public-review-summary-score span,
.public-review-summary-copy p {
	color: var(--muted);
}

.public-review-summary-copy p {
	margin: 8px 0 0;
}

.public-review-entry {
	display: grid;
	gap: 14px;
	padding: 18px 0 22px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	margin-bottom: 18px;
}

.public-review-entry-copy h3 {
	margin: 0 0 6px;
	color: var(--blue-deep);
}

.public-review-entry-copy p {
	margin: 0;
	color: var(--muted);
}

.public-review-form {
	display: grid;
	gap: 12px;
}

.public-review-form textarea {
	min-height: 110px;
	padding: 14px 16px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 14px;
	resize: vertical;
	font: inherit;
	background: #fff;
}

.public-review-actions {
	display: flex;
	justify-content: flex-end;
}

.public-review-rating-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.public-review-rating-option {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid rgba(217, 207, 191, 0.9);
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
}

.public-review-rating-option input {
	margin: 0;
}

.public-review-list {
	display: grid;
	gap: 14px;
}

.public-review-item {
	padding: 16px 18px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(217, 207, 191, 0.9);
}

.public-review-head {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.public-review-head strong {
	display: block;
	margin-bottom: 4px;
	color: var(--blue-deep);
}

.public-review-head small,
.public-review-item p {
	color: var(--muted);
}

.public-review-item p {
	margin: 0;
	line-height: 1.65;
}

.public-book-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.public-book-card:last-child {
	border-bottom: 0;
}

.public-book-cover img,
.public-book-cover-placeholder {
	width: 58px;
	aspect-ratio: 2 / 3;
	border-radius: 10px;
	object-fit: cover;
}

.public-book-cover-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--orange), #f2ad38);
	color: #fff;
	font-weight: 800;
}

.public-book-card strong {
	display: block;
	margin-bottom: 4px;
	color: var(--blue-deep);
}

.public-book-card span {
	display: block;
	color: var(--muted);
}

.user-search-head {
	padding: 10px 4px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.9);
}

.user-search-head h1 {
	margin: 0 0 10px;
	color: var(--blue-deep);
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.user-search-head p {
	margin: 0 0 16px;
	color: var(--muted);
}

.user-search-form {
	display: flex;
	gap: 12px;
	align-items: center;
}

.user-search-form input {
	flex: 1;
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(78, 149, 15, 0.16);
	border-radius: 12px;
	background: #fff;
	font: inherit;
}

.account-avatar-field {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-bottom: 22px;
	padding: 18px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(217, 207, 191, 0.75);
}

.account-avatar-preview {
	width: 108px;
	height: 108px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-size: 2.4rem;
	font-weight: 800;
	box-shadow: 0 12px 24px rgba(30, 106, 16, 0.18);
}

.account-avatar-input {
	display: grid;
	gap: 8px;
}

.account-avatar-input label {
	display: inline-flex;
	font-weight: 700;
	color: var(--blue-deep);
}

.account-avatar-input input[type="file"] {
	display: block;
	width: 100%;
	font: inherit;
}

.account-avatar-input small {
	color: var(--muted);
	line-height: 1.5;
}

.user-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.user-column {
	display: grid;
}

.user-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
}

.user-card-avatar {
	width: 52px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(78, 149, 15, 0.18), rgba(239, 122, 11, 0.22));
	color: var(--blue-deep);
	font-size: 1.3rem;
	font-weight: 800;
}

.user-card-body strong {
	display: block;
	margin-bottom: 4px;
	color: var(--blue-deep);
}

.user-card-body span {
	color: #303030;
}

.user-card-rating {
	display: grid;
	gap: 6px;
	margin-top: 8px;
}

.user-card-rating small {
	color: var(--muted);
}

.review-stars {
	display: inline-flex;
	gap: 2px;
	line-height: 1;
}

.review-star {
	font-size: 1rem;
	color: rgba(217, 207, 191, 0.95);
}

.review-star.is-active {
	color: var(--orange);
}

.alert-link {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--blue-deep);
	font-weight: 800;
	cursor: pointer;
}

.dashboard-reference-grid {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr) 320px;
	gap: 18px;
	align-items: start;
}

.dashboard-profile-card,
.dashboard-visibility-card,
.dashboard-quote-card,
.dashboard-backpack-card,
.dashboard-progress-card,
.dashboard-requests-card,
.dashboard-activity-card,
.dashboard-suggestion-card,
.dashboard-stat-card,
.dashboard-members-card {
	background: rgba(255, 253, 249, 0.94);
	border: 1px solid rgba(217, 207, 191, 0.9);
	border-radius: 26px;
	box-shadow: var(--shadow);
}

.dashboard-profile-card {
	padding: 28px 18px 20px;
	text-align: center;
}

.dashboard-avatar-wrap {
	position: relative;
	width: 138px;
	margin: 0 auto 18px;
}

.dashboard-avatar {
	width: 138px;
	height: 138px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-size: 3rem;
	font-weight: 800;
	box-shadow: 0 10px 25px rgba(30, 106, 16, 0.22);
}

.dashboard-avatar-edit {
	position: absolute;
	right: 2px;
	bottom: 6px;
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(239, 122, 11, 0.22);
	background: rgba(255, 252, 245, 0.98);
	color: var(--orange-deep);
	font-size: 1rem;
	box-shadow: 0 8px 18px rgba(84, 71, 33, 0.16);
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.dashboard-avatar-edit:hover {
	transform: translateY(-1px);
	background: #fff4e6;
	border-color: rgba(239, 122, 11, 0.34);
}

.dashboard-profile-card h1 {
	margin: 0;
	font-size: 1.5rem;
	font-family: var(--font-base);
}

.dashboard-email {
	margin: 8px 0 16px;
	color: var(--blue-deep);
	word-break: break-word;
}

.dashboard-profile-icons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 18px;
}

.profile-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 62px;
	padding: 10px 12px;
	border-radius: 999px;
	background: #f1ead7;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.profile-chip.is-active {
	background: var(--green-soft);
	color: var(--blue-deep);
}

.dashboard-profile-meta {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	margin-bottom: 18px;
}

.profile-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.75);
	text-align: left;
}

.profile-meta-row:last-child {
	border-bottom: 0;
}

.profile-meta-row span {
	color: var(--muted);
}

.dashboard-side-links {
	display: grid;
}

.dashboard-side-links a {
	padding: 12px 4px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
	color: var(--blue-deep);
	font-weight: 700;
	text-align: left;
}

.dashboard-main-column,
.dashboard-right-column {
	display: grid;
	gap: 18px;
}

.dashboard-quote-card,
.dashboard-visibility-card,
.dashboard-backpack-card,
.dashboard-progress-card,
.dashboard-requests-card,
.dashboard-activity-card,
.dashboard-suggestion-card,
.dashboard-stat-card,
.dashboard-members-card {
	padding: 22px;
}

.dashboard-visibility-card {
	padding: 24px;
	background: linear-gradient(135deg, rgba(255, 249, 237, 0.98), rgba(245, 252, 242, 0.96));
	border-color: rgba(78, 149, 15, 0.18);
}

.dashboard-visibility-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.dashboard-visibility-head h2 {
	margin: 6px 0 0;
	font-size: 1.45rem;
	font-family: var(--font-base);
}

.dashboard-visibility-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 999px;
	background: rgba(78, 149, 15, 0.12);
	color: var(--blue-deep);
	font-weight: 800;
	white-space: nowrap;
}

.dashboard-visibility-pill.is-condominium {
	background: rgba(239, 122, 11, 0.14);
	color: #9b5200;
}

.dashboard-visibility-card p {
	margin: 0 0 14px;
	color: var(--muted);
	line-height: 1.7;
}

.dashboard-visibility-form {
	display: grid;
	gap: 12px;
}

.dashboard-visibility-option {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding: 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(78, 149, 15, 0.12);
	cursor: pointer;
}

.dashboard-visibility-option.is-active {
	border-color: rgba(239, 122, 11, 0.28);
	box-shadow: 0 10px 24px rgba(84, 71, 33, 0.06);
}

.dashboard-visibility-option input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.dashboard-visibility-option strong,
.dashboard-visibility-option small {
	display: block;
}

.dashboard-visibility-option small {
	margin-top: 6px;
	color: var(--muted);
	line-height: 1.55;
}

.dashboard-quote-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.quote-mark {
	font-size: 3.4rem;
	line-height: 1;
	color: var(--blue-deep);
	font-family: var(--font-base);
}

.dashboard-quote-card a {
	color: var(--blue-deep);
	font-size: 1.3rem;
	font-family: var(--font-base);
	font-weight: 700;
}

.dashboard-quote-card p,
.requests-copy,
.progress-done,
.progress-tasks p,
.suggestion-item span,
.summary-list span {
	color: var(--muted);
}

.suggestion-item span,
.book-owner-card span {
	display: block;
}

.dashboard-box-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.dashboard-box-head h2 {
	margin: 0;
	font-size: 1.6rem;
	font-family: var(--font-base);
}

.dashboard-box-head span {
	color: var(--muted);
	font-weight: 700;
}

.dashboard-anchor {
	display: block;
	height: 0;
	scroll-margin-top: 24px;
}

.backpack-list {
	display: grid;
	gap: 12px;
}

.backpack-item {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 12px 0;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
}

.backpack-item:first-child {
	padding-top: 0;
	border-top: 0;
}

.backpack-cover img,
.backpack-cover-placeholder {
	width: 64px;
	aspect-ratio: 2 / 3;
	border-radius: 12px;
	object-fit: cover;
}

.backpack-cover-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--orange), #f2ad38);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 800;
}

.backpack-copy {
	min-width: 0;
	display: grid;
	gap: 4px;
}

.backpack-copy strong {
	display: block;
}

.backpack-copy span,
.backpack-item-note {
	color: var(--muted);
}

.backpack-item-note {
	font-size: 0.9rem;
}

.backpack-item-actions {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.backpack-remove-button {
	min-height: 38px;
	padding: 0 14px;
	border-radius: 12px;
}

.progress-track {
	height: 18px;
	border-radius: 999px;
	background: #eee4d4;
	overflow: hidden;
	margin-bottom: 16px;
}

.progress-bar {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}

.progress-tasks {
	display: grid;
	gap: 10px;
}

.progress-task-item {
	display: grid;
	gap: 6px;
}

.progress-tasks p {
	margin: 0;
	font-weight: 600;
}

.request-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
}

.request-split > div + div {
	padding-top: 8px;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
}

.request-split h3 {
	margin: 0 0 12px;
	font-size: 1rem;
	color: var(--ink);
}

.request-list {
	display: grid;
	gap: 10px;
}

.request-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
}

.request-item-main {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.request-item:first-child {
	border-top: 0;
}

.request-item strong,
.suggestion-item strong {
	display: block;
	margin-bottom: 4px;
}

.dashboard-request-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.dashboard-request-actions form {
	display: flex;
}

.dashboard-request-actions .primary-button,
.dashboard-request-actions .ghost-button {
	padding: 10px 14px;
	font-size: 0.9rem;
}

.request-pill {
	padding: 8px 10px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.status-pending {
	background: var(--orange-soft);
	color: #8c4700;
}

.status-approved {
	background: rgba(65, 152, 87, 0.12);
	color: #2d7a44;
}

.status-rejected,
.status-cancelled {
	background: rgba(182, 71, 71, 0.11);
	color: #9a3d3d;
}

.activity-timeline {
	display: grid;
	gap: 12px;
}

.activity-entry {
	display: grid;
	grid-template-columns: 148px minmax(0, 1fr);
	gap: 14px;
	padding: 12px 0;
	border-top: 1px solid rgba(217, 207, 191, 0.75);
	align-items: start;
}

.activity-entry:first-child {
	padding-top: 0;
	border-top: 0;
}

.activity-entry-time {
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 700;
}

.activity-entry-copy {
	color: var(--ink);
	line-height: 1.6;
}

@media (max-width: 760px) {
	.activity-entry {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

.suggestion-list,
.summary-list {
	display: grid;
	gap: 14px;
}

.suggestion-item {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.suggestion-cover img,
.suggestion-cover-placeholder {
	width: 56px;
	aspect-ratio: 2 / 3;
	border-radius: 10px;
	object-fit: cover;
}

.suggestion-cover-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--orange), #f2ad38);
	color: #fff;
	font-weight: 800;
}

.summary-list div,
.summary-link {
	padding: 14px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fffaf2, #f5ecde);
	border: 1px solid rgba(215, 201, 182, 0.85);
}

.summary-list strong {
	display: block;
	font-size: 1.6rem;
}

.summary-link {
	display: block;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.summary-link:hover {
	transform: translateY(-2px);
	border-color: rgba(78, 149, 15, 0.28);
	box-shadow: 0 14px 24px rgba(84, 71, 33, 0.12);
}

.dashboard-caquis-card {
	background:
		radial-gradient(circle at top right, rgba(239, 122, 11, 0.2), transparent 34%),
		linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(255, 241, 216, 0.94));
}

.dashboard-condominium-caquis-card {
	background:
		radial-gradient(circle at top left, rgba(12, 148, 136, 0.2), transparent 38%),
		linear-gradient(180deg, rgba(239, 255, 252, 0.98), rgba(225, 248, 243, 0.94));
}

.caqui-basket-hero {
	display: grid;
	gap: 14px;
	margin-bottom: 14px;
	justify-items: center;
}

.caqui-basket-figure {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 280px);
	padding: 10px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 251, 241, 0.72), rgba(255, 244, 220, 0.42));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.caqui-basket-image {
	display: block;
	width: min(100%, 240px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 16px 20px rgba(113, 73, 29, 0.14));
}

.caqui-basket-empty {
	display: none;
	padding: 18px 20px;
	border-radius: 20px;
	background: rgba(255, 252, 245, 0.92);
	border: 1px dashed rgba(169, 126, 69, 0.4);
	color: #8c6b45;
	font-weight: 700;
	text-align: center;
}

.caqui-basket-empty.is-visible {
	display: block;
}

.caqui-seed-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 253, 246, 0.96);
	border: 1px solid rgba(239, 122, 11, 0.18);
	font-weight: 700;
}

.caqui-seed-badge img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.caqui-basket-overflow {
	position: absolute;
	top: 22px;
	right: 18px;
	padding: 8px 10px;
	border-radius: 999px;
	background: rgba(255, 252, 245, 0.96);
	border: 1px solid rgba(239, 122, 11, 0.22);
	color: var(--orange-deep);
	font-size: 0.9rem;
	font-weight: 800;
	z-index: 4;
}

.caqui-basket-summary {
	text-align: center;
}

.caqui-basket-summary strong {
	display: block;
	font-size: 2.7rem;
	line-height: 1;
	color: var(--orange-deep);
}

.caqui-basket-summary span {
	display: block;
	margin-top: 6px;
	color: #8d5b1f;
	font-weight: 700;
}

.condominium-basket-figure {
	background: linear-gradient(180deg, rgba(247, 255, 253, 0.92), rgba(222, 244, 240, 0.62));
}

.condominium-basket-summary strong {
	color: #0f766e;
}

.condominium-basket-summary span {
	color: #115e59;
}

.dashboard-condominium-alert,
.dashboard-condominium-countdown {
	display: grid;
	gap: 6px;
	margin-bottom: 16px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 118, 110, 0.2);
	color: #134e4a;
}

.dashboard-condominium-alert strong,
.dashboard-condominium-countdown strong {
	font-size: 0.98rem;
}

.dashboard-condominium-alert span,
.dashboard-condominium-countdown span {
	color: #285e59;
	font-size: 0.92rem;
	line-height: 1.55;
}

.dashboard-fidelity-card {
	background:
		radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 38%),
		linear-gradient(180deg, rgba(247, 255, 249, 0.98), rgba(237, 250, 241, 0.94));
}

.dashboard-fidelity-alert {
	display: grid;
	gap: 6px;
	margin-bottom: 16px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(34, 197, 94, 0.22);
	color: #166534;
}

.dashboard-fidelity-alert strong {
	font-size: 0.98rem;
}

.dashboard-fidelity-alert span {
	color: #3f6b4e;
	font-size: 0.92rem;
	line-height: 1.55;
}

.dashboard-fidelity-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 18px 0 14px;
}

.dashboard-fidelity-stat {
	padding: 16px 14px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(34, 197, 94, 0.16);
}

.dashboard-fidelity-stat strong {
	display: block;
	font-size: 1.85rem;
	line-height: 1;
	color: #166534;
}

.dashboard-fidelity-stat span {
	display: block;
	margin-top: 8px;
	color: #4b5563;
	font-weight: 600;
	line-height: 1.45;
}

.dashboard-fidelity-progress {
	height: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(34, 197, 94, 0.14);
	overflow: hidden;
}

.dashboard-fidelity-progress-bar {
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #22c55e, #86efac);
	box-shadow: 0 8px 18px rgba(34, 197, 94, 0.18);
}

@media (max-width: 640px) {
	.dashboard-fidelity-stats {
		grid-template-columns: 1fr;
	}
}

.help-list {
	display: grid;
	gap: 12px;
}

.help-list div {
	padding: 14px;
	border-radius: 16px;
	background: linear-gradient(180deg, #fffaf2, #f5ecde);
	border: 1px solid rgba(215, 201, 182, 0.85);
}

.help-list strong {
	display: block;
	margin-bottom: 6px;
}

.help-list span {
	color: var(--muted);
}

.member-cluster {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.member-badge {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--blue), var(--blue-deep));
	color: #fff;
	font-weight: 800;
	box-shadow: 0 10px 22px rgba(30, 106, 16, 0.18);
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.full-width {
	grid-column: 1 / -1;
}

.mini-list {
	display: grid;
	gap: 12px;
}

.mini-item,
.request-row {
	padding: 14px 0;
	border-bottom: 1px solid rgba(217, 207, 191, 0.8);
}

.mini-item strong {
	display: block;
	margin-bottom: 4px;
}

.request-table {
	display: grid;
}

.requests-stack {
	display: grid;
	gap: 18px;
}

.request-entry {
	padding: 22px 24px;
	border-radius: 24px;
	background: linear-gradient(180deg, #fffaf2, #f7efe2);
	border: 1px solid rgba(217, 207, 191, 0.85);
	box-shadow: 0 18px 36px rgba(63, 50, 16, 0.08);
}

.request-entry-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.request-entry-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.request-info-box {
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(255, 253, 249, 0.9);
	border: 1px solid rgba(217, 207, 191, 0.8);
}

.request-info-label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
}

.request-entry-body {
	margin-top: 18px;
}

.request-note {
	margin: 0;
	padding: 14px 16px;
	border-radius: 18px;
	line-height: 1.6;
	border: 1px solid rgba(217, 207, 191, 0.82);
}

.request-note.info {
	background: rgba(246, 239, 223, 0.72);
}

.request-note.warning {
	background: rgba(239, 122, 11, 0.1);
	border-color: rgba(239, 122, 11, 0.24);
}

.request-note.success {
	background: rgba(65, 152, 87, 0.1);
	border-color: rgba(65, 152, 87, 0.24);
}

.request-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.request-actions form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.request-actions select,
.request-tracking-form input {
	flex: 1 1 260px;
}

.request-tracking-form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.request-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 120px;
	gap: 16px;
	align-items: center;
}

.request-head {
	font-weight: 800;
	color: var(--muted);
}

.request-book strong {
	display: block;
	margin-bottom: 4px;
}

.request-row-meta {
	color: var(--muted);
}

.site-footer {
	margin-top: 24px;
	font-size: 0.95rem;
	color: var(--muted);
	text-align: center;
}

.site-footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 18px;
	margin-bottom: 0;
}

.site-footer p {
	margin: 0;
}

.site-footer-links a {
	color: var(--muted);
	font-weight: 700;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
	color: var(--green-deep);
}

.global-loading {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(35, 31, 16, 0.32);
	backdrop-filter: blur(6px);
	z-index: 5000;
}

.global-loading[hidden] {
	display: none !important;
}

.global-loading-card {
	min-width: 220px;
	padding: 24px 26px;
	border-radius: 24px;
	background: rgba(255, 252, 245, 0.98);
	border: 1px solid rgba(78, 149, 15, 0.16);
	box-shadow: 0 24px 50px rgba(63, 50, 16, 0.2);
	text-align: center;
}

.global-loading-card p {
	margin: 0;
	font-weight: 700;
	color: var(--ink);
}

.global-loading-gif {
	display: block;
	width: 88px;
	max-width: 100%;
	margin: 0 auto;
}

.global-loading-gif-shell {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
	margin: 0 auto;
	border-radius: 999px;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(217, 207, 191, 0.35);
}

.global-loading-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 960px) {
	.hero,
	.catalog-layout,
	.dashboard-grid,
	.stats-row,
	.dashboard-reference-grid,
	.request-split,
	.public-profile-grid,
	.messages-layout,
	.messages-panel,
	.user-grid {
		grid-template-columns: 1fr;
	}

	.faq-grid {
		grid-template-columns: 1fr;
	}

	.service-fee-grid {
		grid-template-columns: 1fr;
	}

	.request-choice-intro,
	.request-choice-owner-card {
		grid-template-columns: 1fr;
	}

	.book-grid {
		grid-template-columns: 1fr;
	}

	.catalog-layout-search,
	.catalog-card-grid {
		grid-template-columns: 1fr;
	}

	.catalog-sidebar {
		position: static;
	}

	.request-row {
		grid-template-columns: 1fr 1fr;
	}

	.request-entry-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shelf-edit-preview {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.page-shell {
		width: min(100% - 20px, 100%);
	}

	.search-topbar-home {
		padding: 18px;
		border-radius: 26px;
	}

	.search-topbar-intro {
		padding: 24px 20px;
		border-radius: 24px;
	}

	.search-home-grid,
	.search-home-stack {
		grid-template-columns: 1fr;
	}

	.site-header,
	.site-footer,
	.results-head,
	.dashboard-hero,
	.verification-banner,
	.dashboard-alert {
		flex-direction: column;
	}

	.site-header {
		display: grid;
		justify-items: center;
		padding: 8px 0 18px;
	}

	.brand-block {
		justify-content: center;
	}

	.top-nav {
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.book-card {
		grid-template-columns: 1fr;
	}

	.catalog-toolbar,
	.catalog-sort-form,
	.catalog-book-card {
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.catalog-sort-form {
		align-items: stretch;
	}

	.catalog-manual-cta {
		width: 100%;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.catalog-sort-form select {
		width: 100%;
	}

	.catalog-book-cover {
		max-width: 140px;
	}

	.request-entry {
		padding: 20px;
	}

	.request-entry-head {
		flex-direction: column;
	}

	.request-entry-grid {
		grid-template-columns: 1fr;
	}

	.brand-logo {
		width: 132px;
	}

	.book-cover {
		width: 100%;
		max-width: 140px;
	}

	.search-form {
		flex-direction: column;
	}

	.search-input-wrap {
		width: 100%;
	}

	.search-suggestions {
		left: 0;
		right: 0;
	}

	.search-form .search-submit {
		width: 100%;
	}

	.search-farmer {
		display: none;
	}

	.account-form-grid {
		grid-template-columns: 1fr;
	}

	.condominium-choice-grid,
	.condominium-inputs {
		grid-template-columns: 1fr;
	}

	.account-avatar-field {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.notification-layout {
		grid-template-columns: 1fr;
	}

	.dashboard-visibility-head {
		flex-direction: column;
	}

	.account-field-span-2 {
		grid-column: auto;
	}

	.user-search-form {
		flex-direction: column;
	}

	.user-search-form .primary-button {
		width: 100%;
	}

	.public-review-summary {
		grid-template-columns: 1fr;
	}

	.public-review-head,
	.public-review-actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.public-review-rating-options {
		flex-direction: column;
	}

	.request-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

.book-detail-page {
	display: grid;
	gap: 24px;
}

.book-detail-card {
	padding: 24px;
	border-radius: 28px;
	background: rgba(255, 252, 245, 0.96);
	border: 1px solid rgba(217, 207, 191, 0.9);
	box-shadow: 0 20px 40px rgba(63, 50, 16, 0.08);
}

.book-detail-hero {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 28px;
	align-items: start;
}

.book-detail-cover img,
.book-detail-cover .book-cover-placeholder {
	width: 100%;
	max-width: 220px;
	border-radius: 20px;
}

.book-detail-subtitle {
	margin-top: -8px;
	color: var(--muted);
	font-size: 1.05rem;
}

.book-detail-meta {
	display: grid;
	gap: 8px;
	margin: 18px 0;
	color: var(--muted);
}

.book-detail-meta strong {
	color: var(--ink);
}

.book-detail-signals {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 180px));
	gap: 14px;
	margin: 18px 0 22px;
}

.book-detail-signals div {
	padding: 16px 18px;
	border-radius: 18px;
	background: rgba(242, 236, 224, 0.9);
	border: 1px solid rgba(217, 207, 191, 0.9);
}

.book-detail-signals strong {
	display: block;
	font-size: 1.5rem;
}

.book-detail-signals span {
	color: var(--muted);
}

.book-detail-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.book-detail-actions .inline-form {
	display: flex;
}

.book-detail-actions .inline-form,
.book-detail-actions > a,
.book-detail-actions > button {
	flex: 0 0 170px;
}

.book-detail-actions .primary-button,
.book-detail-actions .secondary-button,
.book-detail-actions .ghost-button,
.book-detail-actions .as-link {
	width: 100%;
	min-height: 48px;
	text-align: center;
}

.book-detail-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 20px;
	margin-top: 24px;
}

.book-detail-section {
	padding: 22px;
	border-radius: 22px;
	background: #fff;
	border: 1px solid rgba(217, 207, 191, 0.9);
}

.book-detail-section h2 {
	margin-bottom: 14px;
}

.book-review-section {
	margin-top: 24px;
}

.book-owner-list {
	display: grid;
	gap: 12px;
}

.book-owner-card {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(242, 236, 224, 0.75);
}

.book-owner-card span,
.book-owner-card small {
	color: var(--muted);
}

.suggestion-item strong a,
.book-detail-actions a {
	color: inherit;
	text-decoration: none;
}

.suggestion-item strong a:hover,
.book-owner-card strong a:hover {
	text-decoration: underline;
}

/* Integrated layout refresh */
.page-shell {
	width: min(1240px, calc(100% - 40px));
	margin: 20px auto 28px;
	display: grid;
	gap: 18px;
}

.site-footer,
.search-form,
.search-topbar-intro,
.catalog-sidebar,
.results-panel,
.auth-panel,
.requests-card,
.service-fee-card,
.faq-hero,
.faq-card,
.faq-cta,
.notification-card,
.messages-profile-panel,
.messages-content-panel,
.public-profile-sidebar,
.public-quote-card,
.public-message-card,
.public-books-card,
.public-profile-right .dashboard-suggestion-card,
.dashboard-profile-card,
.dashboard-quote-card,
.dashboard-backpack-card,
.dashboard-progress-card,
.dashboard-requests-card,
.dashboard-activity-card,
.dashboard-suggestion-card,
.dashboard-stat-card,
.dashboard-members-card,
.request-choice-book,
.request-choice-address {
	border-radius: 32px;
	box-shadow: 0 16px 34px rgba(84, 71, 33, 0.07);
}

.catalog-layout,
.dashboard-reference-grid,
.messages-reference-grid,
.public-profile-grid,
.request-choice-intro,
.notification-layout {
	gap: 24px;
}

.catalog-card-grid,
.seed-guide-steps,
.faq-list,
.requests-stack,
.request-choice-owner-list,
.book-owner-list,
.summary-list {
	gap: 0;
}

.seed-guide-step,
.faq-item,
.notification-toggle,
.request-choice-owner-card,
.service-fee-pix-key,
.service-fee-book,
.service-fee-qr-shell,
.service-fee-copy-code,
.service-fee-proof-preview,
.summary-list div,
.summary-link,
.book-owner-card,
.catalog-facet-item {
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.seed-guide-step + .seed-guide-step,
.faq-item + .faq-item,
.request-choice-owner-card + .request-choice-owner-card,
.notification-toggle + .notification-toggle,
.summary-list div + div,
.summary-link + .summary-link,
.book-owner-card + .book-owner-card {
	border-top: 1px solid rgba(236, 228, 215, 0.9);
}

.faq-item,
.notification-toggle,
.request-choice-owner-card,
.service-fee-pix-key,
.service-fee-book,
.service-fee-proof-preview,
.summary-list div,
.summary-link,
.book-owner-card {
	padding-left: 0;
	padding-right: 0;
}

.catalog-sidebar {
	padding: 22px 22px 18px;
}

.catalog-facet-list {
	gap: 2px;
	max-height: none;
}

.catalog-facet-item {
	padding: 12px 0;
}

.catalog-facet-item.is-active {
	background: transparent;
}

.catalog-toolbar {
	padding-bottom: 16px;
	margin-bottom: 4px;
}

.tabs {
	margin: 12px 0 6px;
	padding-bottom: 14px;
}

.catalog-card-grid {
	gap: 18px 28px;
}

.catalog-book-card {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}

.catalog-book-body {
	gap: 12px;
}

.empty-state {
	padding: 12px 0 0;
	background: transparent;
	box-shadow: none;
}

.requests-stack {
	display: grid;
}

.request-entry {
	padding: 24px 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.request-entry + .request-entry {
	border-top: 1px solid rgba(236, 228, 215, 0.9);
}

.request-entry-grid {
	gap: 12px;
}

.request-info-box,
.request-note {
	background: #faf7f1;
	border: 0;
	border-radius: 16px;
}

.service-fee-grid {
	gap: 28px;
}

.service-fee-panel {
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.faq-card,
.notification-card,
.messages-content-panel,
.public-books-card,
.dashboard-quote-card,
.dashboard-backpack-card,
.dashboard-progress-card,
.dashboard-requests-card,
.dashboard-activity-card,
.dashboard-suggestion-card,
.dashboard-stat-card,
.dashboard-members-card {
	padding: 28px 30px;
}

.messages-title-row,
.public-review-entry,
.user-search-head,
.catalog-toolbar,
.tabs,
.faq-card-head {
	border-color: rgba(236, 228, 215, 0.9);
}

.conversation-row.is-active,
.thread-row.is-self .thread-bubble,
.catalog-chip,
.profile-chip,
.catalog-query-pill {
	background: #f7f4ed;
}

.thread-bubble,
.public-review-summary,
.account-avatar-field,
.book-detail-section,
.notification-notes-card,
.catalog-filter-form,
.stat-stack div,
.stat-card {
	background: #faf7f1;
	border: 0;
	box-shadow: none;
}

.public-profile-sidebar,
.public-quote-card,
.public-message-card,
.public-books-card,
.public-profile-right .dashboard-suggestion-card {
	background: #fff;
	border: 0;
}

/* Home marketplace refresh */
.home-search-stage {
	padding: 0 4px;
	margin: -6px 0 22px;
}

.home-marketplace {
	display: grid;
	gap: 64px;
	margin: 0 0 56px;
}

.home-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b8e23;
}

.home-section-head {
	display: grid;
	gap: 14px;
	max-width: 720px;
	margin-bottom: 28px;
}

.home-section-head h2 {
	margin: 0;
	font-size: clamp(1.7rem, 2.4vw, 2.45rem);
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #111111;
}

.home-section-head p {
	margin: 0;
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.7;
}

.home-how-it-works .home-section-head h2 {
	font-size: clamp(1.45rem, 2vw, 2rem);
	white-space: normal;
}

.home-how-it-works-primary .home-section-head {
	max-width: 100%;
}

.home-how-it-works-primary .home-section-head p {
	white-space: normal;
	font-size: 0.96rem;
}

.home-results-shell .home-section-head h2 {
	font-size: clamp(1.45rem, 2vw, 2rem);
}

.home-section-head-center {
	margin-inline: auto;
	text-align: center;
}

.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 44px;
	align-items: center;
	padding: 18px 4px 0;
}

.home-hero-copy {
	display: grid;
	gap: 22px;
}

.home-hero-copy h1 {
	margin: 0;
	font-size: clamp(3rem, 5.2vw, 4.9rem);
	line-height: 0.96;
	letter-spacing: -0.05em;
	color: #111111;
	max-width: 700px;
}

.home-hero-copy p {
	max-width: 620px;
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.8;
	color: #6b7280;
}

.home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.home-hero-actions .primary-button,
.home-final-cta .primary-button {
	min-height: 52px;
	padding-inline: 24px;
	border-radius: 14px;
	background: #22c55e;
	box-shadow: 0 12px 26px rgba(34, 197, 94, 0.18);
}

.home-hero-actions .primary-button:hover,
.home-final-cta .primary-button:hover {
	background: #1fb454;
}

.home-ghost-link {
	background: transparent;
	color: #111111;
	border: 1px solid #e5e7eb;
	box-shadow: none;
}

.home-ghost-link:hover {
	background: #f8fafc;
}

.home-hero-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.home-hero-metrics div {
	min-width: 150px;
	padding: 16px 18px;
	border: 1px solid #eef2f7;
	border-radius: 18px;
	background: #ffffff;
}

.home-hero-metrics strong {
	display: block;
	font-size: 1.4rem;
	font-weight: 800;
	color: #111111;
}

.home-hero-metrics span {
	display: block;
	margin-top: 4px;
	font-size: 0.92rem;
	color: #6b7280;
}

.home-hero-visual {
	position: relative;
	min-height: 520px;
}

.home-book-showcase {
	position: relative;
	height: 100%;
	border-radius: 36px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fbf7 100%);
	border: 1px solid #eef2f7;
	overflow: hidden;
}

.home-book-showcase::before,
.home-book-showcase::after {
	content: '';
	position: absolute;
	border-radius: 999px;
	filter: blur(10px);
	opacity: 0.6;
}

.home-book-showcase::before {
	top: 32px;
	right: 24px;
	width: 220px;
	height: 220px;
	background: rgba(34, 197, 94, 0.08);
}

.home-book-showcase::after {
	left: 24px;
	bottom: 18px;
	width: 180px;
	height: 180px;
	background: rgba(107, 142, 35, 0.08);
}

.home-book-teaser {
	position: absolute;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	width: min(360px, calc(100% - 48px));
	padding: 18px;
	border: 1px solid #eef2f7;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.home-book-teaser-1 {
	top: 44px;
	left: 32px;
}

.home-book-teaser-2 {
	top: 188px;
	right: 32px;
}

.home-book-teaser-3 {
	bottom: 42px;
	left: 56px;
}

.home-book-teaser-cover img,
.home-book-teaser-cover .book-cover-placeholder {
	width: 88px;
	height: 126px;
	border-radius: 16px;
	object-fit: cover;
}

.home-book-teaser-cover .book-cover-placeholder {
	font-size: 1.8rem;
}

.home-book-teaser-copy {
	display: grid;
	gap: 8px;
}

.home-book-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	min-height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	background: #f0fdf4;
	color: #15803d;
	font-size: 0.75rem;
	font-weight: 700;
}

.home-book-teaser-copy strong {
	font-size: 1.02rem;
	line-height: 1.4;
	color: #111111;
}

.home-book-teaser-copy small {
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.5;
}

.home-how-it-works,
.home-search-spotlight,
.home-results-shell,
.home-final-cta {
	padding: 0 4px;
}

.home-how-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.home-how-grid-two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-how-split {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 360px);
	gap: 28px;
	align-items: stretch;
}

.home-how-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 22px;
	background:
		radial-gradient(circle at top, rgba(239, 122, 11, 0.12), transparent 48%),
		linear-gradient(180deg, #fffdf8 0%, #f7f2e8 100%);
	border: 1px solid #e5e7eb;
	border-radius: 28px;
	box-shadow: 0 18px 34px rgba(17, 17, 17, 0.05);
}

.home-how-visual img {
	width: min(100%, 260px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgba(212, 85, 0, 0.16));
}

.home-how-card {
	display: grid;
	grid-template-rows: 48px minmax(52px, auto) 1fr;
	gap: 14px;
	padding: 28px 24px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-how-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(17, 17, 17, 0.06);
}

.home-how-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 auto;
	border-radius: 16px;
	background: #f7f9f7;
	font-size: 1.25rem;
}

.home-how-card h3 {
	margin: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	text-align: center;
	font-size: 1.08rem;
	color: #111111;
}

.home-how-card p,
.home-seed-status {
	margin: 0;
	color: #6b7280;
	line-height: 1.7;
}

.home-how-card-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
}

.home-how-card-actions .primary-button {
	width: 100%;
	max-width: 280px;
}

.home-seed-status {
	margin-top: 20px;
	padding: 16px 18px;
	border-radius: 18px;
	background: #f8fafc;
	border: 1px solid #eef2f7;
}

.home-search-spotlight {
	display: grid;
	gap: 14px;
	justify-items: center;
	width: min(1040px, 100%);
	margin: 0 auto;
}

.home-search-spotlight .home-section-head {
	gap: 8px;
	margin-bottom: 2px;
}

.home-search-spotlight .home-section-head h2 {
	font-size: clamp(1.45rem, 2.1vw, 2.05rem);
}

.home-scope-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: min(900px, 100%);
}

.home-scope-card {
	display: grid;
	gap: 10px;
	justify-items: center;
	padding: 18px;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	background: #ffffff;
	color: #111111;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-scope-card:hover {
	transform: translateY(-3px);
	border-color: #d1d5db;
	box-shadow: 0 18px 32px rgba(17, 17, 17, 0.08);
}

.home-scope-card img {
	display: block;
	width: 100%;
	max-width: 360px;
	height: auto;
	border-radius: 18px;
}

.home-scope-card strong {
	font-size: 1.05rem;
}

.home-scope-card small {
	text-align: center;
	color: #6b7280;
	line-height: 1.5;
}

.home-scope-active {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 10px;
	color: #4b5563;
	font-weight: 600;
}

.home-scope-active a {
	color: #1d4ed8;
	font-weight: 700;
}

.search-form-home-modern {
	width: min(900px, 100%);
	padding: 10px;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	box-shadow: none;
}

.search-form-home-modern .search-input-wrap {
	min-width: 0;
}

.search-form-home-modern input {
	min-height: 60px;
	padding-inline: 22px;
	border: 0;
	font-size: 1.02rem;
	background: transparent;
}

.search-form-home-modern .search-submit {
	position: relative;
	min-width: 152px;
	min-height: 60px;
	padding-inline: 20px;
	border: 1px solid rgba(28, 92, 17, 0.08);
	border-radius: 22px;
	background: linear-gradient(135deg, #1d6d16 0%, #3c8e16 38%, #ef7a0b 100%);
	box-shadow: 0 14px 28px rgba(181, 89, 10, 0.2);
	overflow: hidden;
	isolation: isolate;
	color: #fff;
	font-size: 1.25rem;
}

.search-form-home-modern .search-submit:hover {
	background: linear-gradient(135deg, #185d13 0%, #347d15 36%, #db6d06 100%);
	box-shadow: 0 18px 30px rgba(181, 89, 10, 0.24);
}

.search-form-home-modern .search-submit::before {
	content: "";
	position: absolute;
	inset: 8px auto 8px 10px;
	width: 44px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
	z-index: -1;
}

.search-form-home-modern .search-submit::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 14px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #fff6c9 0%, #ffd56d 24%, #ff9f1c 58%, #d95b02 100%);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
	opacity: 0.92;
}

.search-form-home-modern .search-submit span {
	position: relative;
	left: -4px;
}

.home-search-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}

.home-search-chips a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #6b7280;
	font-weight: 600;
}

.home-search-chips a:hover {
	color: #111111;
	border-color: #d1d5db;
	background: #fafafa;
}

.exchange-scope-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 28px;
	margin-bottom: 22px;
	border: 1px solid #e5e7eb;
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.exchange-scope-copy {
	display: grid;
	gap: 10px;
}

.exchange-scope-copy h1 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.exchange-scope-copy p {
	margin: 0;
	color: #6b7280;
	line-height: 1.7;
}

.condominium-list-shell {
	margin-top: 20px;
}

.condominium-list-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.condominium-list-card {
	display: grid;
	gap: 8px;
	padding: 20px;
	border-radius: 22px;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #111111;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.condominium-list-card:hover {
	transform: translateY(-3px);
	border-color: #d1d5db;
	box-shadow: 0 18px 32px rgba(17, 17, 17, 0.08);
}

.condominium-list-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: #f8fafc;
	font-size: 1.55rem;
}

.condominium-list-card small {
	color: #6b7280;
}

.home-results-shell {
	display: grid;
	gap: 12px;
}

.catalog-results-panel {
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.catalog-toolbar {
	align-items: center;
	padding-bottom: 18px;
	margin-bottom: 0;
}

.catalog-count {
	font-size: 1.35rem;
	color: #111111;
}

.catalog-sort-form {
	font-weight: 600;
	color: #6b7280;
}

.catalog-sort-form select {
	border: 1px solid #e5e7eb;
	border-radius: 14px;
}

.tabs {
	margin: 0 0 14px;
	padding-bottom: 0;
	border-bottom: 0;
}

.tabs a {
	padding: 10px 16px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: #f9fafb;
	color: #6b7280;
}

.tabs a.active {
	background: #111111;
	color: #ffffff;
}

.tabs a span {
	background: rgba(255, 255, 255, 0.18);
}

.catalog-card-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.catalog-book-card {
	padding: 18px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-shadow: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.catalog-book-card:hover {
	transform: translateY(-3px);
	border-color: #d1d5db;
	box-shadow: 0 18px 36px rgba(17, 17, 17, 0.07);
}

.catalog-book-cover {
	border-radius: 14px;
	background: #f8fafc;
}

.catalog-book-head h3 a {
	color: #111111;
}

.catalog-book-head p,
.catalog-book-rating,
.catalog-book-authors {
	color: #6b7280;
}

.catalog-chip {
	background: #f3f4f6;
	color: #374151;
}

.catalog-chip-attention {
	background: #fff7ed;
	color: #c2410c;
}

.catalog-chip-success {
	background: #f0fdf4;
	color: #15803d;
}

.catalog-book-actions .ghost-button,
.catalog-book-actions .as-link {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.catalog-book-actions .ghost-button:first-child,
.catalog-book-actions .as-link:first-child {
	background: #22c55e;
	border-color: #22c55e;
	color: #ffffff;
}

.catalog-book-actions .ghost-button:first-child:disabled {
	background: #d1d5db;
	border-color: #d1d5db;
	color: #6b7280;
}

.empty-state {
	padding: 22px 0 0;
}

.home-final-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 40px;
}

.home-final-cta-copy {
	display: grid;
	gap: 14px;
	max-width: 620px;
}

.home-final-cta-copy h2 {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #111111;
}

.home-final-cta-copy p {
	margin: 0;
	color: #6b7280;
	line-height: 1.7;
}

.search-topbar-results {
	margin: 20px 0 28px;
}

.search-topbar-results .search-form-top {
	max-width: 100%;
}

@media (max-width: 1100px) {
	.home-hero {
		grid-template-columns: 1fr;
	}

	.home-hero-visual {
		min-height: 440px;
	}

	.home-how-grid,
	.catalog-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-final-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 760px) {
	.home-how-it-works-primary .home-section-head p {
		white-space: normal;
	}

	.home-search-stage {
		margin: -4px 0 18px;
	}

	.home-marketplace {
		gap: 48px;
	}

	.home-hero-copy h1,
	.home-section-head h2,
	.home-final-cta-copy h2 {
		font-size: clamp(2rem, 9vw, 2.9rem);
	}

	.home-hero-visual {
		min-height: auto;
	}

	.home-book-showcase {
		display: grid;
		gap: 14px;
		padding: 20px;
	}

	.home-book-showcase::before,
	.home-book-showcase::after {
		display: none;
	}

	.home-book-teaser {
		position: static;
		width: 100%;
	}

	.home-how-grid,
	.catalog-card-grid {
		grid-template-columns: 1fr;
	}

	.home-how-split {
		grid-template-columns: 1fr;
	}

	.home-how-visual {
		min-height: 240px;
		order: 3;
	}

	.search-form-home-modern {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.search-form-home-modern,
	.search-topbar-results .search-form-top {
		flex-direction: column;
		align-items: stretch;
	}

	.search-form-home-modern .search-submit,
	.search-topbar-results .search-submit {
		width: 100%;
	}

	.home-search-chips {
		justify-content: flex-start;
	}
}

/* Header final override */
.site-header {
	display: grid;
	justify-items: center;
	align-items: center;
	gap: 18px;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
	padding: 8px 0 18px;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-align: center;
}

.site-header::after {
	content: '';
	display: block;
	width: min(1040px, calc(100vw - 48px));
	height: 1px;
	margin-top: 10px;
	background: #f0f0f0;
}

.brand-block {
	width: fit-content;
	max-width: 100%;
	display: flex;
	justify-content: center;
}

.brand {
	justify-content: center;
}

.top-nav {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	justify-content: center;
	margin: 0 auto;
}

@media (max-width: 720px) {
	.site-header {
		justify-items: center;
	}

	.top-nav {
		width: fit-content;
		max-width: 100%;
	}
}

@media (max-width: 720px) {
	.page-shell {
		width: calc(100% - 24px);
		margin: 12px auto 24px;
		gap: 14px;
	}

	.site-header {
		width: 100%;
		gap: 10px;
		padding: 4px 0 14px;
	}

	.site-header::after {
		width: 100%;
		margin-top: 6px;
	}

	.site-header-main {
		justify-content: space-between;
		gap: 14px;
	}

	.brand-block,
	.brand {
		width: auto;
	}

	.brand-block {
		justify-content: flex-start;
	}

	.brand-logo {
		width: 134px;
	}

	.mobile-nav-toggle {
		display: inline-flex;
		flex-shrink: 0;
	}

	.top-nav {
		display: none;
		width: 100%;
		margin-top: 4px;
		padding: 14px;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		border: 1px solid var(--line);
		border-radius: 22px;
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--shadow);
		backdrop-filter: blur(10px);
	}

	.site-header.is-mobile-nav-open .top-nav {
		display: flex;
	}

	.top-nav > a {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 50px;
		padding: 0 16px;
		border-radius: 16px;
		background: #faf7f1;
		font-size: 0.98rem;
		font-weight: 700;
		line-height: 1.2;
	}

	.top-nav .nav-menu {
		width: 100%;
	}

	.top-nav .nav-trigger {
		display: flex;
		justify-content: space-between;
		width: 100%;
		min-height: 50px;
		padding: 0 16px;
		border: 1px solid var(--line);
		border-radius: 16px;
		background: #fff;
		font-size: 0.98rem;
	}

	.top-nav .nav-button {
		justify-content: center;
		width: 100%;
		min-height: 48px;
		padding-inline: 18px;
		margin-top: 2px;
	}

	.top-nav .nav-dropdown {
		position: static;
		display: none;
		width: 100%;
		margin-top: 8px;
		padding: 10px 0;
		border: 1px solid var(--line);
		border-radius: 18px;
		background: #fffdf8;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.top-nav .nav-menu.is-open .nav-dropdown {
		display: block;
	}

	.top-nav .nav-menu.is-open .nav-trigger {
		background: var(--green-soft);
		border-color: rgba(78, 149, 15, 0.2);
	}

	.top-nav .nav-link-with-badge {
		align-items: center;
	}

	.top-nav .nav-badge {
		margin-left: auto;
	}

	.top-nav .profile-trigger-avatar {
		width: 32px;
		height: 32px;
	}

	.top-nav .profile-trigger {
		gap: 12px;
	}

	.top-nav .nav-trigger-caret {
		transition: transform 0.18s ease;
	}

	.top-nav .nav-menu.is-open .nav-trigger-caret {
		transform: rotate(180deg);
	}

	.home-search-stage {
		margin: -2px 0 16px;
	}

	.home-search-spotlight {
		gap: 12px;
	}

	.home-scope-grid,
	.condominium-list-grid {
		grid-template-columns: 1fr;
	}

	.home-search-spotlight .home-section-head h2 {
		font-size: clamp(1.55rem, 7vw, 2rem);
	}

	.home-section-head {
		margin-bottom: 20px;
	}

	.home-section-head-center {
		max-width: 320px;
	}

	.home-section-head h2,
	.home-how-it-works .home-section-head h2,
	.home-results-shell .home-section-head h2 {
		font-size: clamp(1.8rem, 8.4vw, 2.35rem);
		line-height: 1.08;
		white-space: normal;
		text-wrap: balance;
	}

	.home-how-it-works-primary .home-section-head p {
		font-size: 0.95rem;
	}

	.search-form-home-modern {
		padding: 10px;
		border-radius: 22px;
	}

	.search-form-home-modern input {
		min-height: 56px;
		padding-inline: 18px;
		font-size: 0.98rem;
	}

	.search-form-home-modern .search-submit,
	.search-topbar-results .search-submit {
		min-height: 52px;
	}

	.home-search-chips {
		width: 100%;
		justify-content: center;
		gap: 8px;
	}

	.home-search-chips a {
		min-height: 38px;
		padding: 0 14px;
		font-size: 0.95rem;
	}

	.exchange-scope-hero {
		flex-direction: column;
		align-items: flex-start;
		padding: 22px 18px;
		border-radius: 22px;
	}
}

@media (max-width: 560px) {
	.top-nav > a {
		font-size: 0.92rem;
	}

	.top-nav .nav-button {
		max-width: none;
	}

	.home-search-chips a {
		flex: 1 1 calc(50% - 8px);
	}
}

@media (max-width: 760px) {
	.how-it-works-page {
		gap: 14px;
	}

	.how-it-works-hero,
	.how-it-works-flow,
	.how-it-works-cta,
	.how-it-works-note {
		padding: 18px 16px !important;
		border-radius: 20px;
	}

	.how-it-works-flow-head {
		margin-bottom: 14px;
	}

	.how-it-works-hero h1 {
		font-size: clamp(1.9rem, 10vw, 2.35rem);
		line-height: 1.04;
	}

	.how-it-works-flow-head h2,
	.how-it-works-cta h2,
	.how-it-works-note h2 {
		font-size: clamp(1.45rem, 8vw, 1.85rem);
		line-height: 1.08;
	}

	.how-it-works-hero p,
	.how-it-works-flow-head p,
	.how-it-works-step p,
	.how-it-works-cta p,
	.how-it-works-note p {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.how-it-works-steps {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}

	.how-it-works-step {
		padding: 18px 16px !important;
		min-width: 0;
	}

	.how-it-works-step h3 {
		font-size: 1.18rem;
		line-height: 1.2;
	}

	.how-it-works-step-number {
		margin-bottom: 12px;
	}

	.how-it-works-actions {
		flex-direction: column;
		align-items: stretch;
	}
}

@media (max-width: 960px) {
	.book-detail-hero,
	.book-detail-grid {
		grid-template-columns: 1fr;
	}

	.book-detail-signals {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 720px) {
	.book-detail-card {
		padding: 18px;
	}

	.request-choice-card {
		padding: 18px;
	}

	.request-choice-book {
		grid-template-columns: 1fr;
	}

	.request-choice-book-cover img,
	.request-choice-book-cover .book-cover-placeholder {
		width: 96px;
		height: 138px;
	}

	.request-choice-owner-main {
		grid-template-columns: 1fr;
	}

	.book-detail-signals {
		grid-template-columns: 1fr;
	}
}
