/* Inventory Page Styles - Complete Redesign */

/* Mobile Filter Toggle */
.mobile-filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 1.5rem;
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border: none;
	border-radius: 12px;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 2rem;
	box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
	font-family: var(--font-sans);
}

.mobile-filter-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4);
}

.mobile-filter-toggle svg {
	width: 20px;
	height: 20px;
}

/* Main Inventory Section */
.inventory-main {
	padding: 4rem 0 6rem;
	background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.inventory-main .container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 2rem;
}

.inventory-layout {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 3rem;
	align-items: start;
}

/* Sidebar Filters - Complete Redesign */
.inventory-sidebar {
	position: sticky;
	top: 2rem;
	background: #ffffff;
	border-radius: 12px;
	padding: 0;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	max-width: 360px;
	max-height: calc(100vh - 4rem);
}

.sidebar-content {
	padding: 1.75rem;
	overflow-y: auto;
	max-height: calc(100vh - 4rem);
}

/* Custom Scrollbar */
.sidebar-content::-webkit-scrollbar {
	width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
	background: transparent;
}

.sidebar-content::-webkit-scrollbar-thumb {
	background: rgba(139, 92, 246, 0.2);
	border-radius: 3px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
	background: rgba(139, 92, 246, 0.3);
}

.sidebar-close {
	display: none;
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: transparent;
	border: none;
	color: var(--gray-500);
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 10;
	border-radius: 8px;
}

.sidebar-close:hover {
	background: rgba(0, 0, 0, 0.05);
	color: var(--gray-900);
}

.sidebar-section {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.sidebar-section h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1rem;
	font-family: var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sidebar-section h3 svg {
	width: 16px;
	height: 16px;
	color: #8b5cf6;
	stroke-width: 2;
	flex-shrink: 0;
}

/* Search Input - Simplified */
.search-input {
	position: relative;
}

.search-input input {
	width: 100%;
	padding: 0.75rem 0.875rem 0.75rem 2.5rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	font-size: 0.875rem;
	color: var(--gray-900);
	background: #fafafa;
	transition: all 0.2s ease;
	font-family: var(--font-sans);
}

.search-input input::placeholder {
	color: var(--gray-400);
}

.search-input input:focus {
	outline: none;
	border-color: #8b5cf6;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.search-input svg {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--gray-400);
	pointer-events: none;
	width: 16px;
	height: 16px;
}

/* Filter Groups - Clean Design */
.filter-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-height: 240px;
	overflow-y: auto;
	padding-right: 0.25rem;
}

/* Custom Scrollbar for Filter Groups */
.filter-group::-webkit-scrollbar {
	width: 4px;
}

.filter-group::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.03);
	border-radius: 2px;
}

.filter-group::-webkit-scrollbar-thumb {
	background: rgba(139, 92, 246, 0.2);
	border-radius: 2px;
}

.filter-group::-webkit-scrollbar-thumb:hover {
	background: rgba(139, 92, 246, 0.3);
}

.filter-checkbox {
	display: flex;
	align-items: center;
	padding: 0.5rem 0.625rem;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease;
	position: relative;
}

.filter-checkbox:hover {
	background: rgba(139, 92, 246, 0.03);
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.15s ease;
	appearance: none;
	flex-shrink: 0;
	background: #ffffff;
	margin: 0;
}

.filter-checkbox input[type="radio"] {
	border-radius: 50%;
}

.filter-checkbox input:checked {
	background: #8b5cf6;
	border-color: #8b5cf6;
	position: relative;
}

.filter-checkbox input[type="checkbox"]:checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
}

.filter-checkbox input[type="radio"]:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background: #ffffff;
	border-radius: 50%;
}

.filter-checkbox label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1;
	margin-left: 0.625rem;
	font-size: 0.875rem;
	color: var(--gray-700);
	cursor: pointer;
	user-select: none;
	font-family: var(--font-sans);
}

.filter-checkbox input:checked + label {
	color: var(--gray-900);
	font-weight: 600;
}

.filter-count {
	font-size: 0.75rem;
	color: var(--gray-500);
	background: rgba(0, 0, 0, 0.05);
	padding: 0.125rem 0.5rem;
	border-radius: 10px;
	font-weight: 600;
	min-width: 24px;
	text-align: center;
}

.filter-checkbox input:checked + label .filter-count {
	background: rgba(139, 92, 246, 0.15);
	color: #8b5cf6;
}

