/*
 * Single Product Styles — Editorial layout extension.
 *
 * Loaded ON TOP OF single-post.css when on a WooCommerce product page
 * (see functions.php is_product() block). Reuses every post class — only
 * adds rules for elements posts don't have:
 *   - product gallery thumbnail strip
 *   - inline buy-card CTA
 *   - quantity input + add-to-cart button states
 *   - price typography in the header meta + related cards
 *
 * Scoped under .kadence-single-product so it never bleeds into actual posts.
 */

/* ==========================================================================
   A) Product header meta — price + SKU + reviews use the post dot-divider
   ========================================================================== */

.kadence-single-product .product-meta .meta-label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--global-palette5);
	margin-right: 0.4em;
}

.kadence-single-product .product-meta .price {
	font-weight: 700;
	color: var(--global-palette3);
	font-size: 1rem;
}

/* WooCommerce wraps the new price in <ins> when there's a sale */
.kadence-single-product .product-meta .price ins {
	background: transparent;
	text-decoration: none;
	color: var(--global-palette-highlight);
}

.kadence-single-product .product-meta .price del {
	color: var(--global-palette5);
	opacity: 0.7;
	margin-right: 0.4em;
}

.kadence-single-product .product-meta .sku {
	font-family: "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "Courier New", Courier, monospace;
	font-size: 0.875rem;
	color: var(--global-palette4);
}

.kadence-single-product .product-meta .star-rating {
	font-size: 0.875rem;
	margin-right: 0.4em;
}

/* Top category eyebrow ("MENTORPIECE SIM") above the product title. Mirrors the
   single-post .entry-taxonomies eyebrow (orange small-caps, no underline). The
   single-post rule is scoped to .kadence-single-post so it doesn't reach the
   product page; without this the global a:link rule paints it orange AND
   underlines it. !important beats the global link rules. */
.kadence-single-product .entry-taxonomies .category-links a,
.kadence-single-product .entry-taxonomies .category-links a:link,
.kadence-single-product .entry-taxonomies .category-links a:visited {
	color: #fb6b00 !important;
	text-decoration: none !important;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.kadence-single-product .entry-taxonomies .category-links a:hover {
	color: #b95001 !important;
	text-decoration: none !important;
}

/* The review-count link has its OWN border-bottom underline. The site-wide
   a:link rule (styles.css) would add a second text-decoration underline (double
   line) and recolor it orange. Force the component's intended look: inherited
   color, no text-decoration underline (keep only the border-bottom). !important
   to beat the global link rules' high :not()-chain specificity. */
.kadence-single-product .product-meta .reviews-link,
.kadence-single-product .product-meta .reviews-link:link,
.kadence-single-product .product-meta .reviews-link:visited {
	color: inherit !important;
	text-decoration: none !important;
	border-bottom: 1px solid color-mix(in srgb, var(--global-palette-highlight) 50%, transparent);
}

.kadence-single-product .product-meta .reviews-link:hover {
	color: var(--global-palette-highlight) !important;
	text-decoration: none !important;
}

/* ==========================================================================
   B) Product featured image — UN-FLOAT the post-template treatment.

   single-post.css floats .post-featured-image right at 40% inside
   .single-content (a deliberate editorial choice for long-form posts).
   On a product page that float makes the buy/marketing flow wrap awkwardly
   around the image. We render the figure full-width above the description.

   We also override shop-styles.css `.woocommerce .entry-content` (cart/
   checkout rule that clamps to 800px + adds 20px side padding) so the
   product description honours the 842px reading column from single-post.css.
   ========================================================================== */

.kadence-single-product .product-content {
	position: relative;
}

/* Reset the cart-page entry-content rule for the product reading column */
body.woocommerce.single-product .entry-content,
.kadence-single-product .entry-content {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Featured image — float RIGHT of description text (post-page treatment).
   Inherits the .post-featured-image float behaviour from single-post.css
   but constrains the width so the image is comfortably scaled, not column-wide. */
.kadence-single-product .product-content .post-featured-image,
.kadence-single-product .product-content .product-featured-image {
	float: right;
	width: 40%;
	max-width: 18rem;
	margin: 0 0 var(--global-md-spacing) var(--global-md-spacing);
	border-radius: 0.75rem;
	overflow: hidden;
	clear: right;
}

.kadence-single-product .product-content .post-featured-image img,
.kadence-single-product .product-content .product-featured-image img {
	display: block;
	width: 100%;
	height: auto;
}

/* Mobile: stack image above description */
@media screen and (max-width: 600px) {
	.kadence-single-product .product-content .post-featured-image,
	.kadence-single-product .product-content .product-featured-image {
		float: none;
		width: 100%;
		max-width: 100%;
		margin: 0 0 var(--global-md-spacing) 0;
	}
}

/* Suppress the post drop-cap on the product short-description.
   The drop cap was lovely on a long-form post; on a price/CTA flow it
   eats the first letter of marketing copy. */
.kadence-single-product .single-content > p:first-of-type::first-letter,
.kadence-single-product .product-short-description > p:first-of-type::first-letter {
	float: none;
	font-size: inherit;
	line-height: inherit;
	font-weight: inherit;
	color: inherit;
	margin: 0;
	font-family: inherit;
}

.kadence-single-product .product-short-description {
	margin: 0 0 var(--global-md-spacing);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--global-palette3);
}

.kadence-single-product .product-short-description p {
	margin: 0 0 var(--global-sm-spacing);
}

.kadence-single-product .product-short-description p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   C) Product gallery thumbnails — strip below the main figure
   ========================================================================== */

