strong, b {
	font-weight: 800;
}

.typography table {
  border-top: 1px solid var(--color-light);
  border-left: 1px solid var(--color-light);
}
.typography table th {
  background: var(--color-white);
}
.typography table :is(td, th) {
  border-bottom: 1px solid var(--color-light);
  border-right: 1px solid var(--color-light);
  padding: var(--space-5xs);
  font-size: var(--text-sm);
}



/**
 * Buttons
 */
.filter-item .reset-button,
.button,
.brxe-button,
.bricks-button {
	position: relative;
	overflow: hidden;
	transition: transform .2s ease-out;
}
.filter-item .reset-button > span,
.button > span,
.brxe-button > span,
.bricks-button >span {
	display: inherit;
	align-items: inherit;
	gap: inherit;
	justify-content: inherit;
	position: relative;
	line-height: inherit;
	z-index: 1;


    background-image: linear-gradient(currentColor, currentColor);
	background-position: right 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .2s;
}
.button > span > span:only-child {
	display: inherit;
	align-items: inherit;
	gap: inherit;
	justify-content: inherit;
	line-height: inherit;
}
.filter-item .reset-button::after,
.button::after,
.brxe-button::after,
.bricks-button::after {
	content: '';
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	border-radius: var(--radius-full);
	background: currentColor;
	width: 120%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%) scale(0);
	transition: transform .2s ease-out;
	opacity: .95;
}
.filter-item .reset-button::after {
	background: var(--color-lightest);
}
.brxe-button.outline::after {
	opacity: 1;
}

.button:hover > span,
.brxe-button:hover > span,
.bricks-button:hover > span,
.product-card__link:hover + .product-card__button > span {
	color: var(--color-primary) !important;

    background-size: 100% 1px;
	background-position: left 100%;
    transition: background-size .3s;
}
.product-card__link:hover + .product-card__button > span {
	color: var(--color-white) !important;
}
.brxe-button.bricks-background-secondary:hover > span {
	color: var(--color-secondary) !important;
}
.brxe-button.bricks-background-light:hover > span {
	color: var(--color-lighter) !important;
}
.brxe-button.bricks-background-dark:hover > span {
	color: var(--color-dark) !important;
}
.brxe-button.bricks-background-muted:hover > span {
	color: var(--color-medium) !important;
}
.brxe-button.bricks-background-info:hover > span {
	color: var(--color-info) !important;
}
.brxe-button.bricks-background-success:hover > span {
	color: var(--color-success) !important;
}
.brxe-button.bricks-background-warning:hover > span {
	color: var(--color-warning) !important;
}
.brxe-button.bricks-background-danger:hover > span {
	color: var(--color-danger) !important;
}

.brxe-button.outline:hover > span {
	color: var(--color-white) !important;
}
.brxe-button.outline.bricks-color-light:hover > span {
	color: var(--color-dark) !important;
}

.filter-item .reset-button:hover::after,
.button:hover::after,
.brxe-button:hover::after,
.bricks-button:hover::after,
.product-card__link:hover + .product-card__button::after  {
	transition-duration: .3s;
	transform: translate(-50%, -50%) scale(1.2);
}



.button.added {
	background-color: var(--color-success) !important;
	border-color: var(--color-success) !important;
}
.button.added:hover > span {
	color: var(--color-success) !important;
}

