/* Biskuvimarket Normal PDP - Premium Ceramic System v2 CSS
 * Scope: body.single-product:not(.bsm-scope) only. BSM and BASEKA Tiles untouched. */

/* ---------- Header scroll-away (Normal PDP only) ----------
 * Scope: body.npdp-active only - an explicit marker set server-side after
 * verifying is_normal_scope() AND that neither the BSM plugin's own
 * bsm-scope class nor is_baseka_tiles_product() applied. The Sober theme's
 * own stickyHeader JS toggles .site-header to position:fixed on scroll;
 * this override forces it back to its natural absolute flow so it scrolls
 * away with the page instead of re-appearing mid-scroll. Desktop and
 * mobile both use position:absolute already as the base state, so this is
 * effectively a !important pin against the theme JS re-adding fixed. */
body.npdp-active .site-header,
body.npdp-active .site-header.sticky,
body.npdp-active header.site-header.sticky {
	position: absolute !important;
	top: 0 !important;
}

/* ---------- Cleanup: hide legacy chrome inside scope only ----------
 * Fixed 2026-08-20: real DOM inspection showed .product-share (and its
 * siblings) actually live inside .sticky-summary, one level deeper than
 * .summary - the old direct-child (>) selectors never matched, which is
 * why Facebook/Twitter/Pinterest share links were still visible on live
 * staging. Switched to descendant selectors so this holds regardless of
 * exact nesting depth. */
body.single-product:not(.bsm-scope) .product-summary .onsale,
body.single-product:not(.bsm-scope) .product-summary .npdp-new-badge,
body.single-product:not(.bsm-scope) .summary .sku_wrapper,
body.single-product:not(.bsm-scope) .summary .posted_in,
body.single-product:not(.bsm-scope) .summary .product_meta,
body.single-product:not(.bsm-scope) .summary .product-share,
body.single-product:not(.bsm-scope) .npdp-thumb-rail {
	display: none !important;
}

body.npdp-scroll-lock {
	overflow: hidden;
}

/* ---------- Wishlist heart (reuses existing WCBoost Wishlist button, repositioned into gallery) ---------- */
body.single-product:not(.bsm-scope) .images,
body.single-product:not(.bsm-scope) .woocommerce-product-gallery {
	position: relative;
}

body.single-product:not(.bsm-scope) .npdp-wishlist-slot {
	/* Fixed 2026-08-21: forced with !important so the standalone WCBoost
	   wishlist button stays hidden even when the gallery-repositioning JS
	   doesn't find a gallery to move it into (it was showing as a plain
	   unstyled "Add to wishlist" link below the PDP). Header wishlist icon,
	   BSM, and BASEKA Tiles are untouched. */
	display: none !important;
}

body.single-product:not(.bsm-scope) .woocommerce-product-gallery .npdp-wishlist-slot,
body.single-product:not(.bsm-scope) .npdp-gallery-wrap .npdp-wishlist-slot {
	display: block;
	position: absolute;
	top: 24px;
	right: 24px;
	z-index: 20;
}

body.single-product:not(.bsm-scope) .npdp-wishlist-slot .wcboost-wishlist-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	background: rgba(255, 255, 255, 0.85);
	border: none;
	border-radius: 50%;
}

body.single-product:not(.bsm-scope) .npdp-wishlist-slot .wcboost-wishlist-button__text,
body.single-product:not(.bsm-scope) .npdp-wishlist-slot .wcboost-wishlist-button .count {
	display: none;
}

body.single-product:not(.bsm-scope) .npdp-wishlist-slot svg {
	width: 18px;
	height: 18px;
}

