:root {
	--tc-ink: #212121;
	--tc-ink-soft: #525252;
	--tc-brand: #ffbd27;
	--tc-brand-hover: #f2aa00;
	--tc-brand-dark: #a56f00;
	--tc-blue: #735100;
	--tc-blue-dark: #4d3700;
	--tc-surface: #f7f7f5;
	--tc-line: #deded9;
	--tc-focus: #8a5f00;
	--tc-radius: 10px;
	/* Optimized from the supplied SVG: intrinsic sizing and presentation attributes live in CSS. */
	--tc-added-checkmark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -4 24 24'%3E%3Cpath d='M3.06066 6.4393C2.47487 5.85355 1.52513 5.85355.93934 6.4393.353553 7.0251.353553 7.9749.93934 8.5607L7.93934 15.5607C8.52513 16.1464 9.47487 16.1464 10.0607 15.5607L23.0607 2.56066C23.6464 1.97487 23.6464 1.02513 23.0607.43934 22.4749-.14645 21.5251-.14645 20.9393.43934L9 12.3787 3.06066 6.4393z'/%3E%3C/svg%3E");
	/* Ease the frame continuously from mobile to the large-screen cap. */
	--tc-shell-max: min(1440px, calc(100vw - clamp(0px, calc(20vw - 128px), 180px)));
	--tc-shell-gutter: clamp(16px, 2.4vw, 42px);
}

html {
	scroll-behavior: smooth;
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--tc-ink);
	font-family: "telecomchimp", sans-serif;
	max-width: 100%;
	overflow-x: hidden;
	overflow-x: clip;
	overflow-wrap: break-word;
}

/*
 * Product lifecycle badges share one quiet, high-contrast treatment across
 * catalogue cards, homepage sliders, and the single-product gallery. Sale
 * badges remain top-left; lifecycle information is consistently top-right.
 */
.products .thumbnail-wrapper {
	position: relative;
}

.tc-product-lifecycle-badge {
	position: absolute;
	inset-block-start: clamp(0.75rem, 1.25vw, 1.25rem);
	inset-inline-end: clamp(0.75rem, 1.25vw, 1.25rem);
	z-index: 12;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.75rem;
	padding: 0.375rem 0.625rem;
	border: 1px solid transparent;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgb(33 33 33 / 16%);
	font-family: var(--font-primary, "telecomchimp", sans-serif);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1;
	pointer-events: none;
	text-transform: uppercase;
}

.tc-product-lifecycle-badge--new {
	border-color: #056438;
	background: #087a42;
	color: #fff;
}

.tc-product-lifecycle-badge--eol {
	border-color: #b22222;
	background: #b22222;
	color: #fff;
}

/*
 * Small grid compatibility layer for the handful of layout classes retained
 * by the PHP templates. This replaces the complete Bootstrap stylesheet on
 * native storefront and ordinary page routes.
 */
.container {
	width: 100%;
	max-width: var(--tc-shell-max);
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--tc-shell-gutter);
	padding-left: var(--tc-shell-gutter);
}

/* Keep every visible shell band on the same frame as the primary content. */
:where(.site-primary, .site-header, .site-footer) .container {
	width: 100%;
	max-width: var(--tc-shell-max);
	margin-inline: auto;
	padding-inline: var(--tc-shell-gutter);
}

/* Legacy wide-shop mode must never bypass the native responsive frame. */
.shop-wide .container {
	max-width: var(--tc-shell-max);
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -0.75rem;
	margin-left: -0.75rem;
}

.row > * {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: 0.75rem;
	padding-left: 0.75rem;
}

.row > .col {
	flex: 1 0 0%;
	width: auto;
}

.row > .col-1 {
	flex: 0 0 auto;
	width: 8.333333%;
}

.row > .col-2 {
	flex: 0 0 auto;
	width: 16.666667%;
}

.row > .col-12 {
	flex: 0 0 auto;
	width: 100%;
}

@media (min-width: 768px) {
	.row > .col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.row > .col-md-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.row > .col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.row > .col-lg-1 {
		flex: 0 0 auto;
		width: 8.333333%;
	}

	.row > .col-lg-2 {
		flex: 0 0 auto;
		width: 16.666667%;
	}

	.row > .col-lg-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.row > .col-lg-4 {
		flex: 0 0 auto;
		width: 33.333333%;
	}

	.row > .col-lg-5 {
		flex: 0 0 auto;
		width: 41.666667%;
	}

	.row > .col-lg-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.row > .col-lg-7 {
		flex: 0 0 auto;
		width: 58.333333%;
	}

	.row > .col-lg-8 {
		flex: 0 0 auto;
		width: 66.666667%;
	}

	.row > .col-lg-9 {
		flex: 0 0 auto;
		width: 75%;
	}

	.row > .col-lg-10 {
		flex: 0 0 auto;
		width: 83.333333%;
	}

	.row > .col-lg-11 {
		flex: 0 0 auto;
		width: 91.666667%;
	}

	.row > .col-lg-12 {
		flex: 0 0 auto;
		width: 100%;
	}

	.row > .offset-lg-1 {
		margin-left: 8.333333%;
	}
}

.sticky {
	position: sticky;
	top: 30px;
	align-self: flex-start;
}

.admin-bar .sticky {
	top: 62px;
}

.cart-slider.tc-native-mini-cart .swiper-wrapper {
	display: grid;
	gap: 8px;
	max-height: 196px;
	overflow-x: hidden;
	overflow-y: auto;
	scroll-snap-type: y proximity;
	transform: none !important;
}

.cart-slider.tc-native-mini-cart .swiper-slide {
	width: 100% !important;
	min-height: 90px;
	scroll-snap-align: start;
	transform: none !important;
}

