/**
 * plp.css — PLP / Category archive route-scoped styles.
 *
 * Loaded only on shop, product-category, and product-tag pages
 * (see includes/enqueue.php). Depends on core.css for design tokens.
 *
 * @package woodmart-child
 */

/* ============================================================ *
 * 0. WoodMart content-wrapper reset (mirrors home.css §1)
 * ============================================================ */
.gp-plp-template .wd-page-content,
.gp-plp-template .wd-content-layout {
	max-width: 100% !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
	display: block !important;
	float: none !important;
}

.gp-plp-wrap {
	background: var(--gp-paper);
}

/* ============================================================ *
 * 1. Category / shop hero header
 * ============================================================ */
.gp-plp-hero {
	background: var(--gp-paper);
	padding: 32px 0 36px;
	border-bottom: 1px solid var(--gp-line);
}

.gp-plp-hero .woocommerce-breadcrumb {
	font-family: var(--gp-mono);
	font-size: 11px;
	letter-spacing: .08em;
	color: var(--gp-ink-soft);
	margin: 0 0 14px;
	padding: 0;
}

.gp-plp-hero .woocommerce-breadcrumb a {
	color: var(--gp-sea);
	text-decoration: none;
}

.gp-plp-hero .woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}

.gp-plp-hero__title {
	font-family: var(--gp-serif);
	font-size: var(--gp-h2);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--gp-ink);
	margin: 0 0 12px;
}

.gp-plp-hero__desc {
	font-family: var(--gp-sans);
	font-size: 15px;
	line-height: 1.65;
	color: var(--gp-ink-soft);
	max-width: 640px;
	margin: 0;
}

/* ============================================================ *
 * 2. Layout: sidebar + main
 * ============================================================ */

/* Mobile filter trigger (hidden on desktop) */
/* Hidden on desktop — extra specificity so it beats the `.gp-btn` display. */
.gp-plp-wrap .gp-plp-filter-trigger {
	display: none;
	margin: 20px 0 0;
}

.gp-plp-body {
	display: grid;
	grid-template-columns: 248px 1fr;
	align-items: start;
	gap: 0 40px;
	padding-top: 40px;
	padding-bottom: 80px;
}

.gp-plp-sidebar {
	grid-column: 1;
	position: sticky;
	top: 24px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	scrollbar-width: thin;
}

.gp-plp-main {
	grid-column: 2;
	min-width: 0;
}

/* ============================================================ *
 * 3. Filters sidebar
 * ============================================================ */
.gp-filters {
	background: var(--gp-surface);
	border: 1px solid var(--gp-line);
	border-radius: 14px;
	padding: 24px 20px;
}

.gp-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.gp-filters__title {
	font-family: var(--gp-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--gp-ink);
	margin: 0;
}

.gp-filters__clear {
	font-family: var(--gp-mono);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gp-sea);
	text-decoration: none;
	transition: opacity .15s;
}

.gp-filters__clear:hover { opacity: .7; }

/* Collapsible sections */
.gp-filters__section {
	border-top: 1px solid var(--gp-line);
}

/* Scoped so the flex layout beats WoodMart's global button centering
   (base.css `:is(button,…){justify-content:center;text-align:center}`). */
.gp-filters .gp-filters__section-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	gap: 8px;
	background: none;
	border: 0;
	padding: 14px 0;
	cursor: pointer;
	font-family: var(--gp-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gp-ink);
}

/* +/− indicator drawn from two bars so it animates cleanly */
.gp-filters__section-icon {
	position: relative;
	width: 12px;
	height: 12px;
	flex: none;
}

.gp-filters__section-icon::before,
.gp-filters__section-icon::after {
	content: "";
	position: absolute;
	background: var(--gp-sea);
	transition: opacity .15s, transform .15s var(--gp-ease);
}

.gp-filters__section-icon::before { /* horizontal bar */
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
}

.gp-filters__section-icon::after { /* vertical bar — hidden when open */
	left: 50%;
	top: 0;
	width: 2px;
	height: 100%;
	transform: translateX(-50%);
}

