/* =========================================================
   GPIPL EV — PREMIUM ALL MODELS ARCHIVE
   File: archive-product.css
========================================================= */

.archive-product {
	overflow: hidden;
	background: var(--color-background);
}

/* ---------- Intro ---------- */
.archive-product__header {
	width: min(1000px, calc(100% - 48px));
	margin-inline: auto;
	padding: clamp(90px, 12vw, 160px) 0 30px;
	text-align: center;
}

.archive-product__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(48px, 7vw, 92px);
	font-weight: var(--font-weight-bold);
	line-height: .92;
	letter-spacing: -.065em;
	color: var(--color-text-primary);
}

.archive-product__subtitle {
	max-width: 700px;
	margin: 22px auto 0;
	font-size: 15px;
	line-height: 1.8;
	color: var(--color-text-secondary);
}

/* ---------- Filters ---------- */
.archive-product__filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	width: min(1180px, calc(100% - 48px));
	margin: 30px auto 0;
}

.archive-product__filter {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0 17px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: transparent;
	font-size: 10px;
	font-weight: 600;
	text-decoration: none;
	color: var(--color-text-secondary);
	transition: all 250ms ease;
}

.archive-product__filter:hover,
.archive-product__filter:focus-visible {
	border-color: var(--color-accent);
	color: var(--color-accent-dark);
	transform: translateY(-2px);
}

.archive-product__filter--active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* ---------- Models grid ---------- */
.archive-product__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 42px 28px;
	width: min(1180px, calc(100% - 48px));
	margin: 80px auto 120px;
}

/* ---------- Model card ---------- */
.archive-product__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-decoration: none;
	transition: transform 600ms cubic-bezier(.16,1,.3,1), opacity 700ms ease;
}

.archive-product__card:hover,
.archive-product__card:focus-visible {
	transform: translateY(-7px);
}

.archive-product__card-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / .88;
	overflow: hidden;
	background:
		radial-gradient(circle at 50% 52%, rgba(0,190,160,.075), transparent 43%),
		linear-gradient(145deg,#f7f9f8,#edf1f0);
}

.archive-product__card-media::after {
	content: "";
	position: absolute;
	left: 18%;
	right: 18%;
	bottom: 24px;
	height: 18px;
	border-radius: 50%;
	background: rgba(0,0,0,.10);
	filter: blur(14px);
	transition: transform 600ms ease;
}

.archive-product__card:hover .archive-product__card-media::after {
	transform: scaleX(1.15);
}

.archive-product__card-image {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 25px 23px rgba(0,0,0,.12));
	transition: transform 750ms cubic-bezier(.16,1,.3,1), filter 600ms ease;
}

.archive-product__card:hover .archive-product__card-image {
	transform: scale(1.06) translateY(-7px);
	filter: drop-shadow(0 34px 28px rgba(0,0,0,.16));
}

.archive-product__card-status {
	position: absolute;
	top: 17px;
	right: 17px;
	z-index: 4;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255,255,255,.80);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--color-text-primary);
}

.archive-product__card-content {
	display: flex;
	flex-direction: column;
	padding: 23px 3px 0;
}

.archive-product__card-category {
	margin-bottom: 7px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--color-accent-dark);
}

.archive-product__card-title {
	font-family: var(--font-family-heading);
	font-size: clamp(28px,3vw,40px);
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	letter-spacing: -.05em;
	color: var(--color-text-primary);
}

.archive-product__card-cta {
	display: inline-flex;
	align-items: center;
	margin-top: 15px;
	font-size: 10px;
	font-weight: 700;
	color: var(--color-text-primary);
}

.archive-product__card-cta::after {
	content: "→";
	margin-left: 9px;
	color: var(--color-accent-dark);
	transition: transform 250ms ease;
}

.archive-product__card:hover .archive-product__card-cta::after {
	transform: translateX(5px);
}

/* ---------- Reveal ---------- */
@media (scripting: enabled) {
	.archive-product__card:not(.is-revealed) {
		opacity: 0;
		transform: translateY(28px);
	}

	.archive-product__card.is-revealed {
		opacity: 1;
		transform: translateY(0);
	}

	.archive-product__card:nth-child(2) { transition-delay: 100ms; }
	.archive-product__card:nth-child(3) { transition-delay: 180ms; }
	.archive-product__card:nth-child(4) { transition-delay: 260ms; }
}

