/*
 * PLP list card and product page redesign (PCs and laptops).
 * Scoped under body.onpoint-plp-list and body.onpoint-pdp.
 * Values from _docs/new-plp-and-pdp-design/mockups.
 */

body.onpoint-plp-list,
body.onpoint-pdp,
body.onpoint-home-tiles {
	--onpoint-bg: #131313;
	--onpoint-surface: #1c1c20;
	--onpoint-border: #3a3a42;
	--onpoint-divider: #2e2e35;
	--onpoint-text: #ffffff;
	--onpoint-text-muted: #a1a1aa;
	--onpoint-label: #8e8e96;
	--onpoint-accent: #8303a6;      /* nav purple, buttons, badges */
	--onpoint-esto: #f25a3c;        /* ESTO and savings text */
	--onpoint-savings-bg: #c93a1d;  /* PDP savings tag */
	--onpoint-ok: #3dbb4a;          /* stock and free delivery */
	--onpoint-radius-card: 14px;
	--onpoint-radius-tile: 6px;
	--onpoint-radius-button: 8px;
}

/* ==========================================================================
   Shared: spec grid, delivery, prices
   ========================================================================== */

.onpoint-specs {
	margin: 0;
	padding: 0;
}

.onpoint-specs__item {
	position: relative;
	min-width: 0;
}

.onpoint-specs__label,
.onpoint-specs__value {
	margin: 0;
	padding: 0;
	font-weight: 400;
	overflow-wrap: anywhere;
}

.onpoint-specs__label {
	color: var(--onpoint-label);
}

.onpoint-specs__label .onpoint-icon {
	position: absolute;
	left: 0;
	color: var(--onpoint-label);
}

.onpoint-specs__value {
	color: var(--onpoint-text);
}

/* Label above value, 2 columns filled column by column (PLP, PDP mobile). */
.onpoint-specs--plp {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(var(--onpoint-spec-rows, 3), auto);
	grid-auto-flow: column;
	column-gap: 24px;
}

.onpoint-specs--plp .onpoint-specs__item {
	padding: 8px 0 8px 32px;
	border-top: 1px solid var(--onpoint-divider);
}

.onpoint-specs--plp .onpoint-specs__item--first {
	border-top: 0;
}

.onpoint-specs--plp .onpoint-icon {
	top: 10px;
}

.onpoint-specs--plp .onpoint-specs__label {
	font-size: 14px;
	line-height: 20px;
}

.onpoint-specs--plp .onpoint-specs__value {
	font-size: 16.5px;
	line-height: 22px;
}

.onpoint-delivery {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.onpoint-delivery__text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	color: var(--onpoint-text);
}

.onpoint-delivery__text .onpoint-icon {
	flex-shrink: 0;
}

.onpoint-delivery__text--free {
	color: var(--onpoint-ok);
}

.onpoint-delivery__lead {
	color: var(--onpoint-text-muted);
}

.onpoint-price {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	text-align: left;
}

.onpoint-price__old {
	color: #9a9aa2;
	font-weight: 400;
	text-decoration: line-through;
}

.onpoint-price__old .amount {
	color: inherit;
}

.onpoint-price__row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.onpoint-price__current {
	font-weight: 700;
	line-height: 1.1;
	color: var(--onpoint-text);
}

.onpoint-price__from {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--onpoint-text-muted);
}

.onpoint-price__savings {
	display: inline-flex;
	flex-direction: column;
	font-weight: 500;
	line-height: 1.2;
	color: var(--onpoint-esto);
}

.onpoint-price__savings-amount {
	display: block;
}

/* ==========================================================================
   PLP list card
   ========================================================================== */

body.onpoint-plp-list ul.products {
	/* The card layout follows the width of the list, not the viewport:
	   the filter sidebar takes a varying share of the page. */
	container: onpoint-plp / inline-size;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 22px;
	width: 100%;
	margin: 0 0 2rem;
	padding: 0;
}

body.onpoint-plp-list ul.products::before,
body.onpoint-plp-list ul.products::after {
	content: none;
}

body.onpoint-plp-list ul.products li.product.onpoint-card {
	position: relative;
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr) 314px;
	grid-template-areas: "media body buy";
	align-items: stretch;
	float: none;
	clear: none;
	width: 100%;
	height: auto;
	min-height: 245px;
	margin: 0;
	padding: 17px;
	box-sizing: border-box;
	background: var(--onpoint-surface);
	border: 1px solid var(--onpoint-border);
	border-radius: var(--onpoint-radius-card);
	color: var(--onpoint-text);
	text-align: left;
	transition: border-color 0.15s;
}

body.onpoint-plp-list ul.products li.product.onpoint-card:hover,
body.onpoint-plp-list ul.products li.product.onpoint-card:focus-within {
	border-color: #55555f;
}

body.onpoint-plp-list ul.products li.product.onpoint-card::before {
	content: none !important;
	display: none !important;
}

body.onpoint-plp-list ul.products li.product.onpoint-card:hover img {
	transform: none;
}

/* Photo tile */
body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__media {
	grid-area: media;
	position: relative;
	display: block;
	width: 210px;
	height: 210px;
	overflow: hidden;
	border-radius: var(--onpoint-radius-tile);
	background: #ffffff;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.onpoint-plp-list ul.products li.onpoint-card .onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 4px 10px !important;
	border-radius: var(--onpoint-radius-tile);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-size: 15px !important;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
}

/* CommerceKit wishlist heart, top right of the photo tile */
body.onpoint-plp-list ul.products li.onpoint-card .commercekit-wishlist.mini {
	top: 25px;
	right: auto;
	left: 189px; /* 17px padding + 210px tile - 30px heart - 8px */
	z-index: 3;
}

body.onpoint-plp-list ul.products li.onpoint-card:focus-within .commercekit-wishlist.mini {
	opacity: 1;
}

