:root {
	--cfv-ink: #17191c;
	--cfv-muted: #697077;
	--cfv-line: #e4e7ea;
	--cfv-soft: #f5f6f7;
	--cfv-accent: #25a244;
	--cfv-accent-dark: #177b31;
	--cfv-focus: #1976d2;
	--cfv-white: #ffffff;
}

.cfv-product-selector,
.cfv-shop-filters {
	box-sizing: border-box;
	color: var(--cfv-ink);
	font-family: inherit;
	letter-spacing: 0;
}

.cfv-product-selector *,
.cfv-shop-filters * {
	box-sizing: border-box;
}

.cfv-product-selector {
	margin: 20px 0;
	padding: 20px 0;
	border-top: 1px solid var(--cfv-line);
	border-bottom: 1px solid var(--cfv-line);
}

.cfv-selector-title {
	margin: 0 0 18px;
	font-size: 17px;
	font-weight: 750;
	line-height: 1.3;
}

.cfv-selector-groups {
	display: grid;
	gap: 20px;
}

.cfv-selector-group {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.cfv-selector-group legend {
	display: flex;
	align-items: baseline;
	width: 100%;
	margin: 0 0 10px;
	padding: 0;
	font-size: 14px;
	line-height: 1.4;
}

.cfv-selector-label {
	font-weight: 750;
}

.cfv-selector-current {
	color: var(--cfv-muted);
	font-size: 13px;
}

.cfv-option-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.cfv-option {
	position: relative;
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	height: 42px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid #cfd3d7;
	border-radius: 6px;
	background: var(--cfv-white);
	color: var(--cfv-ink);
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.cfv-option:hover:not(:disabled) {
	border-color: #8d949b;
	transform: translateY(-1px);
}

.cfv-option:focus-visible,
.cfv-filter-option input:focus-visible + span,
.cfv-filter-toggle:focus-visible,
.cfv-apply-filters:focus-visible,
.cfv-clear-filters:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--cfv-focus) 28%, transparent);
	outline-offset: 2px;
}

.cfv-option.is-selected {
	border-color: var(--cfv-ink);
	background: var(--cfv-ink);
	color: var(--cfv-white);
	box-shadow: 0 0 0 2px var(--cfv-white), 0 0 0 4px var(--cfv-ink);
}

.cfv-option--color {
	width: 40px;
	min-width: 40px;
	height: 40px;
	padding: 0;
	border-radius: 50%;
	background: var(--cfv-white);
}

.cfv-option--color.is-selected {
	background: var(--cfv-white);
}

.cfv-color-dot,
.cfv-filter-color {
	display: block;
	width: 28px;
	height: 28px;
	border: 1px solid rgba(23, 25, 28, 0.18);
	border-radius: 50%;
	background: var(--cfv-swatch, #d1d5db);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.cfv-option.is-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.cfv-option.is-disabled::after {
	position: absolute;
	width: 115%;
	height: 1px;
	background: #8f969d;
	content: '';
	transform: rotate(-35deg);
}

.cfv-clear-variations {
	display: none;
	margin: 16px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--cfv-muted);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cfv-product-selector.has-selection .cfv-clear-variations {
	display: inline-block;
}

.cfv-variation-form-enhanced table.variations {
	position: absolute !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	border: 0 !important;
	white-space: nowrap !important;
}

.cfv-variation-form-enhanced .reset_variations {
	display: none !important;
}

.cfv-shop-filter-shell {
	width: 100%;
	max-width: 320px;
}

.cfv-filter-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	height: 44px;
	padding: 0 16px;
	border: 1px solid var(--cfv-ink);
	border-radius: 6px;
	background: var(--cfv-white);
	color: var(--cfv-ink);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 750;
}

.cfv-filter-toggle-icon,
.cfv-filter-toggle-icon::before,
.cfv-filter-toggle-icon::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	content: '';
}

.cfv-filter-toggle-icon::before {
	transform: translateY(-5px);
}

.cfv-filter-toggle-icon::after {
	transform: translateY(3px);
}

.cfv-shop-filters {
	width: 100%;
	background: var(--cfv-white);
}