/* ---------- Desktop two-column layout (gallery left / sticky summary right) ---------- */
@media (min-width: 1024px) {
	body.single-product:not(.bsm-scope) .product-summary {
		display: flex;
		align-items: flex-start;
		gap: 32px;
	}

	body.single-product:not(.bsm-scope) .product-summary > .ribbons {
		position: absolute;
		width: 0;
		height: 0;
		overflow: hidden;
	}

	body.single-product:not(.bsm-scope) .product-summary > .npdp-gallery-wrap {
		flex: 0 0 56%;
		width: 56%;
		min-width: 0;
		float: none;
	}

	body.single-product:not(.bsm-scope) .product-summary > .summary.entry-summary {
		flex: 0 0 40%;
		width: 40%;
		min-width: 0;
		float: none;
		position: sticky;
		/* Fixed 2026-08-21: real site header renders ~151px tall on desktop; the
		 previous top:24px offset let it sit under the fixed header, clipping the
		 top of the sticky summary (title/price) during scroll. 160px clears the
		 measured header height with a small buffer. Scoped to Normal PDP only. */
		top: 32px;
	}
}

/* ---------- Gallery: dot navigation ---------- */
@media (min-width: 1024px) {
	body.single-product:not(.bsm-scope) .npdp-gallery-wrap {
		display: flex;
		flex-direction: row-reverse;
		gap: 16px;
		align-items: flex-start;
		position: relative;
	}

	body.single-product:not(.bsm-scope) .npdp-dot-nav {
		position: sticky;
		top: 50%;
		transform: translateY(-50%);
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding-top: 4px;
	}

	body.single-product:not(.bsm-scope) .npdp-dot-nav.npdp-single {
		display: none;
	}

	body.single-product:not(.bsm-scope) .npdp-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		border: 1px solid #999;
		background: transparent;
		padding: 0;
		cursor: pointer;
		transition: transform 0.2s ease, background 0.2s ease;
	}

	body.single-product:not(.bsm-scope) .npdp-dot.active {
		background: #1a1a1a;
		border-color: #1a1a1a;
		transform: scale(1.3);
	}

	body.single-product:not(.bsm-scope) .npdp-frames {
		flex: 1;
	}

	body.single-product:not(.bsm-scope) .npdp-frames::-webkit-scrollbar {
		display: none;
	}

	body.single-product:not(.bsm-scope) .npdp-frame {
		scroll-snap-align: start;
	}

	body.single-product:not(.bsm-scope) .npdp-frame img {
		width: 100%;
		height: auto;
		display: block;
	}
}

/* ---------- Sticky right summary / typography ---------- */
body.single-product:not(.bsm-scope) .sticky-summary {
	text-align: left;
}

body.npdp-active .product_title.entry-title,
body.npdp-active .product_title {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 26px !important;
	font-weight: 400 !important;
	line-height: 1.3;
	letter-spacing: 0;
	margin-bottom: 8px;
}

body.single-product:not(.bsm-scope) .woocommerce-product-details__short-description {
	font-size: 13px;
	line-height: 1.5;
	color: #555;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 12px;
}

body.npdp-active p.price {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	color: #1a1a1a;
	margin-bottom: 4px;
}

body.single-product:not(.bsm-scope) .npdp-ceramic-info {
	margin: 10px 0 16px;
	font-size: 13px;
	line-height: 1.7;
	color: #444;
}

body.single-product:not(.bsm-scope) .npdp-ceramic-info-row {
	font-weight: 400;
}

body.single-product:not(.bsm-scope) form.cart {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 0;
}

/* Fixed 2026-08-20: WooCommerce/Sober renders .npdp-secondary-rows (hooked to
 * woocommerce_after_add_to_cart_button) as a 4th child INSIDE this same
 * <form class="cart">. Because the form is a flex row, that block was being
 * treated as a flex item too and squeezed down to ~216px - which is why the
 * last "+" sign visually glued onto its label text. Forcing it (and the
 * stray hidden field WooCommerce/Sober sometimes prints here) onto its own
 * full-width flex line fixes this without moving anything in the DOM. */
body.single-product:not(.bsm-scope) form.cart > .npdp-secondary-rows {
	flex: 1 0 100%;
	width: 100%;
}