/* Title and specs */
body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__body {
	grid-area: body;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
	padding: 0 20px;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__title {
	margin: 0;
	padding: 0;
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
	text-align: left;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__title a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	color: var(--onpoint-text) !important;
	text-decoration: none;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__title a:hover {
	color: #e0c2ee !important;
}

/* Buy column */
body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy {
	grid-area: buy;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	min-width: 0;
	padding: 2px 0 0 20px;
	border-left: 1px solid var(--onpoint-border);
	text-align: center;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery__text {
	font-size: 18px;
	line-height: 1.3;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery__lead {
	font-size: 16px;
	line-height: 1.3;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__price {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price {
	margin: 0;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__old {
	font-size: 20px;
	line-height: 1.2;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__current {
	font-size: 36px;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__savings {
	font-size: 14px;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__esto {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	color: var(--onpoint-esto);
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__esto .amount {
	color: inherit;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy .button {
	position: static;
	display: flex !important;
	align-items: center;
	justify-content: center;
	align-self: stretch;
	width: auto;
	height: 46px;
	margin: 0;
	padding: 0 16px;
	border-radius: var(--onpoint-radius-button);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	opacity: 1;
	text-decoration: none;
	transition: background-color 0.15s;
}

body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy .button:hover {
	background-color: #9a1cc0 !important;
}

body.onpoint-plp-list ul.products li.onpoint-card a:focus-visible,
body.onpoint-plp-list ul.products li.onpoint-card .button:focus-visible {
	outline: 2px solid #e0c2ee;
	outline-offset: 2px;
}

/* Narrower list (about 1280 px pages): smaller photo and buy column. */
@container onpoint-plp (max-width: 939px) {
	body.onpoint-plp-list ul.products li.product.onpoint-card {
		grid-template-columns: 180px minmax(0, 1fr) 260px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__media {
		width: 180px;
		height: 180px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .commercekit-wishlist.mini {
		left: 159px; /* 17px + 180px - 30px - 8px */
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__title {
		font-size: 20px;
		line-height: 27px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__current {
		font-size: 32px;
	}
}

/* Tablet-width list: photo + body, buy block below as a row. */
@container onpoint-plp (max-width: 859px) {
	body.onpoint-plp-list ul.products li.product.onpoint-card {
		grid-template-columns: 160px minmax(0, 1fr);
		grid-template-areas:
			"media body"
			"buy buy";
		row-gap: 16px;
		min-height: 0;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__media {
		width: 160px;
		height: 160px;
	}

	/* Bottom right of the tile, clear of the sale badge. */
	body.onpoint-plp-list ul.products li.onpoint-card .commercekit-wishlist.mini {
		top: 139px; /* 17px + 160px - 30px - 8px */
		left: 139px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__body {
		padding: 0 0 0 20px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy {
		flex-direction: row;
		align-items: center;
		gap: 20px;
		padding: 16px 0 0;
		border-left: 0;
		border-top: 1px solid var(--onpoint-border);
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery {
		align-items: flex-start;
		text-align: left;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy .button {
		align-self: center;
		flex: 0 0 220px;
	}
}

/* Phone-width list (mockups/plp-mobile-labelled.html). */
@container onpoint-plp (max-width: 559px) {
	body.onpoint-plp-list ul.products li.product.onpoint-card {
		grid-template-columns: 112px minmax(0, 1fr);
		grid-template-areas:
			"media title"
			"specs specs"
			"buy buy";
		align-items: start;
		gap: 12px;
		padding: 12px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__body {
		display: contents;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__media {
		width: 112px;
		height: 112px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onsale {
		top: 6px;
		left: 6px;
		padding: 3px 7px !important;
		border-radius: 5px;
		font-size: 12px !important;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .commercekit-wishlist.mini {
		top: 90px; /* 12px + 112px - 30px - 4px */
		left: 90px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__title {
		grid-area: title;
		font-size: 16px;
		line-height: 22px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__title a {
		-webkit-line-clamp: 4;
		line-clamp: 4;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-specs {
		grid-area: specs;
		column-gap: 0;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy {
		flex-direction: column;
		gap: 10px;
		padding: 14px 0 0;
		border-top-color: var(--onpoint-divider);
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery {
		align-items: center;
		gap: 2px;
		text-align: center;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery__text {
		gap: 8px;
		font-size: 16px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery__text .onpoint-icon {
		width: 22px;
		height: 22px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-delivery__lead {
		font-size: 13.5px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__price {
		gap: 10px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__old {
		font-size: 16px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__row {
		gap: 8px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__current {
		font-size: 30px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-price__savings {
		font-size: 12.5px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__esto {
		font-size: 15px;
	}

	body.onpoint-plp-list ul.products li.onpoint-card .onpoint-card__buy .button {
		flex: 0 0 auto;
		align-self: stretch;
		font-size: 17px;
	}

	/* Spec cells, mobile style. */
	.onpoint-specs--plp .onpoint-specs__item {
		padding: 8px 8px 8px 28px;
	}

	.onpoint-specs--plp .onpoint-specs__item--col2 {
		padding: 8px 0 8px 40px;
		border-left: 1px solid var(--onpoint-divider);
	}

	.onpoint-specs--plp .onpoint-icon {
		width: 20px;
		height: 20px;
	}

	.onpoint-specs--plp .onpoint-specs__item--col2 .onpoint-icon {
		left: 12px;
	}

	.onpoint-specs--plp .onpoint-specs__label {
		font-size: 12.5px;
		line-height: 17px;
	}

	.onpoint-specs--plp .onpoint-specs__value {
		font-size: 14px;
		line-height: 19px;
	}
}

@media (max-width: 767px) {
	body.onpoint-plp-list ul.products {
		gap: 16px;
	}
}

@media (max-width: 359px) {
	.onpoint-specs--plp {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: none;
		grid-auto-flow: row;
	}

	.onpoint-specs--plp .onpoint-specs__item--col2 {
		padding: 8px 8px 8px 28px;
		border-left: 0;
	}

	.onpoint-specs--plp .onpoint-specs__item--col2.onpoint-specs__item--first {
		border-top: 1px solid var(--onpoint-divider);
	}

	.onpoint-specs--plp .onpoint-specs__item--col2 .onpoint-icon {
		left: 0;
	}
}

/* ==========================================================================
   Product page (mockups/pdp-desktop.html, mockups/pdp-mobile.html)
   ========================================================================== */

/* Same width and gutter as the header's .col-full. */
body.onpoint-pdp {
	--onpoint-pdp-width: 1400px;
	--onpoint-pdp-gutter: calc(2.617924 * 1rem);
}

body.onpoint-pdp .product-details-wrapper,
body.onpoint-pdp .onpoint-pdp-sections {
	box-sizing: content-box;
	max-width: var(--onpoint-pdp-width);
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--onpoint-pdp-gutter);
	padding-left: var(--onpoint-pdp-gutter);
}

/* Hero: media + buy box */
body.onpoint-pdp .product-details-wrapper {
	display: grid;
	grid-template-columns: minmax(0, 690fr) minmax(0, 650fr);
	column-gap: 60px;
	align-items: start;
	overflow: visible;
	padding-top: 24px;
	padding-bottom: 0;
}

body.onpoint-pdp .product-details-wrapper > .summary,
body.onpoint-pdp .product-details-wrapper > .onpoint-pdp-media {
	float: none;
	width: auto;
	min-width: 0;
	margin: 0;
}

body.onpoint-pdp .onpoint-pdp-media {
	grid-column: 1;
	position: relative;
}

body.onpoint-pdp .product-details-wrapper > .summary {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	padding: 0;
}

body.onpoint-pdp .onpoint-pdp-media__frame {
	position: relative;
	padding: 15px;
	background: var(--onpoint-surface);
	border: 1px solid var(--onpoint-border);
	border-radius: var(--onpoint-radius-card);
}

body.onpoint-pdp .onpoint-pdp-media__frame .images {
	float: none;
	width: 100%;
	margin: 0;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-main-swiper {
	overflow: hidden;
	border-radius: 10px;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-main-swiper .swiper-slide {
	background: transparent;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-main-swiper .swiper-slide-imglink {
	display: block;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-main-swiper img {
	display: block;
	width: 100%;
	border-radius: 0;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-thumb-swiper {
	margin-top: 12px;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-thumb-swiper.cg-thumbs-count-1,
body.onpoint-pdp .onpoint-pdp-media__frame .images:has(.cg-thumbs-count-1) .cg-main-swiper .swiper-button-next,
body.onpoint-pdp .onpoint-pdp-media__frame .images:has(.cg-thumbs-count-1) .cg-main-swiper .swiper-button-prev {
	display: none;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-thumb-swiper .swiper-slide {
	aspect-ratio: 4 / 3;
	height: auto;
	overflow: hidden;
	border: 1px solid var(--onpoint-border);
	border-radius: var(--onpoint-radius-tile);
	background: #ffffff;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-thumb-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.onpoint-pdp .onpoint-pdp-media__frame .cg-thumb-swiper .swiper-slide-thumb-active {
	border-color: #c06be0;
}

body.onpoint-pdp .onpoint-pdp-media__frame > .onsale {
	position: absolute;
	top: 27px;
	left: 27px;
	z-index: 3;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 4px 10px !important;
	border-radius: var(--onpoint-radius-tile);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-size: 15px !important;
	font-weight: 500;
	line-height: 1.3;
	text-transform: none;
}

body.onpoint-pdp .onpoint-pdp-zoom {
	position: absolute;
	top: 23px;
	right: 23px;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(19, 19, 19, 0.85);
	color: #ffffff;
	cursor: pointer;
	transition: background-color 0.15s;
}

body.onpoint-pdp .onpoint-pdp-zoom:hover {
	background: var(--onpoint-accent);
}

body.onpoint-pdp .onpoint-pdp-note {
	margin-top: 10px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--onpoint-text-muted);
}

body.onpoint-pdp .onpoint-pdp-note p {
	margin: 0;
}

/* Buy box */
body.onpoint-pdp .summary h1.product_title {
	margin: 0;
	padding: 0;
	font-size: 30px;
	line-height: 38px;
	font-weight: 700;
	color: var(--onpoint-text);
}

body.onpoint-pdp .summary .onpoint-pdp-sku,
body.onpoint-pdp .summary .product-mpn {
	margin: 8px 0 0;
	font-size: 15px;
	line-height: 1.4;
	color: var(--onpoint-text-muted);
}

body.onpoint-pdp .summary .product-mpn a {
	color: var(--onpoint-text-muted);
	text-decoration: underline;
}

body.onpoint-pdp div.product .summary p.price.onpoint-pdp-price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	margin: 20px 0 0;
	color: var(--onpoint-text) !important;
	font-size: 16px !important;
}

body.onpoint-pdp div.product .summary .onpoint-pdp-price__old {
	margin: 0;
	color: #9a9aa2 !important;
	font-size: 24px;
	font-weight: 400;
}

body.onpoint-pdp div.product .summary .onpoint-pdp-price__old .amount {
	color: inherit;
}

body.onpoint-pdp div.product .summary .onpoint-pdp-price__current {
	font-size: 40px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--onpoint-text);
}

body.onpoint-pdp div.product .summary .onpoint-pdp-savings {
	padding: 4px 10px;
	border-radius: var(--onpoint-radius-tile);
	background: var(--onpoint-savings-bg);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

body.onpoint-pdp .summary #esto_calculator {
	margin: 8px 0 0;
}

body.onpoint-pdp .summary #esto_calculator .monthly_payment {
	font-size: 19px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--onpoint-esto);
}

body.onpoint-pdp .summary #esto_calculator .monthly_payment .amount {
	color: inherit;
}

/* Quick specs: 3 columns x 2 rows, row by row */
.onpoint-specs--pdp {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 22px 0 0;
	border-top: 1px solid var(--onpoint-border);
	border-bottom: 1px solid var(--onpoint-border);
}

.onpoint-specs--pdp .onpoint-specs__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	padding: 14px 14px 14px 50px;
	border-top: 1px solid var(--onpoint-border);
	border-left: 1px solid var(--onpoint-border);
}

.onpoint-specs--pdp .onpoint-specs__item:nth-child(3n+1) {
	padding-left: 40px;
	border-left: 0;
}

.onpoint-specs--pdp .onpoint-specs__item:nth-child(-n+3) {
	border-top: 0;
}

.onpoint-specs--pdp .onpoint-icon {
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
}

.onpoint-specs--pdp .onpoint-specs__item:nth-child(3n+1) .onpoint-icon {
	left: 4px;
}

.onpoint-specs--pdp .onpoint-specs__label {
	font-size: 14px;
	line-height: 19px;
}

.onpoint-specs--pdp .onpoint-specs__value {
	font-size: 16.5px;
	line-height: 22px;
}

/* Stock and delivery line */
body.onpoint-pdp .onpoint-stock {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 20px;
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.3;
}

body.onpoint-pdp .onpoint-stock__status,
body.onpoint-pdp .onpoint-stock__delivery {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--onpoint-text);
}

body.onpoint-pdp .onpoint-stock__status,
body.onpoint-pdp .onpoint-stock__delivery--free {
	color: var(--onpoint-ok);
}

body.onpoint-pdp .onpoint-stock__lead {
	color: var(--onpoint-text-muted);
}

/* Quantity stepper + add to cart */
body.onpoint-pdp div.product .summary form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
	margin: 16px 0 0;
}

body.onpoint-pdp div.product .summary form.cart::before,
body.onpoint-pdp div.product .summary form.cart::after {
	content: none;
}

body.onpoint-pdp div.product .summary form.cart .quantity {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	float: none;
	width: 132px;
	height: 48px;
	margin: 0;
	overflow: hidden;
	border-radius: var(--onpoint-radius-tile);
	background: #ffffff;
}

body.onpoint-pdp div.product .summary form.cart .quantity:has(input[type="hidden"]) {
	display: none;
}

/* Shoptimizer's quantity.js adds its own +/- controls; ours replace them. */
body.onpoint-pdp div.product .summary form.cart .quantity .quantity-nav {
	display: none;
}

body.onpoint-pdp .onpoint-qty__btn {
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #555555;
	cursor: pointer;
}

body.onpoint-pdp .onpoint-qty__btn:hover {
	color: var(--onpoint-accent);
}

body.onpoint-pdp div.product .summary form.cart .quantity input.qty {
	flex: 1 1 auto;
	width: 44px;
	min-width: 0;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: #111111;
	font-family: inherit;
	font-size: 18px;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

body.onpoint-pdp div.product .summary form.cart .quantity input.qty::-webkit-outer-spin-button,
body.onpoint-pdp div.product .summary form.cart .quantity input.qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

body.onpoint-pdp div.product .summary form.cart .single_add_to_cart_button {
	flex: 1 1 200px;
	float: none;
	width: auto;
	height: 48px;
	margin: 0;
	border-radius: var(--onpoint-radius-tile);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-family: inherit;
	font-size: 20px;
	font-weight: 600;
	line-height: 48px;
}

body.onpoint-pdp div.product .summary form.cart .single_add_to_cart_button:hover {
	background-color: #9a1cc0 !important;
}

/* Wishlist */
body.onpoint-pdp .summary #shoptimizer-modals-wrapper {
	margin-top: 14px;
}

body.onpoint-pdp .summary .commercekit-wishlist {
	margin: 0;
}

body.onpoint-pdp .summary .commercekit-wishlist a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	color: var(--onpoint-text) !important;
	font-size: 16px;
	font-weight: 400;
}

body.onpoint-pdp .summary .commercekit-wishlist a span {
	padding-left: 28px;
}

body.onpoint-pdp .summary .commercekit-wishlist a em.cg-wishlist,
body.onpoint-pdp .summary .commercekit-wishlist a em.cg-wishlist-t {
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

body.onpoint-pdp .summary .commercekit-wishlist a em.cg-wishlist:before,
body.onpoint-pdp .summary .commercekit-wishlist a em.cg-wishlist-t:before {
	width: 20px;
	height: 20px;
	margin-top: 0;
	background-color: #c06be0 !important;
}

/* Trust row */
body.onpoint-pdp .onpoint-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.4;
	color: #e4e4e7;
}

body.onpoint-pdp .onpoint-trust__item {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

body.onpoint-pdp .onpoint-trust__item .onpoint-icon {
	flex-shrink: 0;
	color: var(--onpoint-text-muted);
}

/* Sections below the hero */
body.onpoint-pdp .onpoint-pdp-sections {
	display: flex;
	flex-direction: column;
	padding-top: 72px;
	padding-bottom: 72px;
}

body.onpoint-pdp .onpoint-pdp-section {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 64px 0 0;
}

body.onpoint-pdp .onpoint-pdp-section:first-child {
	margin-top: 0;
}

body.onpoint-pdp .onpoint-pdp-section__title {
	margin: 0;
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	color: var(--onpoint-text);
}

/* Spec table + ports */
body.onpoint-pdp .onpoint-pdp-specs__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 30px;
	align-items: stretch;
}

body.onpoint-pdp .onpoint-pdp-specs__layout--ports {
	grid-template-columns: minmax(0, 972fr) minmax(0, 398fr);
}

body.onpoint-pdp .onpoint-spec-table-wrap {
	min-width: 0;
	padding: 12px 32px;
	background: var(--onpoint-surface);
	border: 1px solid var(--onpoint-border);
	border-radius: var(--onpoint-radius-card);
}

body.onpoint-pdp .onpoint-spec-table {
	display: flex;
	flex-direction: column;
	margin: 0;
}

body.onpoint-pdp .onpoint-spec-table__row {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #33333a;
}

body.onpoint-pdp .onpoint-spec-table__row:last-child {
	border-bottom: 0;
}

body.onpoint-pdp .onpoint-spec-table__label {
	margin: 0;
	padding-right: 16px;
	border-right: 1px solid var(--onpoint-border);
	font-size: 17px;
	line-height: 1.45;
	font-weight: 600;
	color: #c8c8cc;
}

body.onpoint-pdp .onpoint-spec-table__value {
	margin: 0;
	padding-left: 24px;
	font-size: 17px;
	line-height: 1.45;
	color: var(--onpoint-text);
	overflow-wrap: anywhere;
}

body.onpoint-pdp .onpoint-spec-table__toggle {
	display: none;
}

body.onpoint-pdp .onpoint-ports {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	padding: 26px 28px;
	background: var(--onpoint-surface);
	border: 1px solid var(--onpoint-border);
	border-radius: var(--onpoint-radius-card);
}

body.onpoint-pdp .onpoint-ports__title {
	margin: 0;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--onpoint-text);
}

body.onpoint-pdp .onpoint-ports__groups {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

body.onpoint-pdp .onpoint-ports__group {
	margin: 0;
}

body.onpoint-pdp .onpoint-ports__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 4px 0 14px;
	padding: 0;
	list-style: none;
	font-size: 17px;
	font-weight: 600;
	color: var(--onpoint-text);
	cursor: default;
	pointer-events: none;
}

body.onpoint-pdp .onpoint-ports__summary::-webkit-details-marker,
body.onpoint-pdp .onpoint-ports__summary::after {
	display: none;
	content: none;
}

body.onpoint-pdp .onpoint-ports__summary .onpoint-icon {
	display: none;
}

body.onpoint-pdp .onpoint-ports__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 16px;
	line-height: 22px;
	color: #e4e4e7;
}

body.onpoint-pdp .onpoint-ports__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
}

body.onpoint-pdp .onpoint-ports__item .onpoint-icon,
body.onpoint-pdp .onpoint-ports__no-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	color: var(--onpoint-label);
}

/* Manufacturer data (shown once Icecat has content) */
body.onpoint-pdp .onpoint-pdp-icecat:not(.is-loaded) {
	display: none;
}

body.onpoint-pdp .onpoint-pdp-icecat #icecat-live {
	padding: 20px;
	border-radius: var(--onpoint-radius-card);
	background: #ffffff;
	color: #111111;
}

/* Description */
body.onpoint-pdp .onpoint-pdp-description {
	gap: 16px;
}

body.onpoint-pdp .onpoint-pdp-description__content {
	max-width: 760px;
	font-size: 16px;
	line-height: 1.7;
	color: #d4d4d8;
}

body.onpoint-pdp .onpoint-pdp-description__content > *:first-child {
	margin-top: 0;
}

body.onpoint-pdp .onpoint-pdp-description__content p {
	margin: 0 0 16px;
}

body.onpoint-pdp .onpoint-pdp-description__content h2,
body.onpoint-pdp .onpoint-pdp-description__content h3,
body.onpoint-pdp .onpoint-pdp-description__content h4 {
	margin: 28px 0 12px;
	font-size: 20px;
	line-height: 1.3;
	color: var(--onpoint-text);
}

body.onpoint-pdp .onpoint-pdp-description__content a {
	color: #e0c2ee;
}

body.onpoint-pdp .onpoint-pdp-description__content table {
	width: auto;
	color: inherit;
}

body.onpoint-pdp .onpoint-pdp-description__content td {
	padding: 4px 12px 4px 0;
	border: 0;
	background: transparent;
}

/* Custom-build band */
body.onpoint-pdp .onpoint-build {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 48px;
	padding: 28px 32px;
	border-radius: var(--onpoint-radius-card);
	background: var(--onpoint-accent);
}

body.onpoint-pdp .onpoint-build__text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

body.onpoint-pdp .onpoint-build__title {
	margin: 0;
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	color: #ffffff;
}

body.onpoint-pdp .onpoint-build__lead {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #f3e6f8;
}

body.onpoint-pdp .onpoint-build__button {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 24px;
	border-radius: var(--onpoint-radius-button);
	background: #ffffff;
	color: var(--onpoint-accent) !important;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.15s;
}

body.onpoint-pdp .onpoint-build__button:hover {
	background: #f3e6f8;
}

/* Similar computers */
body.onpoint-pdp .onpoint-similar {
	margin-top: 72px;
}

body.onpoint-pdp .onpoint-similar__list li.onpoint-tile .onpoint-tile__media {
	height: 260px;
	aspect-ratio: auto;
}

body.onpoint-pdp .onpoint-similar__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 16px;
	background: var(--onpoint-surface);
	border: 1px solid var(--onpoint-border);
	border-radius: var(--onpoint-radius-card);
	transition: border-color 0.15s;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile:hover,
:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile:focus-within {
	border-color: #55555f;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 10px;
	background: #ffffff;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__badge {
	position: absolute;
	top: 26px;
	left: 26px;
	z-index: 1;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__badge .onsale {
	position: static;
	display: inline-block;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 4px 10px !important;
	border-radius: var(--onpoint-radius-tile);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-size: 14px !important;
	font-weight: 500;
	line-height: 1.3;
	text-transform: none;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__title {
	margin: 16px 0 0;
	font-size: 20px;
	line-height: 27px;
	font-weight: 700;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__title a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	color: var(--onpoint-text);
	text-decoration: none;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__title a:hover {
	color: #e0c2ee;
}

.onpoint-specs--similar {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 12px;
}

.onpoint-specs--similar .onpoint-specs__item {
	display: flex;
	align-items: center;
	min-height: 21px;
	padding-left: 28px;
}

.onpoint-specs--similar .onpoint-icon {
	top: 50%;
	transform: translateY(-50%);
}

.onpoint-specs--similar .onpoint-specs__label-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.onpoint-specs--similar .onpoint-specs__value {
	font-size: 15px;
	line-height: 21px;
	color: #e4e4e7;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price--similar {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 4px 12px;
	margin-top: auto;
	padding-top: 16px;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price--similar:not(.onpoint-price--sale) {
	justify-content: flex-end;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price__old {
	font-size: 20px;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price__current {
	font-size: 30px;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__esto {
	align-self: flex-end;
	margin: 4px 0 0;
	font-size: 16px;
	line-height: 1.3;
	color: var(--onpoint-esto);
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__esto .amount {
	color: inherit;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__body .button {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 46px;
	margin-top: 16px;
	padding: 0 16px;
	border-radius: var(--onpoint-radius-button);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
}

:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__body .button:hover {
	background-color: #9a1cc0 !important;
}

body.onpoint-pdp .onpoint-pdp-sections a:focus-visible,
body.onpoint-pdp .onpoint-pdp-sections button:focus-visible,
body.onpoint-pdp .onpoint-pdp-sections summary:focus-visible,
body.onpoint-pdp .summary a:focus-visible,
body.onpoint-pdp .summary button:focus-visible,
body.onpoint-pdp .onpoint-pdp-zoom:focus-visible {
	outline: 2px solid #e0c2ee;
	outline-offset: 2px;
}

/* Narrower desktops */
@media (max-width: 1199px) {
	body.onpoint-pdp .product-details-wrapper {
		column-gap: 40px;
	}

	body.onpoint-pdp .onpoint-pdp-specs__layout--ports {
		grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
	}

	body.onpoint-pdp .onpoint-spec-table__row {
		grid-template-columns: minmax(160px, 38%) minmax(0, 1fr);
	}

	body.onpoint-pdp .onpoint-similar__list {
		gap: 20px;
	}

	body.onpoint-pdp .onpoint-similar__list li.onpoint-tile .onpoint-tile__media {
		height: 220px;
	}
}

/* Tablet: one column hero */
@media (max-width: 992px) {
	body.onpoint-pdp {
		--onpoint-pdp-gutter: 16px;
	}

	body.onpoint-pdp .product-details-wrapper {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 24px;
	}

	body.onpoint-pdp .product-details-wrapper > .summary {
		grid-column: 1;
	}

	body.onpoint-pdp .onpoint-pdp-specs__layout--ports {
		grid-template-columns: minmax(0, 1fr);
	}

	body.onpoint-pdp .onpoint-build {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}

/* Mobile */
@media (max-width: 767px) {
	/* The last breadcrumb item (product title) is hidden on mobile. */
	body.onpoint-pdp .woocommerce-breadcrumb {
		font-size: 0;
	}

	body.onpoint-pdp .woocommerce-breadcrumb a,
	body.onpoint-pdp .woocommerce-breadcrumb .breadcrumb-separator {
		font-size: 13px;
	}

	body.onpoint-pdp .woocommerce-breadcrumb .breadcrumb-separator:last-of-type {
		display: none;
	}

	body.onpoint-pdp .product-details-wrapper {
		padding-top: 14px;
		row-gap: 18px;
	}

	body.onpoint-pdp .onpoint-pdp-media__frame {
		padding: 10px;
	}

	body.onpoint-pdp .onpoint-pdp-media__frame > .onsale {
		top: 20px;
		left: 20px;
		padding: 3px 8px !important;
		border-radius: 5px;
		font-size: 13px !important;
	}

	body.onpoint-pdp .onpoint-pdp-zoom {
		top: 16px;
		right: 16px;
	}

	body.onpoint-pdp .onpoint-pdp-zoom .onpoint-icon {
		width: 18px;
		height: 18px;
	}

	body.onpoint-pdp .summary h1.product_title {
		font-size: 22px;
		line-height: 28px;
	}

	body.onpoint-pdp .summary .onpoint-pdp-sku,
	body.onpoint-pdp .summary .product-mpn {
		margin-top: 6px;
		font-size: 13.5px;
	}

	body.onpoint-pdp div.product .summary p.price.onpoint-pdp-price {
		gap: 6px 10px;
		margin-top: 16px;
	}

	body.onpoint-pdp div.product .summary .onpoint-pdp-price__old {
		font-size: 18px;
	}

	body.onpoint-pdp div.product .summary .onpoint-pdp-price__current {
		font-size: 30px;
	}

	body.onpoint-pdp div.product .summary .onpoint-pdp-savings {
		padding: 3px 8px;
		border-radius: 5px;
		font-size: 13px;
	}

	body.onpoint-pdp .summary #esto_calculator {
		margin-top: 6px;
	}

	body.onpoint-pdp .summary #esto_calculator .monthly_payment {
		font-size: 16px;
	}

	/* Quick specs: 2 columns, column by column (PLP mobile cell style). */
	.onpoint-specs--pdp {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(var(--onpoint-spec-rows, 3), auto);
		grid-auto-flow: column;
		margin-top: 18px;
	}

	.onpoint-specs--pdp .onpoint-specs__item,
	.onpoint-specs--pdp .onpoint-specs__item:nth-child(3n+1) {
		display: block;
		padding: 9px 8px 9px 28px;
		border-top: 1px solid var(--onpoint-divider);
		border-left: 0;
	}

	.onpoint-specs--pdp .onpoint-specs__item.onpoint-specs__item--col2 {
		padding: 9px 0 9px 40px;
		border-left: 1px solid var(--onpoint-divider);
	}

	.onpoint-specs--pdp .onpoint-specs__item.onpoint-specs__item--first {
		border-top: 0;
	}

	.onpoint-specs--pdp .onpoint-icon,
	.onpoint-specs--pdp .onpoint-specs__item:nth-child(3n+1) .onpoint-icon {
		top: 11px;
		left: 0;
		width: 20px;
		height: 20px;
		transform: none;
	}

	.onpoint-specs--pdp .onpoint-specs__item--col2 .onpoint-icon,
	.onpoint-specs--pdp .onpoint-specs__item--col2:nth-child(3n+1) .onpoint-icon {
		left: 12px;
	}

	.onpoint-specs--pdp .onpoint-specs__label {
		font-size: 12.5px;
		line-height: 17px;
	}

	.onpoint-specs--pdp .onpoint-specs__value {
		font-size: 14px;
		line-height: 19px;
	}

	body.onpoint-pdp .onpoint-stock {
		gap: 6px 16px;
		margin-top: 16px;
		font-size: 15px;
	}

	body.onpoint-pdp .onpoint-stock__status,
	body.onpoint-pdp .onpoint-stock__delivery {
		gap: 6px;
	}

	body.onpoint-pdp .onpoint-stock__status .onpoint-icon {
		width: 18px;
		height: 18px;
	}

	body.onpoint-pdp .onpoint-stock__delivery .onpoint-icon {
		width: 20px;
		height: 20px;
	}

	body.onpoint-pdp div.product .summary form.cart {
		gap: 10px;
		margin-top: 14px;
	}

	body.onpoint-pdp div.product .summary form.cart .quantity {
		width: 120px;
	}

	body.onpoint-pdp .onpoint-qty__btn {
		flex-basis: 40px;
	}

	body.onpoint-pdp div.product .summary form.cart .quantity input.qty {
		width: 40px;
		font-size: 17px;
	}

	body.onpoint-pdp div.product .summary form.cart .single_add_to_cart_button {
		flex-basis: 150px;
		font-size: 18px;
	}

	body.onpoint-pdp .summary #shoptimizer-modals-wrapper {
		margin-top: 10px;
	}

	body.onpoint-pdp .summary .commercekit-wishlist a {
		min-height: 44px;
		font-size: 15px;
	}

	body.onpoint-pdp .onpoint-trust {
		flex-direction: column;
		gap: 10px;
		margin-top: 6px;
	}

	body.onpoint-pdp .onpoint-trust__item {
		gap: 10px;
	}

	body.onpoint-pdp .onpoint-pdp-sections {
		padding-top: 44px;
		padding-bottom: 48px;
	}

	body.onpoint-pdp .onpoint-pdp-section {
		gap: 14px;
		margin-top: 32px;
	}

	body.onpoint-pdp .onpoint-pdp-section__title {
		font-size: 24px;
		line-height: 30px;
	}

	/* Spec table: label above value, first 8 rows until expanded. */
	body.onpoint-pdp .onpoint-pdp-specs__layout {
		gap: 32px;
	}

	body.onpoint-pdp .onpoint-spec-table-wrap {
		padding: 4px 16px 0;
	}

	body.onpoint-pdp .onpoint-spec-table__row {
		display: block;
		padding: 9px 0;
	}

	body.onpoint-pdp .onpoint-spec-table-wrap:not(.is-expanded) .onpoint-spec-table__row--extra {
		display: none;
	}

	body.onpoint-pdp .onpoint-spec-table-wrap:not(.is-expanded) .onpoint-spec-table__row:nth-child(8) {
		border-bottom: 0;
	}

	body.onpoint-pdp .onpoint-spec-table__label {
		padding: 0;
		border: 0;
		font-size: 13px;
		line-height: 18px;
		font-weight: 400;
		color: var(--onpoint-label);
	}

	body.onpoint-pdp .onpoint-spec-table__value {
		margin-top: 2px;
		padding: 0;
		font-size: 16px;
		line-height: 22px;
	}

	body.onpoint-pdp .onpoint-spec-table__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 100%;
		height: 48px;
		padding: 0;
		border: 0;
		border-top: 1px solid #33333a;
		background: transparent;
		color: var(--onpoint-text);
		font-family: inherit;
		font-size: 15px;
		font-weight: 600;
		cursor: pointer;
	}

	body.onpoint-pdp .onpoint-spec-table-wrap.is-expanded .onpoint-spec-table__toggle {
		display: none;
	}

	/* Ports: own section title, groups as an accordion. */
	body.onpoint-pdp .onpoint-ports {
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	body.onpoint-pdp .onpoint-ports__title {
		font-size: 24px;
		line-height: 30px;
	}

	body.onpoint-pdp .onpoint-ports__groups {
		gap: 0;
		overflow: hidden;
		background: var(--onpoint-surface);
		border: 1px solid var(--onpoint-border);
		border-radius: var(--onpoint-radius-card);
	}

	body.onpoint-pdp .onpoint-ports__group + .onpoint-ports__group {
		border-top: 1px solid #33333a;
	}

	body.onpoint-pdp .onpoint-ports__summary {
		min-height: 48px;
		margin: 0;
		padding: 0 16px;
		font-size: 16px;
		cursor: pointer;
		pointer-events: auto;
	}

	body.onpoint-pdp .onpoint-ports__summary .onpoint-icon {
		display: block;
		transition: transform 0.15s;
	}

	body.onpoint-pdp .onpoint-ports__group[open] .onpoint-ports__summary .onpoint-icon {
		transform: rotate(180deg);
	}

	body.onpoint-pdp .onpoint-ports__list {
		padding: 0 16px 14px;
		font-size: 15px;
		line-height: 21px;
	}

	body.onpoint-pdp .onpoint-ports__item {
		gap: 10px;
	}

	body.onpoint-pdp .onpoint-ports__item .onpoint-icon,
	body.onpoint-pdp .onpoint-ports__no-icon {
		width: 18px;
		height: 18px;
	}

	body.onpoint-pdp .onpoint-pdp-description__content {
		font-size: 15.5px;
		line-height: 1.65;
	}

	body.onpoint-pdp .onpoint-build {
		gap: 10px;
		margin-top: 32px;
		padding: 20px 18px;
	}

	body.onpoint-pdp .onpoint-build__title {
		font-size: 20px;
		line-height: 26px;
	}

	body.onpoint-pdp .onpoint-build__lead {
		font-size: 15px;
	}

	body.onpoint-pdp .onpoint-build__button {
		align-self: stretch;
		margin-top: 6px;
		padding: 0 12px;
		font-size: 16px;
	}

	/* Similar computers: horizontal scroll-snap row. */
	body.onpoint-pdp .onpoint-similar {
		margin-top: 40px;
	}

	body.onpoint-pdp .onpoint-similar__list {
		display: flex;
		gap: 12px;
		margin-right: calc(-1 * var(--onpoint-pdp-gutter));
		padding: 0 var(--onpoint-pdp-gutter) 4px 0;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scrollbar-color: var(--onpoint-border) transparent;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile {
		flex: 0 0 318px;
		flex-direction: row;
		gap: 12px;
		max-width: calc(100vw - 48px);
		padding: 12px;
		scroll-snap-align: start;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__media,
	body.onpoint-pdp .onpoint-similar__list li.onpoint-tile .onpoint-tile__media {
		flex: 0 0 104px;
		height: 150px;
		aspect-ratio: auto;
		border-radius: 8px;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__badge {
		position: static;
		align-self: flex-start;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__badge .onsale {
		padding: 2px 7px !important;
		border-radius: 5px;
		font-size: 12px !important;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__title {
		margin-top: 6px;
		font-size: 15px;
		line-height: 20px;
	}

	.onpoint-specs--similar {
		gap: 3px;
		margin-top: 8px;
	}

	.onpoint-specs--similar .onpoint-specs__item {
		min-height: 0;
		padding-left: 0;
	}

	.onpoint-specs--similar .onpoint-icon {
		display: none;
	}

	.onpoint-specs--similar .onpoint-specs__value {
		font-size: 13px;
		line-height: 18px;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price--similar,
	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price--similar:not(.onpoint-price--sale) {
		justify-content: flex-start;
		gap: 2px 8px;
		padding-top: 8px;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price__old {
		font-size: 14px;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-price__current {
		font-size: 20px;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__esto {
		align-self: flex-start;
		margin-top: 0;
		font-size: 13px;
	}

	:is(body.onpoint-pdp, body.onpoint-home-tiles) li.onpoint-tile .onpoint-tile__body .button {
		height: 44px;
		margin-top: 10px;
		font-size: 16px;
	}
}

/* ==========================================================================
   Home page product widgets: vertical tiles (inc/redesign/tiles.php)
   The tile itself shares its styles with "Sarnased arvutid" above.
   ========================================================================== */

body.onpoint-home-tiles ul.products.onpoint-tiles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	width: 100%;
	margin: 0;
	padding: 0;
}

body.onpoint-home-tiles ul.products.onpoint-tiles::before,
body.onpoint-home-tiles ul.products.onpoint-tiles::after {
	content: none;
}

/* Beats Elementor Pro's ".elementor-products-grid ul.products.elementor-grid li.product" rules. */
body.onpoint-home-tiles ul.products.onpoint-tiles li.product.onpoint-tile {
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	padding: 16px;
	color: var(--onpoint-text);
	text-align: left;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.product.onpoint-tile::before {
	content: none !important;
	display: none !important;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.product.onpoint-tile:hover img {
	transform: none;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-tile__media .onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1;
	min-width: 0;
	min-height: 0;
	margin: 0;
	padding: 4px 10px !important;
	border-radius: var(--onpoint-radius-tile);
	background-color: var(--onpoint-accent) !important;
	color: #ffffff;
	font-size: 14px !important;
	font-weight: 500;
	line-height: 1.3;
	text-transform: none;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .commercekit-wishlist.mini {
	top: 26px;
	right: 26px;
	left: auto;
	z-index: 3;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile:focus-within .commercekit-wishlist.mini {
	opacity: 1;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-tile__title {
	padding: 0;
	font-size: 18px;
	line-height: 24px;
	text-align: left;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-tile__title a {
	display: -webkit-box;
	color: var(--onpoint-text) !important;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-price__current {
	font-size: 26px;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-price__old {
	font-size: 17px;
}

body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-tile__body .button {
	position: static;
	width: auto;
	opacity: 1;
	line-height: 1;
}

@media (max-width: 1024px) {
	body.onpoint-home-tiles ul.products.onpoint-tiles {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		padding: 0 16px;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.product.onpoint-tile {
		padding: 12px;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .commercekit-wishlist.mini {
		top: 20px;
		right: 20px;
	}
}

/* Phones: a swipeable row of horizontal cards, like "Sarnased arvutid". */
@media (max-width: 767px) {
	body.onpoint-home-tiles ul.products.onpoint-tiles {
		display: flex;
		flex-wrap: nowrap;
		gap: 12px;
		padding: 0 16px 4px;
		overflow-x: auto;
		scroll-padding-inline: 16px;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scrollbar-color: var(--onpoint-border) transparent;
		scrollbar-width: thin;
		-webkit-overflow-scrolling: touch;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.product.onpoint-tile {
		flex-direction: row;
		padding: 12px;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-tile__media .onsale {
		top: 6px;
		left: 6px;
		padding: 2px 7px !important;
		border-radius: 5px;
		font-size: 12px !important;
	}

	/* Bottom right of the photo. */
	body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .commercekit-wishlist.mini {
		top: 128px; /* 12px + 150px - 30px - 4px */
		right: auto;
		left: 82px; /* 12px + 104px - 30px - 4px */
		opacity: 1;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-tile__title {
		margin-top: 0;
		font-size: 15px;
		line-height: 20px;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-price__current {
		font-size: 20px;
	}

	body.onpoint-home-tiles ul.products.onpoint-tiles li.onpoint-tile .onpoint-price__old {
		font-size: 14px;
	}
}