/* ---------- Pagination ---------- */
.archive-product .nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0 auto 90px;
}

.archive-product .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-text-primary);
	text-decoration: none;
}

.archive-product .page-numbers.current {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
	.archive-product__grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}
}

@media (max-width: 600px) {
	.archive-product__header {
		width: calc(100% - 32px);
		padding-top: 75px;
	}

	.archive-product__title {
		font-size: clamp(44px, 14vw, 70px);
	}

	.archive-product__subtitle {
		font-size: 14px;
	}

	.archive-product__filters {
		width: calc(100% - 32px);
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.archive-product__filters::-webkit-scrollbar {
		display: none;
	}

	.archive-product__filter {
		flex: 0 0 auto;
	}

	.archive-product__grid {
		grid-template-columns: 1fr;
		width: calc(100% - 32px);
		margin-top: 55px;
		margin-bottom: 80px;
		gap: 50px;
	}

	.archive-product__card-content {
		padding-top: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.archive-product__card,
	.archive-product__card-image,
	.archive-product__filter {
		transition: none !important;
	}
}
/* =========================================================
   GPIPL EV — CATEGORY PAGE PREMIUM OVERRIDE
   Matches the ACTUAL taxonomy-product-category.php markup
========================================================= */

.tax-product_category .category-page {
	background: #fff;
	overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.tax-product_category .premium-page__hero {
	position: relative;
	min-height: 440px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	overflow: hidden;
	background: #101817;
	text-align: center;
}

.tax-product_category .premium-page__hero-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tax-product_category .premium-page__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(7,18,16,.82),
			rgba(7,18,16,.42) 55%,
			rgba(7,18,16,.22)
		),
		linear-gradient(
			0deg,
			rgba(0,0,0,.35),
			transparent 60%
		);
	pointer-events: none;
}

.tax-product_category .premium-page__hero-content {
	position: relative;
	z-index: 2;
	width: min(900px,100%);
	margin-inline: auto;
	padding: 40px 20px;
	text-align: center;
}

.tax-product_category .premium-page__hero-title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(44px,6vw,76px);
	font-weight: 700;
	line-height: .96;
	letter-spacing: -.06em;
	color: #fff !important;
	text-shadow: 0 8px 35px rgba(0,0,0,.35);
}

.tax-product_category .premium-page__hero-statement {
	max-width: 720px;
	margin: 22px auto 0;
	font-size: 14px;
	line-height: 1.8;
	color: rgba(255,255,255,.88) !important;
}


/* =========================================================
   FILTER NAV
========================================================= */

.tax-product_category .archive-product__filters {
	position: relative;
	z-index: 5;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;

	padding: 18px 24px;

	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,.07);
}

.tax-product_category .archive-product__filter {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 38px;
	padding: 0 18px;

	border: 1px solid rgba(0,0,0,.10);
	border-radius: 999px;

	background: #fff;

	font-size: 10px;
	font-weight: 600;
	letter-spacing: .02em;
	text-decoration: none;

	color: #5f6865;

	transition:
		background .3s ease,
		color .3s ease,
		border-color .3s ease,
		transform .3s ease;
}

.tax-product_category .archive-product__filter:hover,
.tax-product_category .archive-product__filter--active {
	background: #111918;
	border-color: #111918;
	color: #fff;
	transform: translateY(-2px);
}


/* =========================================================
   WHY CHOOSE
   EDITORIAL — NO ROUNDED CARDS
========================================================= */

.tax-product_category .premium-page__section--alt {
	max-width: none;
	padding: 110px 24px;
	background: #f4f7f6;
}

.tax-product_category .premium-page__section--alt > * {
	max-width: 1180px;
	margin-inline: auto;
}

.tax-product_category .premium-page__section-title {
	font-family: var(--font-family-heading);
	font-size: clamp(36px,5vw,58px);
	font-weight: 600;
	line-height: .98;
	letter-spacing: -.055em;
	color: #111918;
}

.tax-product_category .premium-page__section-title--center {
	text-align: center;
	margin-bottom: 55px;
}

.tax-product_category .category-page__benefits-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;

	border-top: 1px solid rgba(0,0,0,.09);
	border-left: 1px solid rgba(0,0,0,.09);
}

.tax-product_category .category-page__benefit {
	min-height: 175px;
	padding: 32px 30px;

	border-right: 1px solid rgba(0,0,0,.09);
	border-bottom: 1px solid rgba(0,0,0,.09);

	background: transparent;

	transition:
		background .3s ease,
		transform .3s ease;
}

