:root {
	--surface: #111318;
	--surface-2: #1a1d26;
	--border: #252836;
	--border-hover: #3a3f55;
	--bg: #F7F8FB;
	--text: #e8eaf2;
	--text-muted: #7a7f99;
	--text-dim: #4a4f66;
	--accent: #1A56FF;
	--accent2: #234cc1;
	--accent-light: #EEF3FF;
	--accent-dim: rgba(232, 255, 90, 0.12);
	--accent-glow: rgba(232, 255, 90, 0.25);
	--blue: #5b8fff;
	--blue-dim: rgba(91, 143, 255, 0.12);
	--green: #3dffa0;
	--green-dim: rgba(61, 255, 160, 0.1);
	--pink: #ff6b9d;
	--radius: 12px;
	--radius-sm: 8px;
	--ink: #1A1814;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--bg);
}

/* ── HERO STRIP ── */
.hero-strip {
	border-bottom: 1px solid #e2e2e2;
	background: var(--bg);
	padding: 7rem 2rem 2.5rem;
}

.hero-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.hero-text h1 {
	/*font-family: 'Syne', sans-serif;*/
	font-weight: 800;
	font-size: 45px;
	line-height: 1.15;
	letter-spacing: -.02em;
	margin-bottom: .5rem;
}

.hero-text h1 span {
	color: var(--accent);
}

.hero-text p {
	color: var(--text-muted);
	font-size: 15px;
	max-width: 480px;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	flex-shrink: 0;
}

.stat {
	text-align: center;
}

.stat-num {
	font-weight: 800;
	font-size: 2.5rem;
	color: #585858;
}

.stat-label {
	font-size: 12px;
	color: var(--text-muted);
}

/* ── FILTERS BAR ── */
.filters-bar {
	position: sticky;
	top: 56px;
	z-index: 90;
	background: #fff;
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #e2e2e2;
	padding: 0 2rem;
}

.filters-inner {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 54px;
	overflow-x: auto;
	scrollbar-width: none;
}

.filters-inner::-webkit-scrollbar {
	display: none;
}

.filter-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-dim);
	text-transform: uppercase;
	letter-spacing: .08em;
	flex-shrink: 0;
}

.filter-sep {
	width: 1px;
	height: 20px;
	background: var(--border);
	flex-shrink: 0;
}

.filter-chip {
	flex-shrink: 0;
	background: #fff;
	border: 1px solid var(--text-muted);
	border-radius: 100px;
	color: var(--text-muted);
	padding: 5px 14px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all .15s;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
}

.filter-chip:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.filter-chip.active {
	background: var(--accent-light);
	border-color: var(--accent);
	color: var(--accent);
}

.filter-chip .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}

.filter-select {
	flex-shrink: 0;
	background: transparent;
	border: 1px solid var(--text-muted);
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	padding: 5px 30px 5px 12px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	cursor: pointer;
	outline: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7f99' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	transition: border-color .15s;
}

.filter-select:hover {
	border-color: var(--border-hover);
}

.ml-auto {
	margin-left: auto;
}

.results-count {
	font-size: 13px;
	color: var(--text-muted);
	white-space: nowrap;
}

/* ── MAIN LAYOUT ── */
.main-content {
	max-width: 100%;
	margin: 0 20px;
	padding: 1.5rem 0 4rem;
	padding-bottom: 40px;
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2.5rem;
	align-items: start;
	transition: all 0.3s ease;
}

.main-content.sidebar-hidden {
	grid-template-columns: 0 1fr;
	gap: 0;
}

.sidebar {
	transition: all 0.3s ease;
	overflow: hidden;
}

.main-content.sidebar-hidden .sidebar {
	opacity: 0;
	pointer-events: none;
}

/* ── SIDEBAR ── */
.sidebar {
	position: sticky;
	top: 118px;
}

.sidebar-section {
	margin-bottom: 1.5rem;
}

.sidebar-title {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--text-dim);
	margin-bottom: .75rem;
}

.sidebar {
	width: 300px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hidden state */
.sidebar-hidden .sidebar {
	transform: translateX(-100%);
	opacity: 0;
	pointer-events: none;
}

.range-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.range-row span {
	font-size: 13px;
	color: var(--text-muted);
}

.range-row .range-val {
	font-weight: 600;
	color: #b8b8bb;
	font-size: 13px;
}

input[type=range] {
	width: 100%;
	accent-color: var(--accent);
	height: 3px;
	margin-bottom: 6px;
}

.checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	color: var(--text-muted);
	transition: color .15s;
}