/* Quantity control: rebuilt as a single flex row so decrease / number / increase
 * sit inside ONE unified rectangle with one border, instead of relying on the
 * theme's own inconsistent internal borders (previously: outer div had a
 * border but the qty input and +/- spans had none, which read as a "broken"
 * box on screen).
 *
 * EMERGENCY FIX 2026-08-20: live staging showed .quantity rendering as
 * display:block instead of the flex declared below, even though this exact
 * rule was confirmed present byte-for-byte in the deployed file (verified by
 * fetching the live stylesheet directly). Something outside this file wins
 * the cascade for `display`/`height` specifically on this selector (a
 * caching layer serving a stale copy at the same asset URL is the most
 * likely culprit - not a markup or JS issue: the increase/decrease click
 * handlers are theme-native and unrelated to the four drawer triggers,
 * which are bound to their own specific .npdp-row-* classes, confirmed in
 * normal-pdp.js - not a generic ".plus" selector). Rather than depend on
 * winning the cascade by chance, the critical layout properties are pinned
 * with !important and overflow is clipped so the +/- controls can never
 * wrap outside the box and land on the accordion row underneath again,
 * regardless of what else is competing for this selector. */
body.single-product:not(.bsm-scope) form.cart .quantity {
	margin-bottom: 0;
	flex: 0 0 auto;
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center;
	justify-content: space-between;
	width: auto;
	max-width: 132px;
	min-width: 126px;
	height: 54px !important;
	box-sizing: border-box !important;
	overflow: hidden;
	border: 1px solid #d9d9d9;
	background: #fff;
	padding: 0 2px;
}

body.single-product:not(.bsm-scope) form.cart .quantity .decrease,
body.single-product:not(.bsm-scope) form.cart .quantity .increase {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

body.single-product:not(.bsm-scope) form.cart .quantity .qty {
	flex: 1 1 auto;
	width: auto;
	height: 100% !important;
	box-sizing: border-box !important;
	border: none;
	background: transparent;
	text-align: center;
	padding: 0;
	font-size: 14px;
	-moz-appearance: textfield;
}

body.single-product:not(.bsm-scope) form.cart .quantity .qty::-webkit-inner-spin-button,
body.single-product:not(.bsm-scope) form.cart .quantity .qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.single-product:not(.bsm-scope) form.cart .single_add_to_cart_button {
	flex: 1 1 auto;
	width: auto;
	height: 54px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0 20px;
	border-radius: 0;
	box-sizing: border-box;
	transition: opacity 0.15s ease;
}

body.single-product:not(.bsm-scope) form.cart .single_add_to_cart_button:hover {
	opacity: 0.85;
}

/* ---------- Secondary rows ---------- */
body.single-product:not(.bsm-scope) .npdp-secondary-rows {
	margin-top: 22px;
	border-top: 1px solid #ececec;
}

/* Calmer editorial-retail rhythm: ~64px row height, regular weight,
 * thinner divider - was previously feeling like a compressed WooCommerce
 * accordion (14px padding = ~46px rows). Label/plus already sit in their
 * own spans (no string concatenation) - the earlier "glued +" look was
 * caused by the form.cart squeeze above, not by markup here. */
body.single-product:not(.bsm-scope) .npdp-row {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #ececec;
	padding: 19px 2px;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	color: #1a1a1a;
	cursor: pointer;
	text-align: left;
}

body.single-product:not(.bsm-scope) .npdp-row-label {
	flex: 1 1 auto;
}

body.single-product:not(.bsm-scope) .npdp-row-plus {
	flex: 0 0 auto;
	font-size: 15px;
	font-weight: 300;
	color: #999;
}

/* ---------- Drawer system (shared) ---------- */
body.single-product:not(.bsm-scope) .npdp-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 100000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}

body.single-product:not(.bsm-scope) .npdp-drawer-overlay.open {
	opacity: 1;
	visibility: visible;
}

body.single-product:not(.bsm-scope) .npdp-drawer {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 480px;
	height: 100%;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
}

@media (min-width: 768px) {
	body.single-product:not(.bsm-scope) .npdp-drawer {
		width: 48%;
	}
}

body.single-product:not(.bsm-scope) .npdp-drawer-overlay.open .npdp-drawer {
	transform: translateX(0);
}