.tax-product_category .category-page__benefit:hover {
	background: rgba(255,255,255,.65);
	transform: translateY(-3px);
}

.tax-product_category .category-page__benefit h3 {
	margin: 0 0 12px;

	font-family: var(--font-family-heading);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -.02em;

	color: #111918;
}

.tax-product_category .category-page__benefit p {
	margin: 0;

	font-size: 12px;
	line-height: 1.75;

	color: #68726f;
}


/* =========================================================
   PRODUCT RANGE
========================================================= */

.tax-product_category .premium-page__section:not(.premium-page__section--alt) {
	padding-top: 115px;
	padding-bottom: 115px;
}

.tax-product_category .category-page__products-grid {
	width: min(1180px,calc(100% - 48px));

	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: clamp(45px,6vw,90px);

	margin: 50px auto 0;
}


/* PRODUCT — REMOVE BOX */

.tax-product_category .category-page__product-card {
	position: relative;

	display: flex;
	flex-direction: column;

	border: 0 !important;
	border-radius: 0 !important;

	background: transparent !important;

	box-shadow: none !important;

	overflow: visible;

	transition:
		transform .6s cubic-bezier(.16,1,.3,1);
}

.tax-product_category .category-page__product-card:hover {
	transform: translateY(-6px);
}


/* PRODUCT IMAGE */

.tax-product_category .category-page__product-media {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	min-height: 470px;

	padding: 30px;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 50%,
			rgba(0,190,160,.09),
			transparent 45%
		),
		linear-gradient(
			145deg,
			#f8faf9,
			#edf2f0
		);
}

.tax-product_category .category-page__product-media::after {
	content: "";

	position: absolute;

	left: 18%;
	right: 18%;
	bottom: 28px;

	height: 20px;

	border-radius: 50%;

	background: rgba(0,0,0,.10);

	filter: blur(15px);
}

.tax-product_category .category-page__product-image {
	position: relative;
	z-index: 2;

	display: block;

	width: 100%;
	height: 100%;

	max-height: 420px;

	object-fit: contain;

	filter: drop-shadow(0 25px 25px rgba(0,0,0,.12));

	transition:
		transform .8s cubic-bezier(.16,1,.3,1),
		filter .6s ease;
}

.tax-product_category .category-page__product-card:hover
.category-page__product-image {
	transform: scale(1.045) translateY(-8px);

	filter:
		drop-shadow(0 38px 32px rgba(0,0,0,.17));
}


/* STATUS */

.tax-product_category .category-page__product-status {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 4;

	padding: 7px 12px;

	border-radius: 999px;

	background: rgba(255,255,255,.82);

	box-shadow: 0 8px 25px rgba(0,0,0,.08);

	backdrop-filter: blur(12px);

	font-size: 8px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;

	color: #111918;
}


/* PRODUCT CONTENT */

.tax-product_category .category-page__product-content {
	display: flex;
	flex-direction: column;

	padding: 28px 2px 0;
}

.tax-product_category .category-page__product-name {
	margin: 0;

	font-family: var(--font-family-heading);

	font-size: clamp(32px,4vw,48px);

	font-weight: 600;

	line-height: .95;

	letter-spacing: -.06em;

	color: #111918;

	text-decoration: none;
}

.tax-product_category .category-page__product-stats {
	display: flex;

	margin-top: 22px;

	padding: 15px 0;

	border-top: 1px solid rgba(0,0,0,.08);
	border-bottom: 1px solid rgba(0,0,0,.08);

	font-size: 9px;
	font-weight: 600;
	letter-spacing: .10em;
	text-transform: uppercase;

	color: #747d79;
}

.tax-product_category .category-page__product-stats > * {
	flex: 1;
}

.tax-product_category .category-page__product-desc {
	max-width: 500px;

	margin: 18px 0 0;

	font-size: 12px;
	line-height: 1.8;

	color: #69726f;
}

.tax-product_category .category-page__product-colors {
	display: flex;
	gap: 7px;

	margin-top: 13px;
}

.tax-product_category .category-page__product-color-dot {
	width: 13px;
	height: 13px;

	border: 2px solid #fff;
	border-radius: 50%;

	box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}

.tax-product_category .category-page__product-actions {
	display: flex;
	gap: 10px;

	margin-top: 24px;
}