.checkbox-item:hover {
	color: rgba(0, 0, 0, 0.7);
}

.checkbox-item input {
	accent-color: var(--accent);
	width: 14px;
	height: 14px;
	cursor: pointer;
}

.checkbox-item .item-count {
	margin-left: auto;
	font-size: 12px;
	color: var(--text-dim);
}

.price-type-toggle {
	position: relative;
	display: flex;
	background: var(--accent-light);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: var(--radius-sm);
	padding: 3px;
	gap: 2px;
	overflow: hidden;
}

.price-toggle-btn {
	flex: 1;
	padding: 6px 10px;
	border: none;
	border-radius: 6px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	background: transparent;
	color: var(--text-muted);
	position: relative;
	z-index: 2;
}

.price-toggle-btn.active {
	color: var(--text);
}

/* 🔥 Sliding element */
.price-toggle-slider {
	position: absolute;
	top: 3px;
	left: 3px;
	height: calc(100% - 6px);
	width: calc((100% - 6px) / 3);
	background: var(--accent);
	border-radius: 6px;
	transition: transform 0.3s ease;
	z-index: 1;
}

/* ── LISTINGS GRID ── */
.listings-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 1.25rem;
}

/* ── LISTING CARD ── */
.listing-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	cursor: pointer;
	position: relative;
}

.listing-card:hover {
	border-color: var(--border-hover);
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.card-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--accent);
	color: #0a0b0f;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 10px;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 0 var(--radius) 0 var(--radius-sm);
}

.card-ribbon.featured {
	background: var(--blue);
	color: #fff;
}

.card-ribbon.new {
	background: var(--green);
	color: #0a0b0f;
}

.card-header {
	padding: 1.25rem 1.25rem .75rem;
	display: flex;
	align-items: flex-start;
	gap: .875rem;
}

.site-favicon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--surface-2);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 16px;
	flex-shrink: 0;
	overflow: hidden;
}

.site-info {
	flex: 1;
	min-width: 0;
}

.site-name {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 2px;
}

.site-url {
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 4px;
}

.site-url svg {
	opacity: .5;
}

.card-meta {
	padding: 0 1.25rem .875rem;
	display: flex;
	gap: .5rem;
	flex-wrap: wrap;
}

.meta-badge {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 3px 10px;
	font-size: 12px;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 5px;
}

.meta-badge.niche {
	background: var(--blue-dim);
	border-color: rgba(91, 143, 255, .2);
	color: var(--blue);
}

.meta-badge svg {
	opacity: .7;
}

.card-metrics {
	padding: .75rem 1.25rem;
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: .5rem;
}

.metric {
	text-align: center;
}

.metric-val {
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: var(--text);
}

.metric-key {
	font-size: 10px;
	color: var(--text-dim);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 1px;
}

.metric-val.good {
	color: var(--green);
}

.metric-val.ok {
	color: var(--accent);
}

/* ── PRICING SECTION — STAR OF THE SHOW ── */
.card-pricing {
	padding: .875rem 1.25rem;
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .625rem;
}

.price-slot {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: .625rem .75rem;
	transition: border-color .15s, background .15s;
	position: relative;
	overflow: hidden;
}

.price-slot:hover {
	border-color: var(--border-hover);
}

.price-slot::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.price-slot.guest-post::before {
	background: var(--accent);
}

.price-slot.link-placement::before {
	background: var(--blue);
}

.price-type-label {
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.price-slot.guest-post .price-type-label {
	color: var(--accent);
}

.price-slot.link-placement .price-type-label {
	color: var(--blue);
}

.price-type-icon {
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.price-amount {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--text);
	line-height: 1;
}

.price-amount sup {
	font-size: .65em;
	font-weight: 600;
	color: var(--text-muted);
	vertical-align: super;
}

.price-includes {
	font-size: 11px;
	color: var(--text-dim);
	margin-top: 3px;
}

.card-footer {
	padding: .875rem 1.25rem;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: .75rem;
}

.btn-order {
	flex: 1;
	background: var(--accent);
	color: #0a0b0f;
	border: none;
	border-radius: var(--radius-sm);
	padding: 8px 14px;
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: opacity .15s, transform .1s;
	letter-spacing: .01em;
}

.btn-order:hover {
	opacity: .85;
	transform: scale(.98);
}

.btn-save {
	width: 36px;
	height: 36px;
	border: 1px solid var(--border);
	background: transparent;
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .15s;
	flex-shrink: 0;
}

.btn-save:hover {
	border-color: var(--pink);
	color: var(--pink);
}

.btn-save.saved {
	border-color: var(--pink);
	color: var(--pink);
	background: rgba(255, 107, 157, .08);
}

.rating {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 12px;
	color: var(--text-muted);
	flex-shrink: 0;
}

.rating svg {
	color: #ffd666;
}

/* ── PAGINATION ── */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	margin-top: 2.5rem;
}

