/*
 Theme Name:   Nurfia Child
 Theme URI:    http://klbtheme.com/nurfia/
 Description:  Nurfia Child Theme
 Author:       KlbTheme
 Author URI:   http://themeforest.net/user/KlbTheme
 Template:     nurfia
 Version:      1.4.0
 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:  nurfia-child
*/

/* Header type 3: keep the "hover" (dark) style at all times */
.site-header.header-type3.is-transparent:not([data-sticky-type=active]):not(:hover) .header-main,
.site-header.header-type3.is-transparent:not([data-sticky-type=active]):not(:hover) .header-nav,
.site-header.header-type3.transparent .header-main,
.site-header.header-type3.transparent .header-nav {
	--header-row-background: #fff;
	--header-row-foreground: #000;
	--header-row-foreground-active: #000;
	--header-row-border: #dee6eb;
}

.site-header.header-type3.is-transparent:not([data-sticky-type=active]):not(:hover) .header-main .site-brand .default-logo,
.site-header.header-type3.is-transparent:not([data-sticky-type=active]):not(:hover) .header-nav .site-brand .default-logo,
.site-header.header-type3.transparent .header-main .site-brand .default-logo,
.site-header.header-type3.transparent .header-nav .site-brand .default-logo {
	opacity: 1;
}

.site-header.header-type3.is-transparent:not([data-sticky-type=active]):not(:hover) .header-main .search-input::placeholder,
.site-header.header-type3.is-transparent:not([data-sticky-type=active]):not(:hover) .header-nav .search-input::placeholder,
.site-header.header-type3.transparent .header-main .search-input::placeholder,
.site-header.header-type3.transparent .header-nav .search-input::placeholder {
	color: rgba(0, 0, 0, 0.5);
}

/* Checkout: customer details 60%, order summary 40% */
@media screen and (min-width: 1024.02px) {
	.woocommerce-checkout .cart-wrapper {
		display: grid;
		grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
		align-items: start;
	}

	.woocommerce-checkout .cart-wrapper > #customer_details,
	.woocommerce-checkout .cart-wrapper > .order-review-wrapper {
		width: 100% !important;
		max-width: none !important;
		flex: none !important;
		padding-inline-end: 0;
	}
}

/* Checkout shipping redesign */
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals {
	display: flex !important;
	align-items: flex-start;
	gap: 1rem;
	width: 100% !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals th {
	flex: 0 0 30%;
	width: 30% !important;
	max-width: 30% !important;
	box-sizing: border-box;
	vertical-align: top;
	padding-top: 0.875rem;
	font-weight: 700;
	text-align: left !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals td {
	flex: 1 1 70%;
	min-width: 0;
	width: auto !important;
	max-width: none !important;
	box-sizing: border-box;
	text-align: left !important;
	padding-top: 0.875rem;
}

/* Fallback: old transformed row markup still present */
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth {
	display: block !important;
	width: 100% !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth > td.nurfia-shipping-row {
	display: grid !important;
	grid-template-columns: minmax(0, 30%) minmax(0, 70%);
	align-items: start;
	gap: 1rem;
	width: 100% !important;
	max-width: 100% !important;
}

.woocommerce-checkout ul#shipping_method {
	width: 100%;
	display: grid;
	gap: 0.75rem;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	box-sizing: border-box;
}

.woocommerce-checkout ul#shipping_method li {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 1rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid rgb(var(--colors-gray-200));
	border-radius: 10px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.woocommerce-checkout ul#shipping_method li:has(input.shipping_method:checked) {
	border-color: rgb(var(--colors-primary-background));
	box-shadow: 0 0 0 2px rgba(var(--colors-primary-background), 0.12);
	background: rgba(var(--colors-primary-background), 0.03);
}

.woocommerce-checkout #shipping_method input.shipping_method {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	pointer-events: none;
}

.woocommerce-checkout #shipping_method label {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	margin: 0;
	padding-inline-start: 1.75rem;
	position: relative;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	color: rgb(var(--colors-gray-900));
}

.woocommerce-checkout #shipping_method label::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 50%;
	width: 1.2rem;
	height: 1.2rem;
	border: 2px solid rgb(var(--colors-gray-300));
	border-radius: 999px;
	background: #fff;
	transform: translateY(-50%);
}

.woocommerce-checkout #shipping_method input.shipping_method:checked + label::before {
	border-color: rgb(var(--colors-primary-background));
}

.woocommerce-checkout #shipping_method input.shipping_method:checked + label::after {
	content: "";
	position: absolute;
	inset-inline-start: 0.36rem;
	top: 50%;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: rgb(var(--colors-primary-background));
	transform: translateY(-50%);
}

.woocommerce-checkout #shipping_method label .woocommerce-Price-amount {
	font-size: 0.95rem;
	font-weight: 700;
	white-space: nowrap;
}

.woocommerce-checkout .shipmondo-original {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgb(var(--colors-gray-200));
}

.woocommerce-checkout ul#shipping_method li:not(:has(input.shipping_method:checked)) .shipmondo-original {
	display: none;
}

.woocommerce-checkout .shipmondo-original > .powered_by_shipmondo,
.woocommerce-checkout .shipmondo_service_point_selection > .powered_by_shipmondo {
	display: none;
}

.woocommerce-checkout .shipmondo-original .selected_service_point {
	display: block !important;
	padding: 0.875rem 1rem;
	border: 1px dashed rgb(var(--colors-gray-300));
	border-radius: 8px;
	background: rgb(var(--colors-gray-50));
	cursor: pointer;
}