.tp-qty-control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2xs);
	width: 100%;
}
.tp-qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.7em;
	height: 1.7em;
	border-radius: var(--radius-xs);
	line-height: 1;
	font-size: 0.95em;
	background-color: color-mix(in srgb, var(--color-white) 25%, transparent);
	cursor: pointer;
	user-select: none;
	transition: background-color .2s ease-out;
}
.tp-qty-btn:hover {
	background-color: color-mix(in srgb, var(--color-white) 50%, transparent);
}
.tp-qty-active:hover .tp-qty-btn {
	background-color: color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.tp-qty-active:hover .tp-qty-btn:hover {
	background-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.tp-qty-active.added:hover .tp-qty-btn {
	background-color: color-mix(in srgb, var(--color-success) 15%, transparent);
}
.tp-qty-active.added:hover .tp-qty-btn:hover {
	background-color: color-mix(in srgb, var(--color-success) 40%, transparent);
}
.tp-qty-btn.is-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
.tp-qty-control.is-loading .tp-qty-btn {
	opacity: 0.6;
}
.tp-qty-value {
	min-width: 1.5em;
	text-align: center;
	font-weight: 700;
}
.tp-qty-active span {
	background-image: none !important;
}

.woocommerce .button:disabled {
	color: var(--color-medium);
	background-color: var(--color-light);
	border-color: var(--color-light);
}
.woocommerce .button:disabled::after {
	display: none;
}
.woocommerce .button:disabled:hover,
.woocommerce .button:disabled:hover > span {
	background-size: 0;
	color: var(--color-medium-dark) !important;
}

/* Fix unstyled buttons */
.button {
	padding: var(--space-2xs) var(--space-md);
}

/* Adjust product filters */
.brxe-woocommerce-products-filter .double-slider-wrap .value-wrap {
	font-size: var(--text-xs);
}
.brxe-woocommerce-products-filter .title {
	pointer-events: none;
}
.brxe-woocommerce-products-filter .title i {
	display: none;
}
.brxe-woocommerce-products-filter input[type=checkbox],
.brxe-woocommerce-products-filter input[type=radio] {
	border-color: var(--color-light);
}
.brxe-woocommerce-products-filter input[type=checkbox]:checked,
.brxe-woocommerce-products-filter input[type=radio]:checked {
    box-shadow: inset 0 0 0 4px #fff;
	border-color: var(--color-darker);
	background-color: var(--color-secondary);
}

/**
 * Helpers
 */

.is-expired .expiry {
	color: var(--color-danger);
}

/**
 * Overlays adjustments
 */
.brxe-woocommerce-mini-cart .off-canvas-overlay {
	background-color: var(--color-light);
}
.brxe-nav-menu.show-mobile-menu .bricks-mobile-menu-overlay,
.brxe-woocommerce-mini-cart.show-cart-details .cart-detail+.off-canvas-overlay {
	opacity: .3;
}
body::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  transition: backdrop-filter .2s;
  z-index: 1;
	pointer-events: none;
}
body:has(.show-mobile-menu)::after,
body:has(.show-cart-details)::after {
    backdrop-filter: blur(3px);
    opacity: 1;
}
.brxe-woocommerce-mini-cart .cart-detail li .remove {
	background: var(--color-danger);
	color: var(--color-white);
	border-radius: var(--radius-full);
	width: var(--space-xs);
	height: var(--space-xs);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	top: 5px;
}




/**
 * Animations
 */

/* Not in the builder */
.brx-body.iframe.mounted [data-animation] *,
.brx-body.iframe.mounted [data-animation] {
	transition: none !important;
	will-change: auto !important;
	opacity: 1 !important;
}

/*
 * clip-up
 * Appears as if poking out from behind (no fade)
 */
[data-animation="clip-up"]:not([data-animation-staggered]):not(:has(.is-splitted)),
[data-animation="clip-up"]:not([data-animation-staggered]) .is-splitted {
	clip-path: inset(0 0 100% 0);
	transform: translateY(min(50px, 100%));
	transition: clip-path 0.45s ease-out, transform 0.45s ease-out;
	will-change: clip-path, transform;
}

[data-animation="clip-up"][data-animation-staggered="true"] > * {
	clip-path: inset(0 0 100% 0);
	transform: translateY(min(50px, 100%));
	transition: clip-path 0.45s ease-out, transform 0.45s ease-out;
	will-change: clip-path, transform;
}

[data-animation="clip-up"]:not([data-animation-staggered]):not(:has(.is-splitted)),
[data-animation="clip-up"]:not([data-animation-staggered]).is-animated .is-splitted {
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

[data-animation="clip-up"][data-animation-staggered="true"] > *.is-animated {
	clip-path: inset(0 0 0 0);
	transform: translateY(0);
}

/*
 * fade-in
 * Simple opacity fade (no movement)
 */
[data-animation="fade-in"]:not([data-animation-staggered]):not(:has(.is-splitted)),
[data-animation="fade-in"]:not([data-animation-staggered]) .is-splitted {
	opacity: 0;
	transition: opacity 0.45s ease-out;
	will-change: opacity;
}

[data-animation="fade-in"][data-animation-staggered="true"] > * {
	opacity: 0;
	transition: opacity 0.45s ease-out;
	will-change: opacity;
}

[data-animation="fade-in"]:not([data-animation-staggered]).is-animated:not(:has(.is-splitted)),
[data-animation="fade-in"]:not([data-animation-staggered]).is-animated .is-splitted {
	opacity: 1;
}

[data-animation="fade-in"][data-animation-staggered="true"] > *.is-animated {
	opacity: 1;
}

/*
 * fade-in-up
 * Opacity fade with upward movement
 */
[data-animation="fade-in-up"]:not([data-animation-staggered]):not(:has(.is-splitted)),
[data-animation="fade-in-up"]:not([data-animation-staggered]) .is-splitted {
	opacity: 0;
	transform: translateY(min(50px, 100%));
	transition: opacity 0.45s ease-out, transform 0.45s ease-out;
	will-change: opacity, transform;
}

[data-animation="fade-in-up"][data-animation-staggered="true"] > * {
	opacity: 0;
	transform: translateY(min(50px, 100%));
	transition: opacity 0.45s ease-out, transform 0.45s ease-out;
	will-change: opacity, transform;
}
[data-animation="fade-in-up"]:not([data-animation-staggered]).is-animated:not(:has(.is-splitted)),
[data-animation="fade-in-up"]:not([data-animation-staggered]).is-animated .is-splitted {
	opacity: 1;
	transform: translateY(0);
}

[data-animation="fade-in-up"][data-animation-staggered="true"] > *.is-animated {
	opacity: 1;
	transform: translateY(0);
}


/**
 * Batch Filters
 */
.batch-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
	padding: var(--space-sm);
	background: var(--color-lightest);
	border-radius: var(--radius-sm);
}

.batch-filters__group {
	display: flex;
	flex-direction: column;
	gap: var(--space-5xs);
	min-width: 150px;
}

.batch-filters__group--search {
	flex: 1;
	min-width: 200px;
}

.batch-filters__label {
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--color-medium-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.batch-filters__select,
.batch-filters__input {
	padding: var(--space-3xs) var(--space-2xs);
	font-size: var(--text-sm);
	border: 1px solid var(--color-light);
	border-radius: var(--radius-xs);
	background: var(--color-white);
	color: var(--color-dark);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.batch-filters__select:focus,
.batch-filters__input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb, 0, 0, 0), 0.1);
}