.kadence-single-product .product-gallery-thumbs {
	display: none; /* one-image-per-product shop — thumb just duplicates the featured image */
	grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
	gap: 0.75rem;
	margin: 0 0 var(--global-md-spacing);
	clear: both;
}

.kadence-single-product .product-gallery-thumbs__item {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0.5rem;
	background: var(--global-palette9);
	border: 1px solid color-mix(in srgb, var(--global-gray-500) 40%, transparent);
	transition:
		border-color 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kadence-single-product .product-gallery-thumbs__item:hover,
.kadence-single-product .product-gallery-thumbs__item:focus-visible {
	border-color: var(--global-palette-highlight);
	transform: translateY(-2px);
	outline: none;
}

.kadence-single-product .product-gallery-thumbs__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ==========================================================================
   D) Buy card — inline editorial CTA
   ========================================================================== */

.kadence-single-product .product-buy-card {
	clear: both;
	margin: var(--global-lg-spacing) 0 0;
	padding: 0;
	background: var(--global-palette7);
	border-radius: 1rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	overflow: hidden;
}

.kadence-single-product .product-buy-card__inner {
	position: relative;
	padding: var(--global-boxed-spacing);
}

/* Orange accent rule on the left edge — same vocabulary as the section
   underline on .comments-list-header in single-post.css */
.kadence-single-product .product-buy-card__inner::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1.5rem;
	bottom: 1.5rem;
	width: 3px;
	background: var(--global-palette-highlight);
	border-radius: 0 2px 2px 0;
}

.kadence-single-product .product-buy-card__head {
	margin-bottom: 1.25rem;
}

.kadence-single-product .product-buy-card__eyebrow {
	display: block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--global-palette5);
	margin-bottom: 0.5rem;
}

.kadence-single-product .product-buy-card__title {
	font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
	line-height: 1.2;
	font-weight: 700;
	color: var(--global-palette3);
	margin: 0;
	letter-spacing: -0.01em;
}

/* Price + CTA on the same row: price on the left, BUY on the right */
.kadence-single-product .product-buy-card__row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
}

.kadence-single-product .product-buy-card__row .product-buy-card__price {
	margin-bottom: 0;
}

.kadence-single-product .product-buy-card__row .product-buy-card__cta {
	flex: 1 1 auto;
	margin: 0;
}

