/*
Theme Name:   Machic Child
 Theme URI:    http://klbtheme.com/machic/
 Description:  Machic Child Theme
 Author:       KlbTheme
 Author URI:   http://themeforest.net/user/KlbTheme
 Template:     machic
 Version:      1.0.17
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  machic-child
*/

/* =========================================================
   Product cards — aligned rows + hover description restored
   Only custom colors: title hover #c58408, cart #000000
   ========================================================= */

/* Equal-height cards */
.products:not(.list-view-products):not(.list-style) {
	align-items: stretch !important;
}

.products:not(.list-view-products):not(.list-style) > .product {
	padding: 0.5rem !important;
	display: flex !important;
	flex-direction: column !important;
	align-self: stretch !important;
	box-sizing: border-box !important;
}

/* Elementor Products widget: cancel the outer half of the card gutter so the
   grid sits flush with the widget; spacing comes from Elementor padding. */
.elementor-widget-woocommerce-products .products:not(.list-view-products):not(.list-style) {
	margin: -0.5rem !important;
}

/* One card background (visible always). overflow visible so hover description can show */
.products:not(.list-view-products):not(.list-style) .product-wrapper {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	height: 100% !important;
	min-height: 100% !important;
	background-color: var(--color-background, #fff) !important;
	border: 1px solid var(--color-product-fade-border, #e0e5ea) !important;
	border-radius: 8px !important;
	box-shadow: 0 1px 24px rgba(62, 68, 90, 0.08) !important;
	overflow: visible !important;
	position: relative !important;
	z-index: 1;
}

/* Fade layer — same width as card (theme uses -10px which makes hover WIDER) */
.products:not(.list-view-products):not(.list-style) .product-content-fade {
	display: block !important;
	opacity: 0 !important;
	pointer-events: none;
	left: 0.5rem !important;
	right: 0.5rem !important;
	top: 0 !important;
	width: auto !important;
	max-width: none !important;
	box-sizing: border-box !important;
}

.products:not(.list-view-products):not(.list-style) .product:hover {
	z-index: 20 !important;
}

/* On hover, fade becomes the expanding card behind image+description — width stays same */
.products:not(.list-view-products):not(.list-style) .product:hover .product-wrapper {
	border-color: transparent !important;
	box-shadow: none !important;
	background-color: transparent !important;
}

.products:not(.list-view-products):not(.list-style) .product:hover .product-content-fade {
	opacity: 1 !important;
	left: 0.5rem !important;
	right: 0.5rem !important;
	background-color: var(--color-background, #fff) !important;
	border: 1px solid var(--color-product-fade-border, #e0e5ea) !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 28px rgba(62, 68, 90, 0.14) !important;
}

/* Restore product description — always at the BOTTOM of the card (not over the image) */
.products:not(.list-view-products):not(.list-style) .product-footer {
	display: block !important;
	position: absolute !important;
	top: 100% !important;
	left: 0 !important;
	right: 0 !important;
	bottom: auto !important;
	width: 100% !important;
	margin: 0 !important;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	background-color: var(--color-background, #fff) !important;
	border-top: 1px solid var(--color-product-fade-border, #e0e5ea) !important;
	border-radius: 0 0 8px 8px;
	box-sizing: border-box !important;
}

.products:not(.list-view-products):not(.list-style) .product:hover .product-footer {
	opacity: 1 !important;
	visibility: visible !important;
}

.products:not(.list-view-products):not(.list-style) .product-footer-details {
	padding: 0.875rem !important;
	font-size: 0.75rem !important;
	line-height: 1.45 !important;
	background: transparent !important;
}

.products:not(.list-view-products):not(.list-style) .product-footer-details p {
	margin: 0 !important;
}

.products:not(.list-view-products):not(.list-style) .product-content {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	height: 100% !important;
}

/* ---- Aligned IMAGE row (fixed box, image centered) ---- */
.products:not(.list-view-products):not(.list-style) .thumbnail-wrapper {
	position: relative !important;
	width: 100% !important;
	height: 240px !important;
	min-height: 240px !important;
	max-height: 240px !important;
	padding: 0.75rem !important;
	margin: 0 !important;
	flex-shrink: 0 !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

.products:not(.list-view-products):not(.list-style) .thumbnail-wrapper > a {
	position: absolute !important;
	top: 0.75rem !important;
	right: 0.75rem !important;
	bottom: 0.75rem !important;
	left: 0.75rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
}

.products:not(.list-view-products):not(.list-style) .thumbnail-wrapper img {
	position: static !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	object-position: center !important;
}

/* ---- Content + TITLE + PRICE / CART alignment ---- */
.products:not(.list-view-products):not(.list-style) .content-wrapper {
	display: flex !important;
	flex-direction: column !important;
	flex: 1 1 auto !important;
	padding: 0.5rem 0.875rem 1rem !important;
	box-sizing: border-box !important;
	min-height: 0 !important;
}

/* Fixed 2-line title slot so all titles share one line */
.products:not(.list-view-products):not(.list-style) .product-title {
	height: 2.8em !important;
	min-height: 2.8em !important;
	max-height: 2.8em !important;
	margin-bottom: 0.5rem !important;
	overflow: hidden !important;
	display: -webkit-box !important;
	-webkit-box-orient: vertical !important;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

/* Hide rating/switcher/meta on cards so they don't push carts off the shared line */
.products:not(.list-view-products):not(.list-style) .product-rating,
.products:not(.list-view-products):not(.list-style) .product-switcher,
.products:not(.list-view-products):not(.list-style) .product-meta {
	display: none !important;
}

/*
 * Price + cart: always at the bottom of the card, on ONE horizontal line.
 * Some products have strikethrough price (extra line) — reserve that space
 * so the cart icon does not jump up/down.
 */
.products:not(.list-view-products):not(.list-style) .product-price-cart {
	display: flex !important;
	align-items: flex-end !important;
	justify-content: space-between !important;
	margin-top: auto !important;
	margin-bottom: 0 !important;
	min-height: 4.75rem !important;
	width: 100% !important;
	gap: 0.5rem !important;
}

.products:not(.list-view-products):not(.list-style) .product-price-cart .price {
	display: flex !important;
	flex-direction: column !important;
	justify-content: flex-end !important;
	align-items: flex-start !important;
	min-height: 4.25rem !important;
	margin: 0 !important;
	padding-right: 0.5rem !important;
	flex: 1 1 auto !important;
}

.products:not(.list-view-products):not(.list-style) .product-price-cart .price del {
	display: block !important;
	line-height: 1.2 !important;
	min-height: 1em !important;
}

/* "inc.VAT" — title size, weight 600, title color */
.products .price .woocommerce-price-suffix,
.products .price small.woocommerce-price-suffix,
.products .product-price-cart .price .woocommerce-price-suffix,
.products .product-price-cart .price ins .woocommerce-price-suffix,
.products .product-price-cart .price del + .woocommerce-price-suffix {
	display: block !important;
	font-size: 0.875rem !important; /* match .product-title */
	font-weight: 600 !important;
	line-height: 1.4 !important;
	margin-top: 0.2rem !important;
	color: var(--color-main-text, #021523) !important; /* same as product title */
	opacity: 1 !important;
}

/* Title hover color only */
.products .product-title a:hover,
.products .product:hover .product-title a {
	color: #c58408 !important;
}

/* Cart icon — fixed size, never grows on hover / focus / active */
.products .product-price-cart .add_to_cart_button,
.products .product-price-cart a.button,
.products .product:hover .product-price-cart .add_to_cart_button,
.products .product:hover .product-price-cart a.button,
.products .product-price-cart .add_to_cart_button:hover,
.products .product-price-cart .add_to_cart_button:focus,
.products .product-price-cart .add_to_cart_button:active,
.products .product-price-cart a.button:hover,
.products .product-price-cart a.button:focus,
.products .product-price-cart a.button:active {
	font-size: 0 !important;
	width: 2.25rem !important;
	min-width: 2.25rem !important;
	max-width: 2.25rem !important;
	height: 2.25rem !important;
	min-height: 2.25rem !important;
	max-height: 2.25rem !important;
	padding: 0 !important;
	line-height: 2.25rem !important;
	flex: 0 0 2.25rem !important;
	box-sizing: border-box !important;
	color: #000000 !important;
	transform: none !important;
}

.products .product-price-cart .add_to_cart_button i,
.products .product-price-cart a.button i,
.products .product-price-cart .add_to_cart_button::before,
.products .product-price-cart a.button::before {
	color: #000000 !important;
	font-size: 1.25rem !important;
	margin: 0 !important;
}

/* ---------- Responsive columns ---------- */
/* Mobile: 1 per row — no description, no hover size change */
@media screen and (max-width: 47.99rem) {
	.products.column-2 .product,
	.products.column-3 .product,
	.products.column-4 .product,
	.products.column-5 .product,
	.products.column-6 .product,
	.products.mobile-2 .product,
	.elementor-widget-container .products.column-4 .product,
	.elementor-widget-container .products .product {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.products:not(.list-view-products):not(.list-style) .thumbnail-wrapper {
		height: 280px !important;
		min-height: 280px !important;
		max-height: 280px !important;
	}

	/* Hide description completely on mobile */
	.products:not(.list-view-products):not(.list-style) .product-footer,
	.products:not(.list-view-products):not(.list-style) .product:hover .product-footer,
	.products .product-footer,
	.products .product:hover .product-footer {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		height: 0 !important;
		max-height: 0 !important;
		overflow: hidden !important;
		padding: 0 !important;
		margin: 0 !important;
		border: 0 !important;
		pointer-events: none !important;
	}

	/*
	 * Stop hover from growing the card.
	 * Theme JS sets inline margin-bottom on .product-content-fade for the
	 * description — that still expands height even when footer is hidden.
	 */
	.products:not(.list-view-products):not(.list-style) .product-content-fade,
	.products:not(.list-view-products):not(.list-style) .product:hover .product-content-fade,
	.products .product-content-fade,
	.products .product:hover .product-content-fade {
		display: none !important;
		opacity: 0 !important;
		margin-bottom: 0 !important;
		bottom: 0 !important;
		box-shadow: none !important;
		border: 0 !important;
	}

	/* Keep card chrome identical on hover (no swap / no grow) */
	.products:not(.list-view-products):not(.list-style) .product:hover .product-wrapper {
		border: 1px solid var(--color-product-fade-border, #e0e5ea) !important;
		box-shadow: 0 1px 24px rgba(62, 68, 90, 0.08) !important;
		background-color: var(--color-background, #fff) !important;
	}

	.products:not(.list-view-products):not(.list-style) > .product,
	.products:not(.list-view-products):not(.list-style) .product:hover,
	.products:not(.list-view-products):not(.list-style) .product-wrapper,
	.products:not(.list-view-products):not(.list-style) .product:hover .product-wrapper {
		transform: none !important;
		scale: none !important;
	}
}

/* Tablet: 2 products per row */
@media screen and (min-width: 48rem) and (max-width: 74.99rem) {
	.products.column-3 .product,
	.products.column-4 .product,
	.products.column-5 .product,
	.products.column-6 .product,
	.elementor-widget-container .products.column-3 .product,
	.elementor-widget-container .products.column-4 .product,
	.elementor-widget-container .products .product {
		flex: 0 0 50% !important;
		max-width: 50% !important;
		width: 50% !important;
	}
}

/* Desktop: 4 products per row */
@media screen and (min-width: 75rem) {
	.products.column-4 .product,
	.elementor-widget-container .products.column-4 .product {
		flex: 0 0 25% !important;
		max-width: 25% !important;
		width: 25% !important;
	}
}

/* Mobile + Tablet: more card padding, less title→price gap */
@media screen and (max-width: 74.99rem) {
	.products:not(.list-view-products):not(.list-style) .thumbnail-wrapper {
		padding: 1.15rem 1.25rem 0.5rem !important;
	}

	.products:not(.list-view-products):not(.list-style) .thumbnail-wrapper > a {
		top: 1.15rem !important;
		right: 1.25rem !important;
		bottom: 0.5rem !important;
		left: 1.25rem !important;
	}

	.products:not(.list-view-products):not(.list-style) .content-wrapper {
		padding: 0.35rem 1.25rem 1.35rem !important;
	}

	/* Pull price up under the title (remove big empty flex gap) */
	.products:not(.list-view-products):not(.list-style) .product-title {
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin-bottom: 0.25rem !important;
	}

	.products:not(.list-view-products):not(.list-style) .product-price-cart {
		margin-top: 0.15rem !important;
		min-height: 0 !important;
	}

	.products:not(.list-view-products):not(.list-style) .product-price-cart .price {
		min-height: 0 !important;
		justify-content: flex-start !important;
	}
}

/* ---------- Elementor Menu Cart sidebar buttons ---------- */
/* Source: Elementor Pro WooCommerce Menu Cart widget
   (.elementor-menu-cart__footer-buttons .elementor-button--view-cart / --checkout) */
.elementor-menu-cart__main,
.elementor-menu-cart__wrapper,
.elementor-widget-woocommerce-menu-cart {
	--view-cart-button-background-color: #000000;
	--view-cart-button-hover-background-color: #c58408;
	--view-cart-button-text-color: #ffffff;
	--view-cart-button-hover-text-color: #ffffff;
	--checkout-button-background-color: #000000;
	--checkout-button-hover-background-color: #c58408;
	--checkout-button-text-color: #ffffff;
	--checkout-button-hover-text-color: #ffffff;
}

.elementor-menu-cart__footer-buttons .elementor-button,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart,
.elementor-menu-cart__footer-buttons .elementor-button--checkout,
.elementor-menu-cart__main .elementor-button--view-cart,
.elementor-menu-cart__main .elementor-button--checkout {
	background-color: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}

.elementor-menu-cart__footer-buttons .elementor-button:hover,
.elementor-menu-cart__footer-buttons .elementor-button--view-cart:hover,
.elementor-menu-cart__footer-buttons .elementor-button--checkout:hover,
.elementor-menu-cart__main .elementor-button--view-cart:hover,
.elementor-menu-cart__main .elementor-button--checkout:hover {
	background-color: #c58408 !important;
	border-color: #c58408 !important;
	color: #ffffff !important;
}

.elementor-menu-cart__footer-buttons .elementor-button .elementor-button-text,
.elementor-menu-cart__footer-buttons .elementor-button:hover .elementor-button-text {
	color: #ffffff !important;
}

/* Also keep theme mini-cart buttons consistent if used elsewhere */
.woocommerce-mini-cart__buttons.buttons a,
.woocommerce-mini-cart__buttons a,
p.woocommerce-mini-cart__buttons.buttons a,
p.woocommerce-mini-cart__buttons.buttons a:not(.checkout),
p.woocommerce-mini-cart__buttons.buttons a.checkout {
	background-color: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}

.woocommerce-mini-cart__buttons.buttons a:hover,
.woocommerce-mini-cart__buttons a:hover,
p.woocommerce-mini-cart__buttons.buttons a:hover,
p.woocommerce-mini-cart__buttons.buttons a:not(.checkout):hover,
p.woocommerce-mini-cart__buttons.buttons a.checkout:hover {
	background-color: #c58408 !important;
	border-color: #c58408 !important;
	color: #ffffff !important;
}

/* ---------- Elementor Menu Cart — side cart contents ---------- */
/* Elementor exposes these for the remove (×) and panel close controls. */
.elementor-menu-cart__main,
.elementor-menu-cart__wrapper,
.elementor-widget-woocommerce-menu-cart {
	--remove-item-button-color: #000000;
	--remove-item-button-hover-color: #c58408;
	--cart-close-button-color: #000000;
	--cart-close-button-hover-color: #c58408;
}

/* Product title */
.elementor-menu-cart__product-name a,
.elementor-menu-cart__product .elementor-menu-cart__product-name a,
.woocommerce-mini-cart-item a:not(.remove):not(.remove_from_cart_button) {
	color: #000000 !important;
	text-decoration: none !important;
}

.elementor-menu-cart__product-name a:hover,
.elementor-menu-cart__product .elementor-menu-cart__product-name a:hover,
.woocommerce-mini-cart-item a:not(.remove):not(.remove_from_cart_button):hover {
	color: #c58408 !important;
}

/* Quantity × price line */
.elementor-menu-cart__product-price,
.elementor-menu-cart__product-price .quantity,
.elementor-menu-cart__product-price .product-quantity,
.elementor-menu-cart__product-price .amount,
.elementor-menu-cart__product-price .woocommerce-Price-amount,
.woocommerce-mini-cart-item .quantity {
	color: #000000 !important;
	opacity: 1 !important;
}

/* Remove (×) on each item, and the panel close button */
.elementor-menu-cart__product-remove a,
.elementor-menu-cart__product-remove a.remove_from_cart_button,
.elementor-menu-cart__product-remove a.elementor_remove_from_cart_button,
.elementor-menu-cart__close-button,
.elementor-menu-cart__close-button-custom,
.woocommerce-mini-cart-item a.remove,
.woocommerce-mini-cart-item a.remove_from_cart_button {
	color: #000000 !important;
	border-color: #000000 !important;
	opacity: 1 !important;
}

.elementor-menu-cart__product-remove a:hover,
.elementor-menu-cart__product-remove a.remove_from_cart_button:hover,
.elementor-menu-cart__product-remove a.elementor_remove_from_cart_button:hover,
.elementor-menu-cart__close-button:hover,
.elementor-menu-cart__close-button-custom:hover,
.woocommerce-mini-cart-item a.remove:hover,
.woocommerce-mini-cart-item a.remove_from_cart_button:hover {
	color: #c58408 !important;
	border-color: #c58408 !important;
}

/* =========================================================
   Single product page
   ========================================================= */

/*
 * Product gallery — smaller than the theme default (~50%).
 * Desktop: ~1/3 width; image height capped so tall products don't dominate.
 */
@media screen and (min-width: 62rem) {
	.single-product .single-product-container > .row > .klb-product-gallery {
		flex: 0 0 33.333333% !important;
		max-width: 33.333333% !important;
	}

	.single-product .single-product-container > .row > .klb-product-detail {
		flex: 0 0 66.666667% !important;
		max-width: 66.666667% !important;
	}
}

.single-product .klb-product-gallery .woocommerce-product-gallery,
.single-product .klb-product-gallery #product-images,
.single-product .klb-product-gallery .flex-viewport {
	position: relative !important;
	max-width: 100% !important;
}

.single-product .klb-product-gallery #product-images img,
.single-product .klb-product-gallery .woocommerce-product-gallery__image img,
.single-product .klb-product-gallery .flex-viewport img {
	max-height: 520px !important;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
	object-position: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
}

/* Sale % stays inside the gallery frame */
.single-product .klb-product-gallery .product-badges {
	position: absolute !important;
	top: 0.75rem !important;
	left: 0.75rem !important;
	z-index: 5 !important;
	pointer-events: none !important;
}

/* Give the pill a little more room so "18%" doesn't clip the edges */
.single-product .klb-product-gallery .product-badges .badge.onsale {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 1.75rem !important;
	padding: 0.4rem 0.9rem !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	box-sizing: border-box !important;
}

@media screen and (max-width: 61.99rem) {
	.single-product .klb-product-gallery #product-images img,
	.single-product .klb-product-gallery .woocommerce-product-gallery__image img,
	.single-product .klb-product-gallery .flex-viewport img {
		max-height: 360px !important;
	}
}

/* Price — same typography as the product cards. */
.single-product .klb-product-detail .product-price .price {
	font-size: 22px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: var(--color-main-text, #021523) !important;
}

.single-product .klb-product-detail .product-price .price del,
.single-product .klb-product-detail .product-price .price del .amount {
	font-size: 14.3px !important;
	font-weight: 400 !important;
	color: #9aa5b3 !important;
}

.single-product .klb-product-detail .product-price .price del {
	display: block !important;
	line-height: 1.2 !important;
}

.single-product .klb-product-detail .product-price .price ins,
.single-product .klb-product-detail .product-price .price ins .amount {
	font-size: 22px !important;
	font-weight: 400 !important;
	text-decoration: none !important;
}

.single-product .klb-product-detail .product-price .price .woocommerce-price-suffix {
	display: block !important;
	font-size: 0.875rem !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	margin-top: 0.2rem !important;
	color: var(--color-main-text, #021523) !important;
	opacity: 1 !important;
}

/* Space between quantity and Add to cart, also when they wrap onto two lines. */
.single-product .klb-product-detail form.cart {
	gap: 12px !important;
}

.single-product .klb-product-detail form.cart > .quantity,
.single-product .klb-product-detail form.cart > .single_add_to_cart_button {
	margin: 0 !important;
}

/* Add to cart — same colours as the other buttons (black, gold on hover).
   form.cart also covers variable products' add-to-cart form. */
.single-product .klb-product-detail form.cart .single_add_to_cart_button,
.single-product .klb-product-detail form.cart .single_add_to_cart_button.alt {
	background-color: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}

.single-product .klb-product-detail form.cart .single_add_to_cart_button span {
	color: #ffffff !important;
}

.single-product .klb-product-detail form.cart .single_add_to_cart_button:hover,
.single-product .klb-product-detail form.cart .single_add_to_cart_button:focus-visible,
.single-product .klb-product-detail form.cart .single_add_to_cart_button.alt:hover {
	background-color: #c58408 !important;
	border-color: #c58408 !important;
	color: #ffffff !important;
}

/* ---------- Variation options as buttons (see assets/js/variation-swatches.js) ---------- */
.single-product form.variations_form table.variations,
.single-product form.variations_form table.variations tbody,
.single-product form.variations_form table.variations tr,
.single-product form.variations_form table.variations th,
.single-product form.variations_form table.variations td {
	display: block !important;
	width: 100% !important;
	border: 0 !important;
	background: transparent !important;
}

.single-product form.variations_form table.variations {
	margin: 0 0 16px !important;
}

.single-product form.variations_form table.variations tr + tr {
	margin-top: 14px !important;
}

.single-product form.variations_form table.variations th.label {
	padding: 0 0 8px !important;
	text-align: left !important;
}

.single-product form.variations_form table.variations th.label label {
	font-size: 12px !important;
	font-weight: 600 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	color: #8a7f73 !important;
	margin: 0 !important;
}

.single-product form.variations_form table.variations td.value {
	padding: 0 !important;
}

/* Hide the WooCommerce select immediately — do not wait for JS. */
.single-product form.variations_form table.variations select,
.single-product form.variations_form table.variations select.ts-swatch-source {
	display: none !important;
}

.single-product .ts-swatches {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
}

.single-product .ts-swatches .ts-swatch {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 56px !important;
	height: 42px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border: 1px solid #c1c1c1 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	color: #201915 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-transform: none !important;
	box-shadow: none !important;
	cursor: pointer !important;
	transition: border-color 0.15s, color 0.15s, background-color 0.15s !important;
}

.single-product .ts-swatches .ts-swatch:hover,
.single-product .ts-swatches .ts-swatch:focus-visible {
	border-color: #c58408 !important;
	color: #c58408 !important;
}

.single-product .ts-swatches .ts-swatch.is-selected {
	background: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}

.single-product .ts-swatches .ts-swatch.is-unavailable {
	opacity: 0.4 !important;
	text-decoration: line-through !important;
	cursor: not-allowed !important;
}

.single-product .ts-swatches .ts-swatch.is-unavailable:hover {
	border-color: #c1c1c1 !important;
	color: #201915 !important;
}

/* Color dots — only used when the product has a colour attribute */
.single-product form.variations_form table.variations th.label .ts-swatch-chosen {
	letter-spacing: 0 !important;
	text-transform: none !important;
	font-weight: 600 !important;
	color: #201915 !important;
}

.single-product .ts-swatches.ts-swatches--color {
	align-items: center !important;
	gap: 10px !important;
}

.single-product .ts-swatches .ts-swatch.ts-swatch--color,
.single-product .ts-swatches .ts-swatch.ts-swatch--color:hover,
.single-product .ts-swatches .ts-swatch.ts-swatch--color:focus-visible,
.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-selected,
.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-unavailable,
.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-unavailable:hover {
	width: 28px !important;
	min-width: 28px !important;
	max-width: 28px !important;
	height: 28px !important;
	min-height: 28px !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background: var(--ts-swatch-color, #cccccc) !important;
	border: 2px solid #ffffff !important;
	box-shadow: 0 0 0 1px #c1c1c1 !important;
	color: transparent !important;
	font-size: 0 !important;
	text-decoration: none !important;
	overflow: hidden !important;
}

.single-product .ts-swatches .ts-swatch.ts-swatch--color:hover,
.single-product .ts-swatches .ts-swatch.ts-swatch--color:focus-visible {
	box-shadow: 0 0 0 2px #c58408 !important;
}

.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-selected {
	box-shadow: 0 0 0 2px #c58408 !important;
}

.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-light {
	box-shadow: 0 0 0 1px #c1c1c1 !important;
}

.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-light.is-selected,
.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-light:hover,
.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-light:focus-visible {
	box-shadow: 0 0 0 2px #c58408 !important;
}

.single-product .ts-swatches .ts-swatch.ts-swatch--color.is-unavailable {
	opacity: 0.35 !important;
	cursor: not-allowed !important;
}

.single-product form.variations_form table.variations .reset_variations {
	display: inline-block !important;
	margin: 10px 0 0 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #c58408 !important;
	text-decoration: none !important;
}