body.single-product:not(.bsm-scope) .npdp-drawer-close {
	position: absolute;
	top: 18px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #444;
}

body.single-product:not(.bsm-scope) .npdp-drawer-body {
	padding: 56px 32px 40px;
}

body.single-product:not(.bsm-scope) .npdp-drawer-title {
	font-size: 17px;
	font-weight: 500;
	margin: 0 0 16px;
}

body.single-product:not(.bsm-scope) .npdp-drawer-subtitle {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 8px;
}

body.single-product:not(.bsm-scope) .npdp-drawer-text {
	font-size: 13px;
	line-height: 1.7;
	color: #444;
	margin: 0 0 4px;
}

body.single-product:not(.bsm-scope) .npdp-drawer-short-desc {
	font-size: 13px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 18px;
}

body.single-product:not(.bsm-scope) .npdp-drawer-hr {
	height: 1px;
	background: #eee;
	margin: 16px 0;
}

body.single-product:not(.bsm-scope) .npdp-drawer-empty {
	font-size: 13px;
	color: #888;
	font-style: italic;
}

body.single-product:not(.bsm-scope) .npdp-spec-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 13px;
}

body.single-product:not(.bsm-scope) .npdp-spec-label {
	color: #888;
}

body.single-product:not(.bsm-scope) .npdp-spec-value {
	color: #1a1a1a;
	text-align: right;
}

body.single-product:not(.bsm-scope) .npdp-tech-disclaimer {
	margin-top: 16px;
	font-size: 11.5px;
	font-style: italic;
	color: #999;
	line-height: 1.6;
}

body.single-product:not(.bsm-scope) .npdp-moq-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 14px;
	background: #f7f7f5;
	margin: 14px 0;
	font-size: 13px;
}

body.single-product:not(.bsm-scope) .npdp-moq-label {
	color: #777;
}

body.single-product:not(.bsm-scope) .npdp-moq-value {
	font-weight: 600;
	color: #1a1a1a;
}

/* ---------- Request forms ---------- */
body.single-product:not(.bsm-scope) .npdp-req-form {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
}

body.single-product:not(.bsm-scope) .npdp-req-form label {
	font-size: 12px;
	color: #666;
	margin: 12px 0 4px;
}

body.single-product:not(.bsm-scope) .npdp-req-form input[type="text"],
body.single-product:not(.bsm-scope) .npdp-req-form input[type="email"],
body.single-product:not(.bsm-scope) .npdp-req-form input[type="tel"],
body.single-product:not(.bsm-scope) .npdp-req-form input[type="number"],
body.single-product:not(.bsm-scope) .npdp-req-form input[type="file"],
body.single-product:not(.bsm-scope) .npdp-req-form textarea {
	font-size: 13px;
	padding: 10px 12px;
	border: 1px solid #ddd;
	background: #fff;
	font-family: inherit;
}

body.single-product:not(.bsm-scope) .npdp-req-form input[readonly] {
	background: #f7f7f5;
	color: #888;
}