@media screen and (max-width: 480px) {
	.kadence-single-product .product-buy-card__row {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
}

.kadence-single-product .product-buy-card__price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.kadence-single-product .product-buy-card__price .price,
.kadence-single-product .product-buy-card__price .amount {
	font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem);
	font-weight: 700;
	color: var(--global-palette3);
	line-height: 1;
	letter-spacing: -0.02em;
}

/* AA-compliant orange for sale price text on white surface (#E65C00 → 4.6:1) */
.kadence-single-product .product-buy-card__price ins {
	background: transparent;
	text-decoration: none;
	color: #E65C00;
}

.kadence-single-product .product-buy-card__price del {
	color: var(--global-palette5);
	opacity: 0.7;
	font-size: 1.125rem;
	font-weight: 500;
}

/* Stock badge — small-caps label + bold count, mat-on-card editorial chip.
   Sits directly below the price as a quiet supporting line. */
.kadence-single-product .product-buy-card__stock {
	display: inline-flex;
	align-items: baseline;
	gap: 0.4rem;
	padding: 0.25rem 0.625rem;
	background: rgba(251, 107, 0, 0.08);
	border-radius: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--global-palette-highlight);
	line-height: 1.4;
}

.kadence-single-product .product-buy-card__stock strong {
	color: var(--global-palette3);
	font-weight: 700;
	letter-spacing: 0;
	font-size: 0.8125rem;
}

/* ==========================================================================
   E) Add-to-cart form inside the buy card
   ========================================================================== */

.kadence-single-product .product-buy-card__cta {
	margin: 0 0 1.25rem;
}

.kadence-single-product .product-buy-card__cta form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.75rem;
	margin: 0;
}

/* Quantity wrapper — hidden entirely. The shop is configured sold_individually
   so qty input is never user-facing. We kill any .quantity element to prevent
   border/padding artifacts from any source (Woo template variants, plugins). */
.kadence-single-product .product-buy-card__cta .quantity {
	display: none !important;
}

.kadence-single-product .product-buy-card__cta .quantity:focus-within {
	border-color: var(--global-palette-highlight);
	box-shadow: 0 0 0 3px rgba(251, 107, 0, 0.18);
}

.kadence-single-product .product-buy-card__cta .quantity label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.kadence-single-product .product-buy-card__cta input.qty {
	width: 4rem;
	padding: 0.85rem 0.5rem;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	color: var(--global-palette3);
	-moz-appearance: textfield;
}

.kadence-single-product .product-buy-card__cta input.qty:focus-visible {
	outline: none;
}

.kadence-single-product .product-buy-card__cta input.qty::-webkit-outer-spin-button,
.kadence-single-product .product-buy-card__cta input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* The CTA button — same editorial style as the comment-form submit */
.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button,
.kadence-single-product .product-buy-card__cta input.single_add_to_cart_button {
	flex: 1 1 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	min-height: 3rem;
	padding: 0.95rem 1.75rem;
	background: var(--global-palette-highlight);
	color: var(--global-palette9);
	border: none;
	border-radius: 0.625rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(251, 107, 0, 0.22), 0 1px 2px rgba(0, 0, 0, 0.04);
	transition:
		background-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
		box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button:hover,
.kadence-single-product .product-buy-card__cta input.single_add_to_cart_button:hover {
	background: var(--global-palette-highlight-alt);
	box-shadow: 0 6px 18px rgba(200, 86, 0, 0.28), 0 2px 4px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button:focus-visible,
.kadence-single-product .product-buy-card__cta input.single_add_to_cart_button:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 3px var(--global-palette9),
		0 0 0 6px var(--global-palette-highlight),
		0 6px 18px rgba(200, 86, 0, 0.28);
}

.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button:active,
.kadence-single-product .product-buy-card__cta input.single_add_to_cart_button:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(200, 86, 0, 0.2);
}