.tax-product_category .category-page__product-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 43px;
	padding: 0 20px;

	border-radius: 999px;

	font-size: 10px;
	font-weight: 700;

	text-decoration: none;

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}

.tax-product_category .category-page__product-actions
.single-product__cta--primary,
.tax-product_category .category-page__product-actions
.single-product__cta--tertiary {
	background: #00bea0;
	color: #fff;

	box-shadow:
		0 12px 28px rgba(0,190,160,.18);
}

.tax-product_category .category-page__product-actions a:hover {
	transform: translateY(-3px);

	box-shadow:
		0 16px 30px rgba(0,0,0,.12);
}


/* =========================================================
   COMPARISON
========================================================= */

.tax-product_category .category-page__compare-table-wrap {
	width: min(1180px,calc(100% - 48px));

	margin: 50px auto 0;

	overflow-x: auto;
}

.tax-product_category .category-page__compare-table {
	width: 100%;

	border-collapse: collapse;

	background: transparent;

	border: 0;

	box-shadow: none;
}

.tax-product_category .category-page__compare-table th,
.tax-product_category .category-page__compare-table td {
	padding: 20px;

	border-bottom: 1px solid rgba(0,0,0,.07);

	font-size: 12px;
}

.tax-product_category .category-page__compare-table thead th {
	font-family: var(--font-family-heading);

	font-size: 15px;
	font-weight: 600;
}

.tax-product_category .category-page__compare-table thead th:not(:first-child) {
	color: #00bea0;
}

.tax-product_category .category-page__compare-table tbody th {
	text-align: left;

	font-size: 9px;
	font-weight: 600;

	letter-spacing: .10em;
	text-transform: uppercase;

	color: #747d79;
}

.tax-product_category .category-page__compare-cta {
	margin-top: 35px;

	text-align: center;
}

.tax-product_category .category-page__compare-cta a {
	display: inline-flex;
	align-items: center;

	min-height: 45px;

	padding: 0 23px;

	border-radius: 999px;

	background: #00bea0;

	color: #fff;

	font-size: 10px;
	font-weight: 700;

	text-decoration: none;

	box-shadow: 0 12px 28px rgba(0,190,160,.18);
}


/* =========================================================
   COMFORT / EVERYDAY
========================================================= */

.tax-product_category .category-page__comfort,
.tax-product_category .category-page__everyday,
.tax-product_category .category-page__content-section {
	padding: 110px 24px;

	background: #fff;
}

.tax-product_category .category-page__everyday {
	background: #f4f7f6;
}

.tax-product_category .category-page__comfort h2,
.tax-product_category .category-page__everyday h2,
.tax-product_category .category-page__content-section h2 {
	width: min(850px,100%);

	margin: 0 auto 20px;

	font-family: var(--font-family-heading);

	font-size: clamp(38px,5vw,62px);

	font-weight: 600;

	line-height: .98;

	letter-spacing: -.06em;

	color: #111918;
}

.tax-product_category .category-page__comfort p,
.tax-product_category .category-page__everyday p,
.tax-product_category .category-page__content-section p {
	width: min(850px,100%);

	margin: 0 auto;

	font-size: 14px;

	line-height: 1.9;

	color: #69726f;
}


/* =========================================================
   FINAL CTA
========================================================= */

.tax-product_category .category-page__cta,
.tax-product_category .category-page__final-cta {
	position: relative;

	padding: 105px 24px;

	overflow: hidden;

	background: #111918;

	text-align: center;
}

.tax-product_category .category-page__cta::before,
.tax-product_category .category-page__final-cta::before {
	content: "";

	position: absolute;

	width: 600px;
	height: 600px;

	left: 50%;
	bottom: -500px;

	transform: translateX(-50%);

	border: 1px solid rgba(0,190,160,.18);

	border-radius: 50%;
}

.tax-product_category .category-page__cta h2,
.tax-product_category .category-page__final-cta h2 {
	position: relative;
	z-index: 2;

	margin: 0;

	font-family: var(--font-family-heading);

	font-size: clamp(38px,5vw,62px);

	font-weight: 600;

	line-height: .98;

	letter-spacing: -.055em;

	color: #fff;
}