.woocommerce-checkout .shipmondo-original .selected_service_point .header {
	margin-bottom: 0.35rem;
}

.woocommerce-checkout .shipmondo-original .selected_service_point .header .name {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgb(var(--colors-gray-900));
}

.woocommerce-checkout .shipmondo-original .selected_service_point .location {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.woocommerce-checkout .shipmondo-original .selected_service_point .address_info {
	font-size: 0.85rem;
	line-height: 1.45;
	color: rgb(var(--colors-gray-700));
}

.woocommerce-checkout .shipmondo-original .selected_service_point .distance {
	display: inline-flex;
	align-self: flex-start;
	padding: 0.15rem 0.55rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	color: rgb(var(--colors-gray-700));
	background: rgb(var(--colors-gray-200));
}

.woocommerce-checkout .shipmondo-original .selected_service_point::after {
	content: "Skift pakkeshop";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.75rem;
	padding: 0.45rem 0.75rem;
	position: static !important;
	float: none !important;
	inset: auto !important;
	right: auto !important;
	top: auto !important;
	writing-mode: horizontal-tb !important;
	text-orientation: mixed !important;
	transform: none !important;
	border: 1px solid rgba(var(--colors-primary-background), 0.35);
	border-radius: 6px;
	background: rgba(var(--colors-primary-background), 0.07);
	color: rgb(var(--colors-primary-background));
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

/* Final checkout shipping hard overrides */
.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth {
	display: block !important;
	width: 100% !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth > td.nurfia-shipping-row {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0.875rem 0 0.75rem !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth > td.nurfia-shipping-row > .nurfia-shipping-row__content {
	display: block !important;
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth > td.nurfia-shipping-row > .nurfia-shipping-row__label {
	display: block;
	width: 100%;
	margin-bottom: 0.625rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method {
	display: block !important;
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method li {
	display: block !important;
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	margin: 0 0 0.75rem !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method li:last-child {
	margin-bottom: 0 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method li > label {
	display: flex !important;
	width: 100% !important;
}

.woocommerce-checkout .shipmondo-original .selected_service_point::after {
	display: flex !important;
	width: 100% !important;
	margin-top: 0.875rem !important;
	padding: 0.75rem 1rem !important;
	background: #000 !important;
	color: #fff !important;
	border: 1px solid #000 !important;
	border-radius: 8px !important;
	font-size: 0.8125rem !important;
	font-weight: 700 !important;
	justify-content: center !important;
	text-decoration: none !important;
	position: static !important;
	inset: auto !important;
	float: none !important;
	writing-mode: horizontal-tb !important;
	text-orientation: mixed !important;
	transform: none !important;
	letter-spacing: 0.01em;
}

/* Checkout review redesign (V2) */
.woocommerce-checkout .order-review-wrapper #order_review {
	border: 1px solid rgb(var(--colors-gray-200));
	border-radius: 12px;
	background: #fff;
	padding: 0.875rem;
}

.woocommerce-checkout .order-review-wrapper #order_review table.woocommerce-checkout-review-order-table {
	width: 100% !important;
	border-collapse: collapse;
	table-layout: fixed;
}

.woocommerce-checkout .order-review-wrapper #order_review table.woocommerce-checkout-review-order-table thead th {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgb(var(--colors-gray-500));
	padding: 0.25rem 0 0.625rem;
	border-bottom: 1px solid rgb(var(--colors-gray-200));
}

.woocommerce-checkout .order-review-wrapper #order_review table.woocommerce-checkout-review-order-table td,
.woocommerce-checkout .order-review-wrapper #order_review table.woocommerce-checkout-review-order-table th {
	padding: 0.75rem 0;
	vertical-align: middle;
}

.woocommerce-checkout .order-review-wrapper #order_review tbody tr.cart_item td {
	border-bottom: 1px solid rgb(var(--colors-gray-100));
}

.woocommerce-checkout .order-review-wrapper #order_review tbody tr.cart_item td.product-name {
	width: auto !important;
	text-align: left !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tbody tr.cart_item td.product-total {
	width: 8.5rem !important;
	text-align: right !important;
	white-space: nowrap;
	font-weight: 700;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.nurfia-review-shop-cta td {
	padding-top: 0.875rem;
	padding-bottom: 0.875rem;
}

.woocommerce-checkout .order-review-wrapper #order_review .nurfia-review-shop-cta__button {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1rem;
	background: #000;
	color: #fff;
	border: 1px solid #000;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.woocommerce-checkout .order-review-wrapper #order_review .nurfia-review-shop-cta__button:hover {
	opacity: 0.92;
}

.woocommerce-checkout .nurfia-review-item {
	display: grid;
	grid-template-columns: 3rem auto minmax(0, 1fr);
	align-items: center;
	column-gap: 0.625rem;
	width: 100%;
}

.woocommerce-checkout .nurfia-review-item-media img {
	width: 3rem;
	height: 3rem;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid rgb(var(--colors-gray-200));
}

.woocommerce-checkout .nurfia-review-item-qty {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgb(var(--colors-gray-600));
}

.woocommerce-checkout .nurfia-review-item-title {
	min-width: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: rgb(var(--colors-gray-900));
	white-space: normal;
}

.woocommerce-checkout .order-review-wrapper #order_review tfoot tr.cart-subtotal,
.woocommerce-checkout .order-review-wrapper #order_review tfoot tr.order-total {
	border-top: 1px solid rgb(var(--colors-gray-200));
}

.woocommerce-checkout .order-review-wrapper #order_review tfoot tr.cart-subtotal th,
.woocommerce-checkout .order-review-wrapper #order_review tfoot tr.order-total th {
	text-align: left !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tfoot tr.cart-subtotal td,
.woocommerce-checkout .order-review-wrapper #order_review tfoot tr.order-total td {
	text-align: right !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth > td.nurfia-shipping-row {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 1rem !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth > td.nurfia-shipping-row > .nurfia-shipping-row__label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgb(var(--colors-gray-500));
	margin-bottom: 0.625rem;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method {
	display: grid !important;
	gap: 0.625rem;
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	justify-items: stretch !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method li {
	display: block !important;
	width: 100% !important;
	min-width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0.875rem 0.9375rem !important;
	border: 1px solid rgb(var(--colors-gray-200)) !important;
	border-radius: 10px !important;
	background: #fff !important;
	box-sizing: border-box !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method li:has(input.shipping_method:checked) {
	border-color: #000 !important;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06) !important;
}

.woocommerce-checkout .order-review-wrapper #order_review tr.woocommerce-shipping-totals.nurfia-shipping-fullwidth ul#shipping_method li > label {
	display: flex !important;
	width: 100% !important;
}

.woocommerce-checkout .order-review-wrapper #order_review .shipmondo-original .selected_service_point::after {
	display: flex !important;
	width: 100% !important;
	margin-top: 0.75rem !important;
	padding: 0.75rem 1rem !important;
	background: #000 !important;
	color: #fff !important;
	border: 1px solid #000 !important;
	border-radius: 8px !important;
	font-size: 0.8125rem !important;
	font-weight: 700 !important;
	justify-content: center !important;
	text-decoration: none !important;
}

/* Checkout payment methods */
.woocommerce-checkout #payment.woocommerce-checkout-payment {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgb(var(--colors-gray-200));
}

.woocommerce-checkout #payment .wc_payment_methods.payment_methods {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: grid;
	gap: 0.625rem;
}

.woocommerce-checkout #payment .wc_payment_methods > li.wc_payment_method {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid rgb(var(--colors-gray-200));
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-checkout #payment .wc_payment_methods > li.wc_payment_method:has(input.input-radio:checked) {
	border-color: #111;
	box-shadow: 0 0 0 1px #111;
}

.woocommerce-checkout #payment .wc_payment_method input.input-radio {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.woocommerce-checkout #payment .wc_payment_method > label {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0.625rem;
	width: 100%;
	margin: 0;
	padding: 0.875rem 1rem;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	color: #111;
	cursor: pointer;
	text-transform: none;
	box-sizing: border-box;
}