body.single-product:not(.bsm-scope) .npdp-hp-field {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

body.single-product:not(.bsm-scope) .npdp-submit {
	margin-top: 20px;
	padding: 13px 20px;
	background: #1a1a1a;
	color: #fff;
	border: none;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

body.single-product:not(.bsm-scope) .npdp-submit:hover {
	opacity: 0.85;
}

body.single-product:not(.bsm-scope) .npdp-form-msg {
	margin-top: 10px;
	font-size: 12.5px;
}

body.single-product:not(.bsm-scope) .npdp-form-msg.success {
	color: #1c6e34;
}

body.single-product:not(.bsm-scope) .npdp-form-msg.error {
	color: #b3261e;
}

/* ---------- Stock notification (out-of-stock only) ---------- */
body.single-product:not(.bsm-scope) .npdp-stock-notify {
	margin-top: 6px;
}

body.single-product:not(.bsm-scope) .npdp-stock-notify-form {
	display: flex;
	flex-direction: column;
	max-width: 360px;
}

body.single-product:not(.bsm-scope) .npdp-stock-notify-form label {
	font-size: 12px;
	color: #666;
	margin: 0 0 4px;
}

body.single-product:not(.bsm-scope) .npdp-stock-notify-form input[type="email"] {
	font-size: 13px;
	padding: 10px 12px;
	border: 1px solid #ddd;
	background: #fff;
	font-family: inherit;
	margin-bottom: 10px;
}

body.single-product:not(.bsm-scope) .npdp-stock-notify-form .npdp-stock-submit {
	margin-top: 0;
}


/* ---------- Typography refinement (Normal PDP only) ----------
 * Scope: body.npdp-active - explicit server-verified marker, excludes BSM
 * and BASEKA Tiles. Neutral system stack replaces theme defaults (Sofia Pro
 * / Poppins) which read as heavy/rounded marketplace typography. No new
 * font files or external requests - just font-family on existing text. */
body.npdp-active .npdp-ceramic-info,
body.npdp-active .npdp-row,
body.npdp-active .npdp-spec-row,
body.npdp-active .npdp-drawer-text,
body.npdp-active .woocommerce-product-details__short-description {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Header nav weight/size only while Normal PDP is active - sitewide header
 * typography on other page types is untouched. */
body.npdp-active .site-header .main-navigation a,
body.npdp-active .site-header nav a {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
}

/* Compact vertical rhythm between title / price / stock - keep some
 * breathing room, just remove the oversized theme-default gaps. */
body.npdp-active .summary > .product_title {
	margin-bottom: 6px;
}
body.npdp-active .summary > p.price {
	margin-top: 0;
	margin-bottom: 10px;
}


/* ---------- Tiered pricing accordion (Normal PDP only) ----------
 * Scope: body.npdp-active. The real .tpt__tiered-pricing plugin node is
 * relocated (not cloned) by initTierAccordion() in normal-pdp.js into an
 * inline accordion row here - verified live that its quantity-driven
 * active-row calculation keeps working after the move. Only presentation
 * is touched: discount % column hidden, brown fill/border removed, table
 * chrome stripped down to minimal two-column rows. Real dynamic values
 * from the plugin are never hardcoded here. */
body.npdp-active .npdp-tier-row .npdp-row-plus {
	font-weight: 300;
}
body.npdp-active .npdp-tier-body {
	padding: 4px 2px 10px;
}
body.npdp-active .tpt__tiered-pricing {
	margin: 0;
	background: transparent !important;
}
body.npdp-active .tpt__tiered-pricing .clear {
	display: none;
}
body.npdp-active .tiered-pricing-wrapper {
	background: transparent !important;
	border: none !important;
}
body.npdp-active .tiered-pricing-table {
	width: 100%;
	border-collapse: collapse;
	background: transparent !important;
	border: none !important;
}
body.npdp-active .tiered-pricing-table thead {
	display: none;
}
body.npdp-active .tiered-pricing-table tbody tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: none !important;
	border-bottom: 1px solid #ececec !important;
	background: transparent !important;
	padding: 9px 0;
}
body.npdp-active .tiered-pricing-table tbody tr:last-child {
	border-bottom: none !important;
}
body.npdp-active .tiered-pricing-table td {
	border: none !important;
	background: transparent !important;
	padding: 0 !important;
	font-size: 13px;
	font-weight: 400;
	color: #1a1a1a;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.npdp-active .tiered-pricing-table td:nth-child(2) {
	display: none;
}
body.npdp-active .tiered-pricing-table td:nth-child(1) {
	text-align: left;
}
body.npdp-active .tiered-pricing-table td:nth-child(3) {
	text-align: right;
	font-weight: 500;
}


/* ---------- Mobile typography (Normal PDP only) ----------
 * Same body.npdp-active scope; only overrides the two sizes that need to
 * be smaller than desktop on narrow viewports, per spec (title 22-24px,
 * price 24-28px). Desktop values above (26px/28px) stay for >=768px. */
@media (max-width: 767px) {
	body.npdp-active .product_title.entry-title,
	body.npdp-active .product_title {
		font-size: 23px !important;
	}
	body.npdp-active p.price {
		font-size: 25px !important;
	}
}


/* ---------- FINAL SCALE + PROPORTIONS CORRECTION (2026-08-23) ----------
 * Scope: body.npdp-active only. Additive overrides (uses !important) so they
 * win regardless of source order against earlier rules in this file or the
 * theme/plugin stylesheets loaded after us. Nothing here touches product
 * data, BSM, or BASEKA Tiles. Desktop-only (matches the >=1024px gate the
 * JS itself uses to build .npdp-frame markup). */
@media (min-width: 1024px) {

	/* Gallery: 2026-08-23 correction - catalog images are being standardized
	 * as composed/backgrounded product photos where scale + breathing room is
	 * baked into the asset itself. The page must not add an artificial stage,
	 * shrink, or oversized empty frame around every image - that responsibility
	 * belongs to the image, not the layout. Natural full-width vertical flow,
	 * consecutive editorial panels, near-zero gap between them. No per-product
	 * exceptions (incl. Burner) - one predictable rendering standard for all.
	 * The margin:0 shorthand below also neutralizes any UA default margin if
	 * .npdp-frame happens to render as a <figure> or similar element. */
	body.npdp-active .npdp-frame {
		display: block !important;
		width: 100% !important;
		min-height: 0 !important;
		padding: 0 !important;
		margin: 0 0 2px !important;
	}
	body.npdp-active .npdp-frame img {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: none !important;
		object-fit: contain !important;
		margin: 0 !important;
	}

	/* Right purchase panel: constrain to a comfortable reading width and
	 * center it within its column, instead of stretching full-track. */
	body.npdp-active .product-summary > .summary.entry-summary,
	body.npdp-active .summary.entry-summary {
		width: min(100%, 560px) !important;
		max-width: 560px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	/* Typography: reduced once more toward the Prada reference. */
	body.npdp-active .product_title.entry-title,
	body.npdp-active .product_title {
		font-size: 23px !important;
		line-height: 1.25 !important;
		margin-bottom: 10px !important;
	}
	body.npdp-active p.price {
		font-size: 23px !important;
		margin-top: 0 !important;
		margin-bottom: 18px !important;
	}
	body.npdp-active .npdp-ceramic-info,
	body.npdp-active .npdp-row,
	body.npdp-active .npdp-spec-row {
		font-size: 12px !important;
	}
	body.npdp-active .stock {
		font-size: 12px !important;
	}
	body.npdp-active .npdp-drawer-text,
	body.npdp-active .npdp-drawer-title {
		font-size: 12px !important;
	}
	body.npdp-active .tiered-pricing-table td,
	body.npdp-active .tiered-pricing-table th,
	body.npdp-active .npdp-tier-row {
		font-size: 12px !important;
	}

	/* Vertical rhythm before the purchase controls. */
	body.npdp-active form.cart {
		margin-top: 26px !important;
	}

	/* Tier pricing: keep the active-row calculation logic (class stays),
	 * just strip the brown highlight so it reads as plain, minimal rows. */
	body.npdp-active .tiered-pricing-table tr.tiered-pricing--active {
		background: transparent !important;
		font-weight: 500 !important;
	}
	body.npdp-active .tiered-pricing-table tr.tiered-pricing--active td {
		background: transparent !important;
		color: inherit !important;
	}

	/* CTA + quantity: compact, Prada-scale controls. */
	body.npdp-active .quantity {
		width: 116px !important;
		flex: 0 0 116px !important;
	}
	body.npdp-active .quantity .qty,
	body.npdp-active input.qty {
		height: 47px !important;
		font-size: 13px !important;
		text-align: center;
	}
	body.npdp-active .single_add_to_cart_button {
		height: 47px !important;
		font-size: 11.5px !important;
		font-weight: 500 !important;
		letter-spacing: 0.06em;
		flex: 1 1 auto !important;
	}
}
