/* ============================================================
   MONSTERS OF TYPE — Merch Product Page Styles
   Template: single-product-merch.php

   Spacing: .mot-mp-sidebar → --mot-mp-space, --mot-mp-gap, --mot-mp-label-w, --mot-mp-control-h
   Layout:  purchase block .mot-mp-block--purchase (size + price + cart)
   JS:       merch-product.js — qty − / + only
   ============================================================ */


/* ─── Page shell ───────────────────────────────────────────── */
body.mot-merch-product-page {
	background-color: var(--mot-black);
	color: var(--mot-off-white);
}

/* Failsafe: WC may still print PhotoSwipe root after CSS was dequeued —
   unstyled .pswp__button nodes otherwise show as cyan blocks bottom-left. */
body.mot-merch-product-page .pswp,
body.mot-merch-product-page #photoswipe-fullscreen-dialog {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.mot-mp {
	/* Solid nav is in-flow (--mot-nav-space: 0); add breathing room under the nav. */
	padding-top: calc(var(--mot-nav-space) + clamp(2.5rem, 5vw, 4rem));
	padding-bottom: clamp(3rem, 6vw, 5rem);
}

.mot-mp__inner {
	padding-block: 0;
	row-gap: clamp(1.25rem, 3vw, 2rem);
}

/* Let gallery / summary / tabs sit on the same 12-col grid. */
.mot-mp-product {
	display: contents;
}


/* ─── Notices — beat Kadence/WC light-box + blue CTA ───────── */
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-message,
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-info,
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-error,
html.mot-template body.mot-merch-product-page .mot-mp-notices ul.woocommerce-error {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.25rem;
	margin: 0 0 clamp(1rem, 2vw, 1.5rem) !important;
	padding: 0.875rem 1.125rem !important;
	min-height: 0 !important;
	background: var(--mot-dark) !important;
	border: 1px solid var(--mot-border) !important;
	border-left: 3px solid var(--mot-vibrant-orange) !important;
	border-radius: 0 !important;
	color: var(--mot-off-white) !important;
	font-family: var(--mot-sans) !important;
	font-size: 0.9375rem !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	box-shadow: none !important;
	list-style: none;
}