/* Price Range - Cleaner */
.price-range {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.price-inputs {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.625rem;
	align-items: end;
}

.price-input {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.price-input label {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--gray-600);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.price-input input {
	padding: 0.625rem 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	font-size: 0.8125rem;
	color: var(--gray-900);
	background: #fafafa;
	transition: all 0.2s ease;
	font-family: var(--font-sans);
	font-weight: 500;
	width: 100%;
}

.price-input input:focus {
	outline: none;
	border-color: #8b5cf6;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.price-separator {
	font-size: 1rem;
	color: var(--gray-300);
	font-weight: 400;
	padding-bottom: 0.625rem;
	text-align: center;
}

/* Year Range - Modern Slider */
.year-range {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.year-slider {
	position: relative;
	height: 40px;
	padding: 0 10px;
}

/* Visible track background */
.year-slider::before {
	content: '';
	position: absolute;
	left: 10px;
	right: 10px;
	top: 18px;
	height: 4px;
	background: rgba(139, 92, 246, 0.15);
	border-radius: 2px;
	pointer-events: none;
}

.year-slider input[type="range"] {
	position: absolute;
	width: calc(100% - 20px);
	height: 4px;
	background: transparent;
	pointer-events: none;
	appearance: none;
	-webkit-appearance: none;
	top: 18px;
	margin: 0;
}

.year-slider input[type="range"]::-webkit-slider-track {
	width: 100%;
	height: 4px;
	background: transparent;
	border-radius: 2px;
}

.year-slider input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	background: #8b5cf6;
	border: 3px solid #ffffff;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: all;
	box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
	transition: all 0.15s ease;
	margin-top: -8px;
}

.year-slider input[type="range"]::-webkit-slider-thumb:hover {
	transform: scale(1.2);
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.year-slider input[type="range"]::-moz-range-track {
	width: 100%;
	height: 4px;
	background: transparent;
	border-radius: 2px;
}

.year-slider input[type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	background: #8b5cf6;
	border: 3px solid #ffffff;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: all;
	box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
	border: none;
}

.year-slider input[type="range"]::-moz-range-thumb:hover {
	transform: scale(1.2);
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.year-values {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}

.year-values span {
	font-size: 0.875rem;
	font-weight: 700;
	color: #ffffff;
	background: #8b5cf6;
	padding: 0.5rem 0.875rem;
	border-radius: 6px;
	min-width: 70px;
	text-align: center;
	font-family: var(--font-sans);
	flex: 1;
	box-shadow: 0 2px 6px rgba(139, 92, 246, 0.25);
}

/* Sidebar Actions - Clean Buttons */
.sidebar-actions {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.apply-filters-btn,
.reset-filters-btn {
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
	font-family: var(--font-sans);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.apply-filters-btn svg,
.reset-filters-btn svg {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}

.apply-filters-btn {
	background: #8b5cf6;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
}

.apply-filters-btn:hover {
	background: #7c3aed;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.reset-filters-btn {
	background: transparent;
	color: var(--gray-600);
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.reset-filters-btn:hover {
	background: rgba(0, 0, 0, 0.03);
	border-color: rgba(0, 0, 0, 0.15);
	color: var(--gray-900);
}

/* Inventory Content */
.inventory-content {
	min-width: 0;
}

.inventory-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.inventory-results {
	font-size: 0.9375rem;
	color: var(--gray-600);
	font-weight: 500;
}

.inventory-results strong {
	color: #8b5cf6;
	font-weight: 700;
	font-size: 1.5rem;
	margin: 0 0.25rem;
}

.inventory-sort {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.inventory-sort label {
	font-size: 0.875rem;
	color: var(--gray-600);
	font-weight: 600;
}

.inventory-sort select {
	padding: 0.75rem 2.75rem 0.75rem 1rem;
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--gray-900);
	background: #fafafa;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b5cf6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 16px;
	transition: all 0.3s ease;
	font-family: var(--font-sans);
}

.inventory-sort select:hover {
	border-color: rgba(139, 92, 246, 0.3);
	background-color: #ffffff;
}

.inventory-sort select:focus {
	outline: none;
	border-color: #8b5cf6;
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.08);
}

/* Vehicle Grid - Redesigned */
.inventory-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 2rem;
}

/* Vehicle Card - Complete Redesign */
.inventory-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
}

.inventory-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	border-color: rgba(139, 92, 246, 0.2);
}

.inventory-image {
	position: relative;
	width: 100%;
	height: 260px;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.inventory-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.inventory-card:hover .inventory-image img {
	transform: scale(1.05);
}

.inventory-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.inventory-card:hover .inventory-overlay {
	opacity: 1;
}

.quick-view-btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border: none;
	border-radius: 8px;
	color: #8b5cf6;
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-sans);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.quick-view-btn:hover {
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.inventory-date {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--gray-700);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.inventory-date.new {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	color: #ffffff;
}

.inventory-date.reserved {
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
	color: #ffffff;
}

.inventory-details {
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	flex: 1;
}

.inventory-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.8125rem;
	color: var(--gray-500);
	font-weight: 600;
}

.inventory-meta .year {
	color: #8b5cf6;
	font-weight: 700;
	font-size: 0.875rem;
}

.inventory-meta .location {
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.inventory-meta svg {
	color: var(--gray-400);
}

.inventory-details h3 {
	font-family: var(--font-serif);
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--gray-900);
	line-height: 1.3;
	margin: 0;
	transition: color 0.3s ease;
}

.inventory-card:hover h3 {
	color: #8b5cf6;
}

.inventory-desc {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--gray-600);
	margin: 0;
	flex: 1;
}

.inventory-specs {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--gray-600);
	font-weight: 500;
	padding: 0.75rem 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.inventory-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
}

.inventory-price {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.price-label {
	font-size: 0.75rem;
	color: var(--gray-500);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.price-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #8b5cf6;
	font-family: var(--font-sans);
}

.inventory-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	color: #ffffff;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
	white-space: nowrap;
}

.inventory-btn:hover {
	transform: translateX(4px);
	box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.inventory-btn svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.5;
}

/* Pagination - Modern Design */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 4rem;
	flex-wrap: wrap;
}