.woocommerce-checkout #payment .wc_payment_method > label::before {
	content: "";
	flex: 0 0 1.125rem;
	width: 1.125rem;
	height: 1.125rem;
	border: 2px solid rgb(var(--colors-gray-300));
	border-radius: 50%;
	background: #fff;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-checkout #payment .wc_payment_method:has(input.input-radio:checked) > label::before {
	border-color: #111;
	background: #111;
	box-shadow: inset 0 0 0 3px #fff;
}

.woocommerce-checkout #payment .wc_payment_method > label img {
	display: inline-block;
	flex: 0 0 auto;
	width: auto !important;
	max-width: 3.25rem !important;
	height: 1.375rem !important;
	max-height: 1.375rem !important;
	margin: 0 0 0 0.35rem !important;
	padding: 0;
	object-fit: contain;
	object-position: center;
	vertical-align: middle;
}

.woocommerce-checkout #payment .wc_payment_method > label img:first-of-type {
	margin-left: auto !important;
}

.woocommerce-checkout #payment .wc_payment_method .payment_box {
	display: none !important;
}

.woocommerce-checkout #payment .place-order {
	margin-top: 0.25rem;
	padding-top: 0;
}

.woocommerce-checkout #payment .place-order .woocommerce-privacy-policy-text {
	margin-bottom: 0.875rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgb(var(--colors-gray-600));
}

.woocommerce-checkout #payment .place-order .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 1rem;
}

.woocommerce-checkout #payment .place-order .validate-required label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	font-weight: 400;
}

.woocommerce-checkout #payment .place-order #place_order {
	width: 100%;
	margin-top: 0.25rem;
	padding: 0.95rem 1.25rem;
	border-radius: 10px;
	font-size: 0.9375rem;
	font-weight: 700;
}

#tab-description .nurfia-product-faq--in-description {
	margin-top: 1.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e5e7eb;
}

.single-product form.cart .nurfia-size-guide-trigger {
	display: block;
	width: 100%;
	flex: 0 0 100%;
	margin: 0 0 0.75rem;
}

.nurfia-size-guide-button {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	padding: 0.35rem 0;
	border: 0;
	background: transparent;
	color: #111;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	text-decoration: none;
	box-shadow: none;
}

.nurfia-size-guide-button i {
	font-size: 0.9rem;
}

.nurfia-size-guide-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.nurfia-size-guide-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.nurfia-size-guide-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.nurfia-size-guide-modal__dialog {
	position: relative;
	z-index: 2;
	width: min(920px, calc(100vw - 2rem));
	max-height: calc(100vh - 2rem);
	margin: 0;
	background: #fff;
	border-radius: 12px;
	overflow: auto;
}