.tax-product_category .category-page__cta a,
.tax-product_category .category-page__final-cta a {
	position: relative;
	z-index: 2;

	display: inline-flex;

	margin-top: 28px;

	min-height: 46px;

	align-items: center;

	padding: 0 24px;

	border-radius: 999px;

	background: #20d875;

	color: #fff;

	font-size: 10px;
	font-weight: 700;

	text-decoration: none;

	transition: transform .3s ease,box-shadow .3s ease;
}

.tax-product_category .category-page__cta a:hover,
.tax-product_category .category-page__final-cta a:hover {
	transform: translateY(-3px);

	box-shadow: 0 16px 35px rgba(32,216,117,.22);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

	.tax-product_category .category-page__benefits-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.tax-product_category .category-page__products-grid {
		grid-template-columns: 1fr;
		max-width: 700px;
	}
}

@media (max-width: 576px) {

	.tax-product_category .premium-page__hero {
		min-height: 360px;
	}

	.tax-product_category .premium-page__hero-title {
		font-size: 40px;
	}

	.tax-product_category .category-page__benefits-grid {
		grid-template-columns: 1fr;
	}

	.tax-product_category .category-page__benefit {
		border-right: 0;
	}

	.tax-product_category .category-page__products-grid {
		grid-template-columns: 1fr;
		width: calc(100% - 32px);
		gap: 60px;
	}

	.tax-product_category .category-page__product-media {
		min-height: 330px;
	}

	.tax-product_category .category-page__compare-table {
		min-width: 650px;
	}
}
/* =========================================================
   GPIPL EV — CATEGORY PAGE FINAL VISUAL POLISH
   Last override — do not place anything below this block
========================================================= */


/* =========================================================
   01 — WHY CHOOSE
   3 × 2 editorial grid
========================================================= */

.tax-product_category .premium-page__section--alt {
	padding: 105px 24px 115px;
	background: #f3f6f5;
}

.tax-product_category .premium-page__section--alt
.premium-page__section-title {
	max-width: 1180px;
	margin: 0 auto 55px;
	text-align: center;
	font-size: clamp(38px,4.8vw,58px);
	line-height: .98;
	letter-spacing: -.055em;
}


/* IMPORTANT: support both possible wrappers */

.tax-product_category .category-page__benefits,
.tax-product_category .category-page__benefits-grid {
	width: min(1180px,100%);
	margin-inline: auto;

	display: grid !important;
	grid-template-columns: repeat(3,minmax(0,1fr)) !important;
	gap: 0 !important;

	border-top: 1px solid rgba(15,25,23,.10);
	border-left: 1px solid rgba(15,25,23,.10);
}


.tax-product_category .category-page__benefit {
	position: relative;

	min-height: 185px;
	padding: 34px 30px !important;

	background: rgba(255,255,255,.38);

	border-right: 1px solid rgba(15,25,23,.10);
	border-bottom: 1px solid rgba(15,25,23,.10);

	transition:
		background .35s ease,
		transform .45s cubic-bezier(.16,1,.3,1);
}


.tax-product_category .category-page__benefit::before {
	content: "";

	display: block;

	width: 30px;
	height: 2px;

	margin-bottom: 25px;

	background: #00bea0;

	transition: width .35s ease;
}


.tax-product_category .category-page__benefit:hover {
	background: #fff;
	transform: translateY(-5px);
}


.tax-product_category .category-page__benefit:hover::before {
	width: 52px;
}


.tax-product_category .category-page__benefit-title,
.tax-product_category .category-page__benefit h3 {
	margin: 0 0 11px;

	font-family: var(--font-family-heading);

	font-size: 18px;
	font-weight: 600;

	line-height: 1.15;
	letter-spacing: -.025em;

	color: #111918;
}


.tax-product_category .category-page__benefit-description,
.tax-product_category .category-page__benefit p {
	max-width: 300px;

	margin: 0;

	font-size: 12px;
	line-height: 1.75;

	color: #69736f;
}


/* =========================================================
   02 — PRODUCT RANGE
========================================================= */

.tax-product_category .premium-page__section:not(.premium-page__section--alt) {
	padding: 115px 24px 125px;
	background: #fff;
}


.tax-product_category .premium-page__section:not(.premium-page__section--alt)
.premium-page__section-title {
	max-width: 1180px;

	margin: 0 auto 55px;

	text-align: center;

	font-size: clamp(38px,4.8vw,58px);
	line-height: .98;
	letter-spacing: -.055em;
}


/* Product grid */