.gp-filters__section-toggle[aria-expanded="true"] .gp-filters__section-icon::after {
	opacity: 0;
	transform: translateX(-50%) rotate(90deg);
}

.gp-filters__section-body {
	padding-bottom: 16px;
}

/* Price inputs */
.gp-filters__price-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gp-filters__price-input {
	flex: 1;
	min-width: 0;
	font-family: var(--gp-sans);
	font-size: 14px;
	color: var(--gp-ink);
	background: var(--gp-cream);
	border: 1px solid var(--gp-line);
	border-radius: 8px;
	padding: 8px 10px;
	outline: none;
	-moz-appearance: textfield;
	transition: border-color .15s;
}

.gp-filters__price-input::-webkit-outer-spin-button,
.gp-filters__price-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.gp-filters__price-input:focus { border-color: var(--gp-sea); }

.gp-filters__price-sep {
	font-size: 12px;
	color: var(--gp-ink-soft);
	flex: none;
}

.gp-filters__price-go {
	flex: none;
	font-family: var(--gp-mono);
	font-size: 11px;
	letter-spacing: .06em;
	color: #fff;
	background: var(--gp-sea);
	border: 0;
	border-radius: 8px;
	padding: 8px 12px;
	cursor: pointer;
	transition: background .15s;
}

.gp-filters__price-go:hover { background: var(--gp-sea-deep); }

/* Dual-handle price slider */
.gp-price-slider { padding: 6px 0 2px; }

.gp-price-slider__track {
	position: relative;
	height: 4px;
	/* Side inset ≥ handle radius so both end handles stay fully inside. */
	margin: 10px 9px 0;
	background: var(--gp-line);
	border-radius: 2px;
}

.gp-price-slider__fill {
	position: absolute;
	top: 0;
	height: 100%;
	background: var(--gp-sea);
	border-radius: 2px;
}

/* Scoped under the parent so it out-specifies WoodMart's global button sizing
   (base.css `:is(button,…){min-height:--btn-height}`, which loads after this). */
.gp-price-slider .gp-price-slider__handle {
	position: absolute;
	top: 50%;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	min-width: 0;
	min-height: 0;
	padding: 0;
	border-radius: 50%;
	background: var(--gp-surface);
	border: 2px solid var(--gp-sea);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .18);
	transform: translate(-50%, -50%);
	cursor: grab;
	touch-action: none;
}

.gp-price-slider .gp-price-slider__handle:active { cursor: grabbing; }
.gp-price-slider .gp-price-slider__handle:focus-visible { outline: 2px solid var(--gp-sea); outline-offset: 2px; }

.gp-price-slider__readout {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	font-family: var(--gp-mono);
	font-size: 11px;
	color: var(--gp-ink);
}

/* Attribute chips (weight / size / volume) — uniform grid cells */
.gp-filters__chips {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
}

.gp-filters__chip {
	font-family: var(--gp-mono);
	font-size: 11px;
	letter-spacing: .02em;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--gp-ink);
	text-decoration: none;
	background: var(--gp-surface);
	border: 1px solid var(--gp-line);
	border-radius: 4px;
	padding: 6px 4px;
	transition: background .12s, border-color .12s, color .12s;
}

.gp-filters__chip:hover { border-color: var(--gp-sea); }

.gp-filters__chip.is-active {
	background: var(--gp-sea);
	border-color: var(--gp-sea);
	color: #fff;
}

/* Checkbox-style rows (producer, availability) */
.gp-filters__check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;

    li {
        margin-bottom: 0;
    }
}

.gp-filters__check-row {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: var(--gp-sans);
	font-size: 13px;
	color: var(--gp-ink);
	text-decoration: none;
	padding: 5px 0;
}

.gp-filters__check-box {
	flex: none;
	width: 16px;
	height: 16px;
	border: 1.5px solid var(--gp-line);
	border-radius: 3px;
	background: var(--gp-surface);
	position: relative;
	transition: background .12s, border-color .12s;
}

.gp-filters__check-row:hover .gp-filters__check-box { border-color: var(--gp-sea); }

.gp-filters__check-row.is-active .gp-filters__check-box {
	background: var(--gp-sea);
	border-color: var(--gp-sea);
}