.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button.disabled,
.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Variation table on variable products — light editorial cleanup */
.kadence-single-product .product-buy-card__cta table.variations {
	width: 100%;
	margin: 0 0 0.75rem;
	border: none;
	background: transparent;
}

.kadence-single-product .product-buy-card__cta table.variations th,
.kadence-single-product .product-buy-card__cta table.variations td {
	padding: 0.4rem 0.5rem 0.4rem 0;
	border: none;
	background: transparent;
	vertical-align: middle;
}

.kadence-single-product .product-buy-card__cta table.variations th {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--global-palette5);
	width: 8rem;
}

.kadence-single-product .product-buy-card__cta table.variations select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	background: var(--global-palette9);
	border: 1px solid color-mix(in srgb, var(--global-gray-500) 80%, transparent);
	border-radius: 0.5rem;
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--global-palette3);
}

/* ==========================================================================
   F) Buy-card meta (SKU + category) — small-caps row at the bottom
   ========================================================================== */

.kadence-single-product .product-buy-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid color-mix(in srgb, var(--global-gray-500) 50%, transparent);
	font-size: 0.8125rem;
	color: var(--global-palette4);
}

.kadence-single-product .product-buy-card__meta .meta-label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--global-palette5);
	margin-right: 0.35em;
}

/* Category link in the buy card ("Mentorpiece Sim") — same double-underline /
   recolor issue as the review link above. Keep only its own border-bottom and
   muted color; suppress the global text-decoration underline. */
.kadence-single-product .product-buy-card__meta a,
.kadence-single-product .product-buy-card__meta a:link,
.kadence-single-product .product-buy-card__meta a:visited {
	color: var(--global-palette4) !important;
	text-decoration: none !important;
	border-bottom: 1px solid color-mix(in srgb, var(--global-palette-highlight) 50%, transparent);
}

.kadence-single-product .product-buy-card__meta a:hover {
	color: var(--global-palette-highlight) !important;
	text-decoration: none !important;
}

/* ==========================================================================
   G) Tag footer label
   ========================================================================== */

.kadence-single-product .product-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
}

.kadence-single-product .product-tags .meta-label {
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--global-palette5);
}

.kadence-single-product .product-tags .tags-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.kadence-single-product .product-tags .tags-links a {
	padding: 0.4em 0.6em;
	font-size: 80%;
	border: 1px solid var(--global-gray-500);
	border-radius: 0.25rem;
	color: var(--global-palette5);
	text-decoration: none;
	transition: background-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
	            color 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
	            border-color 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kadence-single-product .product-tags .tags-links a:hover {
	background: var(--global-palette-highlight);
	color: var(--global-palette-btn);
	border-color: var(--global-palette-highlight);
}

/* ==========================================================================
   H) Related products — horizontal editorial card grid (4 / 2 / 1).
      Lives outside the article. Distinct from the post's stacked list:
      products read as a grid of "buy options," not a sequence of articles.
   ========================================================================== */

.kadence-single-product .entry-related-products {
	margin: 4rem 0 3rem;
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.kadence-single-product .entry-related-products .entry-related-inner {
	max-width: 100%;
	margin: 0;
}

.kadence-single-product .entry-related-products .entry-related-header {
	margin-bottom: 1.5rem;
}

.kadence-single-product .entry-related-products .entry-related-eyebrow {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--global-palette5);
}

.kadence-single-product .entry-related-products .product-related-grid,
.kadence-single-product ul.product-related-grid {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	flex-direction: row;
}

@media screen and (max-width: 900px) {
	.kadence-single-product .entry-related-products .product-related-grid,
	.kadence-single-product ul.product-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 480px) {
	.kadence-single-product .entry-related-products .product-related-grid,
	.kadence-single-product ul.product-related-grid {
		grid-template-columns: 1fr;
	}
}

.kadence-single-product .related-product-card {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kadence-single-product .related-product-card::before {
	content: none;
}

.kadence-single-product .related-product-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease;
}

.kadence-single-product .related-product-link:hover {
	transform: translateY(-2px);
}

.kadence-single-product .related-product-link:hover .related-product-title {
	color: var(--global-palette-highlight, #fb6b00);
}

.kadence-single-product .related-product-media {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--global-palette8, #faf6f1);
	overflow: hidden;
	margin-bottom: 0.875rem;
	border-radius: 4px;
}

.kadence-single-product .related-product-media img,
.kadence-single-product .related-product-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.kadence-single-product .related-product-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	font-weight: 700;
	color: var(--global-palette5);
	opacity: 0.4;
}

.kadence-single-product .related-product-body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.kadence-single-product .related-product-cat {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--global-palette5);
}