.pagination-btn {
	min-width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	background: #ffffff;
	border: 2px solid rgba(0, 0, 0, 0.06);
	border-radius: 10px;
	color: var(--gray-700);
	font-weight: 700;
	font-size: 0.9375rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-sans);
	text-decoration: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pagination-btn:hover:not(:disabled):not(.active) {
	background: rgba(139, 92, 246, 0.05);
	border-color: rgba(139, 92, 246, 0.2);
	color: #8b5cf6;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pagination-btn.active {
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	border-color: #8b5cf6;
	color: #ffffff;
	box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.pagination-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.pagination-btn svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.5;
}

.pagination-info {
	text-align: center;
	margin-top: 1.5rem;
	color: var(--gray-600);
	font-size: 0.9375rem;
	font-weight: 500;
}

.pagination-info strong {
	color: #8b5cf6;
	font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1400px) {
	.inventory-layout {
		grid-template-columns: 320px 1fr;
		gap: 2.5rem;
	}
	
	.inventory-grid {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	}
}

@media (max-width: 1200px) {
	.inventory-main .container {
		max-width: 1200px;
		padding: 0 1.5rem;
	}
	
	.inventory-layout {
		grid-template-columns: 300px 1fr;
		gap: 2rem;
	}
	
	.inventory-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

@media (max-width: 968px) {
	.mobile-filter-toggle {
		display: flex;
	}
	
	.inventory-layout {
		grid-template-columns: 1fr;
	}
	
	.inventory-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		max-width: 420px;
		height: 100vh;
		max-height: 100vh;
		z-index: 1000;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		border-radius: 0;
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
	
	.inventory-sidebar.active {
		transform: translateX(0);
		box-shadow: 8px 0 32px rgba(0, 0, 0, 0.2);
	}
	
	.sidebar-content {
		height: 100%;
		max-height: 100vh;
		overflow-y: auto;
		padding: 5rem 2rem 2rem;
	}
	
	.inventory-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 1.5rem;
	}
	
	.inventory-main {
		padding: 3rem 0 5rem;
	}
}

@media (max-width: 768px) {
	.inventory-main .container {
		padding: 0 1.25rem;
	}
	
	.inventory-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	
	.inventory-sort {
		width: 100%;
	}
	
	.inventory-sort select {
		flex: 1;
	}
	
	.inventory-image {
		height: 220px;
	}
	
	.inventory-details {
		padding: 1.5rem;
	}
	
	.inventory-footer {
		flex-direction: column;
		align-items: stretch;
	}
	
	.inventory-btn {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.inventory-sidebar {
		max-width: 100%;
	}
	
	.inventory-grid {
		grid-template-columns: 1fr;
	}
	
	.pagination-btn {
		min-width: 40px;
		height: 40px;
		font-size: 0.875rem;
	}
	
	.pagination-btn.page-number {
		display: none;
	}
	
	.pagination-btn.page-number.active {
		display: flex;
	}
}

@media (max-width: 480px) {
	.inventory-main {
		padding: 2rem 0 4rem;
	}
	
	.inventory-main .container {
		padding: 0 1rem;
	}
	
	.mobile-filter-toggle {
		font-size: 0.9375rem;
		padding: 0.875rem 1.25rem;
	}
	
	.inventory-header {
		padding: 1.25rem;
	}
	
	.sidebar-content {
		padding: 5rem 1.5rem 2rem;
	}
}