.cart-slider.tc-native-mini-cart .swiper-button-prev,
.cart-slider.tc-native-mini-cart .swiper-button-next {
	display: grid;
	place-items: center;
}

@media (max-width: 74.999rem), (hover: none), (pointer: coarse) {
	.site-header .cart-button .cart-dropdown {
		width: min(34rem, calc(100vw - 1.875rem));
		min-width: 0;
		max-width: calc(100vw - 1.875rem);
		max-height: calc(100vh - 4.25rem);
		max-height: calc(100dvh - 4.25rem);
		overscroll-behavior: contain;
	}

	.site-header .cart-button .cart-dropdown-wrapper {
		max-height: calc(100vh - 4.25rem);
		max-height: calc(100dvh - 4.25rem);
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
	}

	.site-header .header-addons.cart-button .cart-dropdown.hide {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.site-header .cart-button .cart-dropdown:not(.hide) {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (max-width: 600px) {
	.site-header .cart-button .cart-dropdown {
		width: calc(100vw - 16px);
		max-width: calc(100vw - 16px);
	}
}

@media (max-width: 74.999rem) and (orientation: landscape) and (max-height: 600px) {
	.site-header .cart-button .cart-dropdown {
		max-height: calc(100vh - 3.5rem);
		max-height: calc(100dvh - 3.5rem);
		padding-top: 0.25rem;
	}

	.site-header .cart-button .cart-dropdown-wrapper {
		max-height: calc(100vh - 3.5rem);
		max-height: calc(100dvh - 3.5rem);
	}
}

.screen-reader-text:focus,
.tc-skip-link:focus {
	clip: auto !important;
	clip-path: none;
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	border-radius: 6px;
	background: #fff;
	color: var(--tc-ink);
	box-shadow: 0 4px 20px rgb(15 23 42 / 20%);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--tc-focus) !important;
	outline-offset: 3px !important;
}

.tc-site-logo {
	display: block;
	width: 250px;
	max-width: 250px;
	height: 90px;
	object-fit: contain;
}

.site-header .header-main .site-brand,
.site-header .header-main .site-brand > a {
	flex: 0 0 250px;
	width: 250px;
	min-width: 250px;
}

@media (max-width: 74.999rem) {
	.site-header .header-mobile .tc-site-logo {
		width: 160px;
		max-width: 160px;
		height: 58px;
	}
}

/* Precision Wholesale shell: strong brand, fast scanning and large targets. */
.site-header {
	border-bottom: 0 !important;
	background: #fff;
	color: var(--tc-ink);
	font-family: "telecomchimp", sans-serif;
}

.site-header .header-top {
	border-bottom: 3px solid var(--tc-brand);
	background: var(--tc-ink);
	color: #fff;
}

.site-header .header-top .header-wrapper {
	min-height: 42px;
}

.site-header .header-top .site-menu .menu > li > a {
	min-height: 42px;
	padding-top: 0;
	padding-bottom: 0;
	color: inherit;
	font-size: 14px;
}

.site-header .header-top a:hover,
.site-header .header-top a:focus-visible,
.site-header .header-top .site-menu .menu > li.menu-item-has-children:hover > a {
	color: var(--tc-brand);
}

.site-header .header-top .site-menu .menu > li > a:hover,
.site-header .header-top .site-menu .menu > li > a:focus-visible,
.site-header .header-top .site-menu .menu > li.current-menu-item > a {
	color: var(--tc-brand) !important;
}

.site-header .header-main {
	border-bottom: 1px solid var(--tc-line);
	background: #fff;
}

.site-header .header-main.height-padding .header-wrapper {
	min-height: 118px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.site-header .header-main .column.left {
	flex: 0 0 auto;
}

.site-header .header-main .column.right {
	flex: 1 1 auto;
	gap: 4px;
	min-width: 0;
}

.site-header .header-main .site-brand {
	margin-right: clamp(24px, 3vw, 44px);
}

.site-header .site-search {
	flex: 1 1 32rem;
	width: auto;
	max-width: none;
	min-width: 240px;
}

.site-header .site-search :is(.input-group, form, .dgwt-wcas-search-wrapp) {
	width: 100%;
	max-width: none;
}

.site-header .site-search .input-group {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	overflow: hidden;
	border: 2px solid #aeb3b8;
	border-radius: 14px;
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

/*
 * FiboSearch and the native form must share one header geometry. FiboSearch
 * otherwise applies its own padded, icon-only surface, which made production
 * look different whenever the AJAX-search theme option was enabled.
 */
body .site-header form.dgwt-wcas-search-form {
	position: relative;
	padding: 0 !important;
}

body .site-header .dgwt-wcas-sf-wrapp {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	max-width: none;
	min-height: 64px;
	border: 2px solid #aeb3b8;
	border-radius: 14px;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

body .site-header .dgwt-wcas-sf-wrapp:focus-within {
	border-color: var(--tc-ink);
	box-shadow: 0 0 0 4px rgb(255 189 39 / 30%);
}

.site-header .site-search .input-group:focus-within {
	border-color: var(--tc-ink);
	box-shadow: 0 0 0 4px rgb(255 189 39 / 30%);
}

.site-header .site-search :is(input[type="search"], select, button),
body .site-header .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	height: 60px;
	min-height: 60px;
	font-family: "telecomchimp", sans-serif;
}

.site-header .site-search input[type="search"],
body .site-header .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	min-width: 0;
	padding-left: 3.625rem;
	border: 0 !important;
	border-radius: 0 !important;
	background: #fff;
	color: var(--tc-ink);
	font-size: 17px;
	outline: 0;
}

body .site-header .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	width: 100%;
	padding-right: 128px !important;
	padding-left: 3.625rem !important;
}

.site-header .site-search button,
body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	border: 0;
	border-left: 1px solid #d99d0a;
	border-radius: 0;
	background: var(--tc-brand);
	color: var(--tc-ink);
	font-size: 15px;
	font-weight: 750;
}

.site-header .site-search button {
	position: static;
}

body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	position: absolute !important;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
}