.kadence-single-product .related-product-title {
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0;
	color: var(--global-palette3);
	transition: color 0.15s ease;
}

.kadence-single-product .related-product-price {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--global-palette3);
	white-space: nowrap;
	margin-top: 0.25rem;
}

.kadence-single-product .related-product-price del {
	color: var(--global-palette5);
	opacity: 0.7;
	margin-right: 0.3em;
	font-weight: 500;
}

.kadence-single-product .related-product-price ins {
	background: transparent;
	text-decoration: none;
	color: #E65C00;
}

/* ==========================================================================
   I) Reviews — inherit the post comments styles. Just a couple of Woo-only
   bits: the rating field on the form.
   ========================================================================== */

.kadence-single-product .comment-form-rating {
	margin-bottom: 1.5rem;
}

.kadence-single-product .comment-form-rating label {
	display: block;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 600;
	color: var(--global-palette5);
	margin-bottom: 0.5rem;
}

.kadence-single-product p.stars a {
	color: var(--global-palette5);
}

.kadence-single-product p.stars a:hover,
.kadence-single-product p.stars.selected a.active {
	color: var(--global-palette-highlight);
}

/* ==========================================================================
   J) WooCommerce notices (e.g. "added to cart") — match the moderation banner
   ========================================================================== */

.kadence-single-product .woocommerce-notices-wrapper .woocommerce-message,
.kadence-single-product .woocommerce-notices-wrapper .woocommerce-info,
.kadence-single-product .woocommerce-notices-wrapper .woocommerce-error {
	padding: 1rem 1.25rem;
	margin: 0 0 1.25rem;
	background: var(--global-palette7);
	border: none;
	border-left: 3px solid var(--global-palette-highlight);
	border-radius: 0.5rem;
	font-size: 0.9375rem;
	color: var(--global-palette3);
	box-shadow: none;
}

.kadence-single-product .woocommerce-notices-wrapper .woocommerce-error {
	border-left-color: #c8322f;
	background: #fdecea;
	color: #7a1d1b;
}

/* ==========================================================================
   K) Responsive
   ========================================================================== */

@media screen and (max-width: 767px) {
	.kadence-single-product .product-buy-card__inner {
		padding: 1.5rem 1.25rem;
	}

	.kadence-single-product .product-buy-card__inner::before {
		top: 1rem;
		bottom: 1rem;
	}

	.kadence-single-product .product-buy-card__cta form.cart {
		flex-direction: column;
		align-items: stretch;
	}

	.kadence-single-product .product-buy-card__cta .quantity {
		align-self: flex-start;
	}

	.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button,
	.kadence-single-product .product-buy-card__cta input.single_add_to_cart_button {
		width: 100%;
	}

	.kadence-single-product .product-gallery-thumbs {
		grid-template-columns: repeat(auto-fill, minmax(4rem, 1fr));
		gap: 0.5rem;
	}

	.kadence-single-product .product-meta {
		gap: 0.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kadence-single-product .product-gallery-thumbs__item,
	.kadence-single-product .product-buy-card__cta button.single_add_to_cart_button,
	.kadence-single-product .product-buy-card__cta input.single_add_to_cart_button,
	.kadence-single-product .product-buy-card__cta .quantity {
		transition: none;
	}
}