.page-btn {
	width: 36px;
	height: 36px;
	border: 1px solid var(--text-muted);
	background: transparent;
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	transition: all .15s;
}

.page-btn:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.page-btn.active {
	background: var(--accent-light);
	border-color: var(--accent);
	color: var(--accent);
	font-weight: 700;
}

.page-btn.arrow {
	font-size: 18px;
}

/* ── EMPTY / SKELETON ── */
@keyframes shimmer {
	0% {
		background-position: -400px 0;
	}

	100% {
		background-position: 400px 0;
	}
}

.skeleton {
	background: linear-gradient(90deg, var(--surface-2) 25%, var(--border) 50%, var(--surface-2) 75%);
	background-size: 800px 100%;
	animation: shimmer 1.6s infinite;
	border-radius: 4px;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

/* CATALOG ITEM */
.catalog-item {
	width: 100%;
	background: #fff;
	border-radius: 12px;
	padding: 15px;
	color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.15);
}

/* HEADER */
.catalog-item__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.catalog-item__logo {
	width: 42px;
	height: 42px;
	background: #fff;
	border: 1px solid #d2d2d2;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 5px;
}

.catalog-item__logo img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.catalog-item__name {
	margin: 0;
	font-size: 18px;
	color: #000;
	margin-bottom: -5px;
}

.verified-badge-inline i {
	color: var(--accent);
}

.catalog-item__domain {
	font-size: 12px;
	color: #9aa4b2;
	display: inline-block;
}

.catalog-item__domain a {
	display: inline-block;
}

/* TAGS */
.catalog-item__tags {
	margin-top: 12px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.catalog-item__tag {
	font-size: 11px;
	padding: 4px 12px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: var(--accent-light);
	border-radius: 999px;
	color: #2960ab;
}

/* STATS */
.catalog-item__stats {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 16px 0;
	padding: 12px 0;
	border-top: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
	text-align: center;
}

.catalog-item__stat {
	line-height: 1;
}

.catalog-item__stat strong {
	display: block;
	font-size: 16px;
	color: #000;
}

.catalog-item__stat span {
	font-size: 10px;
	color: #9aa4b2;
	display: inline-block;
	margin-top: -5px;
}

/* OFFERS */
.catalog-item__offers {
	display: flex;
	gap: 12px;
}

.catalog-item__offer {
	flex: 1;
	padding: 5px 10px;
	border-radius: 10px;
	background: var(--accent-light);
	min-height: 91px;
}

.catalog-item__offer h2 {
	margin: 0;
	font-weight: 700;
	color: #000;
}

.catalog-item__offer p {
	font-size: 11px;
	color: #9aa4b2;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.catalog-item__offer-label {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--accent);
}

/* VARIANTS */
.catalog-item__offer--primary {
	border: 1px solid #d2d2d2;
}

/* FOOTER */
.catalog-item__footer {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.catalog-item__cta {
	flex: 1;
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 10px;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
}

.catalog-item__cta:hover {
	background-color: var(--accent2);
}

.catalog-item__rating {
	font-size: 12px;
	color: #d9b218;
}

.catalog-item__wishlist {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	color: rgba(0, 0, 0, 0.2);
	font-size: 22px;
}

.sidebar-content {
	max-height: 500px;
	/* open by default */
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.sidebar-section:not(.active) .sidebar-content {
	max-height: 0;
}

.ac-title {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-right: 20px;
}

/* FA chevron-down */
.ac-title::after {
	content: "\f078";
	/* fa-chevron-down */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 0;
	transition: transform 0.3s ease;
}

/* rotate when closed */
.sidebar-section:not(.active) .ac-title::after {
	transform: rotate(-90deg);
}

.class-top-view #myTab {
	border: 1px solid #cfd8e3;
	border-radius: 10px;
	overflow: hidden;
	width: fit-content;
	background: #fff;
	margin-left: 0;
}

.class-top-view #myTab button {
	border: 0 !important;
	background: transparent;
	padding: 6px 14px;
	color: #6c757d;
	border-radius: 0;
}

.class-top-view #myTab button+button {
	border-left: 1px solid #cfd8e3;
}