.gp-filters__check-row.is-active .gp-filters__check-box::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 1px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.gp-filters__check-label { flex: 1; }

.gp-filters__check-count {
	font-family: var(--gp-mono);
	font-size: 11px;
	color: var(--gp-ink-soft);
}

/* Subcategory list */
.gp-filters__cat-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;

    li {
       margin-bottom: 0;
    }
}

.gp-filters__cat-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--gp-sans);
	font-size: 13px;
	color: var(--gp-ink);
	text-decoration: none;
	padding: 4px 8px;
	border-radius: 6px;
	transition: background .15s var(--gp-ease), color .15s;
}

.gp-filters__cat-link:hover { background: var(--gp-cream); }

.gp-filters__cat-link.is-active {
	background: var(--gp-cream);
	color: var(--gp-sea);
	font-weight: 500;
}

.gp-filters__cat-count {
	font-family: var(--gp-mono);
	font-size: 11px;
	color: var(--gp-ink-soft);
}

/* Active-filters summary — inline in the toolbar, left-aligned */
.gp-plp-active {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.gp-plp-active__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--gp-sans);
	font-size: 12px;
	color: var(--gp-ink);
	text-decoration: none;
	background: var(--gp-surface);
	border: 1px solid var(--gp-line);
	border-radius: 999px;
	padding: 3px 10px;
	transition: border-color .12s;
}

.gp-plp-active__chip:hover { border-color: var(--gp-sea); }

.gp-plp-active__x {
	font-size: 14px;
	line-height: 1;
	color: var(--gp-ink-soft);
}

.gp-plp-active__reset {
	font-family: var(--gp-mono);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gp-sea);
	text-decoration: none;
	margin-left: 4px;
}

.gp-plp-active__reset:hover { opacity: .7; }

/* ============================================================ *
 * 4. Toolbar
 * ============================================================ */
.gp-plp-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-bottom: 24px;
}

.gp-plp-toolbar__left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 14px;
	min-width: 0;
}

.gp-plp-count,
.gp-plp-count .woocommerce-result-count {
	font-family: var(--gp-mono);
	font-size: 12px;
	letter-spacing: .04em;
	color: var(--gp-ink-soft);
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.gp-plp-toolbar__right {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* Sort pills */
.gp-plp-sort {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.gp-plp-sort__label {
	font-family: var(--gp-sans);
	font-size: 12px;
	font-weight: 600;
	color: var(--gp-ink-soft);
	margin-right: 2px;
}

.gp-plp-sort__pill {
	font-family: var(--gp-sans);
	font-size: 12px;
	color: var(--gp-ink-soft);
	text-decoration: none;
	border: 1px solid var(--gp-line);
	border-radius: 4px;
	padding: 5px 11px;
	transition: border-color .12s, color .12s, background .12s;
}

.gp-plp-sort__pill:hover { border-color: var(--gp-sea); color: var(--gp-ink); }

.gp-plp-sort__pill.is-active {
	color: var(--gp-sea);
	border-color: var(--gp-sea);
	background: color-mix(in srgb, var(--gp-sea) 8%, transparent);
}

/* ============================================================ *
 * 5. Density toggle
 * ============================================================ */
.gp-density-toggle {
	display: flex;
	gap: 4px;
}

/* Scoped so it out-specifies WoodMart's global button min-height/width. */
.gp-density-toggle .gp-density-toggle__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 32px;
	height: 32px;
	min-width: 0;
	min-height: 0;
	padding: 0;
	background: var(--gp-surface);
	border: 1px solid var(--gp-line);
	border-radius: 4px;
	cursor: pointer;
	color: var(--gp-ink-soft);
	transition: border-color .15s, color .15s;
}

.gp-density-toggle__btn svg { fill: currentColor; }

.gp-density-toggle__btn:hover { border-color: var(--gp-sea); }

.gp-density-toggle__btn.is-active {
	border-color: var(--gp-sea);
	color: var(--gp-sea);
}

/* ============================================================ *
 * 6. Product grid
 * ============================================================ */
.gp-plp-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.gp-plp-grid[data-density="compact"] {
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.gp-plp-grid__item { min-width: 0; }

/* ============================================================ *
 * 7. Product card
 * ============================================================ */
.gp-card {
	background: var(--gp-surface);
	border: 1px solid var(--gp-line);
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: box-shadow .2s var(--gp-ease), transform .2s var(--gp-ease);
}

.gp-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
	transform: translateY(-3px);
}

/* Image */
.gp-card__img-link {
	display: block;
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--gp-cream);
	flex: none;
}

.gp-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .32s var(--gp-ease);
}

