:root {
	--accent: #2563eb;
	--accent-dark: #1d4ed8;
	--bg: #f5f6f8;
	--border: #e2e5ea;
	--ink: #1a1d26;
	--muted: #6b7280;
	--panel: #ffffff;
	--shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
	--success: #16a34a;
}
* {
	box-sizing: border-box;
}
body {
	background: #e4eeff;
	color: var(--ink);
	font-family: "Abril Fatface", "Times New Roman", serif;
	margin: 0;
}
.active-chip {
	align-items: center;
	background: rgba(37,99,235,0.1);
	border-radius: 999px;
	color: var(--accent);
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	gap: 8px;
	margin-bottom: 12px;
	padding: 5px 14px;
}
.admin-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin-bottom: 32px;
}
.back {
	color: var(--accent);
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
	text-decoration: none;
}
.back:hover {
	color: var(--accent-dark);
}
.badge {
	border-radius: 999px;
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	padding: 3px 10px;
	text-transform: capitalize;
}
.badge-active {
	background: rgba(22,163,74,0.1);
	color: var(--success);
}
.badge-inactive {
	background: rgba(107,114,128,0.1);
	color: var(--muted);
}
.badge-pending {
	background: rgba(234,179,8,0.12);
	color: #b45309;
}
.badge-sold {
	background: rgba(220,38,38,0.1);
	color: #dc2626;
}
.bid-amount {
	color: var(--success);
	font-weight: 700;
}
.bid-form {
	display: grid;
	gap: 10px;
	margin: 16px 0 20px;
}
.bid-form input {
	border: 1px solid var(--border);
	border-radius: 6px;
	font-family: "Libre Franklin", Arial, sans-serif;
	outline: none;
	padding: 10px 12px;
	transition: border-color 0.15s;
}
.bid-form input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(37,99,235,0.12);
}
.bid-item {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	display: flex;
	justify-content: space-between;
	padding: 10px 12px;
}
.bid-list {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.bidder {
	font-weight: 600;
}
.box {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 28px;
	width: min(420px, 90vw);
}
.box a {
	color: var(--accent);
}
.box form {
	display: grid;
	gap: 12px;
	margin-top: 12px;
}
.box input {
	border: 1px solid var(--border);
	border-radius: 6px;
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	outline: none;
	padding: 10px 12px;
	transition: border-color 0.15s;
}
.box input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(37,99,235,0.12);
}
.brand {
	color: var(--accent);
	flex-shrink: 0;
	font-size: 26px;
	letter-spacing: 0.5px;
	text-decoration: none;
}
.button {
	background: var(--accent);
	border: none;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 18px;
	transition: background 0.15s;
}
.button-outline {
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--ink);
	cursor: pointer;
	display: inline-block;
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 18px;
	transition: border-color 0.15s, color 0.15s;
}
.button-outline:hover {
	border-color: var(--accent);
	color: var(--accent);
}
.button:hover {
	background: var(--accent-dark);
}
.card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	color: var(--ink);
	display: block;
	padding: 16px;
	text-decoration: none;
	transition: box-shadow 0.15s ease;
}
.card-empty {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 14px;
	justify-content: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.card-image {
	background: #eef0f4;
	border-radius: 4px;
	height: 160px;
	margin-bottom: 12px;
	object-fit: contain;
	width: 100%;
}
.card-meta {
	color: var(--muted);
	display: flex;
	font-size: 14px;
	justify-content: space-between;
}
.card-price {
	color: var(--success);
	font-weight: 700;
	margin-top: 12px;
}
.card-thumb {
	border-radius: 4px;
	height: 64px;
	object-fit: contain;
	width: 100%;
}
.card-thumbs {
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 12px;
}
.card-title {
	font-family: "Abril Fatface", "Times New Roman", serif;
	font-size: 20px;
	margin-bottom: 8px;
}
.card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.classic {
	align-items: center;
	color: var(--ink);
	display: grid;
	gap: 16px;
	grid-template-columns: 120px 1fr auto;
	text-decoration: none;
}
.classic .meta {
	color: var(--muted);
	font-size: 14px;
	white-space: nowrap;
}
.classic .title {
	font-size: 18px;
	font-weight: 700;
}
.compact-body {
	min-width: 0;
}
.compact-empty {
	color: var(--muted);
	display: grid;
	font-size: 11px;
	letter-spacing: 1px;
	place-items: center;
	text-transform: uppercase;
}
.compact-item {
	align-items: center;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	color: var(--ink);
	display: grid;
	gap: 12px;
	grid-template-columns: 72px 1fr;
	padding: 10px;
	text-decoration: none;
}
.compact-list {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.compact-meta {
	align-items: center;
	color: var(--muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 8px;
}
.compact-section {
	margin-top: 28px;
}
.compact-section h3 {
	margin-bottom: 12px;
}
.compact-tag {
	background: rgba(37,99,235,0.08);
	border-radius: 999px;
	color: var(--accent);
	font-size: 11px;
	padding: 2px 8px;
}
.compact-thumb {
	background: #eef0f4;
	border-radius: 4px;
	height: 64px;
	object-fit: contain;
	width: 72px;
}
.compact-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
}
.content {
	flex: 1;
	font-family: "Libre Franklin", Arial, sans-serif;
	padding: 32px 8vw 60px;
}
.detail-block {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	padding: 20px;
}
.detail-description {
	line-height: 1.6;
	max-width: 640px;
}
.detail-meta {
	color: var(--muted);
	display: flex;
	font-size: 14px;
	gap: 16px;
	margin-bottom: 10px;
}
.detail-price {
	color: var(--success);
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 16px;
}
.empty-state {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--muted);
	font-size: 15px;
	margin-bottom: 16px;
	padding: 24px;
	text-align: center;
}
.error {
	background: rgba(220,38,38,0.06);
	border: 1px solid rgba(220,38,38,0.15);
	border-radius: 6px;
	color: #dc2626;
	margin: 12px 0;
	padding: 10px 14px;
}
.existing-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.existing-item {
	display: grid;
	gap: 8px;
	justify-items: center;
}
.existing-remove {
	background: transparent;
	border: 1px solid #dc2626;
	border-radius: 4px;
	color: #dc2626;
	cursor: pointer;
	font-size: 12px;
	padding: 4px 10px;
}
.existing-remove:hover {
	background: #dc2626;
	color: #fff;
}
.existing-thumb {
	background: #eef0f4;
	border-radius: 4px;
	height: 90px;
	object-fit: contain;
	width: 100%;
}
.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}
.field input,
.field textarea,
.field select {
	border: 1px solid var(--border);
	border-radius: 6px;
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	outline: none;
	padding: 10px 12px;
	transition: border-color 0.15s;
}
.field select:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(37,99,235,0.12);
}
.field span {
	font-size: 14px;
	font-weight: 600;
}
.field-inline {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
}
.filter-group {
	margin-top: 16px;
}
.filter-link {
	border-radius: 4px;
	color: var(--ink);
	display: block;
	font-size: 14px;
	padding: 5px 8px;
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}
.filter-link.active {
	background: rgba(37,99,235,0.08);
	color: var(--accent);
	font-weight: 700;
}
.filter-link.subcat {
	color: var(--muted);
	font-size: 13px;
}
.filter-link.subcat:hover {
	color: var(--accent-dark);
}
.filter-link:hover {
	background: rgba(37,99,235,0.06);
	color: var(--accent);
}
.filters {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	height: fit-content;
	max-height: calc(100vh - 90px);
	overflow: auto;
	padding: 18px;
	position: sticky;
	top: 72px;
}
.filters h3 {
	color: var(--muted);
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 1px;
	margin: 16px 0 8px;
	text-transform: uppercase;
}
.footer {
	background: var(--ink);
	color: rgba(255,255,255,0.7);
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	margin-top: auto;
	padding: 32px 8vw;
}
.footer-copy {
	color: rgba(255,255,255,0.4);
	font-size: 13px;
}
.footer-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
}
.footer-links {
	display: flex;
	gap: 20px;
}
.footer-links a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	transition: color 0.15s;
}
.footer-links a:hover {
	color: #fff;
}
.gallery {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	margin: 16px 0;
}
.gallery-close {
	background: rgba(255, 255, 255, 0.14);
	border: none;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	padding: 6px 10px;
	position: absolute;
	right: 12px;
	top: 12px;
}
.gallery-dialog {
	background: #111;
	border: none;
	border-radius: 8px;
	height: min(88vh, 720px);
	overflow: hidden;
	padding: 0;
	width: min(92vw, 980px);
}
.gallery-dialog::backdrop {
	backdrop-filter: blur(6px);
	background: rgba(0, 0, 0, 0.7);
}
.gallery-image {
	background: #1a1a1a;
	border-radius: 6px;
	display: block;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: auto;
}
.gallery-img {
	border-radius: 6px;
	box-shadow: var(--shadow);
	height: 200px;
	object-fit: contain;
	width: 100%;
}
.gallery-nav {
	background: rgba(255, 255, 255, 0.12);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	height: 44px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
}
.gallery-next {
	right: 14px;
}
.gallery-prev {
	left: 14px;
}
.gallery-stage {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 100%;
}
.grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	margin-top: 24px;
}
.hero-empty {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 14px;
	justify-content: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.hero-image {
	background: #eef0f4;
	border-radius: 6px;
	cursor: zoom-in;
	height: 360px;
	object-fit: contain;
	width: 100%;
}
.layout {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(220px, 260px) 1fr;
	margin-top: 20px;
}
.lede {
	color: var(--muted);
	margin-top: 8px;
	max-width: 520px;
}
.list {
	display: grid;
	gap: 12px;
	margin-top: 16px;
}
.list-body {
	min-width: 0;
}
.list-description {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
	max-height: 42px;
	overflow: hidden;
}
.list-empty {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 12px;
	justify-content: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.list-image {
	background: #eef0f4;
	border-radius: 4px;
	height: 110px;
	object-fit: contain;
	width: 140px;
}
.list-item {
	align-items: center;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	color: var(--ink);
	display: grid;
	gap: 16px;
	grid-template-columns: 140px 1fr auto;
	padding: 14px;
	text-decoration: none;
	transition: box-shadow 0.15s ease;
}
.list-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.list-meta {
	color: var(--muted);
	display: flex;
	font-size: 13px;
	gap: 10px;
	margin-bottom: 6px;
}
.list-price {
	color: var(--success);
	font-size: 18px;
	font-weight: 700;
	white-space: nowrap;
}
.list-row {
	color: var(--muted);
	display: flex;
	font-size: 14px;
	justify-content: space-between;
}
.list-title {
	font-family: "Abril Fatface", "Times New Roman", serif;
	font-size: 20px;
	margin-bottom: 4px;
}
.login-container {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 120px);
}
.nav {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.nav .cta-btn {
	background: var(--accent);
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
	padding: 8px 16px;
}
.nav .cta-btn:hover {
	background: var(--accent-dark);
	color: #fff;
}
.nav a {
	border-radius: 4px;
	color: var(--ink);
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 6px 10px;
	text-decoration: none;
	transition: color 0.15s;
}
.nav a:hover {
	color: var(--accent);
}
.notice {
	background: rgba(37,99,235,0.06);
	border: 1px solid rgba(37,99,235,0.15);
	border-radius: 6px;
	color: var(--accent-dark);
	margin-bottom: 16px;
	padding: 12px 16px;
}
.page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.panel {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	padding: 24px;
}
.phlo-dialog {
	background: var(--panel);
	border: none;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	padding: 0;
	width: min(440px, 92vw);
}
.phlo-dialog form {
	color: var(--ink);
	display: grid;
	font-family: "Libre Franklin", Arial, sans-serif;
	gap: 16px;
	padding: 22px;
}
.phlo-dialog::backdrop {
	backdrop-filter: blur(6px);
	background: rgba(0, 0, 0, 0.5);
}
.phlo-dialog__actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}
.phlo-dialog__actions button {
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 700;
	padding: 10px 16px;
}
.phlo-dialog__actions button[value="0"] {
	background: var(--bg);
	border: 1px solid var(--border);
	color: var(--ink);
}
.phlo-dialog__actions button[value="1"] {
	background: var(--accent);
	color: #fff;
}
.phlo-dialog__actions button[value="1"]:hover {
	background: var(--accent-dark);
}
.phlo-dialog__input {
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 10px 12px;
}
.phlo-dialog__message {
	font-size: 16px;
	margin: 0;
}
.preview-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.preview-item {
	background: var(--bg);
	border-radius: 6px;
	display: grid;
	gap: 6px;
	justify-items: center;
	padding: 8px;
}
.preview-item img {
	border-radius: 4px;
	height: 90px;
	object-fit: contain;
	width: 100%;
}
.preview-remove {
	background: transparent;
	border: 1px solid #dc2626;
	border-radius: 4px;
	color: #dc2626;
	cursor: pointer;
	font-size: 12px;
	padding: 4px 10px;
}
.preview-remove:hover {
	background: #dc2626;
	color: #fff;
}
.price-main {
	color: var(--success);
	font-size: 28px;
	font-weight: 700;
}
.price-sub {
	color: var(--muted);
	font-size: 14px;
	margin-top: 4px;
}
.product-details {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.product-gallery {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 16px;
}
.product-hero {
	align-items: start;
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
	margin: 20px 0 28px;
}
.product-summary {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	padding: 20px;
}
.profile-actions {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}
.profile-actions a {
	color: var(--accent);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.profile-actions a:hover {
	color: var(--accent-dark);
}
.profile-actions button {
	background: transparent;
	border: 1px solid #dc2626;
	border-radius: 4px;
	color: #dc2626;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	padding: 4px 12px;
}
.profile-actions button:hover {
	background: #dc2626;
	color: #fff;
}
.profile-body {
	display: grid;
	gap: 6px;
}
.profile-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	margin-bottom: 24px;
}
.profile-item {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	box-shadow: var(--shadow);
	display: grid;
	gap: 10px;
	padding: 12px;
}
.profile-list {
	display: grid;
	gap: 12px;
}
.profile-thumb {
	background: #eef0f4;
	border-radius: 4px;
	height: 90px;
	object-fit: contain;
	width: 120px;
}
.profile-thumb.empty {
	align-items: center;
	color: var(--muted);
	display: flex;
	font-size: 12px;
	justify-content: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.results {
	min-width: 0;
}
.seller-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 14px;
}
.seller-location {
	color: var(--muted);
	margin-top: 4px;
}
.seller-name {
	font-size: 18px;
	font-weight: 700;
}
.seller-title {
	color: var(--muted);
	font-size: 12px;
	letter-spacing: 1px;
	margin-bottom: 6px;
	text-transform: uppercase;
}
.subcats {
	border-left: 2px solid var(--border);
	margin: 4px 0 8px 12px;
	padding-left: 10px;
}
.summary-meta {
	color: var(--muted);
	display: flex;
	font-size: 13px;
	gap: 14px;
	margin: 8px 0 16px;
}
.summary-price {
	border-left: 3px solid var(--accent);
	margin-bottom: 18px;
	padding-left: 14px;
}
.thumb {
	background: transparent;
	border: 2px solid transparent;
	border-radius: 4px;
	cursor: pointer;
	display: block;
	flex: 0 0 auto;
	padding: 0;
	scroll-snap-align: start;
}
.thumb-image {
	border-radius: 4px;
	height: 72px;
	object-fit: contain;
	width: 100%;
}
.thumb-row {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	overflow-x: auto;
	padding-bottom: 4px;
	scroll-snap-type: x proximity;
}
.thumb-row::-webkit-scrollbar {
	height: 4px;
}
.thumb-row::-webkit-scrollbar-thumb {
	background: var(--border);
	border-radius: 999px;
}
.thumb.active {
	border-color: var(--accent);
}
.topbar {
	align-items: center;
	background: var(--panel);
	border-bottom: 1px solid var(--border);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	padding: 14px 8vw;
	position: sticky;
	top: 0;
	z-index: 100;
}
.topbar-search {
	flex: 1 1 200px;
	margin: 0 auto;
	max-width: 480px;
	min-width: 200px;
}
.topbar-search input {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 6px;
	color: var(--ink);
	font-family: "Libre Franklin", Arial, sans-serif;
	font-size: 14px;
	outline: none;
	padding: 9px 14px;
	transition: border-color 0.15s;
	width: 100%;
}
.topbar-search input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 2px rgba(37,99,235,0.12);
}
.upload-card {
	background: var(--panel);
	border: 1px dashed var(--accent);
	border-radius: 6px;
	display: grid;
	gap: 12px;
	padding: 14px;
}
.upload-drop {
	align-items: center;
	background: var(--bg);
	border-radius: 6px;
	color: var(--muted);
	cursor: pointer;
	display: grid;
	font-weight: 600;
	gap: 6px;
	justify-items: center;
	padding: 18px;
	text-align: center;
}
.upload-drop input {
	display: none;
}
.upload-drop small {
	color: var(--muted);
	font-weight: 400;
}
@media (max-width: 520px){
	.list-image {
		height: 180px;
		width: 100%;
	}
	.list-item {
		grid-template-columns: 1fr;
	}
	.list-price {
		grid-column: auto;
	}
}
@media (max-width: 720px){
	.filters {
		position: static;
	}
	.footer-inner {
		flex-direction: column;
		text-align: center;
	}
	.layout {
		grid-template-columns: 1fr;
	}
	.list-row {
		flex-direction: column;
		gap: 4px;
	}
	.nav a {
		font-size: 13px;
		padding: 4px 6px;
	}
	.topbar {
		padding: 12px 5vw;
	}
	.topbar-search {
		flex: 1 1 100%;
		margin: 0;
		max-width: 100%;
		min-width: 0;
		order: 3;
	}
}
@media (max-width: 980px){
	.filters {
		position: static;
	}
	.layout {
		grid-template-columns: 1fr;
	}
	.product-details {
		grid-template-columns: 1fr;
	}
	.product-hero {
		grid-template-columns: 1fr;
	}
}