body .site-header .dgwt-wcas-sf-wrapp .dgwt-wcas-preloader {
	right: 128px !important;
}

body .site-header .dgwt-wcas-sf-wrapp .dgwt-wcas-voice-search {
	display: none !important;
}

body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit::after {
	content: attr(aria-label);
}

body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit::before {
	content: none !important;
	display: none !important;
}

body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit :is(svg, .dgwt-wcas-ico-magnifier) {
	display: none !important;
}

.site-header .site-search button:hover,
body .site-header .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
	border-color: #e3a40c;
	background: #eeb01d;
	color: var(--tc-ink);
}

.site-header .header-addons {
	min-height: 52px;
	margin-left: 16px;
}

.site-header .header-addons > a {
	min-height: 52px;
	padding: 2px;
}

.site-header .header-addons-icon {
	width: 46px;
	height: 46px;
	border: 1px solid var(--tc-line);
	border-radius: 10px;
	background: var(--tc-surface);
	font-size: 26px;
}

.site-header .header-addons:hover .header-addons-icon {
	border-color: var(--tc-brand);
	background: #fff8df;
}

.site-header .header-addons-icon .button-count {
	top: -5px;
	right: -5px;
	min-width: 21px;
	height: 21px;
	border: 2px solid #fff;
	background: var(--tc-brand);
	color: var(--tc-ink);
	font-size: 11px;
}

.site-header .header-addons-text {
	margin-left: 9px;
}

.site-header .header-addons-text .sub-text {
	color: var(--tc-ink-soft);
	font-size: 12px;
	opacity: 1;
}

.site-header .header-addons-text .primary-text {
	color: var(--tc-ink);
	font-size: 15px;
	font-weight: 750;
}

.site-header .header-nav {
	border-bottom: 1px solid var(--tc-line);
	background: #fff;
}

.site-header .site-menu.primary .menu > li > a {
	height: 56px;
	color: var(--tc-ink);
	font-size: 15px;
	font-weight: 750;
}

.site-header .header-nav .site-menu .menu > li > a:hover,
.site-header .header-nav .site-menu .menu > li > a:focus-visible,
.site-header .header-nav .site-menu .menu > li.menu-item-has-children:hover > a,
.site-header .header-nav .site-menu .menu > .current-menu-item > a {
	color: var(--tc-ink);
	text-decoration-color: var(--tc-brand);
	text-decoration-line: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 8px;
}

/*
 * Keep quantity steppers visually secondary to the yellow purchase action.
 * Explicit surfaces prevent generic theme button rules from turning the
 * minus/plus controls into solid black blocks.
 */
.site-content .quantity:not(.hidden) .quantity-button {
	display: grid;
	place-items: center;
	border: 0;
	background: #f2f3f4;
	box-shadow: none;
	color: var(--tc-ink);
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.site-content .quantity:not(.hidden) .quantity-button::before,
.site-content .quantity:not(.hidden) .quantity-button::after {
	content: none !important;
}

.site-content .quantity:not(.hidden) .quantity-button svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-width: 2;
	pointer-events: none;
}

.site-content .quantity:not(.hidden) .quantity-button:hover {
	background: #e7e9eb;
	color: var(--tc-ink);
}

.site-content .quantity:not(.hidden) .quantity-button:active {
	background: #d9dde0;
}

.site-content .quantity:not(.hidden) .quantity-button:focus-visible {
	z-index: 1;
	outline: 3px solid var(--tc-focus);
	outline-offset: -3px;
}

/*
 * Live B2B values keep their server-rendered visibility rules. These selectors
 * only create a compact hierarchy for the price, quantity tiers, SKU and stock
 * already emitted for authenticated buyers.
 */
.products .product .product-meta {
	color: var(--tc-ink-soft);
	font-variant-numeric: tabular-nums;
}

.products .product :is(.product-price-cart, .bulk-prices-table) .price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.25rem 0.5rem;
	color: var(--tc-ink);
	font-size: 1.16rem;
	font-weight: 800;
	line-height: 1.25;
}

.products .product .price del {
	order: 2;
	color: #6b6b67;
	font-size: 0.75em;
	font-weight: 600;
	opacity: 1;
}

.products .product .price ins {
	order: 1;
	padding: 0.12rem 0.35rem;
	border-radius: 4px;
	background: #fff2c7;
	color: var(--tc-ink);
	font-weight: 850;
	text-decoration: none;
}

.products .product table.bulk-prices-table {
	display: table;
	width: 100%;
	overflow: hidden;
	margin: 0.5rem 0 0;
	border-collapse: separate;
	border: 1px solid var(--tc-line);
	border-spacing: 0;
	border-radius: 8px;
	background: #fff;
	font-size: 0.75rem;
	line-height: 1.25;
}

.products .product .bulk-prices-table tbody {
	display: table-row-group;
}

.products .product .bulk-prices-table tr {
	display: table-row;
}

.products .product .bulk-prices-table tr + tr {
	border-top: 1px solid var(--tc-line);
}

.products .product .bulk-prices-table :is(th, td) {
	padding: 0.42rem 0.55rem;
	border: 0;
	color: var(--tc-ink-soft);
	text-align: left;
}