.tax-product_category .category-page__products-grid {
	width: min(1180px,calc(100% - 48px));

	margin: 0 auto;

	display: grid !important;
	grid-template-columns: repeat(2,minmax(0,1fr)) !important;

	gap: clamp(45px,6vw,80px) !important;
}


/* Remove ugly card-box feeling */

.tax-product_category .category-page__product-card {
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;

	overflow: visible !important;

	transform: translateY(0);
}


/* Product image stage */

.tax-product_category .category-page__product-media {
	position: relative;

	min-height: 420px !important;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 30px !important;

	overflow: hidden;

	background:
		radial-gradient(
			circle at 50% 48%,
			rgba(0,190,160,.09),
			transparent 42%
		),
		linear-gradient(
			145deg,
			#f8faf9,
			#edf2f0
		);
}


.tax-product_category .category-page__product-image {
	max-width: 520px !important;
	max-height: 370px !important;

	object-fit: contain;

	filter:
		drop-shadow(0 25px 24px rgba(0,0,0,.12));

	transition:
		transform .8s cubic-bezier(.16,1,.3,1),
		filter .6s ease;
}


.tax-product_category
.category-page__product-card:hover
.category-page__product-image {
	transform: scale(1.045) translateY(-8px);

	filter:
		drop-shadow(0 35px 30px rgba(0,0,0,.16));
}


/* Product content */

.tax-product_category .category-page__product-content {
	padding: 27px 2px 0 !important;
}


.tax-product_category .category-page__product-name {
	display: block;

	margin: 0;

	font-family: var(--font-family-heading);

	font-size: clamp(34px,4vw,48px) !important;

	font-weight: 600;

	line-height: .95;

	letter-spacing: -.06em;

	color: #111918;
}


/* Specs */

.tax-product_category .category-page__product-stats {
	display: grid !important;
	grid-template-columns: 1fr 1fr;

	margin-top: 21px;

	padding: 15px 0;

	border-top: 1px solid rgba(0,0,0,.08);
	border-bottom: 1px solid rgba(0,0,0,.08);
}


.tax-product_category .category-page__product-stats > * {
	font-size: 9px;

	letter-spacing: .11em;

	text-transform: uppercase;

	color: #747d79;
}


.tax-product_category .category-page__product-desc {
	max-width: 500px;

	margin-top: 17px;

	font-size: 12px;

	line-height: 1.8;

	color: #69736f;
}


/* CTA */

.tax-product_category .category-page__product-actions {
	margin-top: 22px;

	display: flex;
	gap: 9px;
}


.tax-product_category .category-page__product-actions a {
	min-height: 43px;

	padding: 0 20px;

	border-radius: 999px;

	font-size: 10px;
	font-weight: 700;

	box-shadow:
		0 10px 25px rgba(0,190,160,.15);

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}


.tax-product_category .category-page__product-actions a:hover {
	transform: translateY(-3px);

	box-shadow:
		0 16px 30px rgba(0,0,0,.12);
}


/* =========================================================
   03 — COMPARISON
========================================================= */

.tax-product_category .category-page__compare-table-wrap {
	width: min(1180px,calc(100% - 48px));

	margin: 45px auto 0;

	overflow-x: auto;
}


.tax-product_category .category-page__compare-table {
	width: 100%;

	border-collapse: collapse;

	border: 0;

	background: transparent;

	box-shadow: none;
}


.tax-product_category .category-page__compare-table th,
.tax-product_category .category-page__compare-table td {
	padding: 20px 24px;

	border-bottom: 1px solid rgba(0,0,0,.07);

	font-size: 12px;

	text-align: center;
}


.tax-product_category .category-page__compare-table thead th {
	font-family: var(--font-family-heading);

	font-size: 15px;

	font-weight: 600;

	color: #111918;
}


.tax-product_category .category-page__compare-table
thead th:not(:first-child) {
	color: #00bea0;
}


.tax-product_category .category-page__compare-table
tbody th {
	text-align: left;

	font-size: 9px;

	font-weight: 600;

	letter-spacing: .11em;

	text-transform: uppercase;

	color: #7a8480;
}


.tax-product_category .category-page__compare-cta {
	margin-top: 32px;

	text-align: center;
}


.tax-product_category .category-page__compare-cta a {
	display: inline-flex;

	min-height: 45px;

	align-items: center;

	padding: 0 23px;

	border-radius: 999px;

	background: #00bea0;

	color: #fff;

	font-size: 10px;
	font-weight: 700;

	text-decoration: none;

	box-shadow:
		0 12px 28px rgba(0,190,160,.18);

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}


