.shop-hero {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
	align-items: end;
	gap: 34px;
	padding: 72px 0 38px;
}

.shop-hero h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 58px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0;
}

.shop-hero p {
	color: var(--woodghar-primary-dark);
}

.shop-hero span {
	display: block;
	color: var(--woodghar-muted);
	font-size: 18px;
}

.shop-layout {
	display: grid;
	grid-template-columns: 292px minmax(0, 1fr);
	gap: 34px;
	padding-top: 18px;
}

.shop-sidebar {
	position: sticky;
	top: 106px;
	align-self: start;
	padding: 22px;
	border: 1px solid rgba(222, 212, 194, 0.78);
	border-radius: 8px;
	background: rgba(255, 253, 249, 0.82);
	box-shadow: 0 18px 50px rgba(28, 32, 26, 0.06);
	backdrop-filter: blur(14px);
}

.shop-sidebar__head span {
	color: var(--woodghar-primary-dark);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.shop-sidebar__head h2 {
	margin: 4px 0 22px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: 0;
}

.shop-filter-group,
.shop-price-filter {
	display: grid;
	gap: 13px;
	padding-top: 20px;
	border-top: 1px solid rgba(222, 212, 194, 0.74);
}

.shop-filter-group h3,
.shop-price-filter h3 {
	margin: 0;
	font-size: 13px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.shop-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.shop-filter-chips a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(222, 212, 194, 0.86);
	border-radius: 999px;
	background: var(--woodghar-white);
	color: var(--woodghar-muted);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shop-filter-chips a:hover,
.shop-filter-chips a.is-active {
	background: rgba(210, 180, 140, 0.2);
	border-color: rgba(210, 180, 140, 0.72);
	color: var(--woodghar-ink);
	transform: translateY(-1px);
}

.shop-price-filter {
	margin-top: 22px;
}

.shop-price-filter__inputs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.shop-price-filter label {
	display: grid;
	gap: 6px;
	color: var(--woodghar-muted);
	font-size: 12px;
	font-weight: 800;
}

.shop-price-filter input {
	min-height: 42px;
	border-radius: 8px;
}

.shop-price-filter button {
	min-height: 44px;
	border: 0;
	border-radius: 8px;
	background: var(--woodghar-ink);
	color: var(--woodghar-white);
	font-weight: 850;
}

.shop-sidebar__close {
	display: none;
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: rgba(23, 21, 18, 0.07);
	color: var(--woodghar-ink);
}

.shop-toolbar {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	padding: 12px;
	border: 1px solid rgba(222, 212, 194, 0.78);
	border-radius: 8px;
	background: var(--woodghar-white);
}

.shop-toolbar .button {
	display: none;
	color: var(--woodghar-ink);
	border-color: rgba(222, 212, 194, 0.82);
	background: var(--woodghar-white);
}

.woocommerce-result-count {
	margin: 0;
	color: var(--woodghar-muted);
	font-size: 14px;
}

.shop-view-toggle {
	display: inline-flex;
	padding: 3px;
	border: 1px solid rgba(222, 212, 194, 0.86);
	border-radius: 999px;
	background: var(--woodghar-surface);
}

.shop-view-toggle button {
	min-height: 34px;
	padding: 6px 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--woodghar-muted);
	font-size: 13px;
	font-weight: 850;
}

.shop-view-toggle button[aria-pressed="true"] {
	background: var(--woodghar-white);
	color: var(--woodghar-ink);
	box-shadow: 0 7px 20px rgba(28, 32, 26, 0.08);
}

.woocommerce .woocommerce-ordering {
	margin: 0;
}

.woocommerce .woocommerce-ordering select {
	min-width: 220px;
	border-radius: 999px;
	background-color: var(--woodghar-white);
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product,
.woocommerce ul.products.columns-4 li.product,
.woocommerce-page ul.products.columns-4 li.product {
	float: none;
	clear: none;
	width: auto;
	margin: 0;
}

.woodghar-product-card {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.woodghar-product-card:hover {
	box-shadow: none;
	transform: translateY(-3px);
}

.woodghar-product-card__media {
	position: relative;
	border-radius: 8px;
	aspect-ratio: 4 / 5;
	background: #ece5d8;
	overflow: hidden;
}

.woodghar-product-card__media > a {
	display: block;
	height: 100%;
}

.woodghar-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 253, 249, 0.9);
	color: var(--woodghar-ink);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.woodghar-product-card__wishlist {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 253, 249, 0.88);
	color: var(--woodghar-ink);
	transition: transform 180ms ease, background 180ms ease;
}

.woodghar-product-card__wishlist:hover {
	transform: translateY(-2px);
	background: var(--woodghar-secondary);
	color: var(--woodghar-ink);
}

.woodghar-product-card__quick {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: 999px;
	background: rgba(255, 253, 249, 0.92);
	color: var(--woodghar-ink);
	font-size: 13px;
	font-weight: 850;
	text-decoration: none;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.woodghar-product-card:hover .woodghar-product-card__quick,
.woodghar-product-card:focus-within .woodghar-product-card__quick {
	opacity: 1;
	transform: translateY(0);
}

.woodghar-product-card__quick:hover {
	background: var(--woodghar-ink);
	color: var(--woodghar-white);
}

.woodghar-product-card__body {
	padding: 14px 0 0;
}

.woodghar-product-card__category {
	margin-bottom: 8px;
	color: var(--woodghar-muted);
	font-size: 11px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0;
}

.woodghar-product-card__category a {
	color: inherit;
	text-decoration: none;
}

.woodghar-product-card h2 {
	margin-bottom: 8px;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: 0;
}

.woodghar-product-card h2 a {
	color: var(--woodghar-ink);
	text-decoration: none;
}

.woodghar-product-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	color: var(--woodghar-muted);
	font-size: 13px;
}

.woodghar-product-card__price {
	color: var(--woodghar-ink);
	font-weight: 850;
}

.woodghar-product-card__actions {
	margin-top: 14px;
}

.woodghar-product-card__actions .button {
	width: 100%;
	margin: 0;
	border-radius: 999px;
	background: var(--woodghar-ink);
}

.woodghar-product-card__actions .button:hover {
	background: var(--woodghar-primary-dark);
}

.shop-results.is-list-view .woocommerce ul.products {
	grid-template-columns: 1fr;
}

.shop-results.is-list-view .woodghar-product-card {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 20px;
	padding: 14px;
	border: 1px solid rgba(222, 212, 194, 0.78);
	border-radius: 8px;
	background: var(--woodghar-white);
}

.shop-results.is-list-view .woodghar-product-card__media {
	aspect-ratio: 1;
}

.shop-results.is-list-view .woodghar-product-card__body {
	display: grid;
	align-content: center;
	padding: 0;
}

.woocommerce-no-products-found {
	padding: 32px;
	border: 1px solid rgba(222, 212, 194, 0.78);
	border-radius: 8px;
	background: var(--woodghar-surface);
}

@media (max-width: 1100px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.shop-hero {
		grid-template-columns: 1fr;
		padding-top: 52px;
	}

	.shop-hero h1 {
		font-size: 40px;
	}

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

	.shop-sidebar {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 940;
		width: min(88vw, 380px);
		padding: 72px 22px 22px;
		border-radius: 0;
		transform: translateX(-105%);
		transition: transform 240ms ease;
		overflow-y: auto;
	}

	body.filter-open .shop-sidebar {
		transform: translateX(0);
	}

	body.filter-open::after {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 930;
		background: rgba(17, 21, 16, 0.48);
	}

	.shop-sidebar__close,
	.shop-toolbar .button {
		display: inline-flex;
	}

	.shop-toolbar {
		grid-template-columns: auto 1fr auto;
	}

	.woocommerce .woocommerce-ordering {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.shop-toolbar {
		grid-template-columns: 1fr;
	}

	.shop-view-toggle {
		width: max-content;
	}

	.woocommerce .woocommerce-ordering select {
		min-width: 0;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.shop-results.is-list-view .woodghar-product-card {
		grid-template-columns: 1fr;
	}
}