.products .product .bulk-prices-table thead th {
	background: #fff0c2;
	color: var(--tc-ink);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.products .product .bulk-prices-table :is(th, td):last-child {
	color: var(--tc-ink);
	font-weight: 750;
	text-align: right;
	white-space: nowrap;
}

.products .product .bulk-prices-table tbody th {
	color: var(--tc-ink);
	font-variant-numeric: tabular-nums;
	font-weight: 800;
}

.products .product .bulk-prices-table .bulk_price {
	color: var(--tc-ink);
	font-size: 0.82rem;
	font-weight: 850;
}

/*
 * Quantity tiers are shared by the homepage and catalogue cards. Keeping the
 * interactive presentation in the shell prevents the homepage from falling
 * back to the generic black button treatment while preserving one canonical
 * visual language everywhere this product-card markup is used.
 */
.products .tc-bulk-tier {
	cursor: pointer;
}

.products .tc-quantity-preset {
	appearance: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	touch-action: manipulation;
}

.products .tc-bulk-tier__quantity {
	display: inline-flex;
	width: 100%;
	height: auto;
	min-height: 2.75rem;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
}

.products .tc-bulk-tier:hover,
.products .tc-bulk-tier:focus-within {
	background: #fff7db;
}

.products .tc-bulk-tier__quantity:focus-visible {
	background: transparent;
	color: var(--tc-catalogue-ink, var(--tc-ink, #212121));
	outline: 2px solid var(--tc-catalogue-yellow-dark, #d99d00);
	outline-offset: 2px;
}

.products .tc-stock-quantity-preset {
	display: block;
	width: 100%;
	height: auto;
	min-height: 2.75rem;
	padding: 0.375rem 0.625rem;
	border: 1px solid #b7e4ca;
	border-radius: 4px;
	background: #e8f7ee;
	color: #075f30;
	line-height: 1.3;
	text-align: left;
}

.products .tc-stock-quantity-preset:hover,
.products .tc-stock-quantity-preset:focus-visible {
	border-color: #08783b;
	background: #e8f7ee;
	color: #075f30;
	outline: 2px solid rgb(0 160 70 / 24%);
	outline-offset: 1px;
}

.products .add_to_cart_button.ajax_add_to_cart {
	position: relative;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease;
}

.products .add_to_cart_button.ajax_add_to_cart.loading,
.products .add_to_cart_button.ajax_add_to_cart.added,
.products .add_to_cart_button.ajax_add_to_cart.tc-cart-added {
	width: 46px;
	min-width: 46px;
	padding: 0;
}

.products .add_to_cart_button.ajax_add_to_cart.loading > *,
.products .add_to_cart_button.ajax_add_to_cart.tc-cart-pending > *,
.products .add_to_cart_button.ajax_add_to_cart.added > *,
.products .add_to_cart_button.ajax_add_to_cart.tc-cart-added > * {
	opacity: 0;
}

/*
 * The legacy cart glyph also lives on ::before. Remove that layer while the
 * request feedback owns the button so it cannot bleed through the SVG mask.
 */
.products .tc-loop-purchase-controls > .add_to_cart_button.ajax_add_to_cart:is(.loading, .tc-cart-pending, .added, .tc-cart-added)::before {
	display: none;
	content: none;
}

.products .add_to_cart_button.ajax_add_to_cart.loading::after,
.products .add_to_cart_button.ajax_add_to_cart.tc-cart-pending::after {
	position: absolute;
	inset: 0;
	width: 18px;
	height: 18px;
	margin: auto;
	border: 2px solid rgb(33 33 33 / 28%);
	border-top-color: #212121;
	border-radius: 50%;
	content: "";
	animation: tc-cart-button-spin 700ms linear infinite;
}

.products .tc-loop-purchase-controls > .add_to_cart_button.ajax_add_to_cart.added,
.products .tc-loop-purchase-controls > .add_to_cart_button.ajax_add_to_cart.tc-cart-added {
	border-color: #087a42;
	background: #087a42;
	color: #fff;
}

.products .tc-loop-purchase-controls > .add_to_cart_button.ajax_add_to_cart.added::after,
.products .tc-loop-purchase-controls > .add_to_cart_button.ajax_add_to_cart.tc-cart-added::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 20px;
	height: 20px;
	margin: 0;
	border: 0;
	background-color: #fff;
	content: "";
	opacity: 1;
	pointer-events: none;
	visibility: visible;
	-webkit-mask: var(--tc-added-checkmark) center / contain no-repeat;
	mask: var(--tc-added-checkmark) center / contain no-repeat;
	transform: translate(-50%, -50%);
	transform-origin: center;
	animation: none;
	transition: none;
}

@keyframes tc-cart-button-spin {
	to { transform: rotate(360deg); }
}

.wpml-ls-menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.wpml-ls-menu-item .wpml-ls-flag + span,
.rtl .wpml-ls-menu-item .wpml-ls-flag + span {
	margin-inline: 0 !important;
}

.products .product .product-meta-message {
	margin: 0.45rem 0 0;
	color: #62625e;
	font-size: 0.72rem;
	line-height: 1.35;
}

.products .product .product-message {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	align-items: center;
	margin: 0.5rem 0 0;
	padding: 0.42rem 0.65rem;
	border: 1px solid #b9e0c9;
	border-radius: 999px;
	background: #eef8f2;
	color: #087a42;
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1.25;
}

.products .product .product-message.color-warning {
	border-color: #f2d28a;
	background: #fff8e8;
	color: #765500;
}

.products .product .product-message.color-danger {
	border-color: #f5c1bc;
	background: #fff1f0;
	color: #b42318;
}

.site-footer {
	border-top: 5px solid var(--tc-brand);
	background: #fff;
	color: var(--tc-ink);
	font-family: "telecomchimp", sans-serif;
}

.site-footer .footer-widgets {
	padding-top: clamp(34px, 4vw, 54px);
	padding-bottom: clamp(26px, 3vw, 42px);
	background: #fff;
}

.site-footer .tc-footer-groups {
	display: block;
}

.site-footer .tc-footer-group {
	border-bottom: 1px solid var(--tc-line);
}

.site-footer .tc-footer-group__summary {
	display: flex;
	width: 100%;
	min-height: 52px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 0;
	color: var(--tc-ink);
	cursor: pointer;
	font-size: 17px;
	font-weight: 750;
	list-style: none;
}

.site-footer .tc-footer-group__summary::-webkit-details-marker {
	display: none;
}

.site-footer .tc-footer-group__summary::after {
	width: 10px;
	height: 10px;
	flex: 0 0 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg) translate(-2px, -2px);
	transition: transform 160ms ease;
}

.site-footer .tc-footer-group[open] > .tc-footer-group__summary::after {
	transform: rotate(225deg) translate(-1px, -1px);
}

.site-footer .tc-footer-group__content {
	padding: 2px 0 14px;
}

.site-footer .footer-details,
.site-footer .footer-copyright {
	background: #fff;
	color: var(--tc-ink);
}

.site-footer .footer-widgets .widget {
	color: var(--tc-ink-soft);
	font-size: 16px;
	line-height: 1.55;
}

.site-footer .footer-widgets .widget-title,
.site-footer .tc-footer-group__summary {
	margin-bottom: 18px;
	color: var(--tc-ink);
	font-size: 17px;
	font-weight: 750;
	text-decoration-color: var(--tc-brand);
	text-decoration-line: underline;
	text-decoration-thickness: 3px;
	text-underline-offset: 7px;
}

.site-footer .footer-widgets .widget ul li + li {
	margin-top: 4px;
}

.site-footer .footer-widgets .widget ul li a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	color: var(--tc-ink);
	font-size: 16px;
	text-underline-offset: 4px;
}

.site-footer .footer-widgets .widget ul li a:hover,
.site-footer .footer-widgets .widget ul li a:focus-visible {
	color: var(--tc-ink);
	text-decoration-color: var(--tc-brand);
	text-decoration-line: underline;
	text-decoration-thickness: 3px;
}

.site-footer .footer-details .container,
.site-footer .footer-copyright .container {
	border-color: var(--tc-line) !important;
}

.site-footer .footer-details .tc-site-logo {
	/*
	 * Keep the uploaded SVG at its intrinsic ratio. A wider fixed box adds
	 * object-fit letterboxing on top of the whitespace inside the SVG and makes
	 * the visible yellow mark appear indented from the copyright baseline.
	 */
	width: auto;
	max-width: none;
	height: 66px;
	transform: translateX(-5.35%);
}

.site-footer .footer-details .site-brand {
	padding: 0;
	border: 0;
	background: transparent;
}

.site-footer .footer-details .container {
	padding-top: 8px;
	padding-bottom: 8px;
}

.site-footer .footer-copyright .container {
	padding-top: 8px;
	padding-bottom: 8px;
}

.site-footer .footer-details .site-details {
	min-height: 66px;
}

.site-footer .footer-details .site-details .tags li {
	font-size: 14px;
}

.site-footer .footer-details .site-details .tags li a {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	color: var(--tc-ink);
}

.site-footer .footer-details .site-details .tags li a:hover,
.site-footer .footer-details .site-details .tags li a:focus-visible {
	color: var(--tc-ink);
	text-decoration-color: var(--tc-brand);
	text-decoration-line: underline;
}

.site-footer .site-social a {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid #d99d0a;
	border-radius: 9px;
	background: var(--tc-brand);
	color: var(--tc-ink);
	font-size: 20px;
}

.site-footer .site-social a:hover,
.site-footer .site-social a:focus-visible {
	border-color: var(--tc-ink);
	background: var(--tc-ink);
	color: #fff;
}

.site-footer .footer-copyright .site-copyright {
	color: var(--tc-ink-soft);
	font-size: 15px;
}

.site-footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px 24px;
}