.gp-card:hover .gp-card__img { transform: scale(1.04); }

.gp-card__no-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: var(--gp-line);
}

/* Badges */
.gp-card__badges {
	position: absolute;
	top: 20px;
	left: 40px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	z-index: 1;
}

.gp-badge {
	display: inline-block;
	font-family: var(--gp-mono);
	font-size: 9px;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 4px;
	line-height: 1;
}

.gp-badge--sale { background: var(--gp-sun);  color: var(--gp-ink); }
.gp-badge--new  { background: var(--gp-sea);  color: #fff; }
.gp-badge--feat { background: var(--gp-ink);  color: var(--gp-sun); }

/* Card body */
.gp-card__body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.gp-card__meta {
	font-family: var(--gp-mono);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gp-ink-soft);
	margin: 0;
}

.gp-card__meta a {
	color: inherit;
	text-decoration: none;
}

.gp-card__name {
	font-family: var(--gp-serif);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.35;
	margin: 0;
	flex: 1;
}

.gp-card__name a { color: var(--gp-ink); text-decoration: none; }
.gp-card__name a:hover { color: var(--gp-sea); }

/* Variant chips */
.gp-card__opts-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 2px 0;
}

.gp-card__opts { margin: 0; }

.gp-card__opts-label {
	display: block;
	font-family: var(--gp-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--gp-ink-soft);
	margin-bottom: 6px;
}

