/**
 * Lunicum Refresh: WooCommerce presentation layer.
 *
 * All selectors are scoped to the child theme body class. Product data,
 * prices, taxes, forms, checkout behaviour and wishlist actions remain native.
 */

body.lunicum-refresh {
	--lc-cyan: #2abcc5;
	--lc-teal: #188188;
	--lc-deep: #10585d;
	--lc-yellow: #fffa0e;
	--lc-ink: #333;
	--lc-line: #e5e5e5;
	--lc-muted: #646464;
	--lc-soft: #f7f7f7;
	--lc-white: #fff;
}

body.lunicum-refresh .lc-main.lc-shop {
	background: var(--lc-white);
	color: var(--lc-ink);
	font-family: inherit;
	min-height: 60vh;
	padding: 38px 0 clamp(4rem, 7vw, 7rem);
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-page {
	color: var(--lc-ink);
	font-family: inherit;
}

body.lunicum-refresh .lc-main.lc-shop a {
	color: var(--lc-teal);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

body.lunicum-refresh .lc-main.lc-shop a:hover,
body.lunicum-refresh .lc-main.lc-shop a:focus-visible {
	color: var(--lc-deep);
}

body.lunicum-refresh .lc-main.lc-shop :where(button, a, input, select, textarea):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--lc-cyan) 48%, transparent);
	outline-offset: 3px;
}

/* Catalogue introduction, search and real taxonomy links. */
body.lunicum-refresh .lc-main.lc-shop .lc-shop-head {
	border-bottom: 1px solid var(--lc-line);
	margin: 0 0 clamp(2rem, 4vw, 3.5rem);
	padding: 0 0 clamp(2rem, 4vw, 3.25rem);
	text-align: left;
}

body.lunicum-refresh .lc-main.lc-shop .lc-shop-head__eyebrow {
	color: var(--lc-teal);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	margin: 0 0 0.7rem;
	text-transform: uppercase;
	text-align: center;
}

body.lunicum-refresh .lc-main.lc-shop .lc-shop-head__title {
	color: var(--lc-cyan);
	font-family: inherit;
	font-size: clamp(2rem, 4vw, 2.625rem);
	font-weight: 300;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 0;
	padding: 0;
	text-align: center;
}

body.lunicum-refresh .lc-main.lc-shop .lc-shop-head__intro {
	color: var(--lc-muted);
	font-size: clamp(1rem, 2vw, 1.15rem);
	line-height: 1.6;
	margin: 1rem 0 0;
	text-align: center;
}

body.lunicum-refresh .lc-main.lc-shop .lc-product-search {
	display: flex;
	margin: clamp(1.6rem, 3vw, 2.4rem) 0 0;
	max-width: 640px;
	position: relative;
	width: 100%;
}

body.lunicum-refresh .lc-main.lc-shop .lc-product-search input[type="search"] {
	appearance: none;
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 4px 0 0 4px;
	box-shadow: none;
	box-sizing: border-box;
	color: var(--lc-ink);
	font: inherit;
	font-size: 1rem;
	line-height: 1.35;
	min-height: 50px;
	padding: 0.75rem 1rem;
	width: 100%;
}

body.lunicum-refresh .lc-main.lc-shop .lc-product-search input[type="search"]::placeholder {
	color: var(--lc-muted);
	opacity: 0.9;
}

body.lunicum-refresh .lc-main.lc-shop .lc-product-search button {
	appearance: none;
	background: var(--lc-teal);
	border: 1px solid var(--lc-teal);
	border-radius: 0 4px 4px 0;
	box-shadow: none;
	color: var(--lc-yellow);
	cursor: pointer;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	min-height: 50px;
	padding: 0.75rem 1.35rem;
}

body.lunicum-refresh .lc-main.lc-shop .lc-product-search button:hover {
	background: var(--lc-deep);
	border-color: var(--lc-deep);
}

body.lunicum-refresh .lc-main.lc-shop .lc-product-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: flex-start;
	margin-top: clamp(1.35rem, 3vw, 2rem);
}