.class-top-view #myTab button.active {
	background: #cfe6ff;
	color: var(--accent);
}

.class-top-view #myTab i {
	font-size: 16px;
}

.cat-top-wrap {
	display: flex;
	align-items: center;
	gap: 15px;
}

.cat-top {
	margin-bottom: 20px;
}

.cat-top-fil a {
	font-size: 24px;
	color: rgba(0, 0, 0, 0.4);
	display: inline-block;
}

.cat-top-fil a.active {
	font-size: 24px;
	color: var(--accent);
}

.cat-top-fil a i {
	transform: translateY(4px);
}

.search-container {
	position: relative;
}

.search-input {
	height: 36px;
	border-radius: 10px;
	padding-left: 35px;
	border: none;
	border: 1px solid #cfd8e3;
}

.search-input:focus {
	box-shadow: none;
	border-color: var(--accent);
}

.search-icon {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #888;
}

.cat-top-text p {
	color: rgba(0, 0, 0, 0.5);
}

.catalog-table-wrap {
	background: #fff;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	overflow-x: auto;
}

.catalog-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 1200px;
	/* important */
	margin-bottom: 0;
}

.catalog-table thead {
	background: #f8f9fb;
}

.catalog-table th {
	font-size: 13px;
	font-weight: 600;
	color: #6c757d;
	white-space: nowrap;
	background-color: var(--accent-light);
	padding-top: 20px;
	padding-bottom: 20px;
}

.table-responsive {
	overflow-x: auto;
}

.catalog-table-wrap {
	width: 100%;
}

.catalog-table-wrap {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	/* 🔥 only horizontal */
	display: block;
}

.catalog-table {
	border-collapse: collapse;
}
.panel-main-table{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.panel-main-table table{
    min-width: 800px;
    width: 100%;
}

.catalog-table th,
.catalog-table td {
	white-space: nowrap;
}

.catalog-table td {
	font-size: 14px;
	vertical-align: middle;
}

.catalog-table th,
.catalog-table td {
	white-space: nowrap;
}

.list-wrap {
	overflow: visible;
	/* not hidden */
}

.catalog-table tbody tr {
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-table a {
	text-decoration: none;
	color: #2c3e50;
	font-weight: 500;
	transition: .4s ease-in-out;
}

.catalog-table a:hover {
	color: #0d6efd;
}

.catalog-table a.vm {
	background-color: var(--bg);
	border: 1px solid var(--accent);
	padding: 7px 10px;
	color: var(--accent);
	border-radius: 5px;
	font-size: 11px;
}

.catalog-table a.vm:hover {
	background-color: var(--accent2);
	color: #fff;
}

/* Logo */
.logo-img {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	object-fit: cover;
}

/* Price */
.price {
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
}

/* Soft badge */
.badge-soft {
	background: #e6f7f1;
	color: #28a745;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 6px;
	margin-right: 4px;
}

.badge-blue {
	background: var(--accent-light);
	color: var(--accent);
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 6px;
	margin-right: 4px;
}

.catalog-table tbody tr.clickable-row {
	cursor: pointer;
	transition: 0.4s ease-in-out;
}

.catalog-table tbody tr.clickable-row:hover td {
	background-color: #f7f9ff !important;
}

.catalog-table tbody tr.clickable-row:hover a.vm {
	background-color: var(--accent2);
	color: #fff;
}

.site-all-btn a{
    display: inline-block;
    background-color: #fff;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    padding: 10px 40px;
    text-decoration: none;
    font-weight: 500;
    transition: .4s ease-in-out;
}
.site-all-btn{
    text-align: center;
    padding-bottom: 64px;
}

.site-all-btn a:hover{
    background-color: var(--accent-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
	.main-content {
		grid-template-columns: 1fr;
	}

	.sidebar {
		position: static;
	}

	.hero-stats {
		display: none;
	}
}

@media (max-width: 600px) {
	.listings-grid {
		grid-template-columns: 1fr;
	}

	.header-nav {
		display: none;
	}
}
.catalog-item__bookmark a {
    color: rgba(0, 0, 0, 0.2);
    transition: .3s ease-in-out;
}
.catalog-item__bookmark a:hover {
    color: var(--accent);
}