.nurfia-size-guide-modal__close {
	position: absolute;
	top: 0.5rem;
	right: 0.75rem;
	border: 0;
	background: transparent;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

.nurfia-size-guide-modal__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.5rem;
	padding: 1.25rem;
}

.nurfia-size-guide-modal__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.nurfia-size-guide-modal__content h3 {
	margin-top: 0;
	margin-bottom: 0.75rem;
}

.nurfia-size-guide-open {
	overflow: hidden;
}

@media (max-width: 767px) {
	.nurfia-size-guide-modal__grid {
		grid-template-columns: 1fr;
	}
}

/* Free shipping progress (checkout + cart flyout) */
.woocommerce-checkout .nurfia-shipping-row__content .nurfia-checkout-free-shipping-inline {
	margin-bottom: 1rem;
	width: 100%;
}

.woocommerce-checkout .nurfia-shipping-row__content .nurfia-checkout-free-shipping-inline .klb-free-shipping.site-free-shipping {
	margin-bottom: 0;
}

.klb-free-shipping.site-free-shipping,
.cart-drawer .klb-cart-free-shipping.cart-notification {
	margin-bottom: 1rem;
	padding: 0.875rem 1rem;
	border: 1px solid rgb(var(--colors-gray-200));
	border-radius: 10px;
	background: #fff;
}

.klb-free-shipping.site-free-shipping.success,
.cart-drawer .klb-cart-free-shipping.cart-notification.success {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.cart-drawer .klb-cart-free-shipping.cart-notification {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.klb-free-shipping .notice-header.shipping-notice-header {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
}

.klb-free-shipping .notice-header svg {
	flex: 0 0 1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.1rem;
	color: #166534;
}

.klb-free-shipping .notice-header p,
.cart-drawer .klb-cart-free-shipping.cart-notification p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.45;
	font-weight: 600;
	color: #111;
}

.klb-free-shipping.success .notice-header p,
.cart-drawer .klb-cart-free-shipping.success p {
	color: #166534;
}

.klb-free-shipping .shipping-progress,
.cart-drawer .klb-cart-free-shipping .site-progress {
	display: block;
	width: 100%;
	height: 0.375rem;
	border-radius: 999px;
	background: rgb(var(--colors-gray-200));
	overflow: hidden;
}

.klb-free-shipping .shipping-progress span,
.cart-drawer .klb-cart-free-shipping .site-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #111;
	transition: width 0.35s ease;
}

.klb-free-shipping.success .shipping-progress span,
.cart-drawer .klb-cart-free-shipping.success .site-progress span {
	background: #16a34a;
}

.cart-drawer .klb-cart-free-shipping.warning p {
	color: #92400e;
}

.cart-drawer .klb-cart-free-shipping.warning .site-progress span {
	background: #f59e0b;
}

/* Cart flyout: full-height layout, scroll products only, footer actions pinned */
.drawer.cart-drawer .site-drawer-inner {
	height: 100%;
	max-height: 100dvh;
	overflow: hidden;
}

.drawer.cart-drawer .site-drawer-footer {
	display: none !important;
}

.drawer.cart-drawer .site-drawer-header {
	flex-shrink: 0;
}

.drawer.cart-drawer .site-drawer-body {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 0 1.25rem 1.25rem;
	box-sizing: border-box;
}

.drawer.cart-drawer .site-drawer-cart-inner,
.drawer.cart-drawer .site-mini-cart,
.drawer.cart-drawer .fl-mini-cart-content {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
}

.drawer.cart-drawer .site-mini-cart .mini-cart-products {
	flex: 1 1 auto;
	min-height: 0;
	max-height: none !important;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	padding-right: 0.125rem;
}