body.lunicum-refresh .lc-main.lc-shop .lc-category-pill {
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 4px;
	color: var(--lc-muted);
	display: inline-flex;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.2;
	padding: 0.72rem 1rem;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

body.lunicum-refresh .lc-main.lc-shop .lc-category-pill:hover,
body.lunicum-refresh .lc-main.lc-shop .lc-category-pill:focus-visible,
body.lunicum-refresh .lc-main.lc-shop .lc-category-pill.is-active {
	background: var(--lc-teal);
	border-color: var(--lc-teal);
	color: var(--lc-white);
}

/* WooCommerce notices: visible, readable and never replaced. */
body.lunicum-refresh .lc-main.lc-shop .woocommerce-error,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-info,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-message {
	background: var(--lc-soft);
	border: 1px solid var(--lc-line);
	border-top: 4px solid var(--lc-cyan);
	border-radius: 3px;
	box-shadow: none;
	color: var(--lc-ink);
	line-height: 1.55;
	margin: 0 0 1.5rem;
	padding: 1rem 1.15rem 1rem 3rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-error {
	border-top-color: #b3261e;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-info::before,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-message::before {
	color: var(--lc-teal);
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-error a.button,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-info a.button,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-message a.button {
	margin-left: 1rem;
}

/* Result count and native ordering remain functional. */
body.lunicum-refresh .lc-main.lc-shop .woocommerce-result-count {
	color: var(--lc-muted);
	font-size: 0.9rem;
	line-height: 2.8rem;
	margin: 0 0 1.5rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-ordering {
	margin: 0 0 1.5rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-ordering select {
	appearance: auto;
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 3px;
	box-shadow: none;
	color: var(--lc-ink);
	font: inherit;
	font-size: 0.9rem;
	min-height: 44px;
	padding: 0.55rem 2.25rem 0.55rem 0.85rem;
}

/* Product archive: four / two / one columns. */
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products {
	clear: both;
	display: grid !important;
	gap: clamp(1.25rem, 2.5vw, 2rem);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0 !important;
	padding: 0 !important;
	width: 100%;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products::before,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products::after {
	display: none !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product {
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
	display: flex;
	float: none !important;
	flex-direction: column;
	margin: 0 !important;
	min-width: 0;
	overflow: hidden;
	padding: 0 0 1.1rem !important;
	position: relative;
	transition: border-color 160ms ease, transform 160ms ease;
	width: auto !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product:hover {
	border-color: var(--lc-cyan);
	transform: translateY(-2px);
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product > a.woocommerce-LoopProduct-link {
	color: var(--lc-ink);
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	text-decoration: none;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .et_shop_image {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: var(--lc-white);
	border-bottom: 1px solid var(--lc-line);
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	margin: 0 0 1.15rem;
	overflow: hidden;
	padding: 0.75rem;
	position: relative;
	width: 100%;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .et_shop_image img,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product a.woocommerce-LoopProduct-link > img:not(.wp-post-image--secondary) {
	background: var(--lc-white);
	filter: none !important;
	height: 100% !important;
	margin: 0 !important;
	mix-blend-mode: normal !important;
	object-fit: contain;
	width: 100% !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product a.woocommerce-LoopProduct-link > img:not(.wp-post-image--secondary) {
	aspect-ratio: 1 / 1;
	border-bottom: 1px solid var(--lc-line);
	box-sizing: border-box;
	padding: 0.75rem;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product a.woocommerce-LoopProduct-link > img.wp-post-image--secondary {
	aspect-ratio: 1 / 1;
	background: var(--lc-white);
	box-sizing: border-box;
	filter: none !important;
	height: auto !important;
	inset: 0 auto auto 0;
	margin: 0 !important;
	mix-blend-mode: normal !important;
	object-fit: contain;
	padding: 0.75rem;
	position: absolute;
	width: 100% !important;
	z-index: 2;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .et_overlay {
	display: none !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .woocommerce-loop-product__title,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product h2,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product h3 {
	color: var(--lc-teal);
	display: block;
	font-family: inherit;
	font-size: clamp(1.05rem, 1.6vw, 1.25rem) !important;
	font-weight: 600;
	letter-spacing: -0.012em;
	line-height: 1.3;
	margin: 0;
	min-height: 3.9em;
	overflow-wrap: anywhere;
	padding: 0 1rem !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .lc-product-size {
	color: var(--lc-muted);
	font-size: 0.82rem;
	line-height: 1.4;
	margin: 0.55rem 0 0;
	padding: 0 1rem;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .star-rating {
	color: var(--lc-teal);
	font-size: 0.8rem;
	margin: 0.65rem 1rem 0;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .price {
	color: var(--lc-ink) !important;
	display: block;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	line-height: 1.4;
	margin: auto 0 0 !important;
	padding: 0.75rem 1rem 0;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .price del {
	color: var(--lc-muted);
	opacity: 0.7;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .price ins {
	color: var(--lc-deep);
	font-weight: 700;
	text-decoration: none;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .price small,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .price .woocommerce-price-suffix,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .price .tax_label,
body.lunicum-refresh .lc-main.lc-shop small.includes_tax {
	color: var(--lc-muted);
	display: inline;
	font-size: 0.72rem;
	font-weight: 400;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) .lc-product-badge,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .onsale {
	background: var(--lc-yellow) !important;
	border: 0;
	border-radius: 3px;
	box-shadow: none;
	color: var(--lc-ink) !important;
	font-size: 0.68rem;
	font-weight: 800;
	left: 0.75rem;
	letter-spacing: 0.08em;
	line-height: 1;
	margin: 0;
	min-height: 0;
	min-width: 0;
	padding: 0.48rem 0.58rem;
	position: absolute;
	right: auto;
	text-transform: uppercase;
	top: 0.75rem;
	z-index: 4;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .onsale {
	left: auto;
	right: 0.75rem;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product > .button,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product > a.button,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .added_to_cart {
	align-items: center;
	align-self: stretch;
	background: var(--lc-teal) !important;
	border: 1px solid var(--lc-teal) !important;
	border-radius: 3px;
	box-shadow: none;
	box-sizing: border-box;
	color: var(--lc-yellow) !important;
	display: inline-flex;
	font-family: inherit;
	font-size: 0.83rem !important;
	font-weight: 700 !important;
	justify-content: center;
	line-height: 1.25 !important;
	margin: 1rem 1rem 0 !important;
	min-height: 44px;
	padding: 0.7rem 0.9rem !important;
	text-align: center;
	text-decoration: none;
	width: calc(100% - 2rem);
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product > .button:hover,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product > a.button:hover,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .added_to_cart:hover {
	background: var(--lc-deep) !important;
	border-color: var(--lc-deep) !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .button::after,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products li.product .added_to_cart::after {
	display: none !important;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination {
	margin-top: clamp(2.5rem, 5vw, 4.5rem);
	text-align: center;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination ul {
	border: 0;
	display: inline-flex;
	gap: 0.4rem;
	margin: 0;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination ul li {
	border: 0;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination ul li a,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination ul li span {
	align-items: center;
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 3px;
	color: var(--lc-muted);
	display: inline-flex;
	height: 42px;
	justify-content: center;
	min-width: 42px;
	padding: 0 0.65rem;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination ul li a:hover,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) nav.woocommerce-pagination ul li span.current {
	background: var(--lc-teal);
	border-color: var(--lc-teal);
	color: var(--lc-white);
}

/* Native single-product gallery and summary. Supports Divi's harmless clearfix
 * wrapper as well as the unwrapped WooCommerce structure. */
body.lunicum-refresh.single-product .lc-main.lc-shop div.product {
	display: grid;
	gap: clamp(2rem, 5vw, 4.5rem);
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .clearfix {
	display: grid;
	gap: clamp(2rem, 5vw, 4.5rem);
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .clearfix::after {
	display: none;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-gallery {
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	width: 100% !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-gallery__wrapper {
	margin: 0;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-gallery__image {
	align-items: center;
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 4px;
	display: flex !important;
	justify-content: center;
	overflow: hidden;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-gallery__image a {
	align-items: center;
	aspect-ratio: 1.2 / 1;
	display: flex;
	justify-content: center;
	width: 100%;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-gallery__image img:not(.zoomImg) {
	filter: none !important;
	height: 100% !important;
	mix-blend-mode: normal !important;
	object-fit: contain;
	opacity: 1 !important;
	width: 100% !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .flex-control-thumbs {
	display: grid;
	gap: 0.7rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0.8rem 0 0 !important;
	padding: 0 !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .flex-control-thumbs li {
	border: 1px solid var(--lc-line);
	border-radius: 3px;
	float: none !important;
	margin: 0 !important;
	overflow: hidden;
	width: auto !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .flex-control-thumbs img {
	aspect-ratio: 1 / 1;
	filter: none !important;
	height: auto !important;
	object-fit: contain;
	opacity: 1;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary {
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	width: 100% !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .lc-single-product-badge {
	color: var(--lc-teal);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .product_title {
	color: var(--lc-cyan);
	font-family: inherit;
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 400;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin: 0 0 1rem;
	padding: 0;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-rating {
	color: var(--lc-muted);
	font-size: 0.88rem;
	margin: 0 0 1rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .star-rating {
	color: var(--lc-teal);
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary > .price {
	color: var(--lc-ink);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.3;
	margin: 1rem 0;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary > .price del {
	color: var(--lc-muted);
	opacity: 0.7;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary > .price ins {
	color: var(--lc-deep);
	text-decoration: none;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary > .price small,
body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary > .price .woocommerce-price-suffix,
body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary > .price .tax_label {
	color: var(--lc-muted);
	display: inline;
	font-size: 0.78rem;
	font-weight: 400;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-product-details__short-description {
	color: var(--lc-muted);
	font-size: 1rem;
	line-height: 1.7;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .lc-single-product-size {
	border-top: 1px solid var(--lc-line);
	color: var(--lc-ink);
	font-size: 0.95rem;
	font-weight: 600;
	margin: 1.25rem 0 0;
	padding-top: 1.15rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .lc-single-product-size span {
	color: var(--lc-teal);
	margin-right: 0.35rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product form.cart {
	align-items: stretch;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1.5rem 0 0;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product form.cart .variations {
	border: 0;
	margin: 0 0 0.85rem;
	width: 100%;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product form.cart .variations th,
body.lunicum-refresh.single-product .lc-main.lc-shop div.product form.cart .variations td {
	background: transparent;
	border: 0;
	padding: 0.4rem 0;
	text-align: left;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product form.cart .variations select,
body.lunicum-refresh .lc-main.lc-shop .quantity .qty {
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 3px;
	box-shadow: none;
	box-sizing: border-box;
	color: var(--lc-ink);
	font: inherit;
	min-height: 48px;
	padding: 0.7rem 0.8rem;
}

body.lunicum-refresh .lc-main.lc-shop .quantity .qty {
	width: 5rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce a.button,
body.lunicum-refresh .lc-main.lc-shop .woocommerce button.button,
body.lunicum-refresh .lc-main.lc-shop .woocommerce input.button,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-button {
	background: var(--lc-teal) !important;
	border: 1px solid var(--lc-teal) !important;
	border-radius: 3px !important;
	box-shadow: none !important;
	color: var(--lc-yellow) !important;
	font-family: inherit !important;
	font-size: 0.9rem !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
	min-height: 46px;
	padding: 0.78rem 1.15rem !important;
	text-decoration: none !important;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce a.button:hover,
body.lunicum-refresh .lc-main.lc-shop .woocommerce button.button:hover,
body.lunicum-refresh .lc-main.lc-shop .woocommerce input.button:hover,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-button:hover {
	background: var(--lc-deep) !important;
	border-color: var(--lc-deep) !important;
	color: var(--lc-yellow) !important;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce a.button::after,
body.lunicum-refresh .lc-main.lc-shop .woocommerce button.button::after,
body.lunicum-refresh .lc-main.lc-shop .woocommerce input.button::after {
	display: none !important;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce .button.disabled,
body.lunicum-refresh .lc-main.lc-shop .woocommerce .button:disabled,
body.lunicum-refresh .lc-main.lc-shop .woocommerce .button:disabled[disabled] {
	cursor: not-allowed;
	opacity: 0.5;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .stock {
	color: var(--lc-teal);
	font-weight: 600;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .out-of-stock {
	color: #b3261e;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .lc-download-note {
	align-items: flex-start;
	background: var(--lc-soft);
	border: 1px solid var(--lc-line);
	border-left: 4px solid var(--lc-cyan);
	border-radius: 3px;
	color: var(--lc-muted);
	display: flex;
	font-size: 0.86rem;
	gap: 0.75rem;
	line-height: 1.55;
	margin: 1.2rem 0 0;
	padding: 0.9rem 1rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .lc-download-note strong {
	color: var(--lc-ink);
	display: block;
	font-size: 0.9rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .lc-download-note__icon {
	color: var(--lc-teal);
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product .product_meta {
	border-top: 1px solid var(--lc-line);
	color: var(--lc-muted);
	font-size: 0.82rem;
	line-height: 1.7;
	margin-top: 1.5rem;
	padding-top: 1rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .woocommerce-tabs,
body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .related,
body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .up-sells,
body.lunicum-refresh.single-product .lc-main.lc-shop div.product > section {
	grid-column: 1 / -1;
	width: 100%;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs {
	border-top: 1px solid var(--lc-line);
	margin-top: clamp(1rem, 3vw, 2rem);
	padding-top: clamp(2rem, 4vw, 3rem);
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--lc-line);
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin: 0 0 2rem !important;
	overflow: visible;
	padding: 0 !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs::before,
body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li::before,
body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	border-radius: 0;
	margin: 0 0 -1px;
	padding: 0;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li a {
	border-bottom: 3px solid transparent;
	color: var(--lc-muted);
	font-weight: 700;
	padding: 0.7rem 0 0.9rem;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li.active a,
body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li a:hover {
	border-bottom-color: var(--lc-yellow);
	color: var(--lc-teal);
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-Tabs-panel,
body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-Tabs-panel p,
body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-Tabs-panel li {
	color: var(--lc-muted);
	font-size: 1rem;
	line-height: 1.72;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-Tabs-panel h2,
body.lunicum-refresh.single-product .lc-main.lc-shop .related > h2,
body.lunicum-refresh.single-product .lc-main.lc-shop .up-sells > h2 {
	color: var(--lc-cyan);
	font-family: inherit;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1.4rem;
}

/* YITH Wishlist stays native; only its appearance is aligned. */
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) .yith-wcwl-add-to-wishlist {
	font-size: 0.86rem;
	margin: 0.9rem 1rem 0;
}

body.lunicum-refresh.single-product .lc-main.lc-shop .summary .yith-wcwl-add-to-wishlist {
	margin: 1rem 0 0;
}

body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) .yith-wcwl-add-to-wishlist a,
body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) a.add_to_wishlist {
	color: var(--lc-teal);
	font-weight: 600;
}

body.lunicum-refresh .lc-main.lc-shop .wishlist_table {
	border-collapse: collapse;
	width: 100%;
}

body.lunicum-refresh .lc-main.lc-shop .wishlist_table th,
body.lunicum-refresh .lc-main.lc-shop .wishlist_table td {
	border: 1px solid var(--lc-line);
	padding: 0.9rem;
}

body.lunicum-refresh .lc-main.lc-shop .wishlist_table img {
	filter: none !important;
	max-width: 92px;
	object-fit: contain;
}

/* Cart, checkout and account: native content, modern surface styling. */
body.lunicum-refresh .lc-main.lc-shop .woocommerce-cart-form,
body.lunicum-refresh .lc-main.lc-shop .cart_totals,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-checkout-review-order,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-content,
body.lunicum-refresh .lc-main.lc-shop form.login,
body.lunicum-refresh .lc-main.lc-shop form.register,
body.lunicum-refresh .lc-main.lc-shop form.checkout_coupon {
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-cart-form,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-content {
	padding: clamp(1rem, 3vw, 1.75rem);
}

body.lunicum-refresh .lc-main.lc-shop .cart_totals,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-checkout-review-order {
	padding: clamp(1.1rem, 3vw, 1.75rem);
}

body.lunicum-refresh .lc-main.lc-shop form.login,
body.lunicum-refresh .lc-main.lc-shop form.register,
body.lunicum-refresh .lc-main.lc-shop form.checkout_coupon {
	padding: clamp(1rem, 3vw, 1.5rem);
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce table.shop_table,
body.lunicum-refresh .lc-main.lc-shop .woocommerce table.shop_table_responsive,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-order-summary,
body.lunicum-refresh .lc-main.lc-shop .wc-block-cart-items {
	border: 1px solid var(--lc-line);
	border-collapse: collapse;
	border-radius: 3px;
	box-shadow: none;
	color: var(--lc-ink);
	margin: 0 0 1.5rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce table.shop_table th,
body.lunicum-refresh .lc-main.lc-shop .woocommerce table.shop_table td {
	background: var(--lc-white);
	border-color: var(--lc-line);
	padding: 0.9rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce table.shop_table th {
	color: var(--lc-deep);
	font-weight: 700;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-cart-form img,
body.lunicum-refresh .lc-main.lc-shop .wc-block-cart-item__image img {
	filter: none !important;
	height: auto;
	max-width: 92px;
	mix-blend-mode: normal !important;
	object-fit: contain;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce .cart-collaterals,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-checkout .col2-set,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-account .woocommerce {
	margin-top: 2rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce .cart-collaterals .cart_totals {
	float: right;
	width: min(100%, 520px);
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce form .form-row {
	margin: 0 0 1rem;
	padding: 0;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce form .form-row label {
	color: var(--lc-ink);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0.35rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce form .form-row .required {
	color: #b3261e;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce form .input-text,
body.lunicum-refresh .lc-main.lc-shop .woocommerce form input[type="text"],
body.lunicum-refresh .lc-main.lc-shop .woocommerce form input[type="email"],
body.lunicum-refresh .lc-main.lc-shop .woocommerce form input[type="tel"],
body.lunicum-refresh .lc-main.lc-shop .woocommerce form input[type="password"],
body.lunicum-refresh .lc-main.lc-shop .woocommerce form textarea,
body.lunicum-refresh .lc-main.lc-shop .woocommerce form select,
body.lunicum-refresh .lc-main.lc-shop .select2-container--default .select2-selection--single,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-text-input input,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	background: var(--lc-white);
	border: 1px solid var(--lc-line);
	border-radius: 3px;
	box-shadow: none;
	box-sizing: border-box;
	color: var(--lc-ink);
	font: inherit;
	min-height: 48px;
	padding: 0.7rem 0.8rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce form textarea {
	min-height: 130px;
	resize: vertical;
}

body.lunicum-refresh .lc-main.lc-shop .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 46px;
	padding-left: 0;
}

body.lunicum-refresh .lc-main.lc-shop .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 46px;
}

body.lunicum-refresh .lc-main.lc-shop #order_review_heading,
body.lunicum-refresh .lc-main.lc-shop .cart_totals h2,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-billing-fields h3,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-shipping-fields h3,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-content h2,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-content h3 {
	color: var(--lc-cyan);
	font-family: inherit;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 1.1rem;
}

body.lunicum-refresh .lc-main.lc-shop #payment {
	background: var(--lc-soft);
	border: 1px solid var(--lc-line);
	border-radius: 4px;
}

body.lunicum-refresh .lc-main.lc-shop #payment ul.payment_methods {
	border-bottom-color: var(--lc-line);
	padding: 1.25rem;
}

body.lunicum-refresh .lc-main.lc-shop #payment div.payment_box {
	background: var(--lc-white);
	color: var(--lc-muted);
}

body.lunicum-refresh .lc-main.lc-shop #payment div.payment_box::before {
	border-bottom-color: var(--lc-white);
}

body.lunicum-refresh .lc-main.lc-shop #payment div.form-row {
	padding: 1.25rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation {
	float: left;
	width: 24%;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation ul {
	border: 1px solid var(--lc-line);
	border-radius: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation li {
	border-bottom: 1px solid var(--lc-line);
	margin: 0;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation li:last-child {
	border-bottom: 0;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation a {
	color: var(--lc-muted);
	display: block;
	font-weight: 600;
	padding: 0.85rem 1rem;
	text-decoration: none;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation li.is-active a,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation a:hover {
	background: var(--lc-teal);
	color: var(--lc-white);
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-content {
	float: right;
	width: 72%;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-Price-amount,
body.lunicum-refresh .lc-main.lc-shop .order-total,
body.lunicum-refresh .lc-main.lc-shop .cart-subtotal,
body.lunicum-refresh .lc-main.lc-shop .tax-rate,
body.lunicum-refresh .lc-main.lc-shop .woocommerce-shipping-totals {
	visibility: visible;
}

body.lunicum-refresh .lc-main.lc-shop .wc-block-components-totals-item,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-order-summary-item,
body.lunicum-refresh .lc-main.lc-shop .wc-block-checkout__order-notes,
body.lunicum-refresh .lc-main.lc-shop .wc-block-checkout__terms {
	color: var(--lc-ink);
}

body.lunicum-refresh .lc-main.lc-shop .wc-block-components-sidebar-layout .wc-block-components-main,
body.lunicum-refresh .lc-main.lc-shop .wc-block-components-sidebar-layout .wc-block-components-sidebar {
	box-sizing: border-box;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-breadcrumb {
	color: var(--lc-muted);
	font-size: 0.8rem;
	line-height: 1.5;
	margin: 0 0 2rem;
}

body.lunicum-refresh .lc-main.lc-shop .woocommerce-breadcrumb a {
	color: var(--lc-teal);
}

@media (max-width: 980px) {
	body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.lunicum-refresh.single-product .lc-main.lc-shop div.product,
	body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .clearfix {
		gap: 2.25rem;
		grid-template-columns: minmax(0, 1fr);
	}

	body.lunicum-refresh.single-product .lc-main.lc-shop div.product .woocommerce-product-gallery,
	body.lunicum-refresh.single-product .lc-main.lc-shop div.product .summary,
	body.lunicum-refresh.single-product .lc-main.lc-shop div.product > .clearfix {
		grid-column: 1;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation,
	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation {
		margin-bottom: 1.5rem;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation li {
		border-bottom: 0;
		border-right: 1px solid var(--lc-line);
	}
}

@media (max-width: 640px) {
	body.lunicum-refresh .lc-main.lc-shop {
		padding-top: 2.25rem;
	}

	body.lunicum-refresh .lc-main.lc-shop .lc-product-search {
		align-items: stretch;
		flex-direction: column;
		gap: 0.55rem;
	}

	body.lunicum-refresh .lc-main.lc-shop .lc-product-search input[type="search"],
	body.lunicum-refresh .lc-main.lc-shop .lc-product-search button {
		border-radius: 3px;
		width: 100%;
	}

	body.lunicum-refresh .lc-main.lc-shop .lc-product-categories {
		justify-content: flex-start;
	}

	body.lunicum-refresh .lc-main.lc-shop .lc-category-pill {
		flex: 1 1 calc(50% - 0.65rem);
		justify-content: center;
		text-align: center;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-result-count,
	body.lunicum-refresh .lc-main.lc-shop .woocommerce-ordering {
		float: none;
		line-height: 1.5;
		width: 100%;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-ordering select {
		width: 100%;
	}

	body.lunicum-refresh.single-product .lc-main.lc-shop div.product .flex-control-thumbs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	body.lunicum-refresh.single-product .lc-main.lc-shop .woocommerce-tabs ul.tabs li a {
		border-bottom-width: 1px;
		display: block;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce table.shop_table_responsive tr td,
	body.lunicum-refresh .lc-main.lc-shop .woocommerce-page table.shop_table_responsive tr td {
		border-color: var(--lc-line);
		padding: 0.8rem;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce .cart-collaterals .cart_totals {
		float: none;
		width: 100%;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-error a.button,
	body.lunicum-refresh .lc-main.lc-shop .woocommerce-info a.button,
	body.lunicum-refresh .lc-main.lc-shop .woocommerce-message a.button {
		display: block;
		float: none;
		margin: 0.65rem 0 0;
		width: 100%;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation ul {
		display: block;
	}

	body.lunicum-refresh .lc-main.lc-shop .woocommerce-MyAccount-navigation li {
		border-bottom: 1px solid var(--lc-line);
		border-right: 0;
	}
}

@media (max-width: 359px) {
	body.lunicum-refresh :is(.lc-main.lc-shop, .lc-home-products) ul.products {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.lunicum-refresh .lc-main.lc-shop *,
	body.lunicum-refresh .lc-main.lc-shop *::before,
	body.lunicum-refresh .lc-main.lc-shop *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