html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-error,
html.mot-template body.mot-merch-product-page .mot-mp-notices ul.woocommerce-error {
	border-left-color: var(--mot-error) !important;
	background: color-mix(in srgb, var(--mot-error) 14%, transparent) !important;
	border-color: var(--mot-error) !important;
	color: var(--mot-white) !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-message::before,
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-info::before,
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-error::before {
	display: none !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-message a:not(.button),
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-info a:not(.button),
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-error a:not(.button) {
	color: var(--mot-vibrant-orange) !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-message a:not(.button):hover,
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-info a:not(.button):hover,
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-error a:not(.button):hover {
	color: var(--mot-white) !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-notices a.button,
html.mot-template body.mot-merch-product-page .mot-mp-notices a.button:visited,
html.mot-template body.mot-merch-product-page .mot-mp-notices .button.wc-forward {
	-webkit-appearance: none;
	appearance: none;
	float: none !important;
	order: 2;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 0 0 0.5rem !important;
	padding: 0.625rem 1.25rem !important;
	min-height: 2.5rem;
	font-family: var(--mot-sans) !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2 !important;
	text-decoration: none !important;
	color: var(--mot-black) !important;
	background: var(--mot-vibrant-orange) !important;
	border: 1px solid var(--mot-vibrant-orange) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: background var(--mot-dur) var(--mot-ease),
	            color var(--mot-dur) var(--mot-ease),
	            border-color var(--mot-dur) var(--mot-ease);
}

html.mot-template body.mot-merch-product-page .mot-mp-notices a.button:first-of-type {
	margin-left: auto !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-notices a.button:hover,
html.mot-template body.mot-merch-product-page .mot-mp-notices a.button:focus,
html.mot-template body.mot-merch-product-page .mot-mp-notices a.button:focus-visible,
html.mot-template body.mot-merch-product-page .mot-mp-notices a.button:active,
html.mot-template body.mot-merch-product-page .mot-mp-notices .button.wc-forward:hover,
html.mot-template body.mot-merch-product-page .mot-mp-notices .button.wc-forward:focus,
html.mot-template body.mot-merch-product-page .mot-mp-notices .button.wc-forward:focus-visible,
html.mot-template body.mot-merch-product-page .mot-mp-notices .button.wc-forward:active {
	color: var(--mot-vibrant-orange) !important;
	background: transparent !important;
	border-color: var(--mot-vibrant-orange) !important;
	box-shadow: none !important;
}


/* ─── Gallery stack (8 cols) — full images, no WC slider/thumbs ─ */
.mot-mp-gallery {
	align-self: start;
}

/* Kill default WC gallery if anything still injects it. */
.mot-mp-gallery .woocommerce-product-gallery,
.mot-mp-gallery .flex-control-thumbs,
.mot-mp-gallery .flex-viewport {
	display: none !important;
}

.mot-mp-gallery__stack {
	display: flex;
	flex-direction: column;
	gap: clamp(0.75rem, 2vw, 1.25rem);
	width: 100%;
	margin: 0;
	padding: 0;
}

.mot-mp-gallery__figure {
	margin: 0;
	width: 100%;
}

.mot-mp-gallery__img,
.mot-mp-gallery__placeholder img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border: 0;
}


/* ─── Summary (4 cols, sticky buy panel) ───────────────────── */
.mot-mp-summary {
	align-self: start;
	position: sticky;
	top: calc(var(--mot-nav-height) + 2rem);
}

/* Sidebar stack — same structure as merch_product_stacked.html */
body.mot-merch-product-page .mot-mp-sidebar {
	--mot-mp-space: 1.25rem;
	--mot-mp-label-w: 4.5rem;
	--mot-mp-control-h: 3rem;
	--mot-mp-gap: 1rem;
	display: flex;
	flex-direction: column;
}

body.mot-merch-product-page .mot-mp-sidebar > .mot-mp-block {
	margin: 0;
	padding: var(--mot-mp-space) 0;
	border-top: 1px solid var(--mot-border);
}

body.mot-merch-product-page .mot-mp-sidebar > .mot-mp-block:first-child {
	border-top: 0;
	padding-top: 0;
}

body.mot-merch-product-page .mot-mp-sidebar > .mot-mp-block--title {
	padding-bottom: var(--mot-mp-gap);
}

/* Purchase: size + price + cart — one border above and below (not per-row .mot-mp-block) */
body.mot-merch-product-page .mot-mp-sidebar > .mot-mp-block--purchase {
	padding: var(--mot-mp-space) 0;
	border-top: 1px solid var(--mot-border);
	border-bottom: 1px solid var(--mot-border);
}

body.mot-merch-product-page .mot-mp-block--purchase form.variations_form {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
}

body.mot-merch-product-page .mot-mp-purchase__size ~ .mot-mp-purchase__price,
body.mot-merch-product-page .mot-mp-purchase__size ~ .mot-mp-purchase__cart,
body.mot-merch-product-page .mot-mp-purchase__price ~ .mot-mp-purchase__cart {
	margin-top: var(--mot-mp-gap);
}

body.mot-merch-product-page .mot-mp-purchase__cart form.cart {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--mot-mp-gap);
	align-items: center;
	margin: 0;
	width: 100%;
}

body.mot-merch-product-page .mot-mp-purchase__cart form.cart .quantity {
	grid-column: 1;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

/* ATC — variable (.mot-mp-cart-row) + simple/Printful (form.cart direct) */
html.mot-template body.mot-merch-product-page .mot-mp-cart-row button.single_add_to_cart_button,
html.mot-template body.mot-merch-product-page .mot-mp-cart-row .single_add_to_cart_button.button,
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart button.single_add_to_cart_button,
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart .single_add_to_cart_button.button {
	grid-column: 2;
	justify-self: stretch !important;
	align-self: center !important;
	width: 100% !important;
	min-width: 0 !important;
	height: var(--mot-mp-control-h) !important;
	min-height: var(--mot-mp-control-h) !important;
	float: none !important;
	position: static !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	white-space: nowrap !important;
	padding: 0 1.25rem !important;
	font-family: var(--mot-sans) !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mot-black) !important;
	background: var(--mot-vibrant-orange) !important;
	background-color: var(--mot-vibrant-orange) !important;
	border: 1px solid var(--mot-vibrant-orange) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background var(--mot-dur) var(--mot-ease),
	            color var(--mot-dur) var(--mot-ease),
	            border-color var(--mot-dur) var(--mot-ease);
}

html.mot-template body.mot-merch-product-page .mot-mp-cart-row button.single_add_to_cart_button:hover:not(:disabled):not(.disabled),
html.mot-template body.mot-merch-product-page .mot-mp-cart-row .single_add_to_cart_button.button:hover:not(:disabled):not(.disabled),
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart button.single_add_to_cart_button:hover:not(:disabled):not(.disabled),
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart .single_add_to_cart_button.button:hover:not(:disabled):not(.disabled) {
	background: transparent !important;
	background-color: transparent !important;
	color: var(--mot-vibrant-orange) !important;
	border-color: var(--mot-vibrant-orange) !important;
}

/* Grey until a variation is chosen; orange when WC enables the button. */
html.mot-template body.mot-merch-product-page .mot-mp-cart-row button.single_add_to_cart_button:disabled,
html.mot-template body.mot-merch-product-page .mot-mp-cart-row button.single_add_to_cart_button.disabled,
html.mot-template body.mot-merch-product-page .mot-mp-cart-row .single_add_to_cart_button.button:disabled,
html.mot-template body.mot-merch-product-page .mot-mp-cart-row .single_add_to_cart_button.button.disabled,
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart button.single_add_to_cart_button:disabled,
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart button.single_add_to_cart_button.disabled,
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart .single_add_to_cart_button.button:disabled,
html.mot-template body.mot-merch-product-page .mot-mp-purchase__cart form.cart .single_add_to_cart_button.button.disabled {
	background: var(--mot-border) !important;
	background-color: var(--mot-border) !important;
	color: var(--mot-muted) !important;
	border-color: var(--mot-border) !important;
	opacity: 1 !important;
	cursor: not-allowed;
}

/* View cart + Checkout — under ATC once the product is in the bag */
body.mot-merch-product-page .mot-mp-after-cart {
	display: none;
	grid-column: 1 / -1;
	width: 100%;
	margin: 0.75rem 0 0;
	gap: 0.65rem;
}

body.mot-merch-product-page .mot-mp-after-cart.is-visible {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn,
html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn:visited {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: var(--mot-mp-control-h, 3rem);
	padding: 0 1rem !important;
	box-sizing: border-box;
	font-family: var(--mot-sans) !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none !important;
	line-height: 1.2 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transition: background var(--mot-dur) var(--mot-ease),
	            color var(--mot-dur) var(--mot-ease),
	            border-color var(--mot-dur) var(--mot-ease);
}

html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--cart,
html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--cart:visited {
	color: var(--mot-vibrant-orange) !important;
	background: transparent !important;
	border: 1px solid var(--mot-vibrant-orange) !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--cart:hover,
html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--cart:focus-visible {
	color: var(--mot-black) !important;
	background: var(--mot-vibrant-orange) !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--checkout,
html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--checkout:visited {
	color: var(--mot-black) !important;
	background: var(--mot-vibrant-orange) !important;
	border: 1px solid var(--mot-vibrant-orange) !important;
}

html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--checkout:hover,
html.mot-template body.mot-merch-product-page .mot-mp-after-cart__btn--checkout:focus-visible {
	color: var(--mot-vibrant-orange) !important;
	background: transparent !important;
}

/* Notice banner: keep View cart + Checkout as a button pair */
html.mot-template body.mot-merch-product-page .mot-mp-notices .woocommerce-message {
	gap: 0.65rem 1rem;
}

body.mot-merch-product-page .mot-mp-block--meta {
	border-top: 0;
}

body.mot-merch-product-page .mot-mp-block--title .product_title {
	margin: 0;
	font-family: var(--mot-display);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: var(--mot-off-white);
}

.mot-mp-summary .woocommerce-product-details__short-description {
	margin: 0;
	color: var(--mot-light-gray);
	line-height: 1.65;
	font-size: 0.9375rem;
}

.mot-mp-summary .woocommerce-product-details__short-description p {
	margin: 0 0 0.75rem;
}

.mot-mp-summary .woocommerce-product-details__short-description p:last-child {
	margin-bottom: 0;
}

/* Stat / aside callout — override Kadence blue quote bar */
body.mot-merch-product-page .mot-mp-summary .woocommerce-product-details__short-description blockquote {
	margin: 1.25rem 0;
	padding: 0.15rem 0 0.15rem 1rem;
	border: 0;
	border-left: 2px solid var(--mot-vibrant-orange);
	background: transparent;
	quotes: none;
	color: var(--mot-light-gray);
	line-height: 1.45;
	font-style: normal;
}

body.mot-merch-product-page .mot-mp-summary .woocommerce-product-details__short-description blockquote::before,
body.mot-merch-product-page .mot-mp-summary .woocommerce-product-details__short-description blockquote::after {
	content: none;
}

body.mot-merch-product-page .mot-mp-summary .woocommerce-product-details__short-description blockquote p {
	margin: 0 0 0.35rem;
}

body.mot-merch-product-page .mot-mp-summary .woocommerce-product-details__short-description blockquote p:last-child {
	margin-bottom: 0;
}

body.mot-merch-product-page .mot-mp-summary .woocommerce-product-details__short-description blockquote strong {
	color: var(--mot-off-white);
	font-weight: 600;
}

/* Duplicate prices from WC variation shell */
.mot-mp-summary .woocommerce-variation-price {
	display: none !important;
}

/* .price-row */
.mot-mp-price-row {
	display: flex;
	justify-content: flex-end;
}

.mot-mp-price-row .price,
.mot-mp-price-row p.price {
	margin: 0;
	font-family: var(--mot-sans);
	font-size: clamp(1.375rem, 2.5vw, 1.625rem);
	font-weight: 600;
	color: var(--mot-off-white);
}

.mot-mp-summary p.price,
.mot-mp-summary .price {
	margin: 0;
	font-family: var(--mot-sans);
	font-weight: 600;
	color: var(--mot-off-white);
}

.mot-mp-summary p.price del,
.mot-mp-summary .price del {
	color: var(--mot-muted);
	font-weight: 400;
	opacity: 0.85;
}

.mot-mp-summary p.price ins,
.mot-mp-summary .price ins {
	text-decoration: none;
	color: var(--mot-vibrant-orange);
}

/* ─── Stock ────────────────────────────────────────────────── */
.mot-mp-summary .stock {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mot-mp-summary .stock.in-stock {
	color: var(--mot-muted);
}

.mot-mp-summary .stock.out-of-stock {
	color: var(--mot-hot-pink);
}


/*
 * Beat WC: .woocommerce div.product form.cart .variations { margin-bottom: 2em }
 * (wins over our earlier rule — that’s why inspector still showed ~15px)
 */
body.mot-merch-product-page.woocommerce .mot-mp-block--purchase .variations,
body.mot-merch-product-page.woocommerce .mot-mp-block--purchase table.variations,
body.mot-merch-product-page.woocommerce .mot-mp-block--purchase table.variations tbody,
body.mot-merch-product-page.woocommerce .mot-mp-block--purchase table.variations tr,
body.mot-merch-product-page.woocommerce .mot-mp-block--purchase table.variations td,
body.mot-merch-product-page.woocommerce .mot-mp-block--purchase table.variations th {
	margin: 0 !important;
}

/* .size-row */
.mot-mp-size-row {
	display: grid;
	grid-template-columns: var(--mot-mp-label-w) 1fr;
	gap: var(--mot-mp-gap);
	align-items: center;
}

.mot-mp-size-label {
	font-family: var(--mot-sans);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mot-muted);
}

.mot-mp-size-control select {
	width: 100%;
	height: var(--mot-mp-control-h);
	box-sizing: border-box;
	background-color: var(--mot-dark);
	border: 1px solid var(--mot-border);
	color: var(--mot-off-white);
	font-family: var(--mot-sans);
	font-size: 0.8125rem;
	padding: 0 2rem 0 0.75rem;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	cursor: pointer;
}

.mot-mp-size-control select:focus {
	outline: none;
	border-color: var(--mot-vibrant-orange);
}

.mot-mp-block--purchase .reset_variations {
	display: none;
	font-size: 0.75rem;
	color: var(--mot-muted);
	margin-top: 0.5rem;
}

.mot-mp-block--purchase .reset_variations[style*='visible'] {
	display: inline;
}

/* WC variation shell — empty until size picked; must exist for JS */
.mot-mp-block--purchase .single_variation_wrap {
	display: block !important;
	margin: 0;
	min-height: 0;
}

.mot-mp-block--purchase .woocommerce-variation:empty {
	display: none !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* .cart-row */
.mot-mp-cart-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--mot-mp-gap);
	align-items: center;
	margin: 0;
	width: 100%;
}

.mot-mp-cart-row .quantity {
	grid-column: 1;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.mot-mp-cart-row .stock {
	grid-column: 1 / -1;
	margin: 0.5rem 0 0;
}

/* Qty stepper: [ − ] [ n ] [ + ] */
.mot-mp-block--purchase .mot-mp-qty {
	display: flex;
	align-items: center;
	position: relative;
	height: var(--mot-mp-control-h);
	border: 1px solid var(--mot-border);
	background: var(--mot-dark);
}

.mot-mp-block--purchase .mot-mp-qty .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mot-mp-qty__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2.75rem;
	width: 2.75rem;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--mot-off-white);
	font-family: var(--mot-sans);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: color var(--mot-dur) var(--mot-ease), background var(--mot-dur) var(--mot-ease);
}

.mot-mp-qty__btn:hover:not(:disabled) {
	color: var(--mot-vibrant-orange);
	background: rgba(255, 102, 0, 0.08);
}

.mot-mp-qty__btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.mot-mp-block--purchase .mot-mp-qty .qty {
	width: 3rem;
	height: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-left: 1px solid var(--mot-border);
	border-right: 1px solid var(--mot-border);
	border-radius: 0;
	color: var(--mot-off-white);
	font-family: var(--mot-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: var(--mot-mp-control-h);
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
	pointer-events: none;
}

.mot-mp-block--purchase .mot-mp-qty .qty::-webkit-outer-spin-button,
.mot-mp-block--purchase .mot-mp-qty .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


/* ─── Meta: category/tags left, shipping right ─────────────── */
.mot-mp-block--meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
}

.mot-mp-summary__meta .product_meta,
.mot-mp-summary__meta .product_meta > span {
	margin: 0;
	font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
	color: var(--mot-muted) !important;
	line-height: 1.6;
}

.mot-mp-summary__meta .product_meta .sku_wrapper {
	display: none !important;
}

body.mot-merch-product-page .mot-mp-summary__meta a,
body.mot-merch-product-page .mot-mp-summary__meta a:link,
body.mot-merch-product-page .mot-mp-summary__meta a:visited,
body.mot-merch-product-page .mot-mp-summary__meta .posted_in a,
body.mot-merch-product-page .mot-mp-summary__meta .tagged_as a,
body.mot-merch-product-page .woocommerce .mot-mp-summary__meta .product_meta a {
	color: var(--mot-muted) !important;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

body.mot-merch-product-page .mot-mp-summary__meta a:hover,
body.mot-merch-product-page .mot-mp-summary__meta .posted_in a:hover,
body.mot-merch-product-page .mot-mp-summary__meta .tagged_as a:hover,
body.mot-merch-product-page .woocommerce .mot-mp-summary__meta .product_meta a:hover {
	color: var(--mot-vibrant-orange) !important;
}

.mot-mp-summary__shipping {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--mot-muted);
	text-align: right;
	white-space: nowrap;
}


/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
	.mot-mp-summary {
		position: static;
		top: auto;
	}
}

@media (max-width: 600px) {
	.mot-mp {
		padding-bottom: 2.5rem;
	}

	.mot-mp-summary {
		gap: 1rem;
	}

	.mot-mp-cart-row {
		grid-template-columns: auto 1fr;
	}
}