.gp-card__opts-list {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.gp-card__opt {
	padding: 5px 10px;
	font-family: var(--gp-mono);
	font-size: 11px;
	letter-spacing: .04em;
	line-height: 1;
	color: var(--gp-ink);
	background: var(--gp-surface);
	border: 1px solid var(--gp-line);
	border-radius: 3px;
	cursor: pointer;
	transition: background .12s var(--gp-ease), color .12s var(--gp-ease), border-color .12s var(--gp-ease);
}

.gp-card__opt:hover { border-color: var(--gp-sea); }

.gp-card__opt.is-active {
	background: var(--gp-sea);
	color: #fff;
	border-color: var(--gp-sea);
}

.gp-card__opt.is-oos {
	opacity: .45;
	cursor: not-allowed;
	text-decoration: line-through;
}

.gp-card__opt.is-oos:hover { border-color: var(--gp-line); }

/* Add-to-cart disabled when no valid / in-stock variation is selected */
.gp-card__atc.is-disabled {
	opacity: .5;
	pointer-events: none;
}

/* Price */
.gp-card__price {
	font-family: var(--gp-sans);
	font-size: 15px;
	font-weight: 700;
	color: var(--gp-ink);
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

/* WC wraps variation prices in a `.price` span coloured --wd-primary-color by
   the parent theme, and its `.price .amount { color: inherit }` pulls that green
   into the amount. Set the child ink colour explicitly (not `inherit`, which
   would re-inherit the green from the `.price` wrapper) at a depth that beats
   the parent's 0,2,0 selector. */
.gp-card__price .woocommerce-Price-amount,
.gp-card__price .price,
.gp-card__price .price .amount { color: var(--gp-ink); font-weight: inherit; }

.gp-card__price del .woocommerce-Price-amount {
	font-size: 12px;
	font-weight: 400;
	color: var(--gp-ink-soft);
}

.gp-card__price ins { text-decoration: none; }

/* Target the amount directly — the parent's `.price .amount` overrides a colour
   set only on the `ins` wrapper. */
.gp-card__price ins .amount { color: var(--gp-sea-deep); }

/* Footer */
.gp-card__footer { margin-top: auto; padding-top: 8px; }

.gp-card__atc {
	width: 100%;
	justify-content: center;
	padding: 10px 14px;
	font-size: 13px;
}

.gp-card__out-of-stock {
	display: block;
	font-family: var(--gp-mono);
	font-size: 11px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gp-ink-soft);
	text-align: center;
	padding: 10px 0;
}

/* Compact density tweaks */
.gp-plp-grid[data-density="compact"] .gp-card__body {
	padding: 10px 10px 12px;
	gap: 4px;
}

.gp-plp-grid[data-density="compact"] .gp-card__name { font-size: 13px; }
.gp-plp-grid[data-density="compact"] .gp-card__price { font-size: 13px; }

.gp-plp-grid[data-density="compact"] .gp-card__atc {
	padding: 8px 10px;
	font-size: 12px;
}

.gp-plp-grid[data-density="compact"] .gp-card__opt {
	padding: 4px 8px;
	font-size: 10px;
}

/* ============================================================ *
 * 8. Empty state
 * ============================================================ */
.gp-plp-empty {
	text-align: center;
	padding: 80px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.gp-plp-empty p {
	font-family: var(--gp-sans);
	font-size: 16px;
	color: var(--gp-ink-soft);
	margin: 0;
}

/* ============================================================ *
 * 9. WC Pagination
 * ============================================================ */
.gp-plp-main .woocommerce-pagination {
	margin-top: 48px;
}

.gp-plp-main .woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.gp-plp-main .woocommerce-pagination ul li { margin: 0; }

.gp-plp-main .woocommerce-pagination ul .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 10px;
	font-family: var(--gp-sans);
	font-size: 14px;
	font-weight: 500;
	color: var(--gp-ink);
	text-decoration: none;
	border: 1px solid var(--gp-line);
	background: var(--gp-surface);
	transition: background .15s var(--gp-ease), color .15s, border-color .15s;
}

.gp-plp-main .woocommerce-pagination ul .page-numbers:hover {
	background: var(--gp-cream);
	border-color: var(--gp-sea);
	color: var(--gp-sea);
}

.gp-plp-main .woocommerce-pagination ul .page-numbers.current {
	background: var(--gp-ink);
	border-color: var(--gp-ink);
	color: #fff;
}

/* ============================================================ *
 * 10. Mobile overlay (for filter drawer)
 * ============================================================ */
.gp-plp-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(19, 41, 61, .45);
	z-index: calc(var(--gp-z-drawer) - 1);
}

/* ============================================================ *
 * 11. Responsive
 * ============================================================ */
@media (max-width: 1100px) {
	.gp-plp-body { grid-template-columns: 210px 1fr; gap: 0 28px; }

	.gp-plp-grid                              { grid-template-columns: repeat(2, 1fr); }
	.gp-plp-grid[data-density="compact"]      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
	/* Show filter trigger, hide sticky sidebar */
	.gp-plp-wrap .gp-plp-filter-trigger { display: inline-flex; }

	.gp-plp-body {
		grid-template-columns: 1fr;
		padding-top: 16px;
	}

	/* Sidebar becomes an off-canvas drawer */
	.gp-plp-sidebar {
		position: fixed;
		inset: 0 auto 0 0;
		width: min(300px, 85vw);
		max-height: 100%;
		z-index: var(--gp-z-drawer);
		transform: translateX(-110%);
		transition: transform .28s var(--gp-ease);
		border-radius: 0;
		box-shadow: 4px 0 24px rgba(0, 0, 0, .15);
		background: var(--gp-surface);
		overflow-y: auto;
	}

	.gp-plp-sidebar.is-open { transform: translateX(0); }

	.gp-filters {
		border: none;
		border-radius: 0;
		min-height: 100%;
		padding: 28px 20px;
	}

	.gp-plp-main { grid-column: 1; }

	.gp-plp-grid,
	.gp-plp-grid[data-density="compact"] {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

@media (max-width: 480px) {
	.gp-plp-hero__title { font-size: clamp(28px, 8vw, 40px); }

	.gp-plp-grid,
	.gp-plp-grid[data-density="compact"] {
		grid-template-columns: 1fr;
	}

	.gp-density-toggle { display: none; }
}