.batch-filters__input::placeholder {
	color: var(--color-medium);
}

/* Hidden states for batch filtering */
.batch--hidden {
	display: none !important;
}

.batch__batch--hidden {
	display: none !important;
}

.batch__no-results {
	padding: 40px 20px;
	text-align: center;
	color: #666;
	font-size: 16px;
}

.batch__no-results--hidden {
	display: none;
}

/* Responsive batch filters */
@media (max-width: 991px) {
	.batch-filters,
	.faq-filters {
		gap: var(--space-xs);
		padding: var(--space-xs);
	}

	.batch-filters__group,
	.faq-filters__group {
		min-width: 120px;
	}

	.batch-filters__group--search,
	.faq-filters__group--search {
		min-width: 180px;
	}
}

@media (max-width: 768px) {
	.batch-filters,
	.faq-filters {
		flex-direction: column;
		gap: var(--space-2xs);
		padding: var(--space-2xs);
	}

	.batch-filters__group,
	.faq-filters__group {
		min-width: 100%;
	}

	.batch-filters__group--search,
	.faq-filters__group--search {
		min-width: 100%;
	}

	.batch-filters__label,
	.faq-filters__label {
		font-size: var(--text-2xs, 10px);
	}

	.batch-filters__select,
	.batch-filters__input,
	.faq-filters__select,
	.faq-filters__input {
		padding: var(--space-4xs) var(--space-3xs);
		font-size: var(--text-xs);
	}
}



/**
 * FAQ Filters
 */
.faq-filters {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
	padding: var(--space-sm);
	background: var(--color-lightest);
	border-radius: var(--radius-sm);
}

.faq-filters__group {
	display: flex;
	flex-direction: column;
	gap: var(--space-5xs);
	min-width: 150px;
}

.faq-filters__group--search {
	flex: 1;
	min-width: 200px;
}

.faq-filters__label {
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--color-medium-dark);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.faq-filters__select,
.faq-filters__input {
	padding: var(--space-3xs) var(--space-2xs);
	font-size: var(--text-sm);
	border: 1px solid var(--color-light);
	border-radius: var(--radius-xs);
	background: var(--color-white);
	color: var(--color-dark);
	transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-filters__select:focus,
.faq-filters__input:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb, 0, 0, 0), 0.1);
}

.faq-filters__input::placeholder {
	color: var(--color-medium);
}

/* Hidden states for FAQ filtering */
.faq__section--hidden {
	display: none !important;
}

.accordion-item--hidden {
	display: none !important;
}

.faq__no-results {
	padding: 40px 20px;
	text-align: center;
	color: #666;
	font-size: 16px;
}

.faq__no-results--hidden {
	display: none;
}

/* Search highlight */
.search-highlight {
	background-color: var(--color-warning);
	color: var(--color-dark);
	padding: 0;
	border-radius: 2px;
}

/* Answer match indicator */
.accordion-item.has-answer-match .accordion-title-wrapper .title::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: var(--color-warning);
	border-radius: 50%;
	margin-left: var(--space-3xs);
	vertical-align: middle;
	position: relative;
	top: -1px;
}


/* Waitilist infobox fix */
#wc_bis_already_registered .woocommerce-info {
	display: block;
}
.woocommerce-variation-add-to-cart-disabled {
	display: none !important;
}



/* Gutenberg */
.wp-block-separator {
    border: 0 !important;
    margin-block: var(--content-contextual-spacing-headings);
}

.woocommerce-MyAccount-content p.form-row.form-row-first {
    margin-block-start: var(--content-contextual-spacing) !important;
}


/* Cart & checkout */
.shop_table.woocommerce-checkout-review-order-table td,
.shop_table.woocommerce-checkout-review-order-table th {
	vertical-align: top;
}
.woocommerce-checkout #order_review .woocommerce-shipping-totals #shipping_method {
	gap: 5px;
}
.woocommerce-checkout #order_review .woocommerce-shipping-totals #shipping_method .shipping_method {
	margin-right: 5px;
}

.shop_table.woocommerce-checkout-review-order-table .shipping td,
.shop_table.woocommerce-checkout-review-order-table .shipping-insurance td {
	width: 60%;
}

.input, input:not([type=submit]), select, textarea {
    padding: var(--space-3xs) var(--space-2xs);
}
.shop_table.woocommerce-checkout-review-order-table .order-total td,
.shop_table.woocommerce-checkout-review-order-table .order-total th {
	border-top: 1px solid var(--color-lighter);
	font-size: 1.1em;
}