.cfv-filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	border-bottom: 2px solid var(--cfv-ink);
	font-size: 15px;
	text-transform: uppercase;
}

.cfv-filter-close {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--cfv-ink);
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.cfv-filter-section {
	min-width: 0;
	margin: 0;
	padding: 21px 0;
	border: 0;
	border-bottom: 1px solid var(--cfv-line);
}

.cfv-filter-section legend {
	width: 100%;
	margin: 0 0 14px;
	padding: 0;
	color: var(--cfv-ink);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.cfv-price-inputs {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 10px;
}

.cfv-price-inputs label {
	display: grid;
	gap: 6px;
	color: var(--cfv-muted);
	font-size: 11px;
}

.cfv-price-box {
	display: flex;
	align-items: center;
	height: 38px;
	padding: 0 9px;
	border: 1px solid #d7dadd;
	border-radius: 6px;
	background: var(--cfv-white);
}

.cfv-price-box b {
	font-size: 12px;
}

.cfv-price-box input {
	min-width: 0;
	width: 100%;
	height: 34px;
	padding: 0 4px;
	border: 0;
	background: transparent;
	box-shadow: none;
	font: inherit;
	font-size: 13px;
}

.cfv-price-box input:focus {
	outline: 0;
}

.cfv-price-box:focus-within {
	border-color: var(--cfv-focus);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cfv-focus) 15%, transparent);
}

.cfv-dual-range {
	--cfv-range-start: 0%;
	--cfv-range-end: 100%;
	position: relative;
	height: 22px;
	margin: 18px 4px 0;
}

.cfv-range-track {
	position: absolute;
	top: 9px;
	right: 0;
	left: 0;
	height: 3px;
	background: #dfe3e6;
}

.cfv-range-track span {
	position: absolute;
	top: 0;
	right: calc(100% - var(--cfv-range-end));
	left: var(--cfv-range-start);
	display: block;
	height: 100%;
	background: var(--cfv-accent);
}

.cfv-price-range {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 22px;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.cfv-price-range::-webkit-slider-runnable-track {
	height: 3px;
	background: transparent;
}

.cfv-price-range::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	margin-top: -7px;
	border: 2px solid var(--cfv-accent);
	border-radius: 50%;
	background: var(--cfv-white);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
	cursor: grab;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
}

.cfv-price-range::-moz-range-track {
	height: 3px;
	background: transparent;
}

.cfv-price-range::-moz-range-thumb {
	width: 13px;
	height: 13px;
	border: 2px solid var(--cfv-accent);
	border-radius: 50%;
	background: var(--cfv-white);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
	cursor: grab;
	pointer-events: auto;
}

.cfv-filter-options {
	display: grid;
	gap: 9px;
	max-height: 270px;
	overflow: auto;
	padding-right: 5px;
	scrollbar-color: #c9cdd1 transparent;
	scrollbar-width: thin;
}

.cfv-filter-option {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	min-height: 30px;
	margin: 0;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.25;
}

.cfv-filter-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.cfv-filter-color {
	width: 23px;
	height: 23px;
	transition: box-shadow 150ms ease, transform 150ms ease;
}

.cfv-filter-option input:checked + .cfv-filter-color {
	box-shadow: 0 0 0 2px var(--cfv-white), 0 0 0 4px var(--cfv-ink);
	transform: scale(0.9);
}

.cfv-checkmark {
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border: 1px solid #c9cdd1;
	border-radius: 4px;
	background: var(--cfv-white);
}

.cfv-filter-option input:checked + .cfv-checkmark {
	border-color: var(--cfv-accent);
	background: var(--cfv-accent);
}

.cfv-filter-option input:checked + .cfv-checkmark::after {
	width: 5px;
	height: 9px;
	border: solid var(--cfv-white);
	border-width: 0 2px 2px 0;
	content: '';
	transform: translateY(-1px) rotate(45deg);
}

.cfv-filter-name {
	min-width: 0;
	overflow-wrap: anywhere;
}

.cfv-filter-count {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	background: var(--cfv-soft);
	color: var(--cfv-muted);
	font-size: 10px;
}

.cfv-filter-section--size .cfv-filter-options {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	overflow: visible;
	padding: 0;
}