.tax-product_category .category-page__compare-cta a:hover {
	transform: translateY(-3px);

	box-shadow:
		0 18px 35px rgba(0,190,160,.22);
}


/* =========================================================
   04 — COMFORT / EVERYDAY
   Automotive editorial layout
========================================================= */

.tax-product_category .category-page__comfort {
	width: 100%;

	padding: 115px 24px;

	background: #fff;
}


.tax-product_category .category-page__comfort-content {
	width: min(850px,100%);

	margin-left: auto;
	margin-right: auto;
}


.tax-product_category .category-page__comfort-title {
	margin: 0;

	font-family: var(--font-family-heading);

	font-size: clamp(42px,5vw,64px);

	font-weight: 600;

	line-height: .96;

	letter-spacing: -.06em;

	color: #111918;
}


.tax-product_category .category-page__comfort-description {
	max-width: 720px;

	margin-top: 23px;

	font-size: 13px;

	line-height: 1.9;

	color: #69736f;
}


/* EVERYDAY */

.tax-product_category .category-page__everyday {
	width: 100%;

	padding: 115px 24px;

	background: #f3f6f5;
}


.tax-product_category .category-page__everyday-content {
	width: min(850px,100%);

	margin-inline: auto;
}


.tax-product_category .category-page__everyday-title {
	margin: 0;

	font-family: var(--font-family-heading);

	font-size: clamp(42px,5vw,64px);

	font-weight: 600;

	line-height: .96;

	letter-spacing: -.06em;

	color: #111918;
}


.tax-product_category .category-page__everyday-description {
	max-width: 720px;

	margin-top: 23px;

	font-size: 13px;

	line-height: 1.9;

	color: #69736f;
}


/* =========================================================
   05 — FINAL CTA
========================================================= */

.tax-product_category .category-page__cta {
	position: relative;

	padding: 105px 24px;

	overflow: hidden;

	background: #111918;

	text-align: center;
}


.tax-product_category .category-page__cta-title {
	position: relative;
	z-index: 2;

	margin: 0;

	font-family: var(--font-family-heading);

	font-size: clamp(40px,5vw,62px);

	font-weight: 600;

	line-height: .96;

	letter-spacing: -.055em;

	color: #fff;
}


.tax-product_category .category-page__cta a {
	position: relative;
	z-index: 2;

	display: inline-flex;

	margin-top: 28px;

	min-height: 46px;

	align-items: center;

	padding: 0 24px;

	border-radius: 999px;

	background: #20d875;

	color: #fff;

	font-size: 10px;
	font-weight: 700;

	text-decoration: none;

	box-shadow:
		0 12px 28px rgba(32,216,117,.15);

	transition:
		transform .3s ease,
		box-shadow .3s ease;
}


.tax-product_category .category-page__cta a:hover {
	transform: translateY(-3px);

	box-shadow:
		0 18px 35px rgba(32,216,117,.25);
}


/* =========================================================
   06 — TABLET
========================================================= */

@media (max-width: 900px) {

	.tax-product_category .category-page__benefits,
	.tax-product_category .category-page__benefits-grid {
		grid-template-columns: repeat(2,1fr) !important;
	}

	.tax-product_category .category-page__products-grid {
		grid-template-columns: 1fr !important;
		max-width: 700px;
	}

}


/* =========================================================
   07 — MOBILE
========================================================= */

@media (max-width: 576px) {

	.tax-product_category .premium-page__section--alt {
		padding: 75px 18px;
	}

	.tax-product_category .category-page__benefits,
	.tax-product_category .category-page__benefits-grid {
		grid-template-columns: 1fr !important;
	}

	.tax-product_category .category-page__benefit {
		min-height: auto;
		padding: 30px 24px !important;
	}

	.tax-product_category .premium-page__section:not(.premium-page__section--alt) {
		padding: 80px 18px;
	}

	.tax-product_category .category-page__products-grid {
		width: 100%;
		gap: 60px !important;
	}

	.tax-product_category .category-page__product-media {
		min-height: 330px !important;
	}

	.tax-product_category .category-page__product-image {
		max-height: 300px !important;
	}

	.tax-product_category .category-page__comfort,
	.tax-product_category .category-page__everyday {
		padding: 80px 22px;
	}

}