.drawer.cart-drawer .klb-cart-free-shipping.cart-notification {
	flex-shrink: 0;
	margin-top: auto;
	margin-bottom: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid rgb(var(--colors-gray-200));
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__total {
	flex-shrink: 0;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0.625rem;
	border-top: 0;
	background: rgb(var(--colors-drawer-background));
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__buttons {
	flex-shrink: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.625rem;
	margin: 0;
	padding-top: 0;
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__buttons .button {
	width: 100%;
	margin: 0;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__buttons .checkout {
	background: #111;
	border-color: #111;
	color: #fff;
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__buttons .checkout:hover {
	background: #000;
	border-color: #000;
	color: #fff;
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__total strong {
	font-weight: 600;
	color: rgb(var(--colors-gray-600));
}

.drawer.cart-drawer .site-mini-cart .woocommerce-mini-cart__total .amount {
	font-size: 1rem;
	font-weight: 700;
	color: #111;
}

/* Wishlist: no social share block */
.klbwl-actions,
.klbwl-list .footer-social {
	display: none !important;
}

/* Single product: no social share block */
.single-product-wrapper .product-share,
.single-product .product-share.social-container {
	display: none !important;
}

/* Shop: grid view only (no grid/list toggle) */
.before-shop-loop .product-views-buttons {
	display: none !important;
}

/* Variation filter chips (nvf_*) — match layered nav pill style */
.nurfia-variation-filter-groups {
	margin-bottom: 1.25rem;
}

.nurfia-variation-filter-group {
	margin-bottom: 1rem;
}

.nurfia-variation-filter-group .filter-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.nurfia-variation-filter-group .filter-options {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.nurfia-variation-filter-group .filter-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2rem;
	padding: 0 0.625rem;
	border: 1px solid rgb(var(--colors-gray-300, 209 213 219));
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	color: inherit;
	background: #fff;
}

.nurfia-variation-filter-group .filter-chip:hover {
	border-color: rgb(var(--colors-gray-800, 31 41 55));
	color: rgb(var(--colors-gray-900, 17 24 39));
}

.nurfia-variation-filter-group .filter-chip.is-active,
.nurfia-variation-filter-group .filter-chip.is-active:hover {
	border-color: rgb(var(--colors-gray-900, 17 24 39));
	box-shadow: inset 0 0 0 1px rgb(var(--colors-gray-900, 17 24 39));
	background: #fff;
	color: rgb(var(--colors-gray-900, 17 24 39));
	font-weight: 600;
}

/* Shop filters: size/brand pills — horizontal, no (count) */
.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) .woocommerce-widget-layered-nav-list__item {
	margin: 0;
	padding: 0;
}

.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) .count {
	display: none !important;
}

.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2rem;
	padding: 0 0.625rem;
	border: 1px solid rgb(var(--colors-gray-300, 209 213 219));
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) a:hover {
	border-color: rgb(var(--colors-gray-800, 31 41 55));
	color: rgb(var(--colors-gray-900, 17 24 39));
}

.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) .chosen a,
.widget .woocommerce-widget-layered-nav-list:not(:has(.type-color)) .woocommerce-widget-layered-nav-list__item.chosen a {
	border-color: #000;
	background: #000;
	color: #fff;
}

/* Product card gallery: click arrows instead of hover scrub */
.product .product-thumbnail .product-media.klb-product-thumbnail > a:has(.product-card-carousel) > img.wp-post-image,
.products .product .klb-product-thumbnail > a:has(.product-card-carousel) > img.wp-post-image {
	display: none !important;
}

.product .product-thumbnail .product-card-carousel .hover-slider-dots,
.products .product-card-carousel .hover-slider-dots {
	display: none !important;
}

.product .product-thumbnail .product-card-carousel .nurfia-product-card-arrows,
.products .product-card-carousel .nurfia-product-card-arrows {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	transform: none;
	z-index: 10;
	padding: 0 0.5rem;
	pointer-events: none;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.product .product-thumbnail:hover .product-card-carousel .nurfia-product-card-arrows,
.product .product-thumbnail .product-card-carousel:focus-within .nurfia-product-card-arrows,
.products .product:hover .product-card-carousel .nurfia-product-card-arrows,
.products .product .product-card-carousel:focus-within .nurfia-product-card-arrows {
	opacity: 1;
}

.product .product-thumbnail .product-card-carousel .nurfia-gallery-arrow,
.products .product-card-carousel .nurfia-gallery-arrow {
	pointer-events: auto;
	width: 2.125rem;
	height: 2.125rem;
	min-width: 2.125rem;
	min-height: 2.125rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: #1a1a1a;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 1;
	line-height: 0;
	font-size: 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product .product-thumbnail .product-card-carousel .nurfia-gallery-arrow__icon,
.products .product-card-carousel .nurfia-gallery-arrow__icon {
	display: block;
	width: 0.875rem;
	height: 0.875rem;
	flex: 0 0 auto;
}

.product .product-thumbnail .product-card-carousel .nurfia-gallery-arrow:hover:not(:disabled),
.products .product-card-carousel .nurfia-gallery-arrow:hover:not(:disabled) {
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.16);
}

.product .product-thumbnail .product-card-carousel .nurfia-gallery-arrow:disabled,
.products .product-card-carousel .nurfia-gallery-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.product .product-thumbnail .product-card-carousel .hover-gallery-slider.nurfia-arrow-gallery,
.products .product-card-carousel .hover-gallery-slider.nurfia-arrow-gallery {
	transition: transform 0.35s ease;
}

/* Shop / category cards: size swatches uppercase (s, m, l → S, M, L) */
.products .product .product-variation-options .option {
	text-transform: uppercase;
}

/* Hide WooCommerce default "Se kurv" link after AJAX add (toast replaces it) */
.single-product-wrapper a.added_to_cart.wc-forward,
.products .product a.added_to_cart.wc-forward,
form.cart a.added_to_cart.wc-forward,
form.cart + a.added_to_cart.wc-forward {
	display: none !important;
}

/* Mini-cart drawer: AJAX remove loading state */
.drawer.cart-drawer .mini_cart_item.is-removing {
	opacity: 0.45;
	pointer-events: none;
}

.drawer.cart-drawer .remove_from_cart_button.is-removing {
	cursor: wait;
}

/* Mini-cart: Danish remove label when parent template still outputs "Remove" */
.drawer.cart-drawer .mini-cart-products .product-remove a.remove,
.site-mini-cart .mini-cart-products .product-remove a.remove {
	font-size: 0;
	line-height: 0;
}

.drawer.cart-drawer .mini-cart-products .product-remove a.remove svg,
.site-mini-cart .mini-cart-products .product-remove a.remove svg {
	display: inline-block;
	vertical-align: middle;
}

.drawer.cart-drawer .mini-cart-products .product-remove a.remove::after,
.site-mini-cart .mini-cart-products .product-remove a.remove::after {
	content: "Fjern";
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.4;
	margin-left: 0.25rem;
	vertical-align: middle;
}

/* Single product: AJAX add to cart loading state */
.single-product-wrapper form.cart.single-ajax .single_add_to_cart_button.loading {
	position: relative;
	pointer-events: none;
	opacity: 0.85;
}

.single-product-wrapper form.cart.single-ajax .single_add_to_cart_button .loader-image.preloader {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 1.25rem;
	height: 1.25rem;
	pointer-events: none;
}

.single-product-wrapper form.cart.single-ajax .single_add_to_cart_button .loader-image.preloader .path {
	stroke: currentColor;
}

/* Single product: Klarna + payment methods */
/* Product: levering og retur under “Læg i kurv” */
.single-product-wrapper form.cart .wocle-product-delivery-notes {
	margin-top: 1rem;
	margin-bottom: 0.25rem;
	padding: 0.95rem 1rem 1rem;
	border: 1px solid rgb(var(--colors-gray-200, 229 231 235));
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
	line-height: 1.45;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__header {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.45rem;
	width: 100%;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__title {
	margin: 0;
	flex: 0 1 auto;
	min-width: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgb(var(--colors-gray-700, 55 65 81));
	white-space: nowrap;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__free-ship {
	margin: 0;
	flex: 0 0 auto;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: right;
	color: rgb(var(--colors-gray-600, 75 85 99));
	white-space: nowrap;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.35rem 1rem;
	align-items: start;
	padding: 0.55rem 0;
	border-bottom: 1px solid rgb(var(--colors-gray-100, 243 244 246));
	font-size: 0.8125rem;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__row:first-child {
	padding-top: 0;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__row:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__label {
	position: relative;
	font-weight: 600;
	color: rgb(var(--colors-gray-900, 17 24 39));
	white-space: nowrap;
	min-width: 7.75rem;
	padding-left: 0.8rem;
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 999px;
	background: rgb(var(--colors-primary-background, 17 17 17));
}

.single-product-wrapper form.cart .wocle-product-delivery-notes__text {
	color: rgb(var(--colors-gray-600, 75 85 99));
}

@media (min-width: 1024.02px) {
	.single-product-wrapper .product .product-body {
		align-items: stretch;
	}

	.single-product-wrapper .product .product-detail-column,
	.single-product-wrapper .product .product-detail-column .product-detail-inner {
		height: 100%;
	}

	.single-product-wrapper .product .product-detail-column .product-detail-inner {
		display: flex;
		flex-direction: column;
	}

	.single-product-wrapper .product .product-detail-column form.cart {
		margin-top: auto;
	}
}

@media (max-width: 480px) {
	.single-product-wrapper form.cart .wocle-product-delivery-notes__row {
		grid-template-columns: 1fr;
		gap: 0.2rem;
	}

	.single-product-wrapper form.cart .wocle-product-delivery-notes__label {
		min-width: 0;
	}
}

.single-product-wrapper form.cart .nurfia-payment-trust {
	flex: 1 1 100%;
	width: 100%;
	margin: 0.75rem 0 0;
	padding: 0;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgb(var(--colors-gray-700, 55 65 81));
}

.single-product-wrapper form.cart .nurfia-klarna-pay-in-3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.single-product-wrapper form.cart .nurfia-klarna-pay-in-3__icon {
	display: block;
	width: auto;
	height: 1.25rem;
	max-width: 4.5rem;
	object-fit: contain;
	flex-shrink: 0;
}

.single-product-wrapper form.cart .nurfia-klarna-pay-in-3__text {
	font-weight: 500;
}

.single-product-wrapper form.cart .nurfia-payment-trust__divider {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0.625rem 0;
	padding: 0;
	font-size: 0.75rem;
	color: rgb(var(--colors-gray-500, 107 114 128));
}

.single-product-wrapper form.cart .nurfia-payment-trust__divider::before,
.single-product-wrapper form.cart .nurfia-payment-trust__divider::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: rgb(var(--colors-gray-200, 229 231 235));
}

.single-product-wrapper form.cart .nurfia-payment-trust__divider span {
	flex-shrink: 0;
	white-space: nowrap;
}

.single-product-wrapper form.cart .nurfia-payment-trust__cards {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-product-wrapper form.cart .nurfia-payment-trust__card {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.single-product-wrapper form.cart .nurfia-payment-trust__card-icon {
	display: block;
	width: auto;
	height: 1.25rem;
	max-width: 2.75rem;
	object-fit: contain;
}

/* Loop card hover: Udsolgt matches theme add-to-cart bar */
.product .product-thumbnail .product-cart-actions .product-cart-actions-inner > .wocle-loop-sold-out {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--cart-action-size, 40px);
	margin: 0;
	padding: 0;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none;
	border-radius: var(--theme-radius, 8px);
	color: rgb(var(--colors-black, 17 24 39));
	background-color: rgb(var(--colors-white, 255 255 255));
	opacity: 1;
	cursor: default;
	pointer-events: none;
	box-sizing: border-box;
}

/* Single product: disabled Udsolgt button */
.single-product-wrapper .single_add_to_cart_button.wocle-sold-out-button,
.single-product-wrapper .buy_now_button.wocle-sold-out-button {
	background-color: rgb(var(--colors-gray-400, 156 163 175)) !important;
	color: rgb(var(--colors-primary-foreground, 255 255 255)) !important;
	cursor: not-allowed;
	pointer-events: none;
}

/* Blog archive / posts page: uniform card images + aligned grid cards */
.blog-posts.klb-grid-style {
	align-items: stretch;
}

.blog-posts.klb-grid-style .post.post-module-grid {
	--post-title-mobile: 1.125rem;
	--post-title-desktop: 1.25rem;
	--post-title-line-height: 1.3;
	--post-title-clamp: 2;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 0;
}

.blog-posts .post .post-thumbnail {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 1rem;
	overflow: hidden;
	border-radius: var(--radius-base, 8px);
	background: rgb(var(--colors-gray-100, 243 244 246));
}

.blog-posts .post .post-thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
}

.blog-posts .post .post-thumbnail img,
.blog-posts .post .post-thumbnail .nurfia-blog-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.blog-posts.klb-grid-style .post.post-module-grid .post-thumbnail {
	flex-shrink: 0;
}

.blog-posts.klb-grid-style .post.post-module-grid .post-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

/* Reserve space for 2 title lines so cards align when one wraps and another does not */
.blog-posts.klb-grid-style .post.post-module-grid .entry-post-title {
	flex-shrink: 0;
	min-height: calc(2 * 1.25 * 1.3 * 1rem);
	margin-bottom: 0.5rem;
}

.blog-posts.klb-grid-style .post.post-module-grid .entry-post-title a {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.blog-posts.klb-grid-style .post.post-module-grid .entry-excerpt {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.blog-posts.klb-grid-style .post.post-module-grid .entry-excerpt > p {
	flex: 0 1 auto;
	margin-bottom: 0;
}

.blog-posts.klb-grid-style .post.post-module-grid .entry-excerpt .klb-readmore {
	margin-top: auto;
	padding-top: 0.75rem;
	flex-shrink: 0;
}

.blog-posts.klb-grid-style .post.post-module-grid .entry-post-meta {
	margin-top: auto;
	padding-top: 0.75rem;
	flex-shrink: 0;
}

.klb-blog .blog-posts .post {
	margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
	.blog-posts.klb-grid-style {
		row-gap: 2rem;
	}
}

/* Home Slider (K): single slide — no drag, no nav */
.klb-home-slider--single .swiper-pagination,
.klb-home-slider--single .swiper-button-prev,
.klb-home-slider--single .swiper-button-next,
.swiper-single-slide-wrapper .swiper-pagination,
.swiper-single-slide-wrapper .swiper-button-prev,
.swiper-single-slide-wrapper .swiper-button-next {
	display: none !important;
}

.klb-home-slider--single .site-slider.swiper,
.site-slider.swiper.swiper-single-slide {
	touch-action: pan-y pinch-zoom;
	cursor: default;
}

/* Footer widgets: Wocle Subscriber — light text on dark footer */
.site-footer .footer-widgets .widget_wocle_subscriber_footer {
	margin-top: 1rem;
}

.site-footer .footer-widgets .wocle-subscriber-form {
	color: #fff;
}

.site-footer .footer-widgets .wocle-subscriber-form__title {
	margin-bottom: 0.75rem;
	color: #fff;
}

.site-footer .footer-widgets .wocle-subscriber-form__text {
	color: rgba(255, 255, 255, 0.85);
}

.site-footer .footer-widgets .wocle-subscriber-consent__disclaimer,
.site-footer .footer-widgets .wocle-subscriber-consent__label,
.site-footer .footer-widgets .wocle-subscriber-consent__text {
	color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-widgets .wocle-subscriber-consent__link {
	color: #fff;
}

.site-footer .footer-widgets .wocle-subscriber-consent__link:hover {
	color: rgba(255, 255, 255, 0.75);
}

.site-footer .footer-widgets .wocle-subscriber-form__input {
	color: #fff;
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.45);
}

.site-footer .footer-widgets .wocle-subscriber-form__input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.site-footer .footer-widgets .wocle-subscriber-form__input:hover,
.site-footer .footer-widgets .wocle-subscriber-form__input:focus {
	border-color: #fff;
	background-color: rgba(255, 255, 255, 0.08);
}

.site-footer .footer-widgets .wocle-subscriber-form__button {
	background: #fff;
	color: #111;
}

.site-footer .footer-widgets .wocle-subscriber-form__button:hover {
	background: rgba(255, 255, 255, 0.9);
}

.site-footer .footer-widgets .wocle-subscriber-form__message.is-success {
	color: #8fd99a;
}

.site-footer .footer-widgets .wocle-subscriber-form__message.is-error {
	color: #f5a8a8;
}

.site-footer .footer-widgets .wocle-subscriber-coupon-code {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

/* Order received / thank you */
.woocommerce-order--wocle-thankyou {
	max-width: 960px;
	margin: 0 auto 3rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-hero {
	text-align: center;
	padding: 2.5rem 1.5rem 2rem;
	margin: 0 0 2rem;
	background: #fafafa;
	border: 1px solid #eee;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-hero__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: #111;
	color: #fff;
}

.woocommerce-order--wocle-thankyou .woocommerce-thankyou-order-received {
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
	border: 0 !important;
	background: transparent !important;
	color: #111 !important;
	font-size: 1.75rem !important;
	font-weight: 600;
	line-height: 1.3;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-hero__sub {
	margin: 0.75rem 0 0;
	font-size: 0.95rem;
	color: #666;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-overview {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

@media screen and (min-width: 576px) {
	.woocommerce-order--wocle-thankyou .wocle-thankyou-overview {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media screen and (min-width: 900px) {
	.woocommerce-order--wocle-thankyou .wocle-thankyou-overview {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-overview__item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem 1.1rem;
	margin: 0;
	background: #fff;
	border: 1px solid #e8e8e8;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-overview__label {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-overview__item strong {
	font-size: 0.95rem;
	font-weight: 600;
	color: #111;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products {
	margin-bottom: 2rem;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 600;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e8e8e8;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__media {
	flex-shrink: 0;
	width: 88px;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__media-link {
	display: block;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__img {
	display: block;
	width: 88px;
	height: 88px;
	object-fit: cover;
	background: #f5f5f5;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__body {
	flex: 1;
	min-width: 0;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__name {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__name a {
	color: inherit;
	text-decoration: none;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__name a:hover {
	text-decoration: underline;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__meta {
	font-size: 0.8rem;
	color: #666;
	margin-bottom: 0.35rem;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__meta dl {
	margin: 0;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__line {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.875rem;
	color: #444;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-products__total {
	font-weight: 600;
	color: #111;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-actions .button {
	padding: 0.85rem 1.5rem;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.woocommerce-order--wocle-thankyou .wocle-thankyou-actions__account.button--alt {
	background: transparent !important;
	color: #111 !important;
	border: 1px solid #111 !important;
}

.woocommerce-order--wocle-thankyou .woocommerce-customer-details {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #eee;
}

.woocommerce-order--wocle-thankyou .woocommerce-customer-details h2,
.woocommerce-order--wocle-thankyou .woocommerce-column__title {
	font-size: 1.125rem;
	font-weight: 600;
}

.woocommerce-order--wocle-thankyou .woocommerce-customer-details address {
	font-style: normal;
	line-height: 1.6;
	padding: 1rem;
	background: #fafafa;
	border: 1px solid #eee;
}

/* AJAX add-to-cart toast — sticky bottom bar with product image */
.klb-notice-ajax {
	position: fixed !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	top: auto !important;
	transform: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 10000000;
	pointer-events: none;
}

.klb-notice-ajax > * {
	pointer-events: auto;
}

.klb-notice-ajax .wocle-cart-toast {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: #fff !important;
	color: #111 !important;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
	border-top: 1px solid #e8e8e8 !important;
}

.klb-notice-ajax .wocle-cart-toast::before,
.klb-notice-ajax .wocle-cart-toast::after {
	display: none !important;
}

.klb-notice-ajax .wocle-cart-toast__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	max-width: 720px;
	margin: 0 auto;
	padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px)) 1.1rem;
	padding-right: 2.75rem;
	position: relative;
}

.klb-notice-ajax .wocle-cart-toast__media {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	background: #f5f5f5;
	border: 1px solid #eee;
	overflow: hidden;
}

.klb-notice-ajax .wocle-cart-toast__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.klb-notice-ajax .wocle-cart-toast__body {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.klb-notice-ajax .wocle-cart-toast__label {
	margin: 0 0 0.2rem;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #888;
}

.klb-notice-ajax .wocle-cart-toast__text {
	margin: 0 0 0.55rem;
	font-size: 0.9rem;
	line-height: 1.35;
	font-weight: 500;
	color: #111;
}

.klb-notice-ajax .wocle-cart-toast__btn.button {
	display: inline-block !important;
	margin: 0 !important;
	padding: 0.5rem 1rem !important;
	height: auto !important;
	min-height: 0 !important;
	line-height: 1.3 !important;
	font-size: 0.7rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	background: #111 !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	float: none !important;
	opacity: 1 !important;
}

.klb-notice-ajax .wocle-cart-toast__btn.button:hover {
	background: #333 !important;
	color: #fff !important;
}

.klb-notice-ajax .wocle-cart-toast__close {
	position: absolute;
	top: 50%;
	right: 0.65rem;
	transform: translateY(-50%);
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #666;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.klb-notice-ajax .wocle-cart-toast__close:hover {
	color: #111;
}

/* Errors: keep visible above bar styling */
.klb-notice-ajax ul.woocommerce-error,
.klb-notice-ajax .wc-block-components-notice-banner__content.is-error {
	margin: 0 0 0.5rem !important;
	padding: 0.85rem 1rem !important;
	background: #7f1d1d !important;
	color: #fff !important;
	border: none !important;
	max-width: 720px;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media (max-width: 600px) {
	.klb-notice-ajax .wocle-cart-toast__inner {
		padding: 0.75rem 2.5rem 0.75rem 0.85rem;
		gap: 0.75rem;
	}

	.klb-notice-ajax .wocle-cart-toast__media {
		width: 52px;
		height: 52px;
	}

	.klb-notice-ajax .wocle-cart-toast__text {
		font-size: 0.82rem;
	}
}

/* Empty cart page */
.wocle-cart-empty {
	padding: 2.5rem 1.5rem 3rem;
}

.wocle-cart-empty__icon {
	margin-bottom: 1.25rem;
	color: rgba(0, 0, 0, 0.2);
}

.wocle-cart-empty__icon svg {
	display: block;
	margin: 0 auto;
	width: 72px;
	height: auto;
}

.wocle-cart-empty__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #111;
}

.wocle-cart-empty__text {
	max-width: 32rem;
	margin: 0 auto 1.75rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #555;
}

.wocle-cart-empty__actions {
	margin: 0;
}

.wocle-cart-empty .return-to-shop a.button {
	display: inline-block;
	min-width: 12rem;
	padding: 0.85rem 1.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}