.cfv-filter-option--size {
	display: block;
	min-height: 0;
}

.cfv-size-chip {
	display: grid;
	place-items: center;
	width: 100%;
	height: 38px;
	padding: 0 5px;
	border: 1px solid #d3d7da;
	border-radius: 6px;
	background: var(--cfv-white);
	font-size: 12px;
	font-weight: 750;
}

.cfv-filter-option--size input:checked + .cfv-size-chip {
	border-color: var(--cfv-ink);
	background: var(--cfv-ink);
	color: var(--cfv-white);
}

.cfv-filter-option--size .cfv-filter-count {
	position: absolute;
	top: -5px;
	right: -4px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border: 1px solid var(--cfv-white);
	background: #e9ecef;
	font-size: 9px;
}

.cfv-filter-actions {
	display: flex;
	justify-content: flex-start;
	padding-top: 18px;
}

.cfv-apply-filters,
.cfv-clear-filters {
	height: 42px;
	padding: 0 16px;
	border-radius: 6px;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.cfv-apply-filters {
	border: 1px solid var(--cfv-accent);
	background: var(--cfv-accent);
	color: var(--cfv-white);
}

.cfv-apply-filters:hover {
	border-color: var(--cfv-accent-dark);
	background: var(--cfv-accent-dark);
}

.cfv-clear-filters {
	border: 1px solid #d5d8db;
	background: var(--cfv-white);
	color: var(--cfv-ink);
}

.cfv-filter-status {
	min-height: 18px;
	margin: 10px 0 0;
	color: var(--cfv-muted);
	font-size: 11px;
	line-height: 1.4;
}

.cfv-product-results {
	width: 100%;
	min-width: 0;
	transition: opacity 160ms ease;
	scroll-margin-top: 24px;
}

.cfv-product-results ul.products {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.cfv-product-results.is-loading {
	opacity: 0.62;
	pointer-events: none;
}

.elementor-loop-container.is-loading,
.elementor-widget-loop-grid.is-loading,
.wc-block-product-template.is-loading,
.products-block-post-template.is-loading,
.wc-block-grid__products.is-loading {
	opacity: 0.62;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.cfv-no-products {
	display: grid;
	gap: 6px;
	place-items: center;
	min-height: 240px;
	padding: 30px;
	border: 1px dashed #cfd4d8;
	background: var(--cfv-soft);
	text-align: center;
}

.cfv-no-products strong {
	font-size: 16px;
}

.cfv-no-products span {
	color: var(--cfv-muted);
	font-size: 13px;
}

.cfv-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 28px;
}

.cfv-pagination button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid #d4d8db;
	border-radius: 5px;
	background: var(--cfv-white);
	color: var(--cfv-ink);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
}

.cfv-pagination button.is-current {
	border-color: var(--cfv-ink);
	background: var(--cfv-ink);
	color: var(--cfv-white);
}

.cfv-mobile-backdrop {
	display: none;
}

@media (max-width: 900px) {
	.cfv-shop-filter-shell {
		max-width: none;
	}

	.cfv-filter-toggle {
		display: flex;
	}

	.cfv-shop-filters {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100002;
		width: min(88vw, 360px);
		height: 100dvh;
		overflow: auto;
		padding: 0 20px 24px;
		box-shadow: 18px 0 40px rgba(0, 0, 0, 0.18);
		transform: translateX(-105%);
		transition: transform 220ms ease;
	}

	.cfv-shop-filters.is-open {
		transform: translateX(0);
	}

	.cfv-filter-heading {
		position: sticky;
		top: 0;
		z-index: 2;
		background: var(--cfv-white);
	}

	.cfv-filter-close {
		display: grid;
		place-items: center;
	}

	.cfv-mobile-backdrop:not([hidden]) {
		position: fixed;
		inset: 0;
		z-index: 100001;
		display: block;
		background: rgba(10, 12, 14, 0.52);
	}

	body.cfv-filter-open {
		overflow: hidden;
	}

	.cfv-filter-actions {
		position: sticky;
		bottom: -24px;
		z-index: 2;
		margin: 0 -20px;
		padding: 14px 20px 24px;
		border-top: 1px solid var(--cfv-line);
		background: var(--cfv-white);
	}
}

@media (max-width: 480px) {
	.cfv-product-selector {
		margin: 16px 0;
		padding: 17px 0;
	}

	.cfv-option-list {
		gap: 8px;
	}

	.cfv-option {
		min-width: 42px;
		height: 40px;
	}

	.cfv-filter-section--size .cfv-filter-options {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.cfv-option,
	.cfv-shop-filters,
	.cfv-product-results,
	.cfv-filter-color {
		transition: none;
	}
}

/* Purchase controls and Elementor compatibility. */
.cfv-purchase-control,
.cfv-product-total,
.cfv-cart-button {
	box-sizing: border-box;
	font-family: inherit;
	letter-spacing: 0;
}

.cfv-quantity-control {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: fit-content;
	margin: 12px 0;
}

.cfv-quantity {
	display: grid;
	grid-template-columns: 44px 56px 44px;
	width: 144px;
	height: 46px;
	overflow: hidden;
	border: 1px solid var(--cfv-qty-border, #cfd4dc);
	border-radius: 8px;
	background: var(--cfv-qty-bg, #ffffff);
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.cfv-quantity:hover {
	border-color: color-mix(in srgb, var(--cfv-qty-border, #cfd4dc) 55%, var(--cfv-qty-text, #17191c));
}

.cfv-quantity:focus-within {
	border-color: var(--cfv-focus, #1976d2);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cfv-focus, #1976d2) 22%, transparent);
}

.cfv-quantity .cfv-quantity-button,
.cfv-quantity .cfv-quantity-input {
	box-sizing: border-box !important;
	width: 100% !important;
	height: 44px !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--cfv-qty-bg, #ffffff) !important;
	color: var(--cfv-qty-text, #17191c) !important;
	box-shadow: none !important;
	font: inherit !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.cfv-quantity .cfv-quantity-button {
	cursor: pointer !important;
	font-size: 21px !important;
	font-weight: 700 !important;
	transition: background-color 150ms ease, color 150ms ease, transform 100ms ease !important;
}

.cfv-quantity .cfv-quantity-button:hover:not(:disabled) {
	background: var(--cfv-qty-hover, #f5f6f7) !important;
	color: var(--cfv-qty-text, #17191c) !important;
}

.cfv-quantity .cfv-quantity-button:active:not(:disabled) {
	background: color-mix(in srgb, var(--cfv-qty-hover, #f5f6f7) 78%, var(--cfv-qty-text, #17191c)) !important;
	transform: scale(0.94);
}

.cfv-quantity .cfv-quantity-button:focus,
.cfv-quantity .cfv-quantity-input:focus {
	outline: 0 !important;
}

.cfv-quantity .cfv-quantity-button:focus-visible {
	position: relative;
	z-index: 1;
	outline: 3px solid color-mix(in srgb, var(--cfv-focus, #1976d2) 34%, transparent) !important;
	outline-offset: -3px !important;
}

.cfv-quantity .cfv-quantity-button:disabled {
	cursor: not-allowed !important;
	opacity: 0.38 !important;
}

.cfv-quantity .cfv-quantity-input {
	border-right: 1px solid var(--cfv-qty-border, #cfd4dc) !important;
	border-left: 1px solid var(--cfv-qty-border, #cfd4dc) !important;
	font-size: 16px !important;
	font-weight: 750 !important;
	pointer-events: none;
}

.cfv-quantity-input::-webkit-inner-spin-button,
.cfv-quantity-input::-webkit-outer-spin-button {
	display: none;
	margin: 0;
	-webkit-appearance: none;
}

body.cfv-has-custom-quantity.single-product form.cart .quantity {
	display: none !important;
}

.cfv-product-total {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 10px 0;
	color: var(--cfv-price-color, #17191c);
	font-size: 14px;
	line-height: 1.4;
}

.cfv-product-total strong {
	color: var(--cfv-price-color, #17191c);
	font-size: var(--cfv-price-size, 20px);
	font-weight: 800;
}

.cfv-purchase-scope .elementor-widget-woocommerce-product-price .price,
.cfv-purchase-scope .elementor-widget-woocommerce-product-price .price .woocommerce-Price-amount {
	color: var(--cfv-price-color, #17191c) !important;
	font-size: var(--cfv-price-size, 20px) !important;
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total) {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-height: 46px !important;
	padding: 0 18px !important;
	border: 1px solid var(--cfv-cart-bg, #25a244) !important;
	border-radius: 8px !important;
	background: var(--cfv-cart-bg, #25a244) !important;
	color: var(--cfv-cart-text, #ffffff) !important;
	box-shadow: none !important;
	cursor: pointer !important;
	font: inherit !important;
	font-size: 14px !important;
	font-weight: 750 !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: none !important;
	transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 100ms ease !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total):hover {
	border-color: var(--cfv-cart-hover-bg, #177b31) !important;
	background: var(--cfv-cart-hover-bg, #177b31) !important;
	color: var(--cfv-cart-hover-text, #ffffff) !important;
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total):focus {
	color: var(--cfv-cart-text, #ffffff) !important;
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--cfv-focus, #1976d2) 35%, transparent) !important;
	outline-offset: 3px !important;
	box-shadow: 0 0 0 1px var(--cfv-white) !important;
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total):active {
	border-color: var(--cfv-cart-hover-bg, #177b31) !important;
	background: var(--cfv-cart-hover-bg, #177b31) !important;
	color: var(--cfv-cart-hover-text, #ffffff) !important;
	transform: translateY(1px) scale(0.99);
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total):is(.is-loading, .rey-loading) {
	pointer-events: none !important;
	opacity: 0.82 !important;
}

:is(.cfv-cart-button, .total.elementor-button, .total .elementor-button, a.total, button.total, [role="button"].total):is(.is-added, .rey-added) {
	border-color: var(--cfv-added, #19a64a) !important;
	background: var(--cfv-added, #19a64a) !important;
	color: #ffffff !important;
}

.total .elementor-button .elementor-button-content-wrapper,
.total.elementor-button .elementor-button-content-wrapper {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	gap: 8px !important;
}

.cfv-cart-button-icon,
.total .elementor-button-icon,
.total.elementor-button .elementor-button-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 18px !important;
	min-width: 18px !important;
	height: 18px !important;
	color: inherit !important;
}

.cfv-cart-button-icon:empty {
	display: none !important;
}

.total .elementor-button .elementor-button-text,
.total.elementor-button .elementor-button-text,
.total .elementor-button .elementor-button-icon,
.total.elementor-button .elementor-button-icon {
	color: inherit !important;
}

.cfv-cart-button svg,
.total .elementor-button svg,
.total.elementor-button svg {
	fill: currentColor !important;
}

.cfv-spinner {
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: currentColor;
	border-radius: 50%;
	animation: cfv-spin 700ms linear infinite;
}

.cfv-check {
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
}

.cfv-loop-selector {
	display: grid;
	gap: 11px;
	margin: 12px 0;
}

.cfv-loop-group {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.cfv-loop-group legend {
	width: 100%;
	margin: 0 0 6px;
	padding: 0;
	color: var(--cfv-muted);
	font-size: 11px;
	font-weight: 750;
	line-height: 1.3;
	text-transform: none;
}

.cfv-loop-options {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.cfv-loop-option {
	display: inline-grid !important;
	place-items: center !important;
	min-width: 36px !important;
	height: 36px !important;
	margin: 0 !important;
	padding: 0 9px !important;
	border: 1px solid #cfd3d7 !important;
	border-radius: 6px !important;
	background: var(--cfv-white) !important;
	color: var(--cfv-ink) !important;
	box-shadow: none !important;
	cursor: pointer !important;
	font: inherit !important;
	font-size: 12px !important;
	font-weight: 750 !important;
	letter-spacing: 0 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	text-transform: none !important;
	transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease, transform 100ms ease !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

.cfv-loop-option--color {
	width: 36px !important;
	min-width: 36px !important;
	padding: 0 !important;
	border-radius: 50% !important;
}

.cfv-loop-color {
	display: block;
	width: 25px;
	height: 25px;
	border: 1px solid rgba(23, 25, 28, 0.18);
	border-radius: 50%;
	background: var(--cfv-swatch, #d1d5db);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.cfv-loop-option:hover:not(:disabled) {
	border-color: #8d949b !important;
	background: var(--cfv-white) !important;
	color: var(--cfv-ink) !important;
	transform: translateY(-1px);
}

.cfv-loop-option:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--cfv-focus, #1976d2) 32%, transparent) !important;
	outline-offset: 2px !important;
}

.cfv-loop-option:active:not(:disabled) {
	transform: scale(0.96);
}

.cfv-loop-option.is-selected,
.cfv-loop-option.is-selected:hover,
.cfv-loop-option.is-selected:focus,
.cfv-loop-option.is-selected:active {
	border-color: var(--cfv-ink) !important;
	background: var(--cfv-ink) !important;
	color: var(--cfv-white) !important;
	box-shadow: 0 0 0 2px var(--cfv-white), 0 0 0 4px var(--cfv-ink) !important;
}

.cfv-loop-option--color.is-selected,
.cfv-loop-option--color.is-selected:hover,
.cfv-loop-option--color.is-selected:focus,
.cfv-loop-option--color.is-selected:active {
	background: var(--cfv-white) !important;
}

.cfv-loop-option:disabled,
.cfv-loop-option.is-disabled {
	cursor: not-allowed !important;
	opacity: 0.3 !important;
	transform: none !important;
}

.cfv-loop-more {
	width: fit-content;
	color: var(--cfv-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cfv-loop-more:hover,
.cfv-loop-more:focus {
	color: var(--cfv-ink);
}

.cfv-stock-message {
	margin: 8px 0 0;
	color: #2f6b25;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}

.cfv-stock-message.is-pending {
	color: #6b7280;
	font-weight: 600;
}

.cfv-stock-message.is-low,
.cfv-stock-message.is-backorder {
	color: #9a6700;
}

.cfv-stock-message.is-out {
	color: #b42318;
}

.cfv-purchase-message {
	max-width: min(100%, 520px);
	margin: 6px 0 0;
	padding: 8px 10px;
	border-left: 3px solid #b42318;
	border-radius: 0 5px 5px 0;
	background: #fff3f2;
	color: #912018;
	font-size: 13px;
	font-weight: 650;
	line-height: 1.45;
}

.cfv-purchase-message[hidden] {
	display: none !important;
}

/* Keep Hello Elementor from replacing the plugin's interactive states. */
.cfv-product-selector button.cfv-option,
.cfv-shop-filter-shell button,
.cfv-shop-filter-shell input {
	font-family: inherit !important;
	letter-spacing: 0 !important;
	text-decoration: none !important;
	-webkit-appearance: none;
	appearance: none;
}

.cfv-product-selector button.cfv-option:not(.is-selected) {
	border-color: #cfd3d7 !important;
	background: var(--cfv-white) !important;
	color: var(--cfv-ink) !important;
}

.cfv-product-selector button.cfv-option:not(.is-selected):hover:not(:disabled) {
	border-color: #8d949b !important;
	background: var(--cfv-white) !important;
	color: var(--cfv-ink) !important;
}

.cfv-shop-filter-shell .cfv-apply-filters {
	border-color: var(--cfv-accent) !important;
	background: var(--cfv-accent) !important;
	color: var(--cfv-white) !important;
}

.cfv-shop-filter-shell .cfv-apply-filters:hover,
.cfv-shop-filter-shell .cfv-apply-filters:focus,
.cfv-shop-filter-shell .cfv-apply-filters:active {
	border-color: var(--cfv-accent-dark) !important;
	background: var(--cfv-accent-dark) !important;
	color: var(--cfv-white) !important;
}

.cfv-shop-filter-shell .cfv-clear-filters,
.cfv-shop-filter-shell .cfv-filter-toggle,
.cfv-shop-filter-shell .cfv-pagination button {
	background: var(--cfv-white) !important;
	color: var(--cfv-ink) !important;
}

.cfv-shop-filter-shell .cfv-clear-filters:hover,
.cfv-shop-filter-shell .cfv-filter-toggle:hover,
.cfv-shop-filter-shell .cfv-pagination button:hover:not(.is-current) {
	border-color: #9ca3aa !important;
	background: var(--cfv-soft) !important;
	color: var(--cfv-ink) !important;
}

.cfv-shop-filter-shell .cfv-pagination button.is-current,
.cfv-shop-filter-shell .cfv-pagination button.is-current:hover,
.cfv-shop-filter-shell .cfv-pagination button.is-current:focus,
.cfv-shop-filter-shell .cfv-pagination button.is-current:active {
	border-color: var(--cfv-ink) !important;
	background: var(--cfv-ink) !important;
	color: var(--cfv-white) !important;
}

.cfv-shop-filter-shell button:active:not(:disabled) {
	transform: translateY(1px);
}

.cfv-product-selector button.cfv-option.is-selected:hover,
.cfv-product-selector button.cfv-option.is-selected:focus,
.cfv-product-selector button.cfv-option.is-selected:active {
	border-color: var(--cfv-ink) !important;
	background: var(--cfv-ink) !important;
	color: var(--cfv-white) !important;
}

.cfv-product-selector button.cfv-option--color.is-selected:hover,
.cfv-product-selector button.cfv-option--color.is-selected:focus,
.cfv-product-selector button.cfv-option--color.is-selected:active {
	background: var(--cfv-white) !important;
}

/* Reycob size controls. These settings intentionally do not affect color swatches. */
.cfv-product-selector button.cfv-option--size,
.cfv-loop-selector button.cfv-loop-option--size {
	border-radius: 6px !important;
}

.cfv-product-selector button.cfv-option--color,
.cfv-loop-selector button.cfv-loop-option--color {
	width: 40px !important;
	min-width: 40px !important;
	height: 40px !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background: var(--cfv-white) !important;
}

.cfv-product-selector button.cfv-option--size:not(.is-selected),
.cfv-loop-selector button.cfv-loop-option--size:not(.is-selected),
.cfv-shop-filter-shell .cfv-size-chip {
	background: var(--cfv-size-bg, #ffffff) !important;
	color: var(--cfv-size-text, #17191c) !important;
}

.cfv-product-selector button.cfv-option--size:not(.is-selected):hover:not(:disabled),
.cfv-product-selector button.cfv-option--size:not(.is-selected):focus-visible:not(:disabled),
.cfv-loop-selector button.cfv-loop-option--size:not(.is-selected):hover:not(:disabled),
.cfv-loop-selector button.cfv-loop-option--size:not(.is-selected):focus-visible:not(:disabled),
.cfv-filter-option--size:hover .cfv-size-chip,
.cfv-filter-option--size input:focus-visible + .cfv-size-chip {
	background: var(--cfv-size-hover-bg, #f5f6f7) !important;
	color: var(--cfv-size-hover-text, #17191c) !important;
}

.cfv-product-selector button.cfv-option--size.is-selected,
.cfv-product-selector button.cfv-option--size.is-selected:hover,
.cfv-product-selector button.cfv-option--size.is-selected:focus,
.cfv-product-selector button.cfv-option--size.is-selected:active,
.cfv-loop-selector button.cfv-loop-option--size.is-selected,
.cfv-loop-selector button.cfv-loop-option--size.is-selected:hover,
.cfv-loop-selector button.cfv-loop-option--size.is-selected:focus,
.cfv-loop-selector button.cfv-loop-option--size.is-selected:active,
.cfv-filter-option--size input:checked + .cfv-size-chip,
.cfv-filter-option--size input:checked + .cfv-size-chip:hover {
	background: var(--cfv-size-active-bg, #17191c) !important;
	color: var(--cfv-size-active-text, #ffffff) !important;
}

@keyframes cfv-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 480px) {
	.cfv-quantity {
		grid-template-columns: 40px 52px 40px;
		width: 132px;
		height: 42px;
	}

	.cfv-quantity .cfv-quantity-button,
	.cfv-quantity .cfv-quantity-input {
		height: 40px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cfv-spinner {
		animation-duration: 1400ms;
	}

	.cfv-quantity,
	.cfv-quantity-button,
	.cfv-cart-button,
	.total.elementor-button,
	.total .elementor-button,
	a.total,
	button.total {
		transition: none !important;
	}
}