.site-footer .tc-commerce-marks {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer .tc-commerce-mark {
	--tc-commerce-mark-width: 58px;
	display: grid;
	place-items: center;
	flex: 0 0 var(--tc-commerce-mark-width);
	width: var(--tc-commerce-mark-width);
	height: 36px;
}

.site-footer .tc-commerce-mark svg {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}

.site-footer .tc-commerce-mark--carrier {
	--tc-commerce-mark-width: 70px;
}

/* Equalize perceived brand weight without distorting official artwork. */
.site-footer .tc-commerce-mark--mastercard svg {
	width: 90%;
	height: 90%;
}

.site-footer .tc-commerce-mark--dhl {
	--tc-commerce-mark-width: 80px;
}

.site-footer .tc-commerce-mark--payment + .tc-commerce-mark--carrier {
	position: relative;
	margin-inline-start: 12px;
}

.site-footer .tc-commerce-mark--payment + .tc-commerce-mark--carrier::before {
	position: absolute;
	inset-block: 4px;
	inset-inline-start: -9px;
	width: 1px;
	background: var(--tc-line);
	content: "";
}

@media (max-width: 59.999rem) {
	.site-footer .footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer .tc-commerce-marks {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.site-footer .tc-commerce-mark--payment + .tc-commerce-mark--carrier {
		margin-inline-start: 0;
	}

	.site-footer .tc-commerce-mark--payment + .tc-commerce-mark--carrier::before {
		display: none;
	}
}

@media (min-width: 768px) {
	.site-footer .tc-footer-groups {
		display: grid;
		gap: clamp(24px, 3vw, 54px);
	}

	.site-footer .tc-footer-groups--2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer .tc-footer-groups--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.site-footer .tc-footer-groups--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.site-footer .tc-footer-groups--5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.site-footer .tc-footer-group {
		border: 0;
	}

	.site-footer .tc-footer-group__summary {
		min-height: 0;
		padding: 0;
		cursor: default;
		pointer-events: none;
	}

	.site-footer .tc-footer-group__summary::after {
		display: none;
	}

	.site-footer .tc-footer-group__content {
		display: block !important;
		padding: 0;
	}
}

@media (max-width: 767px) {
	.site-footer .footer-widgets {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.site-footer .tc-footer-group__summary {
		margin: 0;
		text-decoration: none;
	}

	.site-footer .footer-widgets .widget ul li a {
		width: 100%;
		min-height: 44px;
	}

	.site-footer .footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer .tc-commerce-marks {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.site-footer .tc-commerce-mark--payment + .tc-commerce-mark--carrier {
		margin-inline-start: 0;
	}

	.site-footer .tc-commerce-mark--payment + .tc-commerce-mark--carrier::before {
		display: none;
	}
}

/*
 * Header variants are mutually exclusive. Keep these rules in the native
 * shell as a hard responsive contract instead of relying on legacy helpers
 * that may be absent from an anonymous route bundle.
 */
@media screen and (max-width: 74.999rem) {
	.site-header .header-desktop.hide-mobile {
		display: none !important;
	}

	.site-header .header-mobile.hide-desktop {
		display: block !important;
	}
}

@media screen and (min-width: 75rem) {
	.site-header .header-desktop.hide-mobile {
		display: block !important;
	}

	.site-header .header-mobile.hide-desktop {
		display: none !important;
	}
}

@media (max-width: 74.999rem) {
	.site-header .header-mobile {
		border-bottom: 1px solid var(--tc-line);
		background: #fff;
	}

	.site-header .header-mobile .header-wrapper {
		height: 74px;
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr) 100px;
		padding: 0;
	}

	.site-header .header-mobile .column {
		display: flex;
		align-items: center;
		margin: 0;
	}

	.site-header .header-mobile .column.left {
		justify-content: flex-start;
	}

	.site-header .header-mobile .column.center {
		min-width: 0;
		justify-content: center;
	}

	.site-header .header-mobile .tc-mobile-actions {
		justify-content: flex-end;
		gap: 8px;
	}

	.site-header .header-mobile .tc-mobile-actions .header-addons {
		flex: 0 0 46px;
		width: 46px;
		min-height: 46px;
	}

	.site-header .header-mobile .tc-responsive-header-slot {
		display: block;
	}

	.site-header .header-mobile .menu-toggle,
	.site-header .header-mobile .login-button,
	.site-header .header-mobile .cart-button {
		margin: 0;
	}

	.site-header .header-mobile .menu-toggle {
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid var(--tc-line);
		border-radius: 10px;
		background: var(--tc-surface);
		color: var(--tc-ink);
	}

	.site-header .header-mobile .menu-toggle .header-addons-icon {
		border: 0;
		background: transparent;
	}

	.site-header .header-mobile :is(.login-button, .cart-button) > a {
		box-sizing: border-box;
		display: inline-flex;
		width: 46px;
		height: 46px;
		min-height: 46px;
		align-items: center;
		justify-content: center;
		padding: 0;
		color: var(--tc-ink);
		text-decoration: none;
	}

	.site-header .header-mobile .login-button .header-addons-icon,
	.site-header .header-mobile .cart-button .header-addons-icon {
		width: 46px;
		height: 46px;
	}

	.site-header .header-mobile .login-button .header-addons-text {
		display: none;
	}

	.site-header .tc-mobile-search-slot > .site-search {
		display: block;
		width: 100%;
		min-width: 0;
		margin: 10px 0 14px;
	}

	body .site-header .header-mobile .dgwt-wcas-sf-wrapp {
		min-height: 54px;
	}

	.site-header .tc-mobile-search-slot > .site-search :is(input[type="search"], select, button),
	body .site-header .header-mobile .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input,
	body .site-header .header-mobile .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
		height: 50px;
		min-height: 50px;
	}

	body .site-header .header-mobile .dgwt-wcas-sf-wrapp .dgwt-wcas-preloader {
		height: 50px;
	}

	.site-header .tc-mobile-search-slot > .site-search button {
		min-width: 88px;
	}

	.site-footer .footer-widgets .widget ul li a {
		min-height: 44px;
	}
}

@media (max-width: 430px) {
	.site-header .header-mobile .tc-site-logo {
		width: clamp(96px, 30vw, 130px);
		max-width: 130px;
		height: 52px;
	}
}

@media (max-width: 360px) {
	.site-header .header-mobile .header-wrapper {
		grid-template-columns: 44px minmax(0, 1fr) 96px;
	}

	.site-header .header-mobile .tc-mobile-actions .header-addons,
	.site-header .header-mobile :is(.login-button, .cart-button) > a,
	.site-header .header-mobile .login-button .header-addons-icon,
	.site-header .header-mobile .cart-button .header-addons-icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
		min-height: 44px;
	}
}

.tc-mobile-language-switcher {
	display: none;
}

@media (max-width: 74.999rem) {
	.tc-mobile-language-switcher {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		padding: 4px 12px;
		border-bottom: 1px solid var(--tc-line);
		background: #fffaf0;
	}

	.tc-mobile-language-switcher__list {
		display: flex;
		gap: 6px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.tc-mobile-language-switcher a {
		display: inline-flex;
		min-width: 44px;
		min-height: 44px;
		align-items: center;
		justify-content: center;
		padding: 0 10px;
		border: 1px solid #cfd3d6;
		border-radius: 999px;
		background: #fff;
		color: var(--tc-ink);
		font-size: 13px;
		font-weight: 800;
		text-decoration: none;
		text-transform: uppercase;
	}

	.tc-mobile-language-switcher a[aria-current="true"] {
		border-color: var(--tc-ink);
		background: var(--tc-brand);
	}

	.site-offcanvas .site-menu.vertical.thirdy .tc-mobile-language-switcher {
		display: block;
		min-height: 0;
		padding: 12px 0;
		border: 0;
		background: transparent;
	}

	.site-offcanvas .site-menu.vertical.thirdy .tc-mobile-language-switcher__list {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}

@media (orientation: landscape) and (max-height: 600px) and (max-width: 74.999rem) {
	.site-header .header-mobile .header-wrapper {
		height: 64px;
	}

	.site-header .tc-mobile-search-slot > .site-search {
		margin-top: 6px;
		margin-bottom: 8px;
	}
}

.klb-page,
.shop-content {
	min-height: 45vh;
}

/*
 * Product recommendations are rendered outside catalogue routes, so they do
 * not receive storefront-catalogue.css. Stretch their cards here to keep
 * related products, up-sells, and cart cross-sells aligned.
 */
:where(.single-product, .woocommerce-cart)
	:where(.related.products, .related-products)
	> .products:not(.list-view-products) {
	align-items: stretch;
}

:where(.single-product, .woocommerce-cart)
	:where(.related.products, .related-products)
	> .products:not(.list-view-products)
	> .product {
	display: flex;
	flex-direction: column;
}

:where(.single-product, .woocommerce-cart)
	:where(.related.products, .related-products)
	> .products:not(.list-view-products)
	> .product
	> .product-wrapper {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	width: 100%;
}

:where(.single-product, .woocommerce-cart)
	:where(.related.products, .related-products)
	> .products:not(.list-view-products)
	> .product
	.product-content-wrapper {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

:where(.single-product, .woocommerce-cart)
	:where(.related.products, .related-products)
	> .products:not(.list-view-products)
	> .product
	.product-content-wrapper
	> .product-meta {
	margin-top: auto;
}

.klb-page .klb-post,
.tc-product-information {
	width: min(100% - 32px, 1120px);
	margin: clamp(42px, 6vw, 76px) auto 0;
	padding: clamp(24px, 4vw, 44px);
	border: 1px solid var(--tc-line);
	border-radius: var(--tc-radius);
	background: #fff;
	box-shadow: 0 12px 36px rgb(15 23 42 / 5%);
}

.tc-product-information__heading {
	margin-bottom: 22px;
}

.tc-product-information__eyebrow {
	margin: 0 0 7px;
	color: var(--tc-blue);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.tc-product-information h2 {
	margin: 0;
	color: var(--tc-ink);
	font-size: clamp(25px, 3vw, 36px);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.tc-product-information__content {
	max-width: 72ch;
	color: var(--tc-ink-soft);
	font-size: 16px;
	line-height: 1.75;
}

.tc-product-information__content > :first-child {
	margin-top: 0;
}

.tc-product-information__content > :last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.tc-product-information {
		width: min(100% - 24px, 1120px);
		padding: 20px;
	}
}

@media (orientation: landscape) and (max-height: 600px) {
	.site-loading {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
.tc-responsive-header-slot {
	display: contents;
}

/* Native information pages: readable without Elementor's wrapper tree. */
.tc-native-page {
	padding: clamp(32px, 4.5vw, 64px) 0;
	background: var(--tc-surface);
}

.tc-native-page__content {
	width: 100%;
	max-width: none;
	margin-inline: auto;
	padding: clamp(28px, 4vw, 56px);
	border: 1px solid var(--tc-line);
	border-top: 4px solid var(--tc-brand);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 40px rgb(33 33 33 / 7%);
	font-size: 1.0625rem;
	line-height: 1.72;
}

.tc-native-page__content > :first-child {
	margin-top: 0;
}

.tc-native-page__content > :last-child {
	margin-bottom: 0;
}

.tc-native-page__content h1 {
	max-width: 28ch;
	margin-bottom: clamp(24px, 4vw, 40px);
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	font-weight: 750;
	line-height: 1.08;
}

.tc-native-page__content h2 {
	max-width: 36ch;
	margin-top: clamp(32px, 5vw, 52px);
	font-size: clamp(1.45rem, 3vw, 2rem);
	font-weight: 750;
	line-height: 1.2;
}

.tc-native-page__content h3 {
	max-width: 42ch;
	margin-top: 28px;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 750;
	line-height: 1.3;
}

.tc-native-page__content :is(p, li) {
	color: #454545;
}

.tc-native-page__content > :is(p, ul, ol, blockquote) {
	max-width: 92ch;
}

.tc-native-page__content :is(ul, ol) {
	padding-left: 1.4em;
}

.tc-native-page__content a {
	color: var(--tc-ink);
	text-decoration-color: var(--tc-brand-dark);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
	transition:
		background-color 160ms ease,
		text-decoration-color 160ms ease;
}

.tc-native-page__content a:hover,
.tc-native-page__content a:focus-visible {
	background: #fff5d6;
	text-decoration-color: var(--tc-ink);
}

.tc-native-page__content img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(var(--tc-radius) - 2px);
}

/*
 * Compact Gutenberg compatibility for routes where WordPress' block library
 * and global-styles payloads are deliberately absent.
 */
.tc-native-page__content .alignwide {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	transform: none;
}

.tc-native-page__content .alignfull {
	width: 100vw;
	max-width: none;
	margin-inline: 50%;
	transform: translateX(-50%);
}

.tc-native-page__content :is(.wp-block-button, .wp-block-image, .wp-block-gallery, .wp-block-table, .wp-block-quote) {
	margin-block: 1.5rem;
}

.tc-native-page__content :is(.wp-block-button__link, .wp-element-button) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--tc-ink);
	border-radius: 8px;
	background: var(--tc-brand);
	box-shadow: 0 3px 0 var(--tc-ink);
	color: var(--tc-ink);
	cursor: pointer;
	font-family: inherit;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	touch-action: manipulation;
	transition:
		background-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.tc-native-page__content :is(.wp-block-button__link, .wp-element-button):hover {
	background: var(--tc-brand-hover);
	box-shadow: 0 2px 0 var(--tc-ink);
	color: var(--tc-ink);
	transform: translateY(1px);
	text-decoration: none;
}

.tc-native-page__content :is(.wp-block-button__link, .wp-element-button):active {
	background: var(--tc-brand-hover);
	box-shadow: 0 1px 0 var(--tc-ink);
	color: var(--tc-ink);
	transform: translateY(2px);
}

.tc-native-page__content :is(.wp-block-button__link, .wp-element-button):focus-visible {
	background: var(--tc-brand);
	color: var(--tc-ink);
	outline: 3px solid var(--tc-focus);
	outline-offset: 3px;
	text-decoration: none;
}

.tc-native-page__content .is-style-outline > :is(.wp-block-button__link, .wp-element-button) {
	background: transparent;
	box-shadow: none;
	color: var(--tc-ink);
}

.tc-native-page__content .is-style-outline > :is(.wp-block-button__link, .wp-element-button):hover {
	background: #fff5d6;
	box-shadow: 0 2px 0 var(--tc-ink);
	color: var(--tc-ink);
}

.tc-native-page__content .wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--style--block-gap, 1.5rem);
	margin-block: 1.5rem;
}

.tc-native-page__content .wp-block-column {
	flex: 1 1 min(100%, 240px);
	min-width: 0;
}

.tc-native-page__content .wp-block-group {
	min-width: 0;
}

.tc-native-page__content .wp-block-group.has-background {
	padding: clamp(18px, 3vw, 32px);
	border-radius: var(--tc-radius);
}

.tc-native-page__content :is(.wp-block-image, .wp-block-gallery) {
	max-width: 100%;
}

.tc-native-page__content :is(.wp-block-image, .wp-block-gallery) figcaption {
	margin-top: 0.55rem;
	color: var(--tc-ink-soft);
	font-size: 0.875rem;
	line-height: 1.5;
	text-align: center;
}

.tc-native-page__content :is(.wp-block-gallery, .blocks-gallery-grid) {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
	gap: 12px;
	padding: 0;
	list-style: none;
}

.tc-native-page__content :is(.wp-block-gallery, .blocks-gallery-grid) figure {
	margin: 0;
}

.tc-native-page__content .wp-block-table {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.tc-native-page__content .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
}

.tc-native-page__content .wp-block-table :is(th, td) {
	padding: 0.75rem;
	border: 1px solid var(--tc-line);
	text-align: start;
	vertical-align: top;
}

.tc-native-page__content .wp-block-quote {
	padding: 0.25rem 0 0.25rem 1.25rem;
	border-left: 4px solid var(--tc-blue);
}

.tc-native-page__content .wp-block-quote cite {
	display: block;
	margin-top: 0.75rem;
	color: var(--tc-ink-soft);
	font-size: 0.875rem;
}

.tc-native-page__content .wp-block-separator {
	width: min(100%, 160px);
	margin: 2rem auto;
	border: 0;
	border-top: 2px solid var(--tc-line);
}

/* Contact hooks follow semantic address and link protocols, never copy order. */
.tc-native-page__content--contact .tc-native-contact__address {
	padding: 1rem 1.15rem;
	border: 1px solid var(--tc-line);
	border-radius: 10px;
	background: var(--tc-surface);
	font-style: normal;
}

.tc-native-page__content--contact .tc-native-contact__link {
	display: inline;
	padding: 0.08em 0.28em 0.12em;
	border-radius: 4px;
	background: #fff5d6;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	color: var(--tc-ink);
	font-weight: 700;
	overflow-wrap: anywhere;
	text-decoration-color: var(--tc-brand-dark);
	text-decoration-thickness: 2px;
	text-underline-offset: 0.22em;
}

.tc-native-page__content--contact .tc-native-contact__link:hover,
.tc-native-page__content--contact .tc-native-contact__link:focus-visible {
	background: var(--tc-brand);
	color: var(--tc-ink);
}

.tc-native-page__content--contact .tc-native-contact__link:focus-visible {
	outline: 3px solid var(--tc-focus);
	outline-offset: 3px;
}

.tc-native-page__content--contact .tc-native-contact__address .tc-native-contact__link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: 0.55rem 0.7rem;
}

@media (max-width: 47.99rem) {
	.tc-native-page {
		padding: 24px 0 40px;
	}

	.tc-native-page__content {
		padding: 22px 18px;
		border-radius: 10px;
		font-size: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tc-native-page__content :is(.wp-block-button__link, .wp-element-button) {
		transform: none !important;
	}
}
