/* Maxtel Pro - B2B telecom / infrastructure */

:root {
	--maxtel-primary: #0073b7;
	--maxtel-primary-dark: #005a9c;
	--maxtel-secondary: #0f172a;
	--maxtel-footer-bg: #0a1628;
	--maxtel-accent: #e85d04;
	--maxtel-accent-light: #38bdf8;
	--maxtel-font: "Be Vietnam Pro", system-ui, sans-serif;
	--maxtel-radius: 8px;
	--maxtel-radius-pill: 999px;
	--maxtel-shadow: 0 4px 24px rgba(0, 115, 183, 0.1);
	--maxtel-container: 1280px;
	--maxtel-gap: 1.5rem;
	--maxtel-header-topbar-height: 36px;
	--maxtel-header-main-height: 74px;
	--maxtel-header-ticker-height: 41px;
	--maxtel-site-header-height: 151px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	max-width: 100%;
}

body {
	margin: 0;
	font-family: var(--maxtel-font);
	font-synthesis-weight: none;
	font-size: 16px;
	line-height: 1.6;
	color: var(--maxtel-secondary);
	background: #f7f9fc;
	max-width: 100%;
}

b,
strong {
	font-weight: 700;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button,
input,
select,
textarea {
	font: inherit;
}

a {
	color: var(--maxtel-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--maxtel-accent);
}

.maxtel-container {
	width: min(100% - 2rem, var(--maxtel-container));
	margin-inline: auto;
}

.maxtel-container--narrow {
	width: min(100% - 2rem, 800px);
}

.maxtel-layout-page {
	--maxtel-layout-container: var(--maxtel-container);
	--maxtel-layout-gutter: 2rem;
	--maxtel-layout-block-gap: 1.5rem;
}

.maxtel-layout-width-narrow {
	--maxtel-layout-container: 880px;
}

.maxtel-layout-width-default {
	--maxtel-layout-container: var(--maxtel-container);
}

.maxtel-layout-width-wide {
	--maxtel-layout-container: 1440px;
}

.maxtel-layout-width-full {
	--maxtel-layout-container: 100%;
	--maxtel-layout-gutter: 0px;
}

.maxtel-layout-page .maxtel-container,
.maxtel-layout-container {
	box-sizing: border-box;
	width: min(100% - var(--maxtel-layout-gutter), var(--maxtel-layout-container));
	margin-inline: auto;
}

.maxtel-layout-page.maxtel-layout-width-full .maxtel-container,
.maxtel-layout-page.maxtel-layout-width-full .maxtel-layout-container {
	width: 100%;
	max-width: none;
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.maxtel-layout-spacing-compact {
	--maxtel-layout-block-gap: 1rem;
}

.maxtel-layout-spacing-roomy {
	--maxtel-layout-block-gap: 2.25rem;
}

.maxtel-layout-page .maxtel-archive-header,
.maxtel-layout-page .maxtel-entry {
	margin-block: var(--maxtel-layout-block-gap);
}

.maxtel-layout-page .maxtel-post-grid,
.maxtel-layout-page .maxtel-single-post-layout,
.maxtel-layout-page .maxtel-news-category-layout,
.maxtel-layout-page .maxtel-cat-card-grid,
.maxtel-layout-page .maxtel-cat-review-grid {
	gap: var(--maxtel-layout-block-gap);
}

.maxtel-layout-page :where(.maxtel-cat-filter, .maxtel-shop-loop, .maxtel-cat-content) {
	margin-top: var(--maxtel-layout-block-gap);
}

.maxtel-layout-container > .maxtel-breadcrumbs + :where(
	.maxtel-news-hero,
	.maxtel-news-category-layout,
	.maxtel-archive-header,
	.maxtel-single-post-layout,
	.maxtel-entry,
	.maxtel-author-hero,
	.maxtel-promotion-detail
) {
	margin-top: 0;
}

.site-main > .maxtel-breadcrumbs + :where(
	.maxtel-dl-hero,
	.maxtel-cert-hero,
	.maxtel-cert-detail-hero,
	.maxtel-price-hero,
	.maxtel-price-detail-hero
) {
	margin-top: 0;
}

.tax-product_cat .maxtel-product-archive-frame > .maxtel-breadcrumbs + .maxtel-cat-hero {
	margin-top: 0;
}

.maxtel-layout-page.maxtel-layout-spacing-compact .maxtel-section {
	padding-block: 2rem;
}

.maxtel-layout-page.maxtel-layout-spacing-roomy .maxtel-section {
	padding-block: 4.5rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	padding: 1rem;
	background: #fff;
	clip: auto;
	width: auto;
	height: auto;
}

/* Buttons */
.maxtel-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	font-size: 15px;
	border-radius: var(--maxtel-radius);
	border: 2px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.maxtel-btn--primary {
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-btn--primary:hover {
	background: var(--maxtel-primary-dark);
	color: #fff;
}

.maxtel-btn--cta {
	background: var(--maxtel-primary);
	color: #fff;
	border-radius: var(--maxtel-radius-pill);
	padding: 0.625rem 1.25rem;
	font-size: 14px;
	white-space: nowrap;
}

.maxtel-btn--cta:hover {
	background: var(--maxtel-primary-dark);
	color: #fff;
}

.maxtel-btn--accent {
	background: var(--maxtel-accent);
	color: #fff;
}

.maxtel-btn--accent:hover {
	background: #c44d03;
	color: #fff;
}

.maxtel-btn--outline {
	background: transparent;
	border-color: #fff;
	color: #fff;
}

.maxtel-btn--outline:hover {
	background: #fff;
	color: var(--maxtel-primary);
}

.maxtel-btn--outline-dark {
	background: transparent;
	border-color: var(--maxtel-primary);
	color: var(--maxtel-primary);
}

.maxtel-btn--outline-dark:hover {
	background: var(--maxtel-primary);
	color: #fff;
}

/* Site header wrapper */
.maxtel-site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	min-height: var(--maxtel-site-header-height);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

body.maxtel-header-ticker-hidden {
	--maxtel-header-ticker-height: 0px;
	--maxtel-site-header-height: calc(var(--maxtel-header-topbar-height) + var(--maxtel-header-main-height));
}

body.admin-bar .maxtel-site-header {
	top: 32px;
}

/* Row 1 - Topbar */
.maxtel-topbar {
	min-height: var(--maxtel-header-topbar-height);
	background: var(--maxtel-primary-dark);
	color: #fff;
	font-size: 12px;
}

.maxtel-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: var(--maxtel-header-topbar-height);
	min-height: var(--maxtel-header-topbar-height);
	padding: 0;
	overflow: hidden;
}

.maxtel-topbar__left,
.maxtel-topbar__right {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem 0;
	min-width: 0;
}

.maxtel-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	min-width: 0;
	overflow-wrap: break-word;
}

.maxtel-topbar__item:hover {
	color: #e2e8f0;
}

.maxtel-topbar__divider {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.35);
	margin: 0 0.5rem;
}

.maxtel-topbar__hotline {
	font-weight: 600;
}

/* Row 2 - Main header */
.maxtel-header-main {
	position: relative;
	height: var(--maxtel-header-main-height);
	min-height: var(--maxtel-header-main-height);
	background: #fff;
	border-bottom: 1px solid #e8eef4;
}

.maxtel-header-main__inner {
	display: flex;
	align-items: center;
	gap: 1rem 1.25rem;
	height: calc(var(--maxtel-header-main-height) - 1px);
	min-height: calc(var(--maxtel-header-main-height) - 1px);
	padding: 0.65rem 0;
	min-width: 0;
}

.maxtel-header__brand {
	--maxtel-header-logo-width: 179px;
	--maxtel-header-logo-image-height: 52px;
	--maxtel-header-logo-slot-height: 52px;
	flex-shrink: 0;
	flex-basis: var(--maxtel-header-logo-width);
	width: var(--maxtel-header-logo-width);
	height: var(--maxtel-header-logo-slot-height);
}

.maxtel-footer__logo-wrap .custom-logo {
	max-height: 52px;
	width: auto;
}

.maxtel-header__brand .custom-logo-link {
	display: flex;
	align-items: center;
	width: var(--maxtel-header-logo-width);
	height: var(--maxtel-header-logo-slot-height);
}

.maxtel-header__brand .custom-logo {
	width: var(--maxtel-header-logo-width);
	height: var(--maxtel-header-logo-image-height);
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: left center;
}

.maxtel-logo-text__word {
	font-size: 28px;
	font-weight: 700;
	color: var(--maxtel-primary);
	letter-spacing: -0.02em;
}

.maxtel-logo-text__x {
	color: #dc2626;
}

.maxtel-nav {
	flex: 1;
	min-width: 0;
	min-height: 34px;
}

.maxtel-menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.15rem 1.35rem;
	list-style: none;
	margin: 0;
	min-height: 34px;
	padding: 0;
}

.maxtel-menu > li {
	position: relative;
	flex: 0 0 auto;
}

.maxtel-menu > li > a,
.maxtel-menu > li > .maxtel-menu-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: #1e293b;
	border: 0;
	background: transparent;
	font-family: inherit;
	font-weight: 600;
	font-size: 14px;
	padding: 0.35rem 0;
	line-height: inherit;
	white-space: nowrap;
	text-align: left;
}

.maxtel-menu > li > button.maxtel-menu-link {
	cursor: pointer;
}

.maxtel-menu > li > span.maxtel-menu-link {
	cursor: default;
}

.maxtel-menu > li > a:hover,
.maxtel-menu > li > .maxtel-menu-link:hover,
.maxtel-menu > li > .maxtel-menu-link:focus-visible,
.maxtel-menu .current-menu-item > a,
.maxtel-menu .current-menu-item > .maxtel-menu-link {
	color: var(--maxtel-primary);
}

.maxtel-menu-chevron {
	display: inline-flex;
	flex: 0 0 auto;
	opacity: 0.6;
}

.maxtel-menu-chevron--nested {
	margin-left: auto;
	transform: rotate(-90deg);
}

.maxtel-submenu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 250px;
	max-width: 320px;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	box-shadow: var(--maxtel-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 50;
}

.maxtel-submenu li {
	position: relative;
}

.maxtel-submenu--nested {
	top: -0.5rem;
	left: calc(100% - 1px);
	transform: translateX(8px);
	z-index: 60;
}

.maxtel-menu > li:hover > .maxtel-submenu,
.maxtel-menu > li:focus-within > .maxtel-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.maxtel-submenu li:hover > .maxtel-submenu,
.maxtel-submenu li:focus-within > .maxtel-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.maxtel-submenu a,
.maxtel-submenu .maxtel-menu-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 0.5rem 1rem;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: #334155;
	text-align: left;
	cursor: pointer;
}

.maxtel-submenu span.maxtel-menu-link {
	cursor: default;
}

.maxtel-submenu a:hover,
.maxtel-submenu .maxtel-menu-link:hover,
.maxtel-submenu .maxtel-menu-link:focus-visible {
	background: #f1f5f9;
	color: var(--maxtel-primary);
}

/* Mega menu - s?n ph?m */
.maxtel-menu > li.maxtel-menu-item--mega {
	position: static;
}

.maxtel-menu-item--mega > a,
.maxtel-menu-item--mega > .maxtel-menu-link {
	position: relative;
}

.maxtel-menu-item--mega:hover > a,
.maxtel-menu-item--mega:focus-within > a,
.maxtel-menu-item--mega.is-open > a,
.maxtel-menu-item--mega:hover > .maxtel-menu-link,
.maxtel-menu-item--mega:focus-within > .maxtel-menu-link,
.maxtel-menu-item--mega.is-open > .maxtel-menu-link {
	color: var(--maxtel-primary);
}

.maxtel-menu-item--mega:hover > a::after,
.maxtel-menu-item--mega:focus-within > a::after,
.maxtel-menu-item--mega.is-open > a::after,
.maxtel-menu-item--mega:hover > .maxtel-menu-link::after,
.maxtel-menu-item--mega:focus-within > .maxtel-menu-link::after,
.maxtel-menu-item--mega.is-open > .maxtel-menu-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.65rem;
	height: 3px;
	background: var(--maxtel-primary);
	border-radius: 2px 2px 0 0;
}

.maxtel-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	pointer-events: none;
	z-index: 150;
}

.maxtel-mega::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 1.25rem;
}

.maxtel-menu-item--mega:hover .maxtel-mega,
.maxtel-menu-item--mega:focus-within .maxtel-mega,
.maxtel-menu-item--mega.is-open .maxtel-mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.maxtel-mega__dropdown {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-top: 0;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
	padding: 1.5rem 0 1.75rem;
}

.maxtel-mega__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem 2rem;
}

.maxtel-mega__panel {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	align-items: start;
	padding: 0.75rem;
	border-radius: var(--maxtel-radius);
	transition: background 0.15s ease;
}

.maxtel-mega__panel:hover {
	background: #f8fafc;
}

.maxtel-mega__thumb {
	display: block;
	border-radius: var(--maxtel-radius);
	overflow: hidden;
	background: #f1f5f9;
	aspect-ratio: 1;
}

.maxtel-mega__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.maxtel-mega__thumb--placeholder {
	background: linear-gradient(145deg, #e8f4fc 0%, #d4e8f7 100%);
}

.maxtel-mega__title {
	margin: 0 0 0.5rem;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-mega__title a {
	color: #1e293b;
}

.maxtel-mega__title a:hover {
	color: var(--maxtel-primary);
}

.maxtel-mega__subs {
	list-style: none;
	margin: 0;
	padding: 0;
}

.maxtel-mega__subs li {
	display: flex;
	align-items: baseline;
	gap: 5px;
	margin-bottom: 0.2rem;
}

.maxtel-mega__arrow {
	color: #94a3b8;
	font-size: 14px;
	line-height: 1;
	flex-shrink: 0;
}

.maxtel-mega__subs a {
	color: #64748b;
	font-size: 13px;
	font-weight: 500;
}

.maxtel-mega__subs a:hover {
	color: var(--maxtel-primary);
}

.maxtel-header__tools {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
	min-width: 0;
	min-height: 46px;
}

.maxtel-header__tools > .maxtel-btn--cta {
	justify-content: center;
	height: 42px;
	min-height: 42px;
	padding: 0 1.25rem;
	border-width: 1px;
	line-height: 1;
}

.maxtel-header-search-shared {
	flex: 0 1 440px;
	min-width: 300px;
}

.maxtel-header-search-shared .maxtel-header-search {
	width: 100%;
	min-width: 0;
	max-width: none;
}

/* Header search */
.maxtel-header-search {
	position: relative;
	display: flex;
	align-items: center;
	height: 42px;
	box-sizing: border-box;
	border: 1px solid #d6e2ee;
	border-radius: 12px;
	overflow: visible;
	background: #fff;
	min-width: 360px;
	max-width: 440px;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.maxtel-header-search:focus-within {
	border-color: var(--maxtel-primary);
	box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12);
}

.maxtel-header-search__cat {
	align-self: stretch;
	width: 118px;
	min-width: 118px;
	max-width: 118px;
	border: 0;
	border-right: 1px solid #e2e8f0;
	border-radius: 11px 0 0 11px;
	background: linear-gradient(180deg, #f9fcff 0%, #eef6fb 100%);
	background-clip: padding-box;
	padding: 0 1.55rem 0 0.75rem;
	color: #26415d;
	font-family: var(--maxtel-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	appearance: none;
	white-space: nowrap;
	text-overflow: ellipsis;
	background-image:
		linear-gradient(45deg, transparent 50%, #60758a 50%),
		linear-gradient(135deg, #60758a 50%, transparent 50%),
		linear-gradient(180deg, #f9fcff 0%, #eef6fb 100%);
	background-position:
		calc(100% - 15px) 50%,
		calc(100% - 10px) 50%,
		0 0;
	background-size: 5px 5px, 5px 5px, 100% 100%;
	background-repeat: no-repeat;
}

.maxtel-header-search__cat option {
	font-family: var(--maxtel-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	color: #1f2a3a;
}

.maxtel-header-search-scope {
	position: relative;
	align-self: stretch;
	flex: 0 0 118px;
	width: 118px;
	min-width: 118px;
	max-width: 118px;
	border-right: 1px solid #e2e8f0;
	border-radius: 11px 0 0 11px;
}

.maxtel-header-search-scope__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem;
	width: 100%;
	height: 100%;
	padding: 0 0.72rem;
	border: 0;
	border-radius: 11px 0 0 11px;
	background: linear-gradient(180deg, #f9fcff 0%, #eef6fb 100%);
	color: #26415d;
	font-family: var(--maxtel-font);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	cursor: pointer;
}

.maxtel-header-search-scope__button span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.maxtel-header-search-scope__button:hover,
.maxtel-header-search-scope__button:focus-visible,
.maxtel-header-search-scope.is-open .maxtel-header-search-scope__button {
	background: #eef7fd;
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-header-search-scope__chevron {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.16s ease;
}

.maxtel-header-search-scope.is-open .maxtel-header-search-scope__chevron {
	transform: translateY(2px) rotate(225deg);
}

.maxtel-header-search-scope__menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 340;
	display: grid;
	gap: 3px;
	width: max-content;
	min-width: 176px;
	max-width: min(240px, calc(100vw - 2rem));
	padding: 0.35rem;
	border: 1px solid #d6e2ee;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.maxtel-header-search-scope__menu[hidden] {
	display: none;
}

.maxtel-header-search-scope__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 34px;
	padding: 0.5rem 0.65rem;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #172033;
	font-family: var(--maxtel-font);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.maxtel-header-search-scope__option:hover,
.maxtel-header-search-scope__option:focus-visible {
	background: #eef7fd;
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-header-search-scope__option[aria-selected="true"] {
	background: #e8f4fb;
	color: var(--maxtel-primary);
	font-weight: 700;
}

.maxtel-header-search-scope__option[aria-selected="true"]::after {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.maxtel-header-search__input {
	flex: 1;
	height: 100%;
	border: 0;
	padding: 0 0.85rem;
	color: #1f2a3a;
	font-size: 14px;
	font-weight: 500;
	min-width: 0;
}

.maxtel-header-search__input::placeholder {
	color: #8191a5;
}

.maxtel-header-search__input:focus {
	outline: none;
}

.maxtel-header-search__btn {
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	min-width: 46px;
	border: 0;
	border-radius: 0 11px 11px 0;
	background: #fbfdff;
	background-clip: padding-box;
	color: #38536d;
	cursor: pointer;
	font-size: 14px;
	line-height: 1;
	transition: background 0.18s ease, color 0.18s ease;
}

.maxtel-header-search__btn:hover {
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-header-search__suggestions {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: auto;
	z-index: 320;
	display: grid;
	gap: 0.45rem;
	width: min(560px, calc(100vw - 2rem));
	min-width: 100%;
	max-height: min(420px, calc(100vh - 150px));
	padding: 0.5rem;
	overflow-y: auto;
	border: 1px solid #d6e2ee;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.maxtel-header-search__suggestions[hidden] {
	display: none;
}

.maxtel-header-search-group {
	display: grid;
	gap: 3px;
	padding-bottom: 0.45rem;
	border-bottom: 1px solid #edf3f8;
}

.maxtel-header-search-group:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.maxtel-header-search-group__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.25rem 0.35rem 0.15rem;
	color: #172033;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.maxtel-header-search-group__head span {
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	text-transform: none;
	white-space: nowrap;
}

.maxtel-header-search-group__more {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0.1rem 0.35rem 0;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
}

.maxtel-header-search-empty {
	padding: 0.75rem 0.85rem;
	border-radius: 8px;
	background: #f8fafc;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

.maxtel-header-search-suggestion {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 0.65rem;
	align-items: center;
	padding: 0.45rem;
	border-radius: 8px;
	color: #172033;
}

.maxtel-header-search-suggestion:hover,
.maxtel-header-search-suggestion:focus-visible,
.maxtel-header-search-suggestion.is-active {
	background: #eef7fd;
	color: #172033;
	outline: none;
}

.maxtel-header-search-suggestion__media {
	display: grid;
	place-items: center;
	width: 52px;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid #e3edf6;
	border-radius: 8px;
	background: #f8fafc;
}

.maxtel-header-search-suggestion__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.25rem;
}

.maxtel-header-search-suggestion__media--empty {
	background: linear-gradient(135deg, #eef7fd 0%, #fff 100%);
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
}

.maxtel-header-search-suggestion__body {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}

.maxtel-header-search-suggestion__body strong,
.maxtel-header-search-suggestion__body span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
}

.maxtel-header-search-suggestion__body strong {
	-webkit-line-clamp: 2;
	font-size: 13px;
	font-weight: 400;
}

.maxtel-header-search-suggestion__body span {
	-webkit-line-clamp: 1;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 400;
}

.maxtel-menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 0.5rem;
	color: var(--maxtel-secondary);
	cursor: pointer;
}

/* Row 3 - Ticker */
.maxtel-ticker {
	height: var(--maxtel-header-ticker-height);
	min-height: var(--maxtel-header-ticker-height);
	background: #f1f5f9;
	border-bottom: 1px solid #e2e8f0;
	font-size: 13px;
	color: #334155;
}

.maxtel-ticker__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: calc(var(--maxtel-header-ticker-height) - 1px);
	min-height: calc(var(--maxtel-header-ticker-height) - 1px);
	overflow: hidden;
}

.maxtel-ticker__badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	background: var(--maxtel-primary);
	color: #fff;
	font-weight: 700;
	font-size: 12px;
	padding: 0.35rem 0.65rem;
	border-radius: 4px;
	letter-spacing: 0.03em;
}

.maxtel-ticker__track {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}

.maxtel-ticker__content {
	display: flex;
	gap: 3rem;
	width: max-content;
	animation: maxtel-ticker-scroll 40s linear infinite;
}

.maxtel-ticker__item {
	white-space: nowrap;
}

.maxtel-ticker__link {
	color: inherit;
}

.maxtel-ticker__link:hover {
	color: var(--maxtel-primary);
}

@keyframes maxtel-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.maxtel-ticker:hover .maxtel-ticker__content {
	animation-play-state: paused;
}

/* Mobile nav */
.maxtel-mobile-nav {
	background: #fff;
	border-top: 1px solid #e2e8f0;
	box-shadow: var(--maxtel-shadow);
}

.maxtel-mobile-nav[hidden] {
	display: none;
}

.maxtel-mobile-nav__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1rem;
	border-bottom: 1px solid #e2e8f0;
}

.maxtel-mobile-nav__close,
.maxtel-mega-mobile__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--maxtel-secondary);
	cursor: pointer;
}

.maxtel-mobile-nav__close {
	padding: 0.25rem;
}

.maxtel-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0.5rem 1rem 1rem;
}

.maxtel-mobile-menu__item {
	margin: 0;
}

.maxtel-mobile-menu__row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-bottom: 1px solid #f1f5f9;
}

.maxtel-mobile-menu__row > a,
.maxtel-mobile-menu__row > .maxtel-mobile-menu__link {
	flex: 1;
	min-width: 0;
	border-bottom: 0;
}

.maxtel-mobile-menu__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2.25rem;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 50%;
	background: #eef7fd;
	color: var(--maxtel-primary);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.maxtel-mobile-menu__toggle[aria-expanded="true"] {
	transform: rotate(180deg);
}

.maxtel-mobile-menu a,
.maxtel-mobile-menu .maxtel-mobile-menu__link {
	display: block;
	padding: 0.75rem 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	color: var(--maxtel-secondary);
	font-weight: 600;
	font-size: 15px;
	line-height: inherit;
	text-align: left;
	border-bottom: 1px solid #f1f5f9;
}

.maxtel-mobile-menu button.maxtel-mobile-menu__link {
	width: 100%;
	cursor: pointer;
}

.maxtel-mobile-menu span.maxtel-mobile-menu__link {
	cursor: default;
}

.maxtel-mobile-submenu[hidden] {
	display: none;
}

.maxtel-mobile-menu .sub-menu,
.maxtel-mobile-menu .maxtel-submenu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 1rem;
	position: static;
	min-width: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.maxtel-mobile-menu .sub-menu a,
.maxtel-mobile-menu .maxtel-submenu a,
.maxtel-mobile-menu .sub-menu .maxtel-mobile-menu__link,
.maxtel-mobile-menu .maxtel-submenu .maxtel-mobile-menu__link {
	padding-block: 0.55rem;
	color: #64748b;
	font-size: 14px;
}

.maxtel-mobile-menu .maxtel-mobile-submenu--mega {
	display: grid;
	gap: 0.55rem;
	padding: 0.65rem 0 0.85rem;
}

.maxtel-mobile-menu .maxtel-mobile-submenu--mega[hidden] {
	display: none;
}

.maxtel-mobile-mega-group {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 0.7rem;
	align-items: flex-start;
	padding: 0.65rem;
	border: 1px solid #e3edf6;
	border-radius: 12px;
	background: #fbfdff;
}

.maxtel-mobile-mega-group:last-child {
	border-bottom: 1px solid #e3edf6;
}

.maxtel-mobile-mega-group__thumb {
	display: grid !important;
	place-items: center;
	width: 56px;
	aspect-ratio: 1;
	overflow: hidden;
	padding: 0 !important;
	border: 1px solid #d8e7f2 !important;
	border-radius: 10px;
	background: #fff;
}

.maxtel-mobile-mega-group__thumb img {
	width: 100%;
	height: 100%;
	padding: 0.25rem;
	object-fit: contain;
}

.maxtel-mobile-mega-group__thumb--placeholder::before {
	content: "";
	width: 28px;
	aspect-ratio: 1;
	border-radius: 8px;
	background: linear-gradient(135deg, #dff2fb, #b9d9ee);
}

.maxtel-mobile-mega-group__body {
	min-width: 0;
}

.maxtel-mobile-menu .sub-menu a.maxtel-mobile-mega-group__title {
	padding: 0 0 0.25rem;
	border-bottom: 0;
	color: #172033;
	font-weight: 700;
	line-height: 1.25;
}

.maxtel-mobile-mega-group__items {
	list-style: none;
	margin: 0.1rem 0 0;
	padding: 0;
}

.maxtel-mobile-menu .maxtel-mobile-mega-group__items a {
	padding: 0.26rem 0;
	border-bottom: 0;
	color: #64748b;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
}

.maxtel-mobile-menu .maxtel-mobile-mega-group__items a::before {
	content: "<";
	margin-right: 0.35rem;
	color: var(--maxtel-primary);
	font-weight: 700;
}

/* Hero */
.maxtel-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--maxtel-primary) 0%, #062a4a 100%);
	background-size: cover;
	background-position: center;
	color: #fff;
}

.maxtel-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(6, 42, 74, 0.92) 0%, rgba(11, 79, 138, 0.75) 100%);
}

.maxtel-hero__content {
	position: relative;
	padding: 4rem 0;
	max-width: 720px;
}

.maxtel-hero h1 {
	margin: 0 0 1rem;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.25;
}

.maxtel-hero__subtitle {
	margin: 0 0 1.5rem;
	font-size: 17px;
	opacity: 0.95;
}

.maxtel-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Sections */
.maxtel-section {
	padding: 3.5rem 0;
}

.maxtel-section__title {
	margin: 0 0 2rem;
	font-size: 28px;
	font-weight: 700;
	color: var(--maxtel-secondary);
	text-align: center;
}

.maxtel-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.maxtel-section__title--left {
	text-align: left;
	margin-bottom: 0;
}

.maxtel-section__desc {
	margin: 0.35rem 0 0;
	max-width: 720px;
	color: #64748b;
}

.maxtel-section__footer {
	text-align: center;
	margin-top: 2rem;
}

.maxtel-eyebrow {
	margin: 0 0 0.45rem;
	color: var(--maxtel-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.maxtel-empty {
	margin: 0;
	padding: 1.25rem;
	color: #64748b;
	background: #f8fafc;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
}

/* Categories */
.maxtel-categories {
	background: #fff;
}

.maxtel-categories__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--maxtel-gap);
}

.maxtel-category-card {
	display: flex;
	flex-direction: column;
	background: #f7f9fc;
	border-radius: var(--maxtel-radius);
	overflow: hidden;
	border: 1px solid #e2e8f0;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.maxtel-category-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--maxtel-shadow);
	color: inherit;
}

.maxtel-category-card__media {
	aspect-ratio: 1 / 1;
	background: linear-gradient(180deg, #e8f0f8 0%, #d4e4f4 100%);
	overflow: hidden;
}

.maxtel-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.maxtel-category-card__body {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.maxtel-category-card h3 {
	margin: 0 0 0.5rem;
	font-size: 17px;
	color: var(--maxtel-primary);
}

.maxtel-category-card p {
	margin: 0;
	font-size: 14px;
	color: #64748b;
	flex: 1;
}

.maxtel-category-card__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 1rem;
	font-weight: 600;
	font-size: 14px;
	color: var(--maxtel-accent);
}

/* Trust */
.maxtel-trust {
	background: var(--maxtel-primary);
	color: #fff;
	padding: 2rem 0;
}

.maxtel-trust__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.maxtel-trust__item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.maxtel-trust__icon {
	flex-shrink: 0;
	color: var(--maxtel-accent);
}

.maxtel-trust__item strong {
	display: block;
	font-size: 15px;
}

.maxtel-trust__item span {
	font-size: 13px;
	opacity: 0.85;
}

/* Product grid */
.maxtel-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--maxtel-gap);
	overflow: visible;
}

.maxtel-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	background: #fff;
	border-radius: var(--maxtel-radius);
	border: 1px solid #e2e8f0;
	overflow: visible;
	transition: box-shadow 0.2s, transform 0.2s;
}

.maxtel-product-card:hover {
	z-index: 80;
	box-shadow: var(--maxtel-shadow);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	transform: translateY(-2px);
}

.maxtel-product-card:focus-within {
	z-index: 80;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.maxtel-product-card__link {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	color: inherit;
}

.maxtel-product-card__badge {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	max-width: calc(100% - 1.6rem);
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: #e9f9fb;
	color: #006170;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	pointer-events: none;
}

.maxtel-product-card__badge--featured {
	background: #eaf5ff;
	color: var(--maxtel-primary);
}

.maxtel-product-card__badge--latest {
	background: #e6f8f2;
	color: #047857;
}

.maxtel-product-card__image {
	aspect-ratio: 1;
	height: clamp(210px, 20vw, 280px);
	background: #f8fafc;
	padding: 1rem;
}

.maxtel-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.maxtel-product-card__code,
.maxtel-loop-product-code {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	padding: 1rem 1rem 0.2rem;
	color: #172033;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.maxtel-product-card__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 2.75em;
	margin: 0;
	padding: 0 1rem 1rem;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.maxtel-product-card-hover {
	position: absolute;
	top: calc(100% - 1px);
	right: -1px;
	left: -1px;
	z-index: 30;
	display: block;
	max-height: 430px;
	border: 1px solid transparent;
	border-top: 0;
	border-radius: 0 0 var(--maxtel-radius) var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
	box-sizing: border-box;
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: none;
	transition: opacity 0.18s ease, visibility 0.18s ease, border-color 0.18s ease;
}

.maxtel-product-card:hover .maxtel-product-card-hover,
.maxtel-product-card:focus-within .maxtel-product-card-hover,
.maxtel-woocommerce ul.products li.product:hover .maxtel-product-card-hover,
.maxtel-woocommerce ul.products li.product:focus-within .maxtel-product-card-hover,
.maxtel-shop ul.products li.product:hover .maxtel-product-card-hover,
.maxtel-shop ul.products li.product:focus-within .maxtel-product-card-hover,
.woocommerce ul.products li.product:hover .maxtel-product-card-hover,
.woocommerce ul.products li.product:focus-within .maxtel-product-card-hover {
	max-height: 430px;
	border-color: #e2e8f0;
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.maxtel-product-card-hover__panel {
	display: grid;
	gap: 0.85rem;
	width: 100%;
	padding: 0.9rem 1rem 1rem;
	background: #fff;
	box-sizing: border-box;
	overflow: hidden;
}

.maxtel-product-card:hover .maxtel-product-card-hover__panel,
.maxtel-product-card:focus-within .maxtel-product-card-hover__panel,
.maxtel-woocommerce ul.products li.product:hover .maxtel-product-card-hover__panel,
.maxtel-woocommerce ul.products li.product:focus-within .maxtel-product-card-hover__panel,
.maxtel-shop ul.products li.product:hover .maxtel-product-card-hover__panel,
.maxtel-shop ul.products li.product:focus-within .maxtel-product-card-hover__panel,
.woocommerce ul.products li.product:hover .maxtel-product-card-hover__panel,
.woocommerce ul.products li.product:focus-within .maxtel-product-card-hover__panel {
	overflow: visible;
}

.maxtel-product-card-hover__thumbs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.55rem;
}

.maxtel-product-card-hover__thumb {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	width: 100%;
	padding: 0;
	border: 1px solid #edf2f7;
	border-radius: 8px;
	background: #f8fafc;
	color: inherit;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.maxtel-product-card-hover__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.35rem;
}

.maxtel-product-card-hover__thumb:hover,
.maxtel-product-card-hover__thumb:focus-visible,
.maxtel-product-card-hover__thumb.is-active {
	border-color: var(--maxtel-primary);
	background: #fff;
	box-shadow: 0 0 0 2px rgba(0, 115, 183, 0.12);
	outline: 0;
}

.maxtel-product-card-hover__attrs {
	display: grid;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: #475569;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

.maxtel-product-card-hover__attrs li {
	display: grid;
	grid-template-columns: minmax(72px, 0.55fr) minmax(0, 1fr);
	gap: 0.5rem;
	align-items: start;
}

.maxtel-product-card-hover__attrs span {
	color: #718096;
	font-weight: 400;
}

.maxtel-product-card-hover__attrs strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #334155;
	font-weight: 400;
}

.maxtel-product-card-hover__compare {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	pointer-events: auto;
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle {
	flex-direction: row-reverse;
	gap: 0.38rem;
	width: auto;
	min-width: 0;
	height: 28px;
	min-height: 28px;
	padding: 0.25rem 0.38rem 0.25rem 0.55rem;
	border: 1px solid #cfe0ee;
	border-radius: 6px;
	background: #f8fbfe;
	box-shadow: none;
	color: var(--maxtel-primary);
	font-size: 12px;
	line-height: 1;
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle:hover {
	border-color: var(--maxtel-primary);
	background: #fff;
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle__label {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: nowrap;
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle__icon {
	display: grid;
	place-items: center;
	width: 16px;
	height: 16px;
	margin: 0;
	border: 2px solid #aeb9c4;
	border-radius: 4px;
	background: #fff;
	color: transparent;
	font-size: 12px;
	flex-shrink: 0;
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle.is-selected {
	border-color: var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle.is-selected .maxtel-compare-toggle__icon {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.18);
}

.maxtel-product-card-hover__compare .maxtel-compare-toggle.is-selected .maxtel-compare-toggle__icon::before {
	content: "";
	width: 7px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.maxtel-product-card-meta {
	display: grid;
	gap: 5px;
	min-height: 6.35rem;
	padding: 0.65rem 1rem 0;
	color: #64748b;
	font-size: 12px;
	line-height: 1.35;
}

.maxtel-product-card-meta__row {
	display: grid;
	grid-template-columns: minmax(62px, 0.6fr) minmax(0, 1fr);
	gap: 0.45rem;
	align-items: start;
	min-height: 1.25rem;
}

.maxtel-product-card-meta__row span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: #718096;
	font-weight: 700;
}

.maxtel-product-card-meta__row strong {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: #334155;
	font-weight: 700;
}

.maxtel-product-card-meta__row--sku strong {
	color: var(--maxtel-secondary);
}

.maxtel-product-card__price {
	min-height: 2.6rem;
	padding: 0.5rem 1rem 1rem;
	font-weight: 700;
	color: var(--maxtel-accent);
}

.maxtel-product-card__compare {
	padding: 0 1rem 1rem;
	margin-top: auto;
}

.maxtel-compare-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	width: 100%;
	min-height: 38px;
	padding: 0.55rem 0.75rem;
	border: 1px solid #cfe0ee;
	border-radius: var(--maxtel-radius);
	background: #f8fbfe;
	color: var(--maxtel-primary);
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.maxtel-compare-toggle:hover {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
}

.maxtel-compare-toggle.is-selected {
	border-color: var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-compare-toggle:disabled {
	cursor: not-allowed;
	opacity: 0.55;
}

.maxtel-compare-toggle--single {
	width: auto;
	min-height: auto;
}

.maxtel-compare-toggle__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: rgba(0, 115, 183, 0.12);
	font-size: 12px;
	line-height: 1;
}

.maxtel-compare-toggle.is-selected .maxtel-compare-toggle__icon {
	background: rgba(255, 255, 255, 0.2);
}

/* Posts */
.maxtel-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--maxtel-gap);
}

.maxtel-post-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #fff;
	border-radius: var(--maxtel-radius);
	overflow: hidden;
	border: 1px solid #e2e8f0;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-post-card:hover {
	border-color: #c7d7e8;
	box-shadow: var(--maxtel-shadow);
	transform: translateY(-2px);
}

.maxtel-post-card__thumb {
	display: block;
	background: #e8f0f8;
}

.maxtel-post-card__thumb img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.maxtel-post-card__placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 10;
	width: 100%;
	min-height: 160px;
	background: linear-gradient(135deg, #e6f3fb 0%, #f8fafc 55%, #fff5ed 100%);
	color: var(--maxtel-primary);
	font-weight: 700;
}

.maxtel-post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.maxtel-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.3rem 0.55rem;
	margin-bottom: 0.45rem;
}

.maxtel-post-card__cat {
	width: fit-content;
	margin-bottom: 0;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.maxtel-post-card .posted-on,
.maxtel-news-featured-card .posted-on {
	color: #64748b;
	font-size: 13px;
}

.maxtel-post-card__title {
	margin: 0.5rem 0;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.35;
}

.maxtel-post-card__title a {
	color: var(--maxtel-secondary);
	font-weight: 600;
}

.maxtel-post-card__body p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

/* Search results */
.maxtel-search-summary {
	margin: 0 0 1.25rem;
	color: #475569;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
}

.maxtel-search-rows {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.9rem;
	align-items: start;
	margin: 1.25rem 0 2.5rem;
}

.maxtel-search-column {
	display: grid;
	gap: 1rem;
	min-width: 0;
	padding-top: 1rem;
	border-top: 1px solid #dbe7f3;
}

.maxtel-search-column:first-child {
	padding-top: 0;
	border-top: 0;
}

.maxtel-search-column__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 42px;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid #e6eef6;
}

.maxtel-search-column__head h2 {
	margin: 0;
	color: var(--maxtel-secondary);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

.maxtel-search-column__head span {
	flex: 0 0 auto;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: #eef7fd;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.maxtel-search-column__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
	min-width: 0;
	align-items: stretch;
}

.maxtel-search-column--products .maxtel-search-column__items {
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.maxtel-search-column--posts .maxtel-search-column__items,
.maxtel-search-column--documents .maxtel-search-column__items {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.maxtel-search-column__empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1rem;
	border: 1px dashed #cfddeb;
	border-radius: var(--maxtel-radius);
	background: #f8fafc;
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.maxtel-search-column__more {
	grid-column: 1 / -1;
	justify-self: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 180px;
	min-height: 40px;
	padding: 0.55rem 0.8rem;
	border: 1px solid #cfe0ee;
	border-radius: var(--maxtel-radius);
	background: #f8fbfe;
	color: var(--maxtel-primary);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

.maxtel-search-column__more:hover,
.maxtel-search-column__more:focus-visible {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
	outline: 0;
}

.maxtel-search-column .maxtel-product-card {
	overflow: hidden;
}

.maxtel-search-column .maxtel-product-card:hover,
.maxtel-search-column .maxtel-product-card:focus-within {
	border-bottom-right-radius: var(--maxtel-radius);
	border-bottom-left-radius: var(--maxtel-radius);
}

.maxtel-search-column .maxtel-product-card__image {
	height: clamp(155px, 15vw, 210px);
}

.maxtel-search-column .maxtel-product-card-hover {
	display: none;
}

.maxtel-search-column .maxtel-post-card__thumb img,
.maxtel-search-column .maxtel-post-card__placeholder {
	aspect-ratio: 16 / 9;
	min-height: 140px;
}

.maxtel-search-column .maxtel-post-card__body {
	padding: 1rem;
}

.maxtel-search-document-card {
	display: grid;
	gap: 0.55rem;
	min-width: 0;
	padding: 1rem;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-search-document-card:hover {
	border-color: #c7d7e8;
	box-shadow: var(--maxtel-shadow);
	transform: translateY(-2px);
}

.maxtel-search-document-card__type {
	width: fit-content;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: #f0fdf4;
	color: #047857;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-search-document-card__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-search-document-card__title a {
	color: var(--maxtel-secondary);
}

.maxtel-search-document-card__meta,
.maxtel-search-document-card__excerpt {
	margin: 0;
	color: #64748b;
	font-size: 13px;
	line-height: 1.5;
}

.maxtel-search-document-card__meta {
	color: var(--maxtel-primary);
	font-weight: 700;
}

.maxtel-search-document-card__link {
	width: fit-content;
	margin-top: 0.2rem;
	color: var(--maxtel-primary);
	font-size: 13px;
	font-weight: 700;
}

/* News landing */
.maxtel-news-page {
	padding-bottom: 3rem;
}

.maxtel-news-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 1.5rem;
	align-items: stretch;
	margin: 1.5rem 0 2rem;
	padding: 2rem;
	background: linear-gradient(135deg, #fff 0%, #eef7fd 62%, #fff7f1 100%);
	border: 1px solid #d9e8f5;
	border-radius: var(--maxtel-radius);
}

.maxtel-news-hero__content p:last-of-type {
	max-width: 760px;
	color: #475569;
}

.maxtel-news-search {
	display: flex;
	gap: 0.75rem;
	max-width: 680px;
	margin-top: 1.25rem;
}

.maxtel-news-search input {
	flex: 1;
	min-width: 0;
	min-height: 46px;
	padding: 0.65rem 0.85rem;
	border: 1px solid #cbd8e6;
	border-radius: var(--maxtel-radius);
	font: inherit;
	background: #fff;
}

.maxtel-news-topics {
	display: grid;
	gap: 0.75rem;
}

.maxtel-news-topic {
	display: grid;
	gap: 3px;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid #d7e4f0;
	border-radius: var(--maxtel-radius);
	color: inherit;
}

.maxtel-news-topic:hover {
	border-color: var(--maxtel-primary);
	color: inherit;
}

.maxtel-news-topic span,
.maxtel-news-topic small {
	color: #64748b;
	font-size: 13px;
}

.maxtel-news-topic strong {
	color: var(--maxtel-secondary);
	line-height: 1.35;
}

.maxtel-news-featured,
.maxtel-news-groups,
.maxtel-news-latest {
	margin: 2.5rem 0;
}

.maxtel-news-featured-card {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	overflow: hidden;
	background: #fff;
	border: 1px solid #dfe8f1;
	border-radius: var(--maxtel-radius);
}

.maxtel-news-featured-card__media {
	display: block;
	background: #e8f0f8;
}

.maxtel-news-featured-card__media img {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.maxtel-news-featured-card__media .maxtel-post-card__placeholder {
	height: 100%;
	min-height: 360px;
}

.maxtel-news-featured-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 2rem;
}

.maxtel-news-featured-card__body h3 {
	margin: 0.55rem 0 0.75rem;
	font-size: 36px;
	line-height: 1.2;
}

.maxtel-news-featured-card__body h3 a {
	color: var(--maxtel-secondary);
}

.maxtel-news-featured-card__body p {
	margin: 0 0 1.25rem;
	color: #475569;
}

.maxtel-news-group-list {
	display: grid;
	gap: 1.25rem;
}

.maxtel-news-group {
	padding: 1.25rem;
	background: #fff;
	border: 1px solid #dfe8f1;
	border-radius: var(--maxtel-radius);
	scroll-margin-top: 120px;
}

.maxtel-news-group__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.maxtel-news-group__head h3 {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
}

.maxtel-news-group__head p:not(.maxtel-eyebrow) {
	margin: 0.35rem 0 0;
	max-width: 760px;
	color: #64748b;
}

.maxtel-news-group__link {
	flex-shrink: 0;
	font-weight: 700;
}

.maxtel-news-mini-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.maxtel-news-hero--compact {
	grid-template-columns: minmax(0, 1fr);
	margin-bottom: 2.5rem;
}

.maxtel-news-hero--compact .maxtel-news-search {
	max-width: 760px;
}

.maxtel-news-overview,
.maxtel-news-category-sections {
	margin: 2.5rem 0;
}

.maxtel-news-overview-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
	gap: 1.25rem;
	align-items: start;
	padding: 1rem;
	background: #fff;
	border: 1px solid #dfe8f1;
	border-radius: var(--maxtel-radius);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.maxtel-news-overview-featured {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}

.maxtel-news-overview-featured__media {
	display: block;
	min-width: 0;
	overflow: hidden;
	aspect-ratio: 16 / 8;
	background: #e8f0f8;
	border-radius: calc(var(--maxtel-radius) - 2px);
}

.maxtel-news-overview-featured__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

.maxtel-news-overview-featured__media .maxtel-post-card__placeholder {
	height: 100%;
	min-height: 0;
}

.maxtel-news-overview-featured__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	padding: 1rem 0.25rem 0;
}

.maxtel-news-overview-label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 0.45rem;
	padding: 0.25rem 0.55rem;
	background: #eaf6fd;
	border-radius: 999px;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.maxtel-news-overview-featured__body h3 {
	margin: 0.55rem 0 0.75rem;
	font-size: clamp(20px, 1.5vw, 24px);
	font-weight: 600;
	line-height: 1.26;
}

.maxtel-news-overview-featured__body h3 a,
.maxtel-news-latest-item__body h4 a,
.maxtel-news-category-block__head h3 {
	color: var(--maxtel-secondary);
}


.maxtel-news-overview-featured__meta,
.maxtel-news-latest-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.45rem;
}

.maxtel-news-overview-featured__body p {
	margin: 0 0 1.25rem;
	color: #475569;
}

.maxtel-news-latest-panel {
	min-width: 0;
	padding-left: 1.25rem;
	border-left: 1px solid #e2e8f0;
}

.maxtel-news-latest-panel__head h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
	color: var(--maxtel-secondary);
}

.maxtel-news-latest-list {
	display: grid;
	margin-top: 0.35rem;
}

.maxtel-news-latest-item {
	display: grid;
	grid-template-columns: 124px minmax(0, 1fr);
	gap: 0.8rem;
	align-items: center;
	min-width: 0;
	padding: 0.9rem 0;
	border-top: 1px solid #eef2f7;
}

.maxtel-news-latest-item__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #e8f0f8;
	border-radius: calc(var(--maxtel-radius) - 3px);
}

.maxtel-news-latest-item__media img,
.maxtel-news-latest-item__media .maxtel-post-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

.maxtel-news-latest-item__media .maxtel-post-card__placeholder {
	font-size: 12px;
}

.maxtel-news-latest-item__body {
	min-width: 0;
}

.maxtel-news-latest-item__body .maxtel-post-card__cat {
	font-size: 11px;
	font-weight: 600;
	text-transform: none;
}

.maxtel-news-latest-item__body h4 {
	margin: 0.35rem 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}


.maxtel-news-latest-item__body h4 a {
	font-weight: 500;
}

.maxtel-news-latest-item__meta .posted-on,
.maxtel-news-latest-item__meta .entry-date {
	font-size: 12px;
	font-weight: 400;
	text-transform: none;
}

.maxtel-news-category-list {
	display: grid;
	gap: 2.25rem;
}

.maxtel-news-category-block {
	padding-top: 1.75rem;
	border-top: 1px solid #dfe8f1;
	scroll-margin-top: 120px;
}

.maxtel-news-category-block:first-child {
	padding-top: 0;
	border-top: 0;
}

.maxtel-news-category-block__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.maxtel-news-category-block__head h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.25;
}

.maxtel-news-category-block__head p:not(.maxtel-eyebrow) {
	margin: 0.4rem 0 0;
	max-width: 760px;
	color: #64748b;
}

.maxtel-news-category-block__link {
	flex-shrink: 0;
	font-weight: 700;
}

.maxtel-news-category-posts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}
/* News category archive */
.maxtel-news-category-page {
	padding-bottom: 3rem;
}

.maxtel-news-category-sidebar h2 {
	margin: 0 0 1rem;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-news-sidebar-links {
	display: grid;
	gap: 0.65rem;
}

.maxtel-news-sidebar-links a {
	display: grid;
	gap: 0.15rem;
	padding: 0.75rem;
	background: #fff;
	border: 1px solid #e1eaf3;
	border-radius: var(--maxtel-radius);
	color: inherit;
}

.maxtel-news-sidebar-links a:hover {
	border-color: var(--maxtel-primary);
	color: inherit;
}

.maxtel-news-sidebar-links a.is-current {
	border-color: rgba(0, 115, 183, 0.45);
	background: #eaf5fc;
}

.maxtel-news-sidebar-links strong {
	color: var(--maxtel-secondary);
	font-weight: 700;
}

.maxtel-news-sidebar-links span {
	color: #64748b;
	font-size: 13px;
}

.maxtel-news-category-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 1.5rem;
	align-items: start;
	margin: 1.5rem 0 2.5rem;
}

.maxtel-news-category-head {
	margin-bottom: 1rem;
}

.maxtel-news-category-page .maxtel-news-category-list {
	gap: 1rem;
}

.maxtel-news-category-list .maxtel-post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.maxtel-news-category-empty {
	padding: 1.25rem;
	background: #fff;
	border: 1px solid #dfe8f1;
	border-radius: var(--maxtel-radius);
}

.maxtel-news-category-empty h2 {
	margin: 0 0 0.5rem;
	font-size: 20px;
	line-height: 1.3;
}

.maxtel-news-category-empty p {
	margin: 0 0 1rem;
	color: #64748b;
}

.maxtel-news-category-sidebar {
	position: sticky;
	top: 120px;
	display: grid;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #dfe8f1;
	border-radius: var(--maxtel-radius);
}

.maxtel-news-sidebar-cta {
	padding: 1rem;
	background: #f0f7fc;
	border: 1px solid #d7eaf7;
	border-radius: var(--maxtel-radius);
}

.maxtel-news-sidebar-cta__title {
	margin: 0 0 0.5rem;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-news-sidebar-cta p:not(.maxtel-eyebrow) {
	margin: 0 0 1rem;
	color: #64748b;
	font-size: 14px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0.4rem 0.75rem;
	background: #fff;
	border: 1px solid #d7e2ee;
	border-radius: var(--maxtel-radius);
	color: var(--maxtel-secondary);
	font-weight: 700;
}

.pagination .page-numbers.current,
.pagination a.page-numbers:hover {
	background: var(--maxtel-primary);
	border-color: var(--maxtel-primary);
	color: #fff;
}

.woocommerce nav.woocommerce-pagination {
	display: flex;
	justify-content: center;
	margin: 1.75rem 0 0;
}

.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	margin: 0;
	padding: 0.35rem;
	border: 1px solid #dce8f3;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
	list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	margin: 0;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.35rem;
	min-height: 2.35rem;
	padding: 0.35rem 0.7rem;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #f7fbff;
	color: #2d4a68;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li a.page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a.page-numbers:focus-visible {
	border-color: var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
	transform: translateY(-1px);
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.dots {
	background: transparent;
	color: #94a3b8;
}

/* Archive headings */
.maxtel-archive-header {
	margin: 1.5rem 0 2rem;
}

.maxtel-page-title {
	margin: 0 0 0.5rem;
	font-size: 32px;
	line-height: 1.25;
	color: var(--maxtel-secondary);
}

.maxtel-archive-desc {
	margin: 0;
	max-width: 760px;
	color: #64748b;
}

/* Entry */
.maxtel-single-post-page,
.maxtel-author-page {
	padding-bottom: 3rem;
}

.maxtel-single-post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 1.5rem;
	align-items: start;
}

.maxtel-single-post-main {
	min-width: 0;
}

.maxtel-entry {
	background: #fff;
	padding: 2rem;
	border-radius: var(--maxtel-radius);
	margin: 2rem 0;
	border: 1px solid #e2e8f0;
}

.maxtel-entry__title {
	margin: 0 0 0.5rem;
	color: #172033;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: 0;
}

.maxtel-entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1rem;
	color: #64748b;
	font-size: 14px;
}

.maxtel-entry__meta a {
	font-weight: 600;
}

.maxtel-entry-content {
	margin-top: 1.5rem;
	color: #334155;
	font-size: 16px;
	line-height: 1.8;
	overflow-wrap: break-word;
}

.maxtel-entry-content :where(figure, .wp-caption, .wp-block-image) {
	max-width: 100% !important;
	margin: 1.6rem auto;
	overflow: visible;
	text-align: center;
}

.maxtel-entry-content :where(.wp-block-table) {
	max-width: 100% !important;
	margin: 1.6rem 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	text-align: left;
}

.maxtel-entry-content table {
	width: 100%;
	min-width: min(620px, 100%);
	margin: 1.6rem 0;
	border: 1px solid #d5e4f0;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 10px;
	background: #fff;
	color: #334155;
	font-size: 15px;
	line-height: 1.65;
	box-shadow: 0 14px 34px rgba(15, 42, 70, 0.07);
	overflow: hidden;
}

.maxtel-entry-content > table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.maxtel-entry-content :where(.wp-block-table table) {
	display: table;
	margin: 0;
}

.maxtel-entry-content table caption {
	padding: 0.75rem 1rem;
	color: #52637a;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	caption-side: bottom;
}

.maxtel-entry-content table caption.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.maxtel-entry-content table :where(th, td) {
	padding: 0.85rem 1rem;
	border: 0;
	border-right: 1px solid #dbe8f3;
	border-bottom: 1px solid #dbe8f3;
	text-align: left;
	vertical-align: middle;
}

.maxtel-entry-content table tr > :last-child {
	border-right: 0;
}

.maxtel-entry-content table tr:last-child > :where(th, td) {
	border-bottom: 0;
}

.maxtel-entry-content table thead th {
	background: linear-gradient(180deg, #0b7fbd 0%, var(--maxtel-primary) 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.maxtel-entry-content table tbody tr:nth-child(even) > :where(th, td) {
	background: #f7fbff;
}

.maxtel-entry-content table tbody tr:hover > :where(th, td) {
	background: #eef7fd;
}

.maxtel-entry-content table tbody tr > :first-child {
	background: #f4f9fd;
	color: #1d4868;
	font-weight: 600;
}

.maxtel-entry-content table :where(a) {
	font-weight: 600;
}

.maxtel-entry-content table img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-inline: auto;
}

.maxtel-entry-content h2,
.maxtel-entry-content h3 {
	color: var(--maxtel-primary);
	line-height: 1.3;
}

.maxtel-entry-content :where(h2, h3, h4)[id] {
	scroll-margin-top: calc(var(--maxtel-site-header-height, 96px) + 1.25rem);
}

body.admin-bar .maxtel-entry-content :where(h2, h3, h4)[id] {
	scroll-margin-top: calc(var(--maxtel-site-header-height, 96px) + 3.5rem);
}

.maxtel-entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--maxtel-radius);
}

.maxtel-entry-image-trigger {
	position: relative;
	display: inline-block;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	border: 0;
	border-radius: var(--maxtel-radius);
	background: transparent;
	color: inherit;
	line-height: 0;
	cursor: zoom-in;
}

.maxtel-entry-image-trigger img {
	display: block;
	transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.maxtel-entry-image-trigger__hint {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.32rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.2);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.maxtel-entry-image-trigger:hover img,
.maxtel-entry-image-trigger:focus-visible img {
	filter: saturate(1.04) brightness(0.98);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
}

.maxtel-entry-image-trigger:hover .maxtel-entry-image-trigger__hint,
.maxtel-entry-image-trigger:focus-visible .maxtel-entry-image-trigger__hint {
	opacity: 1;
	transform: translateY(0);
}

.maxtel-entry-image-trigger:focus-visible {
	outline: 3px solid rgba(0, 115, 183, 0.24);
	outline-offset: 4px;
}

.maxtel-entry-content :where(figcaption, .wp-caption-text, .wp-element-caption, .blocks-gallery-caption) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: fit-content;
	max-width: min(100%, 720px);
	margin: 0.15rem auto 0;
	padding: 0.45rem 0.8rem;
	border: 1px solid #d7e7f2;
	border-radius: 999px;
	background: #f8fbfe;
	color: #50677f;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.maxtel-entry-content :where(figcaption, .wp-caption-text, .wp-element-caption, .blocks-gallery-caption)::before {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--maxtel-primary);
	opacity: 0.65;
}

.maxtel-entry-lightbox[hidden] {
	display: none;
}

.maxtel-entry-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 2rem);
}

.maxtel-entry-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.86);
	backdrop-filter: blur(4px);
}

.maxtel-entry-lightbox__shell {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 0.75rem;
	width: min(1120px, 100%);
	height: min(760px, calc(100vh - 4rem));
}

.maxtel-entry-lightbox__stage {
	display: grid;
	place-items: center;
	min-height: 0;
}

.maxtel-entry-lightbox__stage img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
	background: #020617;
	box-shadow: 0 24px 74px rgba(2, 6, 23, 0.38);
	object-fit: contain;
}

.maxtel-entry-lightbox__close,
.maxtel-entry-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: #0f172a;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 12px 32px rgba(2, 6, 23, 0.25);
	cursor: pointer;
}

.maxtel-entry-lightbox__close {
	top: 0;
	right: 0;
}

.maxtel-entry-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}

.maxtel-entry-lightbox__nav--prev {
	left: 0;
}

.maxtel-entry-lightbox__nav--next {
	right: 0;
}

.maxtel-entry-lightbox__close:hover,
.maxtel-entry-lightbox__nav:hover,
.maxtel-entry-lightbox__close:focus-visible,
.maxtel-entry-lightbox__nav:focus-visible {
	background: #fff;
	color: var(--maxtel-primary);
	outline: 3px solid rgba(0, 115, 183, 0.22);
}

.maxtel-entry-lightbox__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	color: #e2e8f0;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.maxtel-entry-lightbox__counter {
	color: #93c5fd;
}

body.maxtel-entry-lightbox-open {
	overflow: hidden;
}

.maxtel-entry-content :where(iframe, embed, object) {
	display: block;
	width: 100%;
	max-width: 100%;
}

.maxtel-entry-content iframe {
	min-height: min(60vw, 450px);
	border: 0;
}

.maxtel-entry-content iframe[src*="maps"],
.maxtel-entry-content iframe[src*="google.com"] {
	aspect-ratio: 4 / 3;
	height: auto;
}

.maxtel-entry-content :where(figure, .wp-caption, .wp-block-image) img {
	width: auto;
	max-width: 100%;
	height: auto;
}

.maxtel-entry__footer {
	display: grid;
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid #e8eef4;
	color: #64748b;
	font-size: 14px;
}

.maxtel-entry-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.maxtel-entry-tags a {
	display: inline-flex;
	padding: 0.35rem 0.6rem;
	background: #f0f7fc;
	border: 1px solid #d7eaf7;
	border-radius: var(--maxtel-radius);
	font-weight: 700;
}

.maxtel-post-toc {
	--maxtel-toc-border: #d7e7f2;
	--maxtel-toc-surface: #f8fbfe;
	--maxtel-toc-active: #eef7fd;
	--maxtel-toc-text: #51677c;
	--maxtel-toc-muted: #6b7f93;
	--maxtel-toc-guide: #dbeaf5;
	margin: 1.25rem 0 0;
	overflow: hidden;
	border: 1px solid var(--maxtel-toc-border);
	border-radius: var(--maxtel-radius);
	background: var(--maxtel-toc-surface);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.maxtel-post-toc--sidebar {
	--maxtel-toc-surface: #fff;
	margin: 0;
	box-shadow: none;
}

.maxtel-post-toc summary {
	list-style: none;
}

.maxtel-post-toc summary::-webkit-details-marker {
	display: none;
}

.maxtel-post-toc__summary {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-height: 54px;
	padding: 0.85rem 1rem;
	color: #172033;
	cursor: pointer;
}

.maxtel-post-toc__title {
	flex: 1;
	min-width: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.maxtel-post-toc__count {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0.25rem 0.55rem;
	border: 1px solid #cde4f5;
	border-radius: 999px;
	background: #fff;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.maxtel-post-toc__chevron {
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.18s ease;
}

.maxtel-post-toc[open] .maxtel-post-toc__chevron {
	transform: translateY(2px) rotate(225deg);
}

.maxtel-post-toc__list {
	display: grid;
	gap: 0.12rem;
	max-height: min(52vh, 460px);
	margin: 0;
	padding: 0 0.75rem 0.85rem;
	overflow-y: auto;
	list-style: none;
	scrollbar-width: thin;
}

.maxtel-post-toc__item {
	margin: 0;
	padding: 0;
}

.maxtel-post-toc__item a {
	position: relative;
	display: block;
	padding: 0.42rem 0.55rem 0.42rem 1rem;
	border-radius: 7px;
	color: var(--maxtel-toc-text);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.maxtel-post-toc__item a::before {
	content: "";
	position: absolute;
	top: 0.95rem;
	left: 0.35rem;
	width: 5px;
	height: 5px;
	border-radius: 999px;
	background: #9eb4c7;
}

.maxtel-post-toc__item--h2 a {
	color: #245a7d;
	font-weight: 600;
}

.maxtel-post-toc__item--h2 a::before {
	width: 5px;
	height: 5px;
	background: #7da9c7;
}

.maxtel-post-toc__item--h3 a {
	margin-left: 0.72rem;
	padding-left: 1.12rem;
	border-left: 1px solid var(--maxtel-toc-guide);
	color: #50677f;
	font-size: 12.5px;
	font-weight: 500;
}

.maxtel-post-toc__item--h3 a::before {
	left: 0.48rem;
	width: 4px;
	height: 4px;
	background: #a7bbce;
}

.maxtel-post-toc__item--h4 a {
	margin-left: 1.35rem;
	padding-left: 1rem;
	border-left: 1px dashed var(--maxtel-toc-guide);
	color: var(--maxtel-toc-muted);
	font-size: 12px;
	font-weight: 500;
}

.maxtel-post-toc__item--h4 a::before {
	left: 0.42rem;
	width: 3px;
	height: 3px;
	background: #bfccd9;
}

.maxtel-post-toc__item a:hover,
.maxtel-post-toc__item a:focus-visible,
.maxtel-post-toc__item a.is-active {
	background: var(--maxtel-toc-active);
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-post-toc__item a:hover::before,
.maxtel-post-toc__item a:focus-visible::before,
.maxtel-post-toc__item a.is-active::before {
	background: var(--maxtel-primary);
}

.maxtel-single-post-sidebar {
	--maxtel-post-sidebar-offset: calc(var(--maxtel-site-header-height, 96px) + 1rem);
	position: sticky;
	top: var(--maxtel-post-sidebar-offset);
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

body.admin-bar .maxtel-single-post-sidebar {
	--maxtel-post-sidebar-offset: calc(var(--maxtel-site-header-height, 96px) + 32px + 1rem);
}

.maxtel-layout-sidebar-left .maxtel-single-post-layout,
.maxtel-layout-sidebar-left .maxtel-news-category-layout {
	grid-template-columns: 340px minmax(0, 1fr);
}

.maxtel-layout-sidebar-left .maxtel-single-post-main,
.maxtel-layout-sidebar-left .maxtel-news-category-list {
	order: 2;
}

.maxtel-layout-sidebar-left .maxtel-single-post-sidebar,
.maxtel-layout-sidebar-left .maxtel-news-category-sidebar {
	order: 1;
}

.maxtel-layout-sidebar-none .maxtel-single-post-layout,
.maxtel-layout-sidebar-none .maxtel-news-category-layout {
	grid-template-columns: minmax(0, 1fr);
}

.maxtel-layout-sidebar-none .maxtel-single-post-sidebar,
.maxtel-layout-sidebar-none .maxtel-news-category-sidebar {
	display: none;
}

body.maxtel-layout-sidebar-none .maxtel-news-topic-page .maxtel-news-category-sidebar {
	display: grid;
}

@media (min-width: 993px) {
	.maxtel-post-toc--inline {
		display: none;
	}

	body.maxtel-layout-sidebar-none .maxtel-post-toc--inline {
		display: block;
		margin-top: 1.25rem;
	}
}

@media (min-width: 1025px) {
	body.maxtel-layout-sidebar-none .maxtel-news-topic-page .maxtel-news-category-layout {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

.maxtel-single-sidebar-block,
.maxtel-author-box,
.maxtel-author-hero {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
}

.maxtel-single-sidebar-block {
	padding: 1rem;
}

.maxtel-single-sidebar-block h2 {
	margin: 0 0 1rem;
	font-size: 16px;
	line-height: 1.35;
}

.maxtel-sidebar-product-list,
.maxtel-compact-post-list {
	display: grid;
	gap: 0.75rem;
}

.maxtel-sidebar-more {
	justify-content: center;
	width: 100%;
	min-height: 38px;
	margin-top: 1rem;
	padding: 0.5rem 0.9rem;
	font-size: 14px;
	border-width: 1px;
}

.maxtel-sidebar-product a,
.maxtel-compact-post {
	display: grid;
	gap: 0.75rem;
	align-items: center;
	color: inherit;
}

.maxtel-sidebar-product a {
	grid-template-columns: 76px minmax(0, 1fr);
}

.maxtel-compact-post {
	--maxtel-compact-thumb-width: 124px;
	grid-template-columns: var(--maxtel-compact-thumb-width) minmax(0, 1fr);
	align-items: center;
}

.maxtel-sidebar-product__image,
.maxtel-compact-post__media {
	display: grid;
	place-items: center;
	overflow: hidden;
	background: #f1f5f9;
	border-radius: var(--maxtel-radius);
}

.maxtel-sidebar-product__image {
	aspect-ratio: 1;
}

.maxtel-compact-post__media {
	width: var(--maxtel-compact-thumb-width);
	height: auto;
	aspect-ratio: 16 / 10;
	border: 1px solid #e8eef4;
	background: #e8f0f8;
	border-radius: calc(var(--maxtel-radius) - 3px);
}

.maxtel-sidebar-product__image img,
.maxtel-compact-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.maxtel-compact-post__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
}

.maxtel-sidebar-product h3,
.maxtel-compact-post h3 {
	margin: 0 0 0.25rem;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
}

.maxtel-sidebar-product h3 a,
.maxtel-compact-post h3 a {
	color: var(--maxtel-secondary);
	font-weight: 500;
}

.maxtel-sidebar-product span,
.maxtel-compact-post .posted-on {
	color: #64748b;
	font-size: 13px;
	font-weight: 400;
}

.maxtel-sidebar-product .maxtel-price-contact {
	font-weight: 400;
}

.maxtel-compact-post__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e6f3fb 0%, #fff5ed 100%);
	color: var(--maxtel-primary);
	font-size: 13px;
	font-weight: 700;
}

.maxtel-author-box {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 1.1rem;
	align-items: center;
	margin: 1.5rem 0 2rem;
	padding: 1.35rem;
	background: linear-gradient(135deg, #fff 0%, #f8fbff 68%, #eef7fd 100%);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.maxtel-author-box__avatar {
	width: 82px;
	height: 82px;
}

.maxtel-author-box__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #fff;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.maxtel-author-hero__avatar img {
	border-radius: 50%;
}

.maxtel-author-box h2,
.maxtel-author-box p {
	margin: 0;
}

.maxtel-author-box h2 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
}

.maxtel-author-box h2 a {
	color: var(--maxtel-secondary);
}

.maxtel-author-box__content {
	display: grid;
	gap: 0.65rem;
}

.maxtel-author-box__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.maxtel-author-box__head .maxtel-eyebrow {
	margin-bottom: 0.2rem;
}

.maxtel-author-box__count {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-height: 28px;
	padding: 0.3rem 0.65rem;
	border: 1px solid #d7eaf7;
	border-radius: 999px;
	background: #fff;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
}

.maxtel-author-box__content > p:not(.maxtel-eyebrow) {
	color: #475569;
	line-height: 1.65;
}

.maxtel-author-box__links {
	display: flex;
	flex-wrap: wrap;
	justify-self: start;
	width: fit-content;
	max-width: 100%;
	gap: 0.4rem;
	font-size: 14px;
	font-weight: 600;
}

.maxtel-author-box__links a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0.32rem 0.65rem;
	border: 1px solid #d7eaf7;
	border-radius: 999px;
	background: #fff;
}

.maxtel-post-rating-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 1.5rem;
	padding: 1rem 1.15rem;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
}

.maxtel-post-rating-summary__body {
	display: grid;
	gap: 0.25rem;
}

.maxtel-post-rating-summary h2,
.maxtel-post-rating-summary p {
	margin: 0;
}

.maxtel-post-rating-summary h2 {
	color: #172033;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
}

.maxtel-post-rating-summary p {
	color: #64748b;
	font-size: 14px;
	line-height: 1.5;
}

.maxtel-post-rating-summary__score {
	display: grid;
	gap: 0.2rem;
	min-width: 108px;
	text-align: right;
}

.maxtel-post-rating-summary__score strong {
	color: var(--maxtel-primary);
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

.maxtel-post-rating-stars,
.maxtel-post-comment-rating {
	color: #f59e0b;
	letter-spacing: 0;
}

.maxtel-post-comment-rating {
	margin-bottom: 0.35rem;
}

.maxtel-post-comment-form .comment-form-rating {
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
}

.maxtel-post-comment-form .comment-form-rating legend {
	display: block;
	margin-bottom: 0.45rem;
	color: #172033;
	font-weight: 600;
}

.single-post .comment-respond {
	position: relative;
	margin: 1.5rem 0 0;
	padding: 1.15rem;
	border: 1px solid #d7e7f2;
	border-radius: var(--maxtel-radius);
	background: linear-gradient(135deg, #ffffff 0%, #f7fbff 70%, #ffffff 100%);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.single-post .comment-respond::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1.15rem;
	right: 1.15rem;
	height: 3px;
	border-radius: 0 0 999px 999px;
	background: linear-gradient(90deg, var(--maxtel-primary), rgba(232, 93, 4, 0.88));
}

.single-post .comment-reply-title {
	margin: 0 0 0.45rem;
	color: #172033;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.single-post .comment-reply-title small {
	margin-left: 0.5rem;
	font-size: 13px;
	font-weight: 700;
}

.single-post .comment-reply-title a {
	color: var(--maxtel-primary);
	text-decoration: none;
}

.maxtel-post-comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem 1rem;
	margin: 0;
}

.maxtel-post-comment-form > * {
	min-width: 0;
}

.maxtel-post-comment-form .comment-notes,
.maxtel-post-comment-form .comment-form-rating,
.maxtel-post-comment-form .comment-form-comment,
.maxtel-post-comment-form .comment-form-url,
.maxtel-post-comment-form .comment-form-cookies-consent,
.maxtel-post-comment-form .form-submit,
.maxtel-post-comment-form .logged-in-as {
	grid-column: 1 / -1;
}

.maxtel-post-comment-form p,
.maxtel-post-comment-form fieldset {
	margin: 0;
}

.maxtel-post-comment-form .comment-notes,
.maxtel-post-comment-form .logged-in-as {
	position: relative;
	padding: 0.68rem 0.8rem 0.68rem 2.35rem;
	border: 1px solid #d7eaf7;
	border-radius: 8px;
	background: #eef7fd;
	color: #40516a;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.55;
}

.maxtel-post-comment-form .comment-notes::before,
.maxtel-post-comment-form .logged-in-as::before {
	content: "i";
	position: absolute;
	top: 0.74rem;
	left: 0.85rem;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: var(--maxtel-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-post-comment-form label,
.maxtel-post-comment-form legend {
	display: block;
	margin: 0 0 0.38rem;
	color: #172033;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-post-comment-form .required {
	color: #d72638;
	font-weight: 700;
}

.single-post #commentform.maxtel-post-comment-form input[type="text"],
.single-post #commentform.maxtel-post-comment-form input[type="email"],
.single-post #commentform.maxtel-post-comment-form input[type="url"],
.single-post #commentform.maxtel-post-comment-form textarea {
	width: 100%;
	min-height: 46px;
	padding: 0.72rem 0.82rem;
	border: 1px solid #dbe7f0;
	border-radius: 8px;
	background: #fff;
	color: #172033;
	font: inherit;
	font-size: 15px;
	line-height: 1.45;
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.02);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.single-post #commentform.maxtel-post-comment-form textarea {
	min-height: 156px;
	resize: vertical;
}

.single-post #commentform.maxtel-post-comment-form input[type="text"]:focus,
.single-post #commentform.maxtel-post-comment-form input[type="email"]:focus,
.single-post #commentform.maxtel-post-comment-form input[type="url"]:focus,
.single-post #commentform.maxtel-post-comment-form textarea:focus {
	border-color: var(--maxtel-primary);
	background: #fbfdff;
	box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12);
	outline: 0;
}

.maxtel-post-comment-form .maxtel-review-rating-options {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.45rem;
	max-width: 520px;
	padding: 0.18rem 0 0;
}

.maxtel-post-comment-form .maxtel-review-rating-options label {
	position: relative;
	display: grid;
	place-items: center;
	gap: 0.12rem;
	min-height: 54px;
	padding: 0.42rem 0.36rem;
	border-color: #d7eaf7;
	border-radius: 12px;
	background: #fff;
	color: #172033;
	text-align: center;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.maxtel-post-comment-form .maxtel-review-rating-options input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.maxtel-post-comment-form .maxtel-review-rating-options label:hover,
.maxtel-post-comment-form .maxtel-review-rating-options label:focus-within {
	border-color: rgba(0, 115, 183, 0.5);
	background: #f8fbfe;
	box-shadow: 0 10px 24px rgba(0, 115, 183, 0.08);
	transform: translateY(-1px);
}

.maxtel-post-comment-form .maxtel-review-rating-options label:has(input:checked) {
	border-color: rgba(0, 115, 183, 0.72);
	background: #eaf6fd;
	box-shadow: 0 12px 26px rgba(0, 115, 183, 0.13);
}

.maxtel-post-comment-form .maxtel-review-rating-options input:checked + span {
	color: #f59e0b;
}

.maxtel-post-comment-form .maxtel-review-rating-options span {
	color: #f59e0b;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.maxtel-post-comment-form .maxtel-review-rating-options small {
	color: #475569;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.maxtel-post-comment-form .comment-form-cookies-consent label {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	margin: 0;
	padding: 0.7rem 0.8rem;
	border: 1px dashed #cfe0ee;
	border-radius: 8px;
	background: #fff;
	color: #475569;
	font-size: 14px;
	font-weight: 600;
}

.maxtel-post-comment-form .comment-form-cookies-consent input {
	flex: 0 0 auto;
	margin-top: 0.18rem;
	accent-color: var(--maxtel-primary);
}

.maxtel-post-comment-form .form-submit {
	display: flex;
	justify-content: flex-start;
	padding-top: 0.1rem;
}

.single-post #commentform.maxtel-post-comment-form .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	margin-top: 0;
	padding: 0.72rem 1.15rem;
	border: 1px solid var(--maxtel-primary);
	border-radius: 8px;
	background: var(--maxtel-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0, 115, 183, 0.2);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.single-post #commentform.maxtel-post-comment-form .submit:hover,
.single-post #commentform.maxtel-post-comment-form .submit:focus-visible {
	border-color: var(--maxtel-primary-dark);
	background: var(--maxtel-primary-dark);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(0, 115, 183, 0.26);
	outline: 0;
}

@media (max-width: 640px) {
	.single-post .comment-respond {
		margin-top: 1rem;
		padding: 0.95rem;
		border-radius: 10px;
	}

	.single-post .comment-respond::before {
		left: 0.95rem;
		right: 0.95rem;
	}

	.single-post .comment-reply-title {
		font-size: 20px;
	}

	.maxtel-post-comment-form {
		grid-template-columns: 1fr;
		gap: 0.78rem;
	}

	.maxtel-post-comment-form .comment-notes,
	.maxtel-post-comment-form .logged-in-as {
		padding: 0.62rem 0.68rem 0.62rem 2.15rem;
		font-size: 13px;
	}

	.maxtel-post-comment-form .comment-notes::before,
	.maxtel-post-comment-form .logged-in-as::before {
		left: 0.72rem;
	}

	.single-post #commentform.maxtel-post-comment-form textarea {
		min-height: 132px;
	}

	.maxtel-post-comment-form .maxtel-review-rating-options {
		max-width: 100%;
		min-width: 0;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 0.32rem;
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.maxtel-post-comment-form .maxtel-review-rating-options label {
		min-height: 48px;
		padding: 0.35rem 0.2rem;
		scroll-snap-align: none;
	}

	.maxtel-post-comment-form .maxtel-review-rating-options span {
		font-size: 16px;
	}

	.maxtel-post-comment-form .maxtel-review-rating-options small {
		font-size: 11px;
	}

	.maxtel-post-comment-form .form-submit {
		display: grid;
		grid-template-columns: 1fr;
		justify-items: stretch;
	}

	.single-post #commentform.maxtel-post-comment-form input[type="submit"].submit {
		inline-size: 100%;
		max-width: 100%;
		width: 100%;
	}
}

/* Author archive */
.maxtel-author-hero {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.25fr);
	gap: 1.25rem;
	align-items: stretch;
	margin: 1.5rem 0 2.5rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, #fff 0%, #eef7fd 70%, #fff7f1 100%);
}

.maxtel-author-hero__profile {
	display: grid;
	grid-template-columns: 128px minmax(0, 1fr);
	gap: 1rem;
	align-content: start;
	align-items: center;
	min-width: 0;
	padding: 1rem;
	border: 1px solid rgba(215, 228, 240, 0.82);
	border-radius: var(--maxtel-radius);
	background: rgba(255, 255, 255, 0.48);
}

.maxtel-author-hero__avatar {
	width: 128px;
	height: 128px;
}

.maxtel-author-hero__avatar img {
	width: 100%;
	height: 100%;
	border: 4px solid #fff;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.maxtel-author-hero__identity {
	min-width: 0;
}

.maxtel-author-hero__identity .maxtel-eyebrow {
	margin-bottom: 0.35rem;
}

.maxtel-author-hero__identity .maxtel-page-title {
	margin-bottom: 0.35rem;
}

.maxtel-author-hero__role {
	margin: 0;
	color: var(--maxtel-primary);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}

.maxtel-author-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0.85rem;
}

.maxtel-author-social {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid #d7eaf7;
	border-radius: 50%;
	background: #fff;
	color: var(--maxtel-primary);
	box-shadow: 0 8px 18px rgba(0, 115, 183, 0.08);
}

.maxtel-author-social:hover,
.maxtel-author-social:focus-visible {
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-author-socials__empty {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0.35rem 0.7rem;
	border: 1px solid #d7eaf7;
	border-radius: var(--maxtel-radius-pill);
	background: #fff;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

.maxtel-author-profile-summary-list {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0.25rem 0 0;
	overflow: hidden;
	border: 1px solid #d7e4f0;
	border-radius: var(--maxtel-radius);
	background: rgba(255, 255, 255, 0.78);
}

.maxtel-author-profile-summary-list__item {
	display: grid;
	gap: 0.32rem;
	min-width: 0;
	padding: 0.8rem 0.9rem;
	border-right: 1px solid #d7e4f0;
}

.maxtel-author-profile-summary-list__item:last-child {
	border-right: 0;
}

.maxtel-author-hero__content {
	display: grid;
	gap: 1rem;
	min-width: 0;
}

.maxtel-author-bio {
	max-width: 760px;
	margin: 0;
	color: #475569;
	line-height: 1.65;
}

.maxtel-author-profile-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	overflow: hidden;
	border: 1px solid #d7e4f0;
	border-radius: var(--maxtel-radius);
	background: rgba(255, 255, 255, 0.72);
}

.maxtel-author-profile-list__item {
	display: grid;
	gap: 0.35rem;
	min-width: 0;
	padding: 0.9rem 1rem;
	border-right: 1px solid #d7e4f0;
	border-bottom: 1px solid #d7e4f0;
}

.maxtel-author-profile-list__item:nth-child(1) {
	grid-column: 1;
	grid-row: 1;
}

.maxtel-author-profile-list__item:nth-child(4) {
	grid-column: 2;
	grid-row: 1;
	border-right: 0;
}

.maxtel-author-profile-list__item:nth-child(2),
.maxtel-author-profile-list__item:nth-child(3) {
	grid-column: 1 / -1;
	border-right: 0;
}

.maxtel-author-profile-list__item:nth-child(2) {
	grid-row: 2;
}

.maxtel-author-profile-list__item:nth-child(3) {
	grid-row: 3;
	border-bottom: 0;
}

.maxtel-author-profile-list dt {
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.maxtel-author-profile-summary-list dt {
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	text-transform: uppercase;
}

.maxtel-author-profile-list dd,
.maxtel-author-profile-summary-list dd {
	margin: 0;
	color: var(--maxtel-secondary);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.55;
}

.maxtel-author-profile-list__item:nth-child(2) dd,
.maxtel-author-profile-list__item:nth-child(3) dd {
	color: #475569;
	font-weight: 400;
	line-height: 1.65;
}

.maxtel-author-hero__content .maxtel-author-profile-list {
	grid-template-columns: 1fr;
}

.maxtel-author-hero__content .maxtel-author-profile-list__item,
.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(1),
.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(2),
.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(3),
.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(4) {
	grid-column: 1 / -1;
	grid-row: auto;
	border-right: 0;
	border-bottom: 1px solid #d7e4f0;
}

.maxtel-author-hero__content .maxtel-author-profile-list__item:last-child {
	border-bottom: 0;
}

.maxtel-author-posts {
	margin: 2.5rem 0;
}

.maxtel-author-posts .maxtel-post-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

/* Breadcrumbs */
.maxtel-breadcrumbs {
	font-size: 13px;
	padding: 1rem 0;
	color: #64748b;
}

.site-main > .maxtel-breadcrumbs {
	width: min(100% - var(--maxtel-layout-gutter, 2rem), var(--maxtel-layout-container, var(--maxtel-container)));
	margin-inline: auto;
}

.maxtel-layout-page.maxtel-layout-width-full > .maxtel-breadcrumbs {
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.maxtel-breadcrumbs a {
	color: #64748b;
}

.maxtel-breadcrumbs,
.maxtel-footer-contact,
.maxtel-footer-list {
	overflow-wrap: break-word;
}

/* Footer */
.maxtel-footer {
	background: var(--maxtel-footer-bg);
	color: #94a3b8;
	padding: 3rem 0 0;
	margin-top: 3rem;
}

.maxtel-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 2rem 1.5rem;
	padding-bottom: 2.5rem;
}

.maxtel-footer__logo-wrap {
	background: #fff;
	border-radius: var(--maxtel-radius);
	padding: 0.75rem 1rem;
	display: inline-block;
	margin-bottom: 1rem;
}

.maxtel-footer__logo-fallback {
	font-size: 24px;
	font-weight: 700;
	color: var(--maxtel-primary);
}

.maxtel-footer__company {
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin: 0 0 0.75rem;
	line-height: 1.4;
}

.maxtel-footer__desc,
.maxtel-footer__meta {
	font-size: 13px;
	line-height: 1.65;
	margin: 0 0 0.5rem;
	color: #94a3b8;
}

.maxtel-footer__meta strong {
	color: #e2e8f0;
}

.maxtel-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0;
}

.maxtel-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #1e293b;
	color: #cbd5e1;
	transition: background 0.2s, color 0.2s;
}

.maxtel-social:hover {
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.maxtel-footer-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0.35rem 0.5rem;
	border: 1px solid #334155;
	border-radius: 4px;
	color: #64748b;
	text-transform: uppercase;
}

a.maxtel-footer-badge:hover {
	border-color: var(--maxtel-primary);
	color: #fff;
}

.maxtel-footer-badge--moit {
	border-color: rgba(56, 189, 248, 0.45);
	color: #bae6fd;
}

.maxtel-footer-badge--image {
	padding: 0.25rem;
	background: #fff;
}

.maxtel-footer-badge__image {
	display: block;
	width: auto;
	max-width: 160px;
	max-height: 40px;
	object-fit: contain;
}

.maxtel-footer__title {
	margin: 0 0 1rem;
	font-size: 13px;
	font-weight: 700;
	color: var(--maxtel-accent-light);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	gap: 5px;
}

.maxtel-footer__title-bar {
	color: var(--maxtel-primary);
	font-weight: 400;
}

.maxtel-footer-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.maxtel-footer-list li {
	position: relative;
	padding-left: 0.85rem;
	margin-bottom: 0.45rem;
}

.maxtel-footer-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #475569;
}

.maxtel-footer-list a {
	color: #94a3b8;
	font-size: 13px;
}

.maxtel-footer-list a:hover {
	color: #fff;
}

.maxtel-footer-contact {
	list-style: none;
	margin: 0;
	padding: 0;
}

.maxtel-footer-contact li {
	display: flex;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
	font-size: 13px;
	line-height: 1.55;
}

.maxtel-footer-contact__icon {
	flex-shrink: 0;
	color: var(--maxtel-accent-light);
	margin-top: 0.15rem;
}

.maxtel-footer-contact a {
	color: #94a3b8;
}

.maxtel-footer-contact a:hover {
	color: #fff;
}

.maxtel-footer__bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0 1.25rem;
	border-top: 1px solid rgba(148, 163, 184, 0.2);
	font-size: 12px;
}

.maxtel-footer__copyright {
	margin: 0;
	color: #cbd5e1;
}

.maxtel-footer__legal {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.maxtel-footer__legal a {
	color: #94a3b8;
}

.maxtel-footer__legal a:hover {
	color: #fff;
}

.maxtel-footer__payments {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	flex-wrap: wrap;
}

.maxtel-footer__payments-label {
	color: #cbd5e1;
	margin-right: 0.25rem;
}

.maxtel-pay-badge {
	font-size: 12px;
	font-weight: 700;
	padding: 0.25rem 0.4rem;
	border-radius: 3px;
	letter-spacing: 0.02em;
}

.maxtel-pay-badge--visa { background: #1a1f71; color: #fff; }
.maxtel-pay-badge--master { background: #eb001b; color: #fff; }
.maxtel-pay-badge--momo { background: #a50064; color: #fff; }
.maxtel-pay-badge--vnpay { background: #005baa; color: #fff; }

/* Floating contact actions */
.maxtel-floating-actions {
	position: fixed;
	right: 18px;
	bottom: 18px;
	right: max(18px, env(safe-area-inset-right));
	bottom: max(18px, env(safe-area-inset-bottom));
	z-index: 510;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	pointer-events: none;
}

.maxtel-floating-actions--bottom-left {
	right: auto;
	left: 18px;
	left: max(18px, env(safe-area-inset-left));
	align-items: flex-start;
}

.maxtel-floating-actions[hidden],
.maxtel-floating-action[hidden] {
	display: none !important;
}

.maxtel-floating-action {
	pointer-events: auto;
	position: relative;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	width: 48px;
	min-width: 48px;
	max-width: calc(100vw - 32px);
	height: 48px;
	min-height: 48px;
	padding: 7px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 999px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	transition:
		width 0.2s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease,
		background 0.18s ease;
	will-change: transform;
}

.maxtel-floating-actions:not(.maxtel-floating-actions--bottom-left) .maxtel-floating-action {
	flex-direction: row-reverse;
	text-align: right;
}

.maxtel-floating-action--call:hover,
.maxtel-floating-action--call:focus-visible {
	width: 188px;
}

.maxtel-floating-action--zalo:hover,
.maxtel-floating-action--zalo:focus-visible {
	width: 154px;
}

.maxtel-floating-action--top:hover,
.maxtel-floating-action--top:focus-visible {
	width: 132px;
}

.maxtel-floating-action:hover,
.maxtel-floating-action:focus-visible {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.2);
	text-decoration: none;
}

.maxtel-floating-action:focus-visible {
	outline: 3px solid rgba(0, 115, 183, 0.24);
	outline-offset: 3px;
}

.maxtel-floating-action__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
}

.maxtel-floating-action__icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.maxtel-floating-action--zalo .maxtel-floating-action__icon svg {
	width: 28px;
	height: 16px;
}

.maxtel-floating-action__body {
	display: grid;
	gap: 1px;
	flex: 0 0 auto;
	min-width: 0;
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateX(6px);
	transition: max-width 0.2s ease, opacity 0.16s ease, transform 0.2s ease;
}

.maxtel-floating-actions:not(.maxtel-floating-actions--bottom-left) .maxtel-floating-action__body {
	transform: translateX(-6px);
}

.maxtel-floating-action:hover .maxtel-floating-action__body,
.maxtel-floating-action:focus-visible .maxtel-floating-action__body {
	max-width: 140px;
	opacity: 1;
	transform: translateX(0);
}

.maxtel-floating-actions:not(.maxtel-floating-actions--bottom-left) .maxtel-floating-action:hover .maxtel-floating-action__body,
.maxtel-floating-actions:not(.maxtel-floating-actions--bottom-left) .maxtel-floating-action:focus-visible .maxtel-floating-action__body {
	transform: translateX(0);
}

.maxtel-floating-action__text,
.maxtel-floating-action__meta {
	display: block;
	white-space: nowrap;
}

.maxtel-floating-action__meta {
	font-size: 12px;
	font-weight: 600;
	line-height: 14px;
	opacity: 0.82;
}

.maxtel-floating-action--call {
	border-color: rgba(0, 115, 183, 0.36);
	background: #0073b7;
	color: #fff;
}

.maxtel-floating-action--call::before,
.maxtel-floating-action--zalo::before {
	content: "";
	position: absolute;
	inset: -8px;
	z-index: -1;
	border: 2px solid transparent;
	border-radius: inherit;
	opacity: 0;
	animation: none;
	pointer-events: none;
}

.maxtel-floating-action--call::before {
	border-color: rgba(239, 68, 68, 0.78);
	background: rgba(239, 68, 68, 0.16);
	box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.12), 0 0 20px rgba(239, 68, 68, 0.18);
}

.maxtel-floating-action--zalo::before {
	border-color: rgba(0, 86, 214, 0.78);
	background: rgba(0, 104, 255, 0.16);
	box-shadow: 0 0 0 5px rgba(0, 104, 255, 0.12), 0 0 20px rgba(0, 104, 255, 0.18);
}

.maxtel-floating-action--call:hover,
.maxtel-floating-action--call:focus-visible {
	background: #005f99;
	color: #fff;
}

.maxtel-floating-action--zalo {
	border-color: rgba(0, 104, 255, 0.34);
	background: #0068ff;
	color: #fff;
}

.maxtel-floating-action--zalo:hover,
.maxtel-floating-action--zalo:focus-visible {
	background: #0056d6;
	color: #fff;
}

.maxtel-floating-action--top {
	background: #fff;
	color: var(--maxtel-secondary);
}

.maxtel-floating-action--top .maxtel-floating-action__icon {
	background: #eef7fd;
	color: var(--maxtel-primary);
}

body:has(.maxtel-compare-tray:not([hidden])) .maxtel-floating-actions--bottom-left {
	bottom: 156px;
}

@keyframes maxtel-floating-pulse {
	0% {
		opacity: 0.56;
		transform: scale(0.92);
	}

	70%,
	100% {
		opacity: 0;
		transform: scale(1.22);
	}
}

@keyframes maxtel-floating-enter {
	from {
		opacity: 0;
		transform: translateY(8px) scale(0.94);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.maxtel-floating-action--call::before,
	.maxtel-floating-action--zalo::before {
		animation: maxtel-floating-pulse 2.8s ease-out infinite;
	}

	.maxtel-floating-action--zalo::before {
		animation-delay: 1.4s;
	}

	.maxtel-floating-action--top:not([hidden]) {
		animation: maxtel-floating-enter 0.28s ease-out both;
	}
}

@keyframes maxtel-quote-card-shimmer {
	0%,
	58% {
		transform: translateX(-115%);
	}

	82%,
	100% {
		transform: translateX(115%);
	}
}

@keyframes maxtel-quote-icon-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
	}

	50% {
		transform: scale(1.08);
		box-shadow: 0 10px 24px rgba(249, 115, 22, 0.42);
	}
}
@media (prefers-reduced-motion: reduce) {
	.maxtel-product-quote-card::before,
	.maxtel-product-quote-card__price-icon {
		animation: none;
	}

	.maxtel-product-quote-card__action {
		transition: none;
	}

	.maxtel-floating-action {
		transition: none;
	}

	.maxtel-floating-action--call::before,
	.maxtel-floating-action--zalo::before {
		animation: none;
	}

	.maxtel-floating-action--top {
		animation: none;
	}

	.maxtel-floating-action:hover,
	.maxtel-floating-action:focus-visible {
		transform: none;
	}
}

/* WooCommerce overrides */
.maxtel-cat-hero {
	display: block;
	max-width: 880px;
	margin: 1rem 0 1.25rem;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.maxtel-cat-hero__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--maxtel-primary);
}

.maxtel-cat-hero__title {
	max-width: 860px;
	margin: 0 0 0.85rem;
	font-size: 48px;
	line-height: 14px;
}
.maxtel-cat-hero__intro {
	max-width: 860px;
	margin: 0.1rem 0 0;
	padding: 0.95rem 1.1rem 0.95rem 1.2rem;
	border-left: 4px solid var(--maxtel-primary);
	border-radius: 0 8px 8px 0;
	background: linear-gradient(90deg, rgba(0, 129, 196, 0.08), rgba(255, 255, 255, 0));
	color: #40516a;
}

.maxtel-cat-hero__intro p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

.maxtel-cat-hero__desc {
	color: #475569;
	max-width: 760px;
	font-size: 16px;
	line-height: 1.7;
}

.maxtel-cat-hero__desc p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	margin: 0;
}

.maxtel-cat-trust {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem;
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
}

.maxtel-cat-trust li {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	font-size: 14px;
	font-weight: 600;
	color: #334155;
}

.maxtel-cat-trust svg {
	color: var(--maxtel-primary);
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.maxtel-cat-hero__media {
	margin: 0;
	border-radius: var(--maxtel-radius);
	overflow: hidden;
	background: #f1f5f9;
	min-height: 240px;
}

.maxtel-cat-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.maxtel-cat-filter {
	margin: 0 0 1.75rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid #dde7f0;
	border-radius: var(--maxtel-radius);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.maxtel-cat-filter__toggle {
	display: none;
}

.maxtel-cat-filter__panel {
	display: block;
}

.maxtel-cat-filter__head {
	margin-bottom: 1rem;
}

.maxtel-cat-filter__title {
	margin: 0 0 0.25rem;
	font-size: 18px;
	font-weight: 700;
	color: #172033;
}

.maxtel-cat-filter__head p {
	margin: 0;
	color: #5f6f85;
	font-size: 14px;
}

.maxtel-cat-filter__form {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 0.85rem;
	align-items: end;
}

.maxtel-cat-filter__attributes {
	display: grid;
	gap: 0.85rem;
	min-width: 0;
}

.maxtel-cat-filter__form label {
	display: grid;
	gap: 5px;
	font-size: 13px;
	font-weight: 700;
	color: #243349;
}

.maxtel-cat-filter__field {
	display: grid;
	gap: 5px;
	min-width: 0;
}

.maxtel-cat-filter__field-label {
	color: #243349;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-cat-filter__form input,
.maxtel-cat-filter__form select {
	width: 100%;
	min-height: 42px;
	border: 1px solid #cfd9e5;
	border-radius: var(--maxtel-radius);
	background-color: #fff;
	color: #172033;
	padding: 0.55rem 0.75rem;
	font: inherit;
	font-weight: 600;
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.02);
}

.maxtel-cat-filter__form select {
	appearance: none;
	padding-right: 2.25rem;
	cursor: pointer;
}

.maxtel-cat-select {
	position: relative;
	display: block;
	min-width: 0;
}

.maxtel-cat-select:not(.is-enhanced)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.85rem;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: #60758a;
	pointer-events: none;
	transform: translateY(-65%) rotate(45deg);
}

.maxtel-cat-select.is-enhanced select {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.maxtel-cat-select__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 42px;
	border: 1px solid #cfd9e5;
	border-radius: var(--maxtel-radius);
	padding: 0 0.75rem;
	background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
	box-shadow: inset 0 1px 0 rgba(15, 23, 42, 0.02);
	color: #243349;
	font-family: var(--maxtel-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.maxtel-cat-select__button[hidden] {
	display: none;
}

.maxtel-cat-select__button span:first-child {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.maxtel-cat-select__button:hover,
.maxtel-cat-select__button:focus-visible,
.maxtel-cat-select.is-open .maxtel-cat-select__button {
	border-color: var(--maxtel-primary);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12);
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-cat-select__chevron {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: #60758a;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.16s ease;
}

.maxtel-cat-select.is-open .maxtel-cat-select__chevron {
	transform: translateY(2px) rotate(225deg);
}

.maxtel-cat-select__menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 370;
	display: grid;
	gap: 3px;
	min-width: 100%;
	max-width: min(280px, calc(100vw - 2rem));
	max-height: min(320px, calc(100vh - 8rem));
	overflow-y: auto;
	padding: 0.35rem;
	border: 1px solid #d6e2ee;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.maxtel-cat-select__menu[hidden] {
	display: none;
}

.maxtel-cat-select__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 34px;
	padding: 0.48rem 0.62rem;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #172033;
	font-family: var(--maxtel-font);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	cursor: pointer;
}

.maxtel-cat-select__option:hover,
.maxtel-cat-select__option:focus-visible {
	background: #eef7fd;
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-cat-select__option[aria-selected="true"] {
	background: #e8f4fb;
	color: var(--maxtel-primary);
	font-weight: 700;
}

.maxtel-cat-select__option[aria-selected="true"]::after {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.maxtel-cat-filter__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.maxtel-cat-listing-layout {
	display: grid;
	grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
	gap: clamp(1rem, 2vw, 1.5rem);
	align-items: start;
	margin-top: 1.25rem;
}

.maxtel-cat-sidebar {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 1rem;
	min-width: 0;
}

.tax-product_cat .maxtel-cat-sidebar .maxtel-cat-filter {
	width: 100% !important;
	max-width: none;
	margin: 0 !important;
	background: #fbfdff;
	border-color: #d8e3ee;
}

@media (min-width: 993px) {
	.tax-product_cat .maxtel-cat-sidebar .maxtel-cat-filter {
		display: flex;
		flex-direction: column;
		max-height: min(620px, calc(100vh - 200px));
		overflow: hidden;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__panel,
	.maxtel-cat-sidebar .maxtel-cat-filter__form {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
		min-height: 0;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__form {
		align-items: stretch;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__attributes {
		display: grid;
		flex: 1 1 auto;
		gap: 0.75rem;
		min-height: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		padding-right: 0.25rem;
		scrollbar-color: #94a3b8 transparent;
		scrollbar-width: thin;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__attributes::-webkit-scrollbar {
		width: 6px;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__attributes::-webkit-scrollbar-track {
		background: transparent;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__attributes::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: #94a3b8;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__actions {
		flex: 0 0 auto;
		padding-top: 0.75rem;
		border-top: 1px solid #e4ebf3;
	}
}

.maxtel-cat-sidebar .maxtel-cat-filter__head {
	margin-bottom: 0.9rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid #e4ebf3;
}

.maxtel-cat-sidebar .maxtel-cat-filter__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.maxtel-cat-sidebar .maxtel-cat-filter__head p {
	color: #66758a;
	font-size: 13px;
	line-height: 1.5;
}

.maxtel-cat-sidebar .maxtel-cat-filter__form {
	grid-template-columns: 1fr;
	gap: 0.75rem;
}

.maxtel-cat-sidebar .maxtel-cat-filter__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

.maxtel-cat-sidebar .maxtel-cat-filter__actions .maxtel-btn {
	justify-content: center;
	width: 100%;
	min-height: 38px;
	padding: 0.48rem 0.45rem;
	font-size: 13px;
	line-height: 14px;
	white-space: nowrap;
}

.maxtel-cat-sidebar .maxtel-cat-filter__actions .maxtel-btn--outline-dark {
	background: #fff;
	border-color: #c7d7e8;
	color: var(--maxtel-primary);
}

.maxtel-cat-sidebar .maxtel-cat-filter__actions .maxtel-btn--outline-dark:hover,
.maxtel-cat-sidebar .maxtel-cat-filter__actions .maxtel-btn--outline-dark:focus-visible {
	background: #eef7fd;
	border-color: var(--maxtel-primary);
	color: var(--maxtel-primary);
}

.maxtel-cat-sidebar-info {
	display: grid;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid #dce9f4;
	border-radius: var(--maxtel-radius);
	background: linear-gradient(180deg, #f3f9fd 0%, #fff 100%);
}

.maxtel-cat-sidebar-info h2 {
	margin: 0;
	color: #172033;
	font-size: 16px;
	line-height: 1.3;
}

.maxtel-cat-sidebar-info__list {
	display: grid;
	gap: 0.55rem;
}

.maxtel-cat-sidebar-info__item {
	display: grid;
	gap: 0.25rem;
	padding: 0.7rem;
	border: 1px solid #e1edf5;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.maxtel-cat-sidebar-info__item:hover,
.maxtel-cat-sidebar-info__item:focus-visible {
	border-color: var(--maxtel-primary);
	background: #fff;
}

.maxtel-cat-sidebar-info__item strong {
	color: var(--maxtel-primary);
	font-size: 13px;
	line-height: 1.35;
}

.maxtel-cat-sidebar-info__item span {
	color: #64748b;
	font-size: 12px;
	line-height: 1.45;
}

.maxtel-cat-products {
	min-width: 0;
}

.maxtel-cat-products__head {
	display: block;
	margin-bottom: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid #e2e8f0;
}

.maxtel-cat-products__headline {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.6rem;
	min-width: 0;
}

.maxtel-cat-products__head h2 {
	flex: 0 1 auto;
	min-width: 0;
	margin: 0;
	color: #172033;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.maxtel-cat-products__count {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-height: 26px;
	padding: 0.25rem 0.55rem;
	border: 1px solid #cfe0ee;
	border-radius: 999px;
	background: #eef7fd;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
}

.maxtel-cat-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.55rem;
	margin-top: 0.75rem;
	color: #475569;
	font-size: 13px;
	line-height: 1.35;
}

.maxtel-cat-active-filters__label {
	font-weight: 700;
	color: #243349;
}

.maxtel-cat-active-filters__items {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	min-width: 0;
}

.maxtel-cat-active-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	max-width: 100%;
	padding: 0.28rem 0.55rem;
	border: 1px solid #d8e9f5;
	border-radius: 999px;
	background: #f8fbfe;
	color: #475569;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.maxtel-cat-active-filters__chip:hover,
.maxtel-cat-active-filters__chip:focus-visible {
	border-color: #b9dff6;
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-cat-active-filters__chip span {
	color: #64748b;
}

.maxtel-cat-active-filters__chip strong {
	color: var(--maxtel-primary);
	font-weight: 700;
}

.maxtel-cat-active-filters__chip em {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	margin-left: 0.1rem;
	border-radius: 999px;
	background: #e2edf7;
	color: #334155;
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-cat-active-filters__chip:hover em,
.maxtel-cat-active-filters__chip:focus-visible em {
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-cat-active-filters__clear {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0.28rem 0.65rem;
	border: 1px solid #cfd9e5;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.maxtel-cat-active-filters__clear:hover,
.maxtel-cat-active-filters__clear:focus-visible {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-cat-empty-results.woocommerce-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem 1.25rem;
}

.maxtel-cat-empty-results__body {
	display: grid;
	gap: 0.25rem;
	min-width: 0;
}

.maxtel-cat-empty-results__body strong {
	color: #172033;
	font-weight: 700;
}

.maxtel-cat-empty-results__body span {
	color: #64748b;
}

.maxtel-cat-empty-results__button {
	flex: 0 0 auto;
	padding: 0.65rem 1rem;
	font-size: 14px;
	text-decoration: none;
}

.maxtel-price-contact {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	color: var(--maxtel-accent);
}

.maxtel-cat-content {
	display: grid;
	gap: 1.5rem;
	margin: 2.5rem 0 0;
}

.maxtel-cat-block {
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	padding: 1.5rem;
}

.maxtel-cat-block h2 {
	margin: 0 0 1rem;
	font-size: 22px;
	line-height: 1.3;
}

.maxtel-cat-block__text {
	color: #475569;
}
.maxtel-cat-expandable-text {
	position: relative;
	display: grid;
	gap: 0.9rem;
	color: #475569;
}

.maxtel-cat-expandable-text__content {
	font-size: 15px;
	line-height: 1.75;
	transition: max-height 0.2s ease;
}

.maxtel-cat-expandable-text__content > :first-child {
	margin-top: 0;
}

.maxtel-cat-expandable-text__content > :last-child {
	margin-bottom: 0;
}

.maxtel-cat-expandable-text.is-collapsed .maxtel-cat-expandable-text__content {
	max-height: 220px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
}

.maxtel-cat-expandable-text.is-expanded .maxtel-cat-expandable-text__content {
	max-height: none;
}

.maxtel-cat-expandable-text__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	justify-self: center;
	min-height: 40px;
	padding: 0.6rem 1.15rem;
	border: 1px solid var(--maxtel-primary);
	border-radius: 8px;
	background: #fff;
	color: var(--maxtel-primary);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.maxtel-cat-expandable-text.has-toggle .maxtel-cat-expandable-text__toggle {
	display: inline-flex;
}

.maxtel-cat-block--expanded-text {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border-color: #dbeaf6;
}

.maxtel-cat-card-grid,
.maxtel-cat-review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1rem;
}

.maxtel-cat-info-card,
.maxtel-cat-review,
.maxtel-cat-cert-list li {
	margin: 0;
	padding: 1rem;
	background: #f8fafc;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
}

.maxtel-cat-info-card h3 {
	margin: 0 0 0.45rem;
	font-size: 16px;
	color: var(--maxtel-primary);
}

.maxtel-cat-info-card p,
.maxtel-cat-review p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

.maxtel-cat-block--highlight {
	background: linear-gradient(180deg, #f0f7fc 0%, #fff 100%);
	border-color: #d7eaf7;
}

.maxtel-cat-cert-list,
.maxtel-cat-steps {
	display: grid;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.maxtel-cat-cert-list li,
.maxtel-cat-steps li {
	display: grid;
	gap: 0.25rem;
}

.maxtel-cat-cert-list strong,
.maxtel-cat-steps strong {
	color: var(--maxtel-secondary);
}

.maxtel-cat-cert-list span,
.maxtel-cat-steps span {
	color: #64748b;
	font-size: 14px;
}

.maxtel-cat-review footer {
	display: grid;
	gap: 0.15rem;
	margin-top: 0.85rem;
	font-size: 13px;
	color: #64748b;
}

.maxtel-cat-review__stars {
	color: #f59e0b;
	letter-spacing: 0.08em;
}

.maxtel-cat-faqs {
	display: grid;
	gap: 0.75rem;
}

.maxtel-cat-faq {
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	background: #f8fafc;
	padding: 0.85rem 1rem;
}

.maxtel-cat-faq summary {
	cursor: pointer;
	font-weight: 400;
	color: var(--maxtel-secondary);
}

.maxtel-cat-faq div {
	color: #64748b;
	margin-top: 0.75rem;
}

.maxtel-woocommerce .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--maxtel-gap);
	overflow: visible;
}

.maxtel-woocommerce .woocommerce ul.products::before,
.maxtel-woocommerce .woocommerce ul.products::after {
	display: none;
}

.maxtel-woocommerce .woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	overflow: visible;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-woocommerce .woocommerce ul.products li.product:hover,
.maxtel-woocommerce .woocommerce ul.products li.product:focus-within {
	z-index: 80;
	border-color: #c7d7e8;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	box-shadow: var(--maxtel-shadow);
	transform: translateY(-2px);
}

.maxtel-woocommerce .woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: inherit;
}

.maxtel-woocommerce .woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	padding: 1rem;
	margin: 0 0 0.75rem;
	background: #f1f5f9;
}

.maxtel-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0 1rem;
	color: var(--maxtel-secondary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.maxtel-woocommerce .woocommerce ul.products li.product .price {
	padding: 0 1rem 1rem;
	margin-top: auto;
	color: var(--maxtel-accent);
	font-weight: 700;
}

.maxtel-woocommerce .woocommerce ul.products li.product .button {
	align-self: flex-start;
	margin: 0 1rem 1rem;
}

.maxtel-compare-loop-action {
	padding: 0 1rem 1rem;
	margin-top: auto;
}

.maxtel-shop-loop > .woocommerce-result-count,
.maxtel-shop-loop > .woocommerce-ordering,
.maxtel-woocommerce .woocommerce .woocommerce-result-count,
.maxtel-woocommerce .woocommerce .woocommerce-ordering {
	margin: 0 0 1rem;
	color: #64748b;
	font-size: 14px;
	max-width: 100%;
}

.maxtel-shop-loop > .maxtel-wc-result-count {
	float: left;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.5rem 0.75rem;
	border: 1px solid #dbe7f3;
	border-radius: var(--maxtel-radius);
	background: #f8fbfe;
	color: #334155;
	font-weight: 400;
	line-height: 1.35;
}

.maxtel-shop-loop > .maxtel-wc-ordering {
	float: right;
	display: inline-flex;
	align-items: stretch;
	gap: 0;
	min-height: 44px;
	margin-left: 1rem;
	border: 1px solid #d6e2ee;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
	overflow: visible;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.maxtel-shop-loop > .maxtel-wc-ordering:hover,
.maxtel-shop-loop > .maxtel-wc-ordering:focus-within {
	border-color: var(--maxtel-primary);
	box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12), 0 14px 28px rgba(15, 23, 42, 0.08);
}

.maxtel-wc-ordering__label {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 0.78rem;
	border-right: 1px solid #e2e8f0;
	border-radius: 11px 0 0 11px;
	background: linear-gradient(180deg, #f9fcff 0%, #eef6fb 100%);
	color: #475569;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.maxtel-wc-ordering__select {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	min-width: 220px;
}

.maxtel-wc-ordering__select:not(.is-enhanced)::after {
	content: "";
	position: absolute;
	right: 0.85rem;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: #64748b;
	pointer-events: none;
	transform: translateY(-65%) rotate(45deg);
}

.maxtel-shop-loop > .woocommerce-ordering select,
.maxtel-woocommerce .woocommerce .woocommerce-ordering select {
	width: 100%;
	max-width: 100%;
	min-height: 42px;
	border: 0;
	border-radius: 0 11px 11px 0;
	padding: 0 2.2rem 0 0.85rem;
	background: transparent;
	box-shadow: none;
	color: var(--maxtel-secondary);
	font-family: var(--maxtel-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	appearance: none;
	cursor: pointer;
	outline: 0;
}

.maxtel-wc-ordering__select.is-enhanced select {
	position: absolute;
	inset: 0;
	z-index: -1;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.maxtel-wc-ordering__button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	width: 100%;
	min-height: 42px;
	border: 0;
	border-radius: 0 11px 11px 0;
	padding: 0 0.85rem 0 0.95rem;
	background: #fff;
	color: var(--maxtel-secondary);
	font-family: var(--maxtel-font);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
}

.maxtel-wc-ordering__button span:first-child {
	overflow: hidden;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.maxtel-wc-ordering__button:hover,
.maxtel-wc-ordering__button:focus-visible,
.maxtel-wc-ordering__select.is-open .maxtel-wc-ordering__button {
	background: #f8fbfe;
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-wc-ordering__chevron {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	color: #60758a;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.16s ease;
}

.maxtel-wc-ordering__select.is-open .maxtel-wc-ordering__chevron {
	transform: translateY(2px) rotate(225deg);
}

.maxtel-wc-ordering__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 360;
	display: grid;
	gap: 3px;
	width: max-content;
	min-width: 100%;
	max-width: min(280px, calc(100vw - 2rem));
	padding: 0.35rem;
	border: 1px solid #d6e2ee;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.maxtel-wc-ordering__menu[hidden] {
	display: none;
}

.maxtel-wc-ordering__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 36px;
	padding: 0.5rem 0.65rem;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #172033;
	font-family: var(--maxtel-font);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
	cursor: pointer;
}

.maxtel-wc-ordering__option:hover,
.maxtel-wc-ordering__option:focus-visible {
	background: #eef7fd;
	color: var(--maxtel-primary);
	outline: 0;
}

.maxtel-wc-ordering__option[aria-selected="true"] {
	background: #e8f4fb;
	color: var(--maxtel-primary);
	font-weight: 700;
}

.maxtel-wc-ordering__option[aria-selected="true"]::after {
	content: "";
	flex: 0 0 auto;
	width: 6px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.maxtel-shop-loop > ul.products,
.maxtel-shop-loop > .products {
	clear: both;
}

.maxtel-woocommerce .woocommerce .button,
.maxtel-woocommerce .woocommerce button.button {
	background: var(--maxtel-primary);
	color: #fff;
	border-radius: var(--maxtel-radius);
	font-weight: 600;
}

.maxtel-woocommerce .woocommerce .button:hover {
	background: var(--maxtel-accent);
	color: #fff;
}

.maxtel-woocommerce .button,
.maxtel-woocommerce button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--maxtel-primary);
	color: #fff;
	border-radius: var(--maxtel-radius);
	font-weight: 700;
}

.maxtel-woocommerce .button:hover,
.maxtel-woocommerce button.button:hover {
	background: var(--maxtel-accent);
	color: #fff;
}

.maxtel-woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--maxtel-gap);
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.maxtel-woocommerce ul.products::before,
.maxtel-woocommerce ul.products::after {
	display: none;
}

.maxtel-woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	width: 100% !important;
	height: 100%;
	margin: 0 !important;
	float: none !important;
	position: relative;
	overflow: visible;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-woocommerce ul.products li.product:hover,
.maxtel-woocommerce ul.products li.product:focus-within {
	z-index: 80;
	border-color: #c7d7e8;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	box-shadow: var(--maxtel-shadow);
	transform: translateY(-2px);
}

.maxtel-woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.maxtel-woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: inherit;
}

.maxtel-woocommerce ul.products li.product a img {
	width: 100%;
	height: clamp(190px, 22vw, 260px);
	object-fit: contain;
	padding: 1rem;
	margin: 0 0 0.75rem;
	background: #f1f5f9;
}

.maxtel-woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 3.8em;
	padding: 0 1rem;
	color: var(--maxtel-primary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-woocommerce ul.products li.product .price,
.maxtel-woocommerce ul.products li.product .maxtel-price-contact {
	padding: 0 1rem 0.85rem;
	margin-top: auto;
	color: var(--maxtel-accent);
	font-weight: 700;
}

.maxtel-woocommerce ul.products li.product .button {
	align-self: stretch;
	justify-content: center;
	margin: 0 1rem 0.75rem;
	text-align: center;
}

.maxtel-woocommerce ul.products li.product .maxtel-compare-loop-action {
	padding: 0 1rem 1rem;
	margin-top: 0;
}

.maxtel-woocommerce .woocommerce ul.products li.product a img {
	height: clamp(190px, 22vw, 260px);
	aspect-ratio: auto;
}

.maxtel-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 3.8em;
	color: var(--maxtel-primary);
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-woocommerce .woocommerce ul.products li.product .price,
.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-price-contact {
	padding: 0 1rem 0.85rem;
}

.maxtel-woocommerce .woocommerce ul.products li.product .button {
	align-self: stretch;
	justify-content: center;
	margin: 0 1rem 0.75rem;
	text-align: center;
}

.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-compare-loop-action {
	padding: 0 1rem 1rem;
	margin-top: 0;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: var(--maxtel-gap);
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	width: 100% !important;
	height: 100%;
	margin: 0 !important;
	float: none !important;
	position: relative;
	overflow: visible;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: inherit;
}

.woocommerce span.onsale.maxtel-sale-badge,
.woocommerce ul.products li.product span.onsale.maxtel-sale-badge,
.maxtel-woocommerce ul.products li.product span.onsale.maxtel-sale-badge {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	left: auto;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	width: auto;
	min-width: 0;
	min-height: 0;
	height: auto;
	margin: 0;
	padding: 0.34rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	background: linear-gradient(135deg, #e43f36 0%, #c9242f 100%);
	box-shadow: 0 8px 18px rgba(201, 36, 47, 0.24);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: none;
	pointer-events: none;
}

.maxtel-sale-badge__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	opacity: 0.9;
}

.maxtel-sale-badge__value {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	height: clamp(190px, 22vw, 260px);
	object-fit: contain;
	padding: 1rem;
	margin: 0 0 0.75rem;
	background: #f1f5f9;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 3.8em;
	padding: 0 1rem;
	color: var(--maxtel-primary);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .maxtel-price-contact {
	padding: 0 1rem 0.85rem;
	margin-top: auto;
	color: var(--maxtel-accent);
	font-weight: 700;
}

.woocommerce ul.products li.product .button {
	align-self: stretch;
	justify-content: center;
	margin: 0 1rem 0.75rem;
	text-align: center;
}

.woocommerce ul.products li.product .maxtel-compare-loop-action {
	padding: 0 1rem 1rem;
	margin-top: 0;
}

.maxtel-woocommerce ul.products li.product .woocommerce-loop-product__title,
.maxtel-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 2.75em;
	max-height: 2.75em;
	margin-bottom: 0.35rem;
}

.maxtel-woocommerce ul.products li.product .maxtel-loop-product-meta,
.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-loop-product-meta,
.woocommerce ul.products li.product .maxtel-loop-product-meta {
	min-height: 5.35rem;
	padding-top: 0.35rem;
	padding-bottom: 0.25rem;
}

.maxtel-woocommerce ul.products li.product .price,
.maxtel-woocommerce ul.products li.product .maxtel-price-contact,
.maxtel-woocommerce .woocommerce ul.products li.product .price,
.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-price-contact,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .maxtel-price-contact {
	min-height: 2.5rem;
}

.maxtel-woocommerce ul.products li.product,
.maxtel-woocommerce .woocommerce ul.products li.product,
.woocommerce ul.products li.product {
	min-height: auto;
	position: relative;
	background: #fff;
	overflow: visible;
}

.maxtel-woocommerce ul.products li.product:hover,
.maxtel-woocommerce .woocommerce ul.products li.product:hover,
.woocommerce ul.products li.product:hover,
.maxtel-woocommerce ul.products li.product:focus-within,
.maxtel-woocommerce .woocommerce ul.products li.product:focus-within,
.woocommerce ul.products li.product:focus-within {
	z-index: 80;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.maxtel-woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.maxtel-woocommerce ul.products li.product a.woocommerce-loop-product__link,
.maxtel-woocommerce .woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.maxtel-woocommerce .woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	flex: 0 0 auto;
}

.maxtel-woocommerce ul.products li.product a img,
.maxtel-woocommerce .woocommerce ul.products li.product a img,
.woocommerce ul.products li.product a img {
	margin-bottom: 0;
	background: #f8fafc;
}

.maxtel-woocommerce ul.products li.product .maxtel-loop-product-code,
.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-loop-product-code,
.woocommerce ul.products li.product .maxtel-loop-product-code {
	padding: 1rem 1rem 0.2rem;
	color: #172033;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}

.maxtel-woocommerce ul.products li.product .woocommerce-loop-product__title,
.maxtel-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.75em;
	margin: 0;
	padding: 0 1rem 1rem;
	color: #334155;
	font-size: 14px;
	font-weight: 600;
}

.maxtel-woocommerce ul.products li.product .price,
.maxtel-woocommerce ul.products li.product .maxtel-price-contact,
.maxtel-woocommerce .woocommerce ul.products li.product .price,
.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-price-contact,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .maxtel-price-contact,
.maxtel-woocommerce ul.products li.product .button,
.maxtel-woocommerce .woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .button,
.maxtel-woocommerce ul.products li.product .maxtel-compare-loop-action,
.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-compare-loop-action,
.woocommerce ul.products li.product .maxtel-compare-loop-action {
	display: none;
}

.maxtel-shop {
	--maxtel-shop-frame: min(100% - var(--maxtel-layout-gutter, 2rem), var(--maxtel-layout-container, var(--maxtel-container)));
	padding: 1rem 0 3rem;
}

.maxtel-shop.maxtel-layout-width-full {
	--maxtel-shop-frame: 100%;
}

.maxtel-shop > .maxtel-container,
.maxtel-shop > :where(.maxtel-breadcrumbs, .maxtel-cat-hero, .maxtel-cat-filter, .maxtel-shop-loop, .maxtel-cat-content, .woocommerce, .woocommerce-products-header, .woocommerce-notices-wrapper, .woocommerce-pagination, .woocommerce-info, .woocommerce-message, .woocommerce-error, .term-description) {
	box-sizing: border-box;
	width: var(--maxtel-shop-frame) !important;
	max-width: var(--maxtel-layout-container, var(--maxtel-container));
	margin-right: auto !important;
	margin-left: auto !important;
}

.maxtel-shop > .maxtel-container > :where(.maxtel-cat-filter, .maxtel-shop-loop, .maxtel-cat-content, .woocommerce, .woocommerce-products-header, .woocommerce-notices-wrapper, .woocommerce-pagination, .woocommerce-info, .woocommerce-message, .woocommerce-error, .term-description) {
	max-width: 100%;
}

.maxtel-shop__frame,
.maxtel-product-archive-frame {
	box-sizing: border-box;
	width: var(--maxtel-shop-frame) !important;
	max-width: var(--maxtel-layout-container, var(--maxtel-container));
	margin-right: auto !important;
	margin-left: auto !important;
}

.tax-product_cat :where(.maxtel-breadcrumbs, .maxtel-cat-hero, .maxtel-cat-filter, .maxtel-shop-loop, .maxtel-cat-content, .woocommerce-products-header, .woocommerce-pagination, .term-description) {
	box-sizing: border-box;
	width: min(100% - var(--maxtel-layout-gutter, 2rem), var(--maxtel-layout-container, var(--maxtel-container))) !important;
	max-width: var(--maxtel-layout-container, var(--maxtel-container));
	margin-right: auto !important;
	margin-left: auto !important;
}

.maxtel-product-archive-frame > :where(.maxtel-breadcrumbs, .maxtel-cat-hero, .maxtel-cat-filter, .maxtel-cat-listing-layout, .maxtel-shop-loop, .maxtel-cat-content, .woocommerce, .woocommerce-products-header, .woocommerce-notices-wrapper, .woocommerce-pagination, .woocommerce-info, .woocommerce-message, .woocommerce-error, .term-description) {
	box-sizing: border-box;
	width: 100% !important;
	max-width: 100%;
	margin-right: 0 !important;
	margin-left: 0 !important;
}

.maxtel-product-archive-frame > .maxtel-breadcrumbs,
.maxtel-product-archive-frame > .maxtel-cat-hero,
.maxtel-product-archive-frame > .maxtel-cat-filter,
.maxtel-product-archive-frame > .maxtel-cat-listing-layout,
.maxtel-product-archive-frame > .maxtel-shop-loop,
.maxtel-product-archive-frame > .maxtel-cat-content {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.tax-product_cat .maxtel-shop .woocommerce ul.products,
.tax-product_cat .maxtel-shop ul.products,
.tax-product_cat.woocommerce ul.products {
	grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
	gap: 0.9rem;
}

.tax-product_cat .maxtel-shop ul.products li.product a.woocommerce-LoopProduct-link,
.tax-product_cat .maxtel-shop ul.products li.product a.woocommerce-loop-product__link,
.tax-product_cat.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.tax-product_cat.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	overflow: hidden;
	border-radius: calc(var(--maxtel-radius) - 1px) calc(var(--maxtel-radius) - 1px) 0 0;
}

.tax-product_cat .maxtel-shop ul.products li.product a img,
.tax-product_cat.woocommerce ul.products li.product a img {
	height: clamp(180px, 16vw, 220px);
	margin: 0;
	padding: 0.38rem;
	background: #f8fafc;
}

.tax-product_cat .maxtel-shop ul.products li.product .maxtel-loop-product-code,
.tax-product_cat.woocommerce ul.products li.product .maxtel-loop-product-code {
	padding: 0.72rem 1rem 0.1rem;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 0;
}

.tax-product_cat .maxtel-shop ul.products li.product .woocommerce-loop-product__title,
.tax-product_cat.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.75em;
	font-size: 14px;
	font-weight: 500;
}

.tax-product_cat .maxtel-shop ul.products li.product,
.tax-product_cat.woocommerce ul.products li.product {
	border-color: #e2e8f0;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.tax-product_cat .maxtel-shop ul.products li.product:hover,
.tax-product_cat.woocommerce ul.products li.product:hover,
.tax-product_cat .maxtel-shop ul.products li.product:focus-within,
.tax-product_cat.woocommerce ul.products li.product:focus-within {
	border-color: #c7d7e8;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.maxtel-cat-product-card__badge {
	position: absolute;
	top: 0.8rem;
	left: 0.8rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0.25rem 0.55rem;
	border-radius: 4px;
	background: var(--maxtel-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-cat-product-card__badge--featured {
	background: var(--maxtel-primary);
}

.maxtel-cat-product-card__badge--latest {
	background: #047857;
}

.maxtel-cat-product-card__specs {
	display: grid;
	gap: 0.45rem;
	min-height: 5.4rem;
	margin: 0;
	padding: 0 1rem 1rem 1.85rem;
	color: #475569;
	font-size: 13px;
	line-height: 1.4;
}

.maxtel-cat-product-card__specs li {
	padding-left: 0.1rem;
}

.maxtel-cat-product-card__specs li::marker {
	color: var(--maxtel-primary);
}

.maxtel-cat-product-card__specs span {
	color: #64748b;
}

.maxtel-cat-product-card__specs strong {
	color: #334155;
	font-weight: 700;
}

.maxtel-cat-product-card__actions {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.55rem;
	align-items: center;
	margin-top: auto;
	padding: 0 1rem 1rem;
}

.maxtel-cat-product-card__detail,
.maxtel-compare-toggle--cat-card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: var(--maxtel-radius);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.maxtel-cat-product-card__detail {
	border: 1px solid var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-cat-product-card__detail:hover,
.maxtel-cat-product-card__detail:focus-visible {
	border-color: var(--maxtel-primary-dark);
	background: var(--maxtel-primary-dark);
	color: #fff;
}

.maxtel-compare-toggle--cat-card {
	gap: 5px;
	min-width: 42px;
	padding: 0 0.65rem;
	border: 1px solid #c9d8e8;
	background: #fff;
	color: var(--maxtel-primary);
	cursor: pointer;
}

.maxtel-compare-toggle--cat-card:hover,
.maxtel-compare-toggle--cat-card:focus-visible,
.maxtel-compare-toggle--cat-card.is-selected {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-compare-toggle--cat-card .maxtel-compare-toggle__icon {
	width: 18px;
	height: 18px;
	font-size: 13px;
}

.maxtel-shop-loop {
	clear: both;
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
	max-width: 100%;
}

.woocommerce .woocommerce-ordering select {
	max-width: 100%;
}

.wpcb-floating-container {
	max-width: calc(100vw - 1rem) !important;
}

/* Product compare */
.maxtel-compare-notice[hidden],
.maxtel-compare-tray[hidden],
.maxtel-compare-tray__suggestions[hidden],
.maxtel-compare-suggestion[hidden],
.maxtel-compare-modal[hidden] {
	display: none !important;
}

.maxtel-compare-notice {
	position: fixed;
	top: 6rem;
	right: 1rem;
	bottom: auto;
	z-index: 540;
	width: min(calc(100% - 2rem), 520px);
	padding: 0.85rem 1rem;
	border: 1px solid #cfe0ee;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 12px 36px rgba(15, 23, 42, 0.16);
	color: var(--maxtel-secondary);
	font-size: 14px;
	font-weight: 700;
}

.maxtel-compare-tray {
	position: fixed;
	left: 1rem;
	bottom: 1rem;
	z-index: 500;
	display: grid;
	gap: 0.85rem;
	width: min(calc(100% - 2rem), 460px);
	max-height: calc(100vh - 2rem);
	padding: 1rem;
	overflow-y: auto;
	border: 1px solid rgba(0, 115, 183, 0.32);
	border-top: 4px solid var(--maxtel-primary);
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 18px 52px rgba(15, 23, 42, 0.24);
}

.maxtel-compare-tray__summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.75rem;
	align-items: center;
}

.maxtel-compare-tray__summary-copy {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.maxtel-compare-tray__summary strong {
	color: var(--maxtel-primary);
	font-size: 16px;
}

.maxtel-compare-tray__summary span {
	color: #64748b;
	font-size: 13px;
}

.maxtel-compare-tray__toggle {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid #cfe0ee;
	border-radius: 8px;
	background: #f8fbfe;
	color: var(--maxtel-primary);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.maxtel-compare-tray__toggle:hover,
.maxtel-compare-tray__toggle:focus-visible {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
}

.maxtel-compare-tray__toggle-icon {
	display: grid;
	place-items: center;
	transition: transform 0.2s ease;
}

.maxtel-compare-tray__toggle-icon svg {
	width: 16px;
	height: 16px;
}

.maxtel-compare-tray.is-collapsed {
	width: min(calc(100% - 2rem), 300px);
	max-height: none;
	gap: 0;
	padding: 0.75rem 0.85rem;
	overflow: hidden;
}

.maxtel-compare-tray.is-collapsed .maxtel-compare-tray__toggle-icon {
	transform: rotate(180deg);
}

.maxtel-compare-tray__content {
	display: grid;
	gap: 0.85rem;
}

.maxtel-compare-tray__content[hidden] {
	display: none !important;
}

.maxtel-compare-tray__items {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	max-height: 220px;
	min-width: 0;
	overflow-y: auto;
}

.maxtel-compare-chip {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.6rem;
	width: 100%;
	max-width: none;
	padding: 0.42rem;
	border: 1px solid #d8e9f5;
	border-radius: 12px;
	background: #eef7fd;
	color: var(--maxtel-secondary);
	font-size: 13px;
	font-weight: 700;
}

.maxtel-compare-chip__media {
	display: grid;
	place-items: center;
	width: 48px;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid #dbe8f3;
	border-radius: 10px;
	background: #fff;
	color: var(--maxtel-primary);
	font-size: 16px;
	font-weight: 700;
}

.maxtel-compare-chip__media img {
	width: 100%;
	height: 100%;
	padding: 3px;
	object-fit: contain;
}

.maxtel-compare-chip__name {
	display: -webkit-box;
	min-width: 0;
	overflow: hidden;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.maxtel-compare-chip button,
.maxtel-compare-modal__close {
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.maxtel-compare-chip button {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	color: #334155;
}

.maxtel-compare-chip button:hover,
.maxtel-compare-chip button:focus-visible {
	background: #dceefb;
	color: var(--maxtel-primary);
}

.maxtel-compare-tray__suggestions {
	display: grid;
	gap: 0.55rem;
	padding: 0.65rem;
	border: 1px solid #d8e9f5;
	border-radius: 12px;
	background: #f8fbfe;
}

.maxtel-compare-tray__suggestions-head {
	display: grid;
	gap: 0.05rem;
}

.maxtel-compare-tray__suggestions-head strong {
	color: #172033;
	font-size: 13px;
	line-height: 1.25;
}

.maxtel-compare-tray__suggestions-head span {
	color: #64748b;
	font-size: 12px;
	line-height: 1.35;
}

.maxtel-compare-tray__suggestions-search input {
	width: 100%;
	min-height: 38px;
	padding: 0.55rem 0.7rem;
	border: 1px solid #dbe8f3;
	border-radius: 10px;
	background: #fff;
	color: var(--maxtel-secondary);
	font: inherit;
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.maxtel-compare-tray__suggestions-search input::placeholder {
	color: #94a3b8;
}

.maxtel-compare-tray__suggestions-search input:focus {
	border-color: var(--maxtel-primary);
	box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12);
}

.maxtel-compare-tray__suggestions-status {
	margin: -0.15rem 0 0;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.maxtel-compare-tray__suggestions-status.is-error {
	color: #b91c1c;
}

.maxtel-compare-tray__suggestions-list {
	display: grid;
	gap: 0.4rem;
}

.maxtel-compare-suggestion {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.55rem;
	width: 100%;
	padding: 0.38rem;
	border: 1px solid #dbe8f3;
	border-radius: 10px;
	background: #fff;
	color: var(--maxtel-secondary);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-compare-suggestion:hover,
.maxtel-compare-suggestion:focus-visible {
	border-color: #b9dff6;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.maxtel-compare-suggestion__media {
	display: grid;
	place-items: center;
	width: 42px;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid #edf3f8;
	border-radius: 9px;
	background: #fff;
}

.maxtel-compare-suggestion__media img {
	width: 100%;
	height: 100%;
	padding: 3px;
	object-fit: contain;
}

.maxtel-compare-suggestion__body {
	min-width: 0;
}

.maxtel-compare-suggestion__name {
	display: -webkit-box;
	overflow: hidden;
	color: #172033;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.maxtel-compare-suggestion__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: #eef7fd;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-compare-tray__actions {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem;
}

.maxtel-compare-tray__actions .maxtel-btn {
	min-height: 40px;
	padding: 0.55rem 0.9rem;
	font-size: 13px;
}

body.maxtel-compare-open {
	overflow: hidden;
}

.maxtel-compare-modal {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.maxtel-compare-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.62);
}

.maxtel-compare-modal__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: min(100%, 1120px);
	max-height: min(86vh, 820px);
	overflow: hidden;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.maxtel-compare-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid #e2e8f0;
}

.maxtel-compare-modal__eyebrow {
	margin: 0 0 0.25rem;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.maxtel-compare-modal__head h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
}

.maxtel-compare-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: #f1f5f9;
	color: var(--maxtel-secondary);
	font-size: 24px;
	line-height: 1;
}

.maxtel-compare-modal__body {
	overflow: auto;
	padding: 1.25rem;
}

.maxtel-compare-result__meta,
.maxtel-compare-loading,
.maxtel-compare-error {
	margin: 0 0 1rem;
	color: #64748b;
	font-size: 14px;
}

.maxtel-compare-error {
	color: #b91c1c;
	font-weight: 700;
}

.maxtel-compare-table-wrap {
	overflow-x: auto;
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
}

.maxtel-compare-table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
}

.maxtel-compare-table th,
.maxtel-compare-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid #e2e8f0;
	text-align: left;
	vertical-align: top;
}

.maxtel-compare-table thead th {
	position: sticky;
	top: 0;
	z-index: 1;
	background: #f8fafc;
	color: var(--maxtel-secondary);
}

.maxtel-compare-table tbody th {
	width: 190px;
	background: #fbfdff;
	color: var(--maxtel-secondary);
	font-weight: 700;
}

.maxtel-compare-table tr.is-different td {
	background: #fffdf5;
}

.maxtel-compare-table__group th {
	background: #eef7fd !important;
	color: var(--maxtel-primary);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.04em;
}

.maxtel-compare-table__empty {
	color: #64748b;
	text-align: center;
}

.maxtel-compare-empty {
	color: #94a3b8;
}

.maxtel-compare-product-head {
	display: grid;
	gap: 0.75rem;
	color: var(--maxtel-secondary);
	font-size: 13px;
	font-weight: 700;
}

.maxtel-compare-product-head img {
	width: 150px;
	height: 150px;
	object-fit: contain;
	padding: 0.35rem;
	border-radius: var(--maxtel-radius);
	background: #f1f5f9;
}

/* Single product */
.single-product .maxtel-shop {
	--maxtel-product-detail-frame: var(--maxtel-layout-container, var(--maxtel-container));
	--maxtel-product-detail-cap: 1320px;
	--maxtel-product-detail-gutter: clamp(1rem, 3vw, 2rem);
	--maxtel-product-gallery-height: clamp(380px, 39vw, 500px);
	--maxtel-product-sticky-offset: 96px;
	padding-top: clamp(0.75rem, 2vw, 1.25rem);
}

.single-product .maxtel-shop.maxtel-layout-width-default {
	--maxtel-product-detail-frame: var(--maxtel-container);
	--maxtel-product-detail-cap: 1320px;
}

.single-product .maxtel-shop.maxtel-layout-width-narrow {
	--maxtel-product-detail-frame: 880px;
	--maxtel-product-detail-cap: 880px;
}

.single-product .maxtel-shop.maxtel-layout-width-wide {
	--maxtel-product-detail-frame: 1320px;
	--maxtel-product-detail-cap: 1320px;
}

.single-product .maxtel-shop.maxtel-layout-width-full {
	--maxtel-layout-gutter: 2rem;
	--maxtel-product-detail-frame: 1280px;
	--maxtel-product-detail-cap: 1280px;
	--maxtel-shop-frame: min(calc(100% - var(--maxtel-product-detail-gutter)), var(--maxtel-product-detail-frame));
}

.single-product .maxtel-product-detail-frame,
.single-product .maxtel-shop__frame {
	box-sizing: border-box;
	width: min(calc(100% - var(--maxtel-product-detail-gutter)), var(--maxtel-product-detail-frame), var(--maxtel-product-detail-cap)) !important;
	max-width: min(var(--maxtel-product-detail-frame), var(--maxtel-product-detail-cap)) !important;
	margin-inline: auto !important;
}

.single-product .maxtel-product-detail-frame > .maxtel-breadcrumbs {
	margin-bottom: 0.35rem;
	padding-top: 0.45rem;
	padding-bottom: 0.35rem;
}

.single-product .woocommerce-product-gallery {
	opacity: 1 !important;
}

.single-product .maxtel-product-anchor-nav {
	display: none !important;
}

.maxtel-product-anchor-nav {
	position: sticky;
	top: var(--maxtel-product-sticky-offset, 96px);
	z-index: 55;
	display: flex;
	gap: clamp(1rem, 3vw, 2.25rem);
	align-items: center;
	margin: 0 0 clamp(1.5rem, 2.5vw, 2rem);
	padding: 0.75rem 0;
	overflow-x: auto;
	border-top: 1px solid #eef2f6;
	border-bottom: 1px solid #e2e8f0;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	-webkit-overflow-scrolling: touch;
}

body.admin-bar .maxtel-product-anchor-nav {
	top: calc(var(--maxtel-product-sticky-offset, 96px) + 32px);
}

@media (max-width: 782px) {
	body.admin-bar .maxtel-product-anchor-nav {
		top: calc(var(--maxtel-product-sticky-offset, 96px) + 46px);
	}
}

.maxtel-product-anchor-nav a {
	flex: 0 0 auto;
	color: #475569;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.maxtel-product-anchor-nav a:hover,
.maxtel-product-anchor-nav a:focus-visible {
	color: var(--maxtel-primary);
}

.single-product :where(#tab-description, #maxtel-product-features, #tab-maxtel_specs, #tab-maxtel_documents, #tab-maxtel_qna) {
	scroll-margin-top: calc(var(--maxtel-product-sticky-offset, 96px) + 56px);
}

body.single-product {
	--maxtel-product-detail-frame: var(--maxtel-container);
	--maxtel-product-detail-cap: 1320px;
	--maxtel-product-detail-gutter: clamp(1rem, 3vw, 2rem);
	--maxtel-product-gallery-height: clamp(380px, 39vw, 500px);
	--maxtel-product-sticky-offset: 96px;
}

body.single-product.maxtel-layout-width-narrow {
	--maxtel-product-detail-frame: 880px;
	--maxtel-product-detail-cap: 880px;
}

body.single-product.maxtel-layout-width-wide {
	--maxtel-product-detail-frame: 1320px;
	--maxtel-product-detail-cap: 1320px;
}

body.single-product.maxtel-layout-width-full {
	--maxtel-product-detail-frame: 1280px;
	--maxtel-product-detail-cap: 1280px;
}

body.single-product > .woocommerce-notices-wrapper,
body.single-product > .maxtel-product-anchor-nav,
body.single-product > div.product {
	box-sizing: border-box;
	width: min(calc(100% - var(--maxtel-product-detail-gutter)), var(--maxtel-product-detail-frame), var(--maxtel-product-detail-cap)) !important;
	max-width: min(var(--maxtel-product-detail-frame), var(--maxtel-product-detail-cap)) !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

body.single-product > .maxtel-product-anchor-nav {
	margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.single-product .maxtel-shop div.product {
	display: grid;
	grid-template-columns: minmax(0, 0.48fr) minmax(460px, 0.52fr);
	gap: clamp(1.25rem, 2vw, 2rem);
	align-items: start;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

body.single-product > div.product {
	display: grid;
	grid-template-columns: minmax(0, 0.48fr) minmax(460px, 0.52fr);
	gap: clamp(1.25rem, 2vw, 2rem);
	align-items: start;
}

body.maxtel-product-detail-ratio-balanced.single-product .maxtel-shop div.product {
	grid-template-columns: minmax(0, 0.48fr) minmax(460px, 0.52fr);
}

body.maxtel-product-detail-ratio-balanced.single-product > div.product {
	grid-template-columns: minmax(0, 0.48fr) minmax(460px, 0.52fr);
}

body.maxtel-product-detail-ratio-media-large.single-product .maxtel-shop div.product {
	grid-template-columns: minmax(0, 0.54fr) minmax(430px, 0.46fr);
}

body.maxtel-product-detail-ratio-media-large.single-product > div.product {
	grid-template-columns: minmax(0, 0.54fr) minmax(430px, 0.46fr);
}

body.maxtel-product-detail-ratio-summary-large.single-product .maxtel-shop div.product {
	grid-template-columns: minmax(0, 0.44fr) minmax(500px, 0.56fr);
}

body.maxtel-product-detail-ratio-summary-large.single-product > div.product {
	grid-template-columns: minmax(0, 0.44fr) minmax(500px, 0.56fr);
}

.maxtel-product-media-column {
	grid-column: 1;
	grid-row: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.75rem;
	align-self: start;
	min-width: 0;
}

body.maxtel-product-detail-style-stacked.single-product .maxtel-shop div.product {
	grid-template-columns: 1fr;
	max-width: min(100%, 980px);
}

body.maxtel-product-detail-style-stacked.single-product > div.product {
	grid-template-columns: 1fr;
}

.single-product .maxtel-shop div.product::before,
.single-product .maxtel-shop div.product::after,
body.single-product > div.product::before,
body.single-product > div.product::after {
	display: none;
}

.single-product .maxtel-shop div.product .woocommerce-product-gallery,
.single-product .maxtel-shop div.product .summary,
body.single-product > div.product .woocommerce-product-gallery,
body.single-product > div.product .summary {
	float: none !important;
	min-width: 0;
	width: 100% !important;
	margin: 0 !important;
}

.maxtel-product-gallery-actions {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.7rem;
	margin: 0;
	padding: 0.2rem 0.1rem 0.7rem;
	border-bottom: 1px solid #e4edf6;
	color: var(--maxtel-primary);
}

.maxtel-product-gallery-actions > a,
.maxtel-product-gallery-actions .maxtel-compare-toggle {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	width: auto;
	min-height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--maxtel-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: none;
}

.maxtel-product-gallery-actions > a + a,
.maxtel-product-gallery-actions .maxtel-compare-toggle {
	position: relative;
	margin-left: 0.55rem;
}

.maxtel-product-gallery-actions > a + a::before,
.maxtel-product-gallery-actions .maxtel-compare-toggle::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -0.65rem;
	width: 1px;
	height: 18px;
	background: #d7e2ee;
	transform: translateY(-50%);
}

.maxtel-product-gallery-actions svg {
	width: 20px;
	height: 20px;
	stroke-width: 2;
}

.maxtel-product-gallery-actions .maxtel-compare-toggle__icon {
	width: 20px;
	height: 20px;
	border: 2px solid currentColor;
	background: transparent;
	color: currentColor;
	font-size: 16px;
	line-height: 1;
}

.maxtel-product-gallery-actions > a:hover,
.maxtel-product-gallery-actions > a:focus-visible,
.maxtel-product-gallery-actions .maxtel-compare-toggle:hover,
.maxtel-product-gallery-actions .maxtel-compare-toggle:focus-visible {
	color: var(--maxtel-primary-dark);
}

.single-product .maxtel-shop div.product .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.75rem;
	position: relative;
	isolation: isolate;
	padding: 0.75rem;
	border: 1px solid #e7edf4;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

body.single-product > div.product .woocommerce-product-gallery {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.75rem;
	position: relative;
	isolation: isolate;
	padding: 0.75rem;
	border: 1px solid #e7edf4;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.single-product .woocommerce-product-gallery:has(.woocommerce-product-gallery__image + .woocommerce-product-gallery__image) {
	grid-template-rows: var(--maxtel-product-gallery-height) minmax(78px, auto);
}

body.maxtel-product-detail-sticky-gallery.single-product .maxtel-shop div.product .woocommerce-product-gallery {
	position: relative;
	top: auto;
}

body.maxtel-product-detail-sticky-gallery.single-product > div.product .woocommerce-product-gallery {
	position: relative;
	top: auto;
}

.single-product .woocommerce-product-gallery__wrapper {
	grid-column: 1;
	grid-row: 1;
	margin: 0;
	touch-action: pan-y;
}

.single-product .woocommerce-product-gallery .flex-viewport {
	grid-column: 1;
	grid-row: 1;
	min-width: 0;
}

.single-product .woocommerce-product-gallery__image {
	display: grid !important;
	place-items: center;
	overflow: hidden;
	min-height: 0;
	height: var(--maxtel-product-gallery-height);
	border-radius: var(--maxtel-radius);
	background: #f8fafc;
}

.single-product .woocommerce-product-gallery__image a {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.single-product .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: var(--maxtel-product-gallery-height);
	padding: clamp(0.5rem, 2vw, 1.25rem);
	object-fit: contain;
}

.single-product .woocommerce-product-gallery__trigger {
	display: none !important;
}

.single-product .woocommerce-product-gallery .zoomImg {
	display: none !important;
}

.single-product .woocommerce-product-gallery__image a {
	cursor: zoom-in;
}

.single-product .woocommerce-product-gallery .flex-direction-nav {
	display: none !important;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: flex;
	grid-column: 1;
	grid-row: 2;
	align-items: center;
	justify-content: flex-start;
	gap: 0.5rem;
	max-width: 100%;
	max-height: none;
	margin: 0;
	padding: 0 0 0.15rem;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	flex: 0 0 68px;
	max-width: 68px;
	float: none !important;
	list-style: none;
	scroll-snap-align: start;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	padding: 0.3rem;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	background: #fff;
	opacity: 0.72;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active,
.single-product .woocommerce-product-gallery .flex-control-thumbs img:hover {
	border-color: var(--maxtel-primary);
	box-shadow: 0 0 0 1px var(--maxtel-primary);
	opacity: 1;
}

.single-product .maxtel-product-gallery-arrow {
	position: absolute;
	top: calc(0.75rem + (var(--maxtel-product-gallery-height) / 2));
	z-index: 8;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid #dbe7f0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #172033;
	font-size: 32px;
	line-height: 1;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%);
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.single-product .maxtel-product-gallery-arrow:hover,
.single-product .maxtel-product-gallery-arrow:focus-visible {
	border-color: var(--maxtel-primary);
	color: var(--maxtel-primary);
	box-shadow: 0 12px 28px rgba(0, 115, 183, 0.18);
	transform: translateY(calc(-50% - 1px));
}

.single-product .maxtel-product-gallery-arrow--prev {
	left: clamp(0.75rem, 1.6vw, 1.1rem);
}

.single-product .maxtel-product-gallery-arrow--next {
	right: clamp(0.65rem, 1.6vw, 1.25rem);
}

.single-product .maxtel-product-gallery-arrow > span {
	display: block;
	width: 11px;
	height: 11px;
	border-top: 2.5px solid currentColor;
	border-right: 2.5px solid currentColor;
	font-size: 0;
	line-height: 0;
}

.single-product .maxtel-product-gallery-arrow--prev > span {
	transform: translateX(2px) rotate(-135deg);
}

.single-product .maxtel-product-gallery-arrow--next > span {
	transform: translateX(-2px) rotate(45deg);
}

.single-product .pswp .pswp__button--arrow--left,
.single-product .pswp .pswp__button--arrow--right {
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-top: 0;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	background-color: rgba(15, 23, 42, 0.62) !important;
	background-image: none !important;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
	opacity: 0.96;
	transform: translateY(-50%);
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.single-product .pswp .pswp__button--arrow--left {
	left: clamp(1rem, 2.6vw, 2.25rem);
}

.single-product .pswp .pswp__button--arrow--right {
	right: clamp(1rem, 2.6vw, 2.25rem);
}

.single-product .pswp .pswp__button--arrow--left::before,
.single-product .pswp .pswp__button--arrow--right::before {
	content: "";
	position: static;
	display: block;
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	background: none;
	box-shadow: none;
}

.single-product .pswp .pswp__button--arrow--left::before {
	transform: translateX(3px) rotate(-135deg);
}

.single-product .pswp .pswp__button--arrow--right::before {
	transform: translateX(-3px) rotate(45deg);
}

.single-product .pswp .pswp__button--arrow--left:hover,
.single-product .pswp .pswp__button--arrow--right:hover,
.single-product .pswp .pswp__button--arrow--left:focus-visible,
.single-product .pswp .pswp__button--arrow--right:focus-visible {
	border-color: #fff;
	background-color: rgba(0, 115, 183, 0.82) !important;
	background-image: none !important;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 4px rgba(255, 255, 255, 0.16) !important;
	opacity: 1;
	transform: translateY(-50%) scale(1.04);
}

.single-product .pswp .pswp__button--arrow--left:focus-visible,
.single-product .pswp .pswp__button--arrow--right:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.92);
	outline-offset: 3px;
}

.single-product .maxtel-shop div.product .summary {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	gap: 0.9rem;
	padding: clamp(1rem, 1.8vw, 1.35rem);
	border: 1px solid #e1e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

body.single-product > div.product .summary {
	grid-column: 2;
	grid-row: 1;
	display: grid;
	gap: 0.9rem;
	padding: clamp(1rem, 1.8vw, 1.35rem);
	border: 1px solid #e1e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

body.maxtel-product-detail-style-brand.single-product .maxtel-shop div.product .summary {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body.maxtel-product-detail-style-brand.single-product > div.product .summary {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body.maxtel-product-detail-style-stacked.single-product .maxtel-shop div.product .summary,
body.maxtel-product-detail-style-stacked.single-product .maxtel-product-video-panel,
body.maxtel-product-detail-style-stacked.single-product .woocommerce-tabs,
body.maxtel-product-detail-style-stacked.single-product .maxtel-product-crosslinks,
body.maxtel-product-detail-style-stacked.single-product > div.product .summary {
	grid-column: 1;
	grid-row: auto;
}

.maxtel-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
}

.maxtel-product-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0.28rem 0.62rem;
	border-radius: 4px;
	background: #eef7fd;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.single-product .summary .product_title {
	margin: 0;
	font-size: 30px;
	line-height: 1.28;
	color: #172033;
}

.single-product .woocommerce-product-details__short-description {
	margin: 0;
	color: #475569;
	font-size: 15px;
	line-height: 1.7;
}
.single-product .woocommerce-product-details__short-description .maxtel-product-short-description {
	display: grid;
	gap: 5px;
}

.maxtel-product-short-description__content {
	max-height: none;
	overflow: visible;
	transition: none;
}

.maxtel-product-short-description__content > :first-child {
	margin-top: 0;
}

.maxtel-product-short-description__content > :last-child {
	margin-bottom: 0;
}

.maxtel-product-short-description.is-collapsed .maxtel-product-short-description__content {
	max-height: var(--maxtel-short-desc-max-height, 260px);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(180deg, #000 76%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 76%, transparent 100%);
}

.maxtel-product-short-description.is-expanded .maxtel-product-short-description__content {
	max-height: none;
}

.maxtel-product-short-description__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	justify-self: end;
	gap: 3px;
	min-height: 26px;
	padding: 3px 9px;
	border: 1px solid rgba(0, 132, 198, 0.45);
	border-radius: 999px;
	background: #f8fbfe;
	color: var(--maxtel-primary);
	font-size: 12px;
	line-height: 14px;
	font-weight: 700;
	box-shadow: none;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.maxtel-product-short-description__toggle::after {
	content: "\203A";
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	transform: rotate(90deg);
	transition: transform 0.2s ease;
}

.maxtel-product-short-description.is-expanded .maxtel-product-short-description__toggle::after {
	transform: rotate(-90deg);
}

.maxtel-product-short-description__toggle:hover,
.maxtel-product-short-description__toggle:focus-visible {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
	color: #006fa8;
}

.maxtel-product-short-description.has-toggle .maxtel-product-short-description__toggle {
	display: inline-flex;
}

.maxtel-product-short-description--precollapsed.has-toggle .maxtel-product-short-description__toggle[hidden] {
	display: inline-flex !important;
}

.single-product .summary.entry-summary .maxtel-product-quote-card::before {
	animation: none;
	opacity: 0;
	transform: none;
}

.single-product .summary.entry-summary .maxtel-product-quote-card__price-icon {
	animation: none;
	transform: none;
}

.maxtel-product-video-panel {
	grid-column: 1;
	width: 100%;
	margin: 0;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
}

.maxtel-product-video-embed {
	position: relative;
	overflow: hidden;
	border-radius: var(--maxtel-radius);
	background: #0f172a;
	aspect-ratio: 16 / 9;
}

#tab-maxtel_video .maxtel-product-video-embed {
	width: min(100%, 780px);
	margin-inline: auto;
}

.maxtel-product-video-embed iframe,
.maxtel-product-video-embed video {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.maxtel-product-meta-line {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem 0.9rem;
	margin: 0;
	padding: 0 0 0.9rem;
	border-bottom: 1px solid #e8eef4;
	font-size: 13px;
	color: #475569;
}

.maxtel-product-meta-line strong {
	color: var(--maxtel-secondary);
}

.maxtel-product-meta-line .star-rating {
	display: inline-block;
	float: none;
	vertical-align: middle;
	margin-inline: 0.25rem;
}

.maxtel-product-key-specs {
	margin: 0;
	padding: 0.9rem;
	border: 1px solid #dfe9f3;
	border-radius: var(--maxtel-radius);
	background: #fbfdff;
}

.maxtel-product-key-specs h2 {
	margin: 0 0 0.65rem;
	color: var(--maxtel-secondary);
	font-size: 15px;
	line-height: 1.35;
}

.maxtel-product-key-specs dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 0.85rem;
	margin: 0;
}

.maxtel-product-key-specs dl > div {
	min-width: 0;
}

.maxtel-product-key-specs dt {
	margin: 0 0 0.15rem;
	color: #718096;
	font-size: 12px;
	font-weight: 700;
}

.maxtel-product-key-specs dd {
	margin: 0;
	color: #26364d;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.maxtel-product-feature-list {
	margin: 0;
	padding: 0.9rem;
	border: 1px solid #dce9f4;
	border-left: 3px solid var(--maxtel-primary);
	border-radius: var(--maxtel-radius);
	background: #f8fbfe;
}

.maxtel-product-feature-list h2 {
	margin: 0 0 0.65rem;
	color: #172033;
	font-size: 15px;
	line-height: 1.35;
}

.maxtel-product-feature-list ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.maxtel-product-feature-list li {
	position: relative;
	display: grid;
	gap: 0.15rem;
	padding-left: 1.25rem;
	color: #475569;
	font-size: 14px;
	line-height: 1.5;
}

.maxtel-product-feature-list li::before {
	content: "";
	position: absolute;
	top: 0.5rem;
	left: 0;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--maxtel-primary);
	box-shadow: 0 0 0 4px rgba(0, 115, 183, 0.12);
}

.maxtel-product-feature-list strong {
	color: #172033;
	font-weight: 700;
}

.maxtel-product-quote-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: grid;
	gap: 0.7rem;
	min-height: 173px;
	margin: 0;
	padding: 0.85rem;
	border: 1px solid #b9dff6;
	border-radius: var(--maxtel-radius);
	background: linear-gradient(135deg, #ffffff 0%, #f4fbff 56%, #ffffff 100%);
	box-shadow: 0 14px 32px rgba(0, 115, 183, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.single-product .maxtel-product-promotions {
	min-height: var(--maxtel-promo-reserved-height, 174px);
}

.maxtel-product-quote-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(112deg, transparent 0%, transparent 34%, rgba(0, 115, 183, 0.1) 45%, rgba(239, 68, 68, 0.08) 51%, transparent 64%, transparent 100%);
	transform: translateX(-115%);
	animation: maxtel-quote-card-shimmer 5.2s ease-in-out infinite;
	pointer-events: none;
}

.maxtel-product-quote-card::after {
	content: "";
	position: absolute;
	top: -42px;
	right: -42px;
	z-index: -1;
	width: 132px;
	height: 132px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(0, 115, 183, 0.16), transparent 68%);
	pointer-events: none;
}

.maxtel-product-quote-card__main,
.maxtel-product-quote-card__actions {
	position: relative;
	z-index: 1;
}

.maxtel-product-quote-card__main {
	display: block;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid #dbeaf6;
}

.maxtel-product-quote-card__price-head > span:not(.maxtel-product-quote-card__sale),
.maxtel-product-quote-card__support span {
	display: block;
	margin-bottom: 0.25rem;
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.maxtel-product-quote-card__price-head {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.25rem;
}

.maxtel-product-quote-card__price-head span {
	margin-bottom: 0;
}

.maxtel-product-quote-card__sale {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-bottom: 0;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: #fff0f0;
	color: #c9242f;
	box-shadow: 0 6px 14px rgba(201, 36, 47, 0.12);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-transform: none;
}

.maxtel-product-quote-card__sale strong {
	color: inherit;
	font-size: 12px;
	line-height: 1;
}

.maxtel-product-quote-card__price {
	display: inline-flex;
	align-items: center;
	gap: 0.48rem;
	width: fit-content;
}

.maxtel-product-quote-card__price-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: linear-gradient(135deg, #facc15, #f97316);
	color: #fff;
	box-shadow: 0 8px 18px rgba(249, 115, 22, 0.28);
	animation: maxtel-quote-icon-pulse 2.8s ease-in-out infinite;
}

.maxtel-product-quote-card__price-icon svg {
	width: 14px;
	height: 14px;
}

.maxtel-product-quote-card__price-text {
	display: inline-flex;
	align-items: baseline;
}

.maxtel-product-quote-card__price,
.maxtel-product-quote-card__price strong {
	color: var(--maxtel-primary);
	font-size: 22px;
	line-height: 1.1;
}

.maxtel-product-price,
.maxtel-product-price--sale {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.55rem;
	align-items: baseline;
}

.maxtel-product-price del,
.maxtel-product-price ins {
	display: inline-flex;
	align-items: baseline;
	white-space: nowrap;
}

.maxtel-product-price del {
	color: #64748b;
	font-size: 14px;
	font-weight: 700;
	text-decoration-thickness: 1px;
	opacity: 0.8;
}

.maxtel-product-price ins {
	color: var(--maxtel-primary);
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
}

.maxtel-product-quote-card__main p {
	margin: 0;
	color: #b45309;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.maxtel-product-quote-card__support {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem;
}

.maxtel-product-quote-card__support strong,
.maxtel-product-quote-card__support .stock {
	margin: 0;
	color: #243349;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
}

.maxtel-product-quote-card__support .stock.in-stock {
	color: #047857;
}

.maxtel-product-quote-card__support .stock.out-of-stock {
	color: #b91c1c;
}

.maxtel-product-quote-card__actions {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	gap: 0.55rem;
}

.maxtel-product-quote-card__group {
	display: flex;
	gap: 0.7rem;
	align-items: center;
	justify-content: space-between;
	min-width: 0;
	min-height: 58px;
	padding: 0.62rem 0.7rem;
	border: 1px solid #dbeaf6;
	border-radius: calc(var(--maxtel-radius) - 2px);
	background: #f8fbfe;
}

.maxtel-product-quote-card__group-title {
	display: block;
	min-width: 0;
	color: #172033;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.maxtel-product-quote-card__group-copy {
	display: grid;
	min-width: 0;
	gap: 0.12rem;
}

.maxtel-product-quote-card__group-phone {
	display: block;
	color: #dc2626;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	overflow-wrap: anywhere;
}

.maxtel-product-quote-card__group-actions {
	display: flex;
	flex-wrap: wrap;
	flex: 0 0 auto;
	gap: 0.4rem;
	justify-content: flex-end;
}

.maxtel-product-quote-card__action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	border: 1px solid var(--maxtel-primary);
	border-radius: 6px;
	background: var(--maxtel-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0, 115, 183, 0.16);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.maxtel-product-quote-card__action::after {
	content: "";
	position: absolute;
	inset: -5px;
	z-index: -1;
	border: 1px solid rgba(0, 115, 183, 0.3);
	border-radius: 8px;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.18s ease, transform 0.18s ease;
	pointer-events: none;
}

.maxtel-product-quote-card__action > span[aria-hidden="true"] {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.maxtel-product-quote-card__action svg {
	width: 18px;
	height: 18px;
	display: block;
}

.maxtel-product-quote-card__action--zalo svg,
.maxtel-product-quote-card__action:nth-child(2) svg {
	width: 28px;
	height: 15px;
}

.maxtel-product-quote-card__action--zalo,
.maxtel-product-quote-card__action:nth-child(2) {
	background: #fff;
	color: var(--maxtel-primary);
}

.maxtel-product-quote-card__action:hover,
.maxtel-product-quote-card__action:focus-visible {
	border-color: var(--maxtel-primary-dark);
	background: var(--maxtel-primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 115, 183, 0.24);
}

.maxtel-product-quote-card__action:hover::after,
.maxtel-product-quote-card__action:focus-visible::after {
	opacity: 1;
	transform: scale(1);
}

.maxtel-product-quote-card__action--zalo:hover,
.maxtel-product-quote-card__action--zalo:focus-visible,
.maxtel-product-quote-card__action:nth-child(2):hover,
.maxtel-product-quote-card__action:nth-child(2):focus-visible {
	border-color: var(--maxtel-primary);
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-product-quote-card__action--zalo::after,
.maxtel-product-quote-card__action:nth-child(2)::after {
	border-color: rgba(0, 104, 255, 0.28);
}

body.single-product {
	--maxtel-sticky-product-bar-height: 0px;
}

.maxtel-sticky-product-bar[hidden] {
	display: none !important;
}

.maxtel-sticky-product-bar {
	position: fixed;
	left: 50%;
	bottom: 16px;
	bottom: max(16px, env(safe-area-inset-bottom));
	z-index: 525;
	display: block;
	width: auto;
	max-width: calc(100vw - 32px);
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--maxtel-secondary);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, calc(100% + 22px));
	transition: opacity 0.22s ease, transform 0.22s ease;
}

.maxtel-sticky-product-bar.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.maxtel-sticky-product-bar__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 44px;
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(0, 115, 183, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--maxtel-primary);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	pointer-events: auto;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.maxtel-sticky-product-bar__trigger:hover,
.maxtel-sticky-product-bar__trigger:focus-visible {
	border-color: rgba(0, 115, 183, 0.5);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
	transform: translateY(-1px);
}

.maxtel-sticky-product-bar__trigger:focus-visible {
	outline: 3px solid rgba(0, 115, 183, 0.2);
	outline-offset: 3px;
}

.maxtel-sticky-product-bar__trigger-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(0, 115, 183, 0.08);
}

.maxtel-sticky-product-bar__trigger-icon svg {
	display: block;
	width: 14px;
	height: 14px;
}

.maxtel-sticky-product-bar__panel {
	display: none;
	grid-template-columns: 50px minmax(190px, 1fr) auto auto 34px;
	gap: 0.65rem;
	align-items: center;
	width: min(720px, calc(100vw - 32px));
	min-height: 62px;
	padding: 0.48rem 0.56rem;
	border: 1px solid rgba(0, 115, 183, 0.22);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
	pointer-events: auto;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.maxtel-sticky-product-bar.is-expanded .maxtel-sticky-product-bar__trigger {
	display: none;
}

.maxtel-sticky-product-bar.is-expanded .maxtel-sticky-product-bar__panel {
	display: grid;
}

.maxtel-sticky-product-bar__media {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	overflow: hidden;
	border: 1px solid #dbe8f3;
	border-radius: 8px;
	background: #f8fbfe;
}

.maxtel-sticky-product-bar__image {
	display: block;
	width: 100%;
	height: 100%;
	padding: 4px;
	object-fit: contain;
}

.maxtel-sticky-product-bar__info {
	display: grid;
	gap: 0;
	min-width: 0;
}

.maxtel-sticky-product-bar__title {
	display: -webkit-box;
	overflow: hidden;
	color: #172033;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.28;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.maxtel-sticky-product-bar__meta {
	display: none;
}

.maxtel-sticky-product-bar__price {
	display: grid;
	align-items: center;
	min-width: 104px;
	min-height: 42px;
	padding-left: 0.75rem;
	border-left: 1px solid rgba(0, 115, 183, 0.18);
	text-align: right;
}

.maxtel-sticky-product-bar__price > span {
	display: none;
}

.maxtel-sticky-product-bar__price > strong {
	display: flex;
	justify-content: flex-end;
	color: #c9242f;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.12;
}

.maxtel-sticky-product-bar__price .maxtel-product-price {
	justify-content: flex-end;
}

.maxtel-sticky-product-bar__price .maxtel-product-price del {
	font-size: 12px;
}

.maxtel-sticky-product-bar__price .maxtel-product-price ins {
	color: #c9242f;
	font-size: 16px;
}

.maxtel-sticky-product-bar__contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 42px;
	min-width: 0;
	padding-left: 0.75rem;
	border-left: 1px solid rgba(0, 115, 183, 0.18);
}

.maxtel-sticky-product-bar__contact-label {
	color: var(--maxtel-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.maxtel-sticky-product-bar__actions {
	display: flex;
	gap: 0.34rem;
	align-items: center;
}

.maxtel-sticky-product-bar__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	min-height: 42px;
	padding: 0;
	border: 1px solid var(--maxtel-primary);
	border-radius: 8px;
	background: var(--maxtel-primary);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(0, 115, 183, 0.2);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.maxtel-sticky-product-bar__action svg {
	display: block;
	width: 18px;
	height: 18px;
}

.maxtel-sticky-product-bar__action--zalo {
	border-color: #0068ff;
	background: #0068ff;
	box-shadow: 0 10px 22px rgba(0, 104, 255, 0.2);
}

.maxtel-sticky-product-bar__action--zalo svg {
	width: 28px;
	height: 16px;
}

.maxtel-sticky-product-bar__action:hover,
.maxtel-sticky-product-bar__action:focus-visible {
	border-color: var(--maxtel-primary-dark);
	background: var(--maxtel-primary-dark);
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 115, 183, 0.24);
}

.maxtel-sticky-product-bar__action--zalo:hover,
.maxtel-sticky-product-bar__action--zalo:focus-visible {
	border-color: #0056d6;
	background: #0056d6;
}

.maxtel-sticky-product-bar__action:focus-visible {
	outline: 3px solid rgba(0, 115, 183, 0.22);
	outline-offset: 3px;
}

.maxtel-sticky-product-bar__collapse {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	min-height: 34px;
	padding: 0;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 8px;
	background: #f8fbfe;
	color: #475569;
	cursor: pointer;
	transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.maxtel-sticky-product-bar__collapse:hover,
.maxtel-sticky-product-bar__collapse:focus-visible {
	border-color: rgba(0, 115, 183, 0.32);
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-sticky-product-bar__collapse:focus-visible {
	outline: 3px solid rgba(0, 115, 183, 0.18);
	outline-offset: 2px;
}

.maxtel-sticky-product-bar__collapse svg {
	display: block;
	width: 16px;
	height: 16px;
}

body.maxtel-sticky-product-bar-visible .maxtel-compare-tray {
	bottom: calc(1rem + var(--maxtel-sticky-product-bar-height, 0px));
}

body.maxtel-sticky-product-bar-visible .maxtel-floating-actions {
	bottom: calc(max(18px, env(safe-area-inset-bottom)) + var(--maxtel-sticky-product-bar-height, 0px));
}

body.maxtel-sticky-product-bar-visible:has(.maxtel-compare-tray:not([hidden])) .maxtel-floating-actions--bottom-left {
	bottom: calc(156px + var(--maxtel-sticky-product-bar-height, 0px));
}

body.single-product.maxtel-sticky-product-bar-visible .wpcb-floating-container.wpcb-pos-bottom-right {
	bottom: calc(1rem + var(--maxtel-sticky-product-bar-height, 0px)) !important;
}

@media (prefers-reduced-motion: reduce) {
	.maxtel-sticky-product-bar,
	.maxtel-sticky-product-bar__trigger,
	.maxtel-sticky-product-bar__action,
	.maxtel-sticky-product-bar__collapse {
		transition: none;
	}

	.maxtel-sticky-product-bar__trigger:hover,
	.maxtel-sticky-product-bar__trigger:focus-visible,
	.maxtel-sticky-product-bar__action:hover,
	.maxtel-sticky-product-bar__action:focus-visible {
		transform: none;
	}
}

@media (max-width: 640px) {
	.maxtel-sticky-product-bar {
		bottom: 8px;
		bottom: max(8px, env(safe-area-inset-bottom));
		max-width: calc(100vw - 16px);
	}

	.maxtel-sticky-product-bar__trigger {
		min-height: 42px;
		padding: 0.52rem 0.82rem;
		font-size: 13px;
	}

	.maxtel-sticky-product-bar__panel {
		grid-template-areas:
			"media info contact collapse"
			"media price contact collapse";
		grid-template-columns: 40px minmax(0, 1fr) auto 34px;
		gap: 0.1rem 0.45rem;
		width: calc(100vw - 16px);
		min-height: 56px;
		padding: 0.42rem 0.45rem;
	}

	.maxtel-sticky-product-bar__media {
		grid-area: media;
		width: 40px;
		height: 40px;
	}

	.maxtel-sticky-product-bar__info {
		grid-area: info;
		gap: 0;
		align-self: end;
	}

	.maxtel-sticky-product-bar__title {
		font-size: 12.5px;
		line-height: 1.24;
		-webkit-line-clamp: 1;
	}

	.maxtel-sticky-product-bar__meta {
		display: none;
	}

	.maxtel-sticky-product-bar__price {
		grid-area: price;
		min-width: 0;
		min-height: 0;
		padding-left: 0;
		border-left: 0;
		text-align: left;
	}

	.maxtel-sticky-product-bar__price > span {
		display: none;
	}

	.maxtel-sticky-product-bar__price > strong {
		justify-content: flex-start;
		font-size: 12.5px;
	}

	.maxtel-sticky-product-bar__price .maxtel-product-price {
		justify-content: flex-start;
		gap: 0.18rem 0.35rem;
	}

	.maxtel-sticky-product-bar__price .maxtel-product-price del {
		font-size: 10.5px;
	}

	.maxtel-sticky-product-bar__price .maxtel-product-price ins {
		font-size: 12.5px;
	}

	.maxtel-sticky-product-bar__contact {
		grid-area: contact;
		gap: 0;
		min-height: 40px;
		padding-left: 0.45rem;
		border-left: 1px solid rgba(0, 115, 183, 0.16);
	}

	.maxtel-sticky-product-bar__contact-label {
		display: none;
	}

	.maxtel-sticky-product-bar__actions {
		gap: 0.3rem;
	}

	.maxtel-sticky-product-bar__action {
		width: 38px;
		height: 38px;
		min-height: 38px;
		border-radius: 8px;
	}

	.maxtel-sticky-product-bar__action svg {
		width: 16px;
		height: 16px;
	}

	.maxtel-sticky-product-bar__action--zalo svg {
		width: 25px;
		height: 14px;
	}

	.maxtel-sticky-product-bar__collapse {
		grid-area: collapse;
		width: 32px;
		height: 40px;
		min-height: 40px;
	}

	body.maxtel-sticky-product-bar-visible .maxtel-compare-tray {
		bottom: calc(0.75rem + var(--maxtel-sticky-product-bar-height, 0px));
	}

	body.maxtel-sticky-product-bar-visible .maxtel-floating-actions {
		bottom: calc(max(14px, env(safe-area-inset-bottom)) + var(--maxtel-sticky-product-bar-height, 0px));
	}

	body.maxtel-sticky-product-bar-visible:has(.maxtel-compare-tray:not([hidden])) .maxtel-floating-actions {
		bottom: calc(max(118px, calc(92px + env(safe-area-inset-bottom))) + var(--maxtel-sticky-product-bar-height, 0px));
	}

	body.single-product.maxtel-sticky-product-bar-visible .wpcb-floating-container.wpcb-pos-bottom-right {
		bottom: calc(0.65rem + var(--maxtel-sticky-product-bar-height, 0px)) !important;
	}
}

.maxtel-product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
}

.maxtel-product-actions #maxtel-product-quote {
	display: none;
}

.maxtel-product-actions .maxtel-btn,
.maxtel-product-actions .maxtel-compare-toggle {
	min-height: 44px;
	border-radius: var(--maxtel-radius);
}

.maxtel-product-actions .maxtel-btn {
	flex: 1 1 170px;
}

.maxtel-product-policies {
	grid-column: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.6rem;
	margin: 0;
}

.maxtel-product-policies--media {
	min-height: 213px;
}

.maxtel-product-policies--summary {
	display: none;
}

.maxtel-product-policy {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.65rem;
	align-items: flex-start;
	padding: 0.78rem 0.85rem;
	background: #fbfdff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	color: inherit;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-product-policy:focus-within {
	border-color: #bfdbfe;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
	transform: translateY(-1px);
}

.maxtel-product-policy__icon {
	color: var(--maxtel-primary);
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.maxtel-product-policy__title {
	display: block;
	margin: 0 0 0.2rem;
	font-size: 13px;
	color: #172033;
	line-height: 1.3;
}

.maxtel-product-policy p {
	margin: 0;
	color: #64748b;
	font-size: 12px;
	line-height: 1.45;
}

.maxtel-product-policy__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.45rem;
	color: var(--maxtel-primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
}

.maxtel-product-policy__link svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease;
}

.maxtel-product-policy__link:hover,
.maxtel-product-policy__link:focus-visible {
	color: var(--maxtel-primary-dark);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.maxtel-product-policy__link:hover svg,
.maxtel-product-policy__link:focus-visible svg {
	transform: translateX(2px);
}

.maxtel-product-crosslinks {
	clear: both;
	grid-column: 1 / -1;
	margin: 2.5rem 0;
	padding: clamp(1rem, 2vw, 1.35rem);
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.maxtel-product-crosslinks__head {
	display: flex;
	justify-content: center;
	margin-bottom: 1rem;
}

.maxtel-product-crosslinks__tabs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px;
	padding: 0.25rem;
	border: 1px solid #dbeaf6;
	border-radius: 999px;
	background: #f8fbfe;
}

.maxtel-product-crosslinks__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 38px;
	padding: 0.55rem 0.85rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #475569;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.maxtel-product-crosslinks__tab small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 0.35rem;
	border-radius: 999px;
	background: #e2edf7;
	color: #334155;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-product-crosslinks__tab.is-active {
	background: var(--maxtel-primary);
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 115, 183, 0.18);
}

.maxtel-product-crosslinks__tab.is-active small {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.maxtel-product-crosslinks__panel[hidden] {
	display: none !important;
}

.maxtel-product-crosslinks__slider {
	position: relative;
	min-width: 0;
	isolation: isolate;
}

.maxtel-product-crosslinks--tabs .maxtel-product-crosslinks__slider {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	padding-inline: 2.75rem;
	overflow: hidden;
}

.maxtel-product-crosslinks--tabs .maxtel-product-grid {
	box-sizing: border-box;
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0.15rem 0 0.85rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
	touch-action: pan-x pan-y;
	-webkit-overflow-scrolling: touch;
}

.maxtel-product-crosslinks--tabs .maxtel-product-grid::-webkit-scrollbar {
	display: none;
}

.maxtel-product-crosslinks--tabs .maxtel-product-card {
	flex: 0 0 calc((100% - 4rem) / 5);
	min-width: 0;
	overflow: hidden;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.maxtel-product-crosslinks--tabs .maxtel-product-card__image {
	height: clamp(150px, 16vw, 205px);
	padding: 0.85rem;
}

.maxtel-product-crosslinks--tabs .maxtel-product-card__code {
	padding: 0.85rem 0.85rem 0.18rem;
	font-size: 14px;
}

.maxtel-product-crosslinks--tabs .maxtel-product-card__title {
	min-height: 2.8em;
	padding: 0 0.85rem 0.9rem;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.38;
}

.maxtel-product-crosslinks__arrow {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid #d7e7f3;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--maxtel-primary);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
	transform: translateY(-50%);
	transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-product-crosslinks__slider.maxtel-crosslink-slider-ready.has-overflow .maxtel-product-crosslinks__arrow {
	display: inline-flex;
}

.maxtel-product-crosslinks__arrow span {
	display: block;
	font-size: 30px;
	line-height: 1;
	transform: translateY(-2px);
}

.maxtel-product-crosslinks__arrow--prev {
	left: 0.45rem;
}

.maxtel-product-crosslinks__arrow--next {
	right: 0.45rem;
}

.maxtel-product-crosslinks__arrow:hover,
.maxtel-product-crosslinks__arrow:focus-visible {
	box-shadow: 0 14px 30px rgba(0, 115, 183, 0.18);
}

.maxtel-product-crosslinks__arrow:disabled {
	opacity: 0.34;
	pointer-events: none;
}

.maxtel-product-crosslinks__footer {
	display: flex;
	justify-content: center;
	margin-top: 0.55rem;
}

.maxtel-product-crosslinks__all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 38px;
	padding: 0.58rem 1rem;
	border: 1px solid #cfe0ee;
	border-radius: 999px;
	background: #f8fbfe;
	color: var(--maxtel-primary);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.maxtel-product-crosslinks__all svg {
	width: 15px;
	height: 15px;
	transition: transform 0.2s ease;
}

.maxtel-product-crosslinks__all:hover,
.maxtel-product-crosslinks__all:focus-visible {
	border-color: var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
	box-shadow: 0 10px 22px rgba(0, 115, 183, 0.18);
}

.maxtel-product-crosslinks__all:hover svg,
.maxtel-product-crosslinks__all:focus-visible svg {
	transform: translateX(2px);
}

@media (min-width: 761px) {
	.maxtel-product-crosslinks--tabs .maxtel-product-grid {
		align-items: flex-start;
		overflow-y: hidden;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card {
		align-self: flex-start;
		height: auto;
		overflow: hidden;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card.is-crosslink-hover-active {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
		transform: none;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card-hover {
		display: none;
	}

	.maxtel-product-card-hover.maxtel-product-card-hover--floating {
		position: fixed;
		top: var(--maxtel-crosslink-float-top, 0);
		right: auto;
		left: var(--maxtel-crosslink-float-left, 0);
		z-index: 1200;
		display: block;
		width: var(--maxtel-crosslink-float-width, auto);
		max-height: var(--maxtel-crosslink-float-max-height, 430px);
		border-color: #e2e8f0;
		opacity: 1;
		visibility: visible;
		overflow: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.maxtel-product-card-hover.maxtel-product-card-hover--floating .maxtel-product-card-hover__panel {
		overflow: visible;
	}
}

@media (max-width: 760px) {
	.maxtel-product-crosslinks--tabs .maxtel-product-card:hover,
	.maxtel-product-crosslinks--tabs .maxtel-product-card:focus-within {
		border-bottom-right-radius: var(--maxtel-radius);
		border-bottom-left-radius: var(--maxtel-radius);
		transform: none;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card-hover,
	.maxtel-product-crosslinks--tabs .maxtel-loop-product-hover,
	.maxtel-product-crosslinks--tabs .maxtel-product-card-hover__panel,
	.maxtel-product-crosslinks--tabs .maxtel-product-card:hover .maxtel-product-card-hover,
	.maxtel-product-crosslinks--tabs .maxtel-product-card:focus-within .maxtel-product-card-hover,
	.maxtel-product-crosslinks--tabs .maxtel-product-card:hover .maxtel-product-card-hover__panel,
	.maxtel-product-crosslinks--tabs .maxtel-product-card:focus-within .maxtel-product-card-hover__panel {
		display: none !important;
		max-height: 0 !important;
		pointer-events: none !important;
	}
}

@media (max-width: 1100px) {
	.maxtel-product-crosslinks--tabs .maxtel-product-grid {
		gap: 0.875rem;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card {
		flex-basis: calc((100% - 1.75rem) / 3);
	}
}

@media (max-width: 760px) {
	.maxtel-product-crosslinks--tabs .maxtel-product-crosslinks__slider {
		padding-inline: 2.2rem;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-grid {
		gap: 0.75rem;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card {
		flex-basis: calc((100% - 0.75rem) / 2);
	}
}

@media (max-width: 640px) {
	.maxtel-product-crosslinks {
		margin: 1.5rem 0;
		padding: 0.85rem;
	}

	.maxtel-product-crosslinks__head {
		justify-content: stretch;
	}

	.maxtel-product-crosslinks__tabs {
		width: 100%;
		border-radius: 12px;
	}

	.maxtel-product-crosslinks__tab {
		flex: 1 1 135px;
		min-width: 0;
	}

	.maxtel-product-crosslinks__arrow {
		width: 34px;
		height: 34px;
	}

	.maxtel-product-crosslinks__arrow span {
		font-size: 27px;
	}

	.maxtel-product-crosslinks__arrow--prev {
		left: 0.1rem;
	}

	.maxtel-product-crosslinks__arrow--next {
		right: 0.1rem;
	}

	.single-product .woocommerce-tabs ul.tabs {
		justify-content: flex-start;
		width: 100%;
		border-radius: 0;
	}

	body.single-product div.product .woocommerce-tabs ul.tabs {
		justify-content: flex-start;
		width: 100%;
		border-radius: 0;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 480px) {
	.maxtel-product-crosslinks--tabs .maxtel-product-crosslinks__slider {
		padding-inline: 1.85rem;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-grid {
		gap: 0.65rem;
		padding-bottom: 0.55rem;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card {
		flex-basis: calc((100% - 0.65rem) / 2);
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card__image {
		height: 136px;
		padding: 0.55rem;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card__code {
		padding: 0.65rem 0.65rem 0.16rem;
		font-size: 13px;
	}

	.maxtel-product-crosslinks--tabs .maxtel-product-card__title {
		padding: 0 0.65rem 0.75rem;
		font-size: 12px;
		line-height: 1.34;
	}

	.maxtel-product-crosslinks__arrow {
		width: 32px;
		height: 32px;
	}

	.maxtel-product-crosslinks__arrow span {
		font-size: 25px;
	}
}
.maxtel-product-crosslinks__block {
	min-width: 0;
	padding: clamp(1rem, 2vw, 1.35rem);
	border: 1px solid #e2e8f0;
	border-radius: var(--maxtel-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.maxtel-product-crosslinks__block > h2,
.maxtel-product-tab-section h2 {
	margin: 0 0 1rem;
	font-size: 22px;
	line-height: 1.3;
}

.single-product .woocommerce-tabs {
	clear: both;
	grid-column: 1 / -1;
	margin: 2rem 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
	scroll-margin-top: var(--maxtel-site-header-height, 96px);
}

.single-product .woocommerce-tabs ul.tabs {
	position: sticky;
	top: var(--maxtel-site-header-height, 96px);
	z-index: 85;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: clamp(0.25rem, 1vw, 0.8rem);
	width: 100%;
	max-width: 100%;
	margin: 0 0 clamp(0.85rem, 1.6vw, 1.15rem);
	padding: 0 0.25rem;
	border: 0;
	border-bottom: 1px solid #dbeaf6;
	border-radius: 0;
	background: rgba(247, 250, 253, 0.96);
	box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	list-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
}

body.single-product div.product .woocommerce-tabs ul.tabs {
	position: sticky;
	top: var(--maxtel-site-header-height, 96px);
	z-index: 85;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: clamp(0.25rem, 1vw, 0.8rem);
	width: 100%;
	max-width: 100%;
	margin: 0 0 clamp(0.85rem, 1.6vw, 1.15rem);
	padding: 0 0.25rem;
	border: 0;
	border-bottom: 1px solid #dbeaf6;
	border-radius: 0;
	background: rgba(247, 250, 253, 0.96);
	box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
}

body.admin-bar.single-product .woocommerce-tabs ul.tabs,
body.admin-bar.single-product div.product .woocommerce-tabs ul.tabs {
	top: calc(var(--maxtel-site-header-height, 96px) + 32px);
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

body.single-product div.product .woocommerce-tabs ul.tabs li {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.single-product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.72rem 0.28rem 0.68rem;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	color: #475569;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.18s ease, border-color 0.18s ease;
}

body.single-product div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 0.72rem 0.28rem 0.68rem;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	color: #475569;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.18s ease, border-color 0.18s ease;
}

.single-product .woocommerce-tabs ul.tabs li.active {
	background: transparent;
	box-shadow: none;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	border-bottom-color: var(--maxtel-primary) !important;
	color: var(--maxtel-primary) !important;
}

body.single-product div.product .woocommerce-tabs ul.tabs li.active {
	background: transparent;
	box-shadow: none;
}

body.single-product div.product .woocommerce-tabs ul.tabs li.active a {
	border-bottom-color: var(--maxtel-primary) !important;
	color: var(--maxtel-primary) !important;
}

.single-product .woocommerce-tabs .panel {
	display: block;
	margin: 0 0 1rem;
	padding: clamp(1.25rem, 2.2vw, 1.85rem);
	background: #fbfdff;
	border: 1px solid #dfeaf4;
	border-radius: var(--maxtel-radius);
	color: #334155;
	line-height: 1.75;
	scroll-margin-top: calc(var(--maxtel-site-header-height, 96px) + 1rem);
}

.single-product .woocommerce-tabs .panel:last-child {
	margin-bottom: 0;
}

.single-product .woocommerce-tabs .panel > :first-child {
	margin-top: 0;
}

.single-product .woocommerce-tabs .panel > :last-child {
	margin-bottom: 0;
}

body.single-product div.product .woocommerce-tabs .panel {
	display: block;
	padding: clamp(1.25rem, 2.2vw, 1.85rem) !important;
}

.single-product .woocommerce-tabs.maxtel-tabs-ready .panel[hidden],
body.single-product div.product .woocommerce-tabs.maxtel-tabs-ready .panel[hidden] {
	display: none !important;
}

.maxtel-product-tab-collapsible {
	position: relative;
}

.maxtel-product-tab-collapsible.is-collapsed {
	overflow: hidden;
}

.maxtel-product-tab-content {
	transition: max-height 0.2s ease;
}

.maxtel-product-tab-collapsible.is-collapsed .maxtel-product-tab-content {
	max-height: 360px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
	mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
}

.maxtel-product-tab-collapsible.is-expanded .maxtel-product-tab-content {
	max-height: none;
}

.maxtel-product-tab-collapsible.is-expanded {
	overflow: visible;
}

.maxtel-product-tab-toggle {
	display: none;
	margin: 1rem auto 0;
	min-height: 40px;
	padding: 0.6rem 1rem;
	border: 1px solid var(--maxtel-primary);
	border-radius: 6px;
	background: #fff;
	color: var(--maxtel-primary);
	font-weight: 700;
	cursor: pointer;
}

.maxtel-product-tab-collapsible.has-toggle .maxtel-product-tab-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
}

.maxtel-product-reviews {
	display: grid;
	gap: 1.25rem;
}

.maxtel-product-reviews__head {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
}

.maxtel-product-reviews__head p,
.maxtel-product-reviews__empty p,
.maxtel-product-reviews__closed {
	margin: 0.35rem 0 0;
	color: #64748b;
}

.maxtel-product-reviews__score {
	display: grid;
	gap: 0.15rem;
	min-width: 110px;
	padding: 0.75rem 0.9rem;
	border: 1px solid #dbeaf6;
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.maxtel-product-reviews__score strong {
	color: var(--maxtel-primary);
	font-size: 20px;
	line-height: 1.1;
}

.maxtel-product-reviews__score span {
	color: #64748b;
	font-size: 12px;
	font-weight: 700;
}

.maxtel-product-review-list {
	display: grid;
	gap: 0.9rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.maxtel-product-review,
.maxtel-product-reviews__empty,
.maxtel-product-review-form-wrap {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
}

.maxtel-product-review {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.85rem;
	padding: 1rem;
}

.maxtel-product-review__avatar img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
}

.maxtel-product-review__body header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
	align-items: baseline;
	margin-bottom: 0.25rem;
}

.maxtel-product-review__body time {
	color: #64748b;
	font-size: 13px;
}

.maxtel-product-review__stars,
.maxtel-review-rating-options span {
	color: #f59e0b;
	letter-spacing: 0;
}

.maxtel-product-review__content > :last-child {
	margin-bottom: 0;
}

.maxtel-product-review-replies {
	display: grid;
	gap: 0.65rem;
	margin-top: 0.9rem;
	padding-left: 0.9rem;
	border-left: 3px solid rgba(0, 115, 183, 0.22);
}

.maxtel-product-review-reply {
	padding: 0.75rem 0.85rem;
	border-radius: 8px;
	background: #f8fbff;
}

.maxtel-product-review-reply header {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.65rem;
	align-items: baseline;
	margin-bottom: 0.35rem;
}

.maxtel-product-review-reply header strong {
	color: var(--maxtel-primary);
}

.maxtel-product-review-reply header span,
.maxtel-product-review-reply header time {
	color: #64748b;
	font-size: 13px;
}

.maxtel-product-review-reply__content > :last-child {
	margin-bottom: 0;
}

.maxtel-product-review__media {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.65rem;
	margin-top: 0.85rem;
}

.maxtel-product-review__media-item {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #dbe5ef;
	border-radius: 8px;
	background: #f8fafc;
	color: #fff;
	text-decoration: none;
	cursor: zoom-in;
}

.maxtel-product-review__media-item img,
.maxtel-product-review__media-item video {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.maxtel-product-review__media-item video {
	background: #0f172a;
}

.maxtel-product-review__media-overlay {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	padding: 0.28rem 0.55rem;
	border-radius: 6px;
	background: rgba(15, 23, 42, 0.78);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 160ms ease, transform 160ms ease;
}

.maxtel-product-review__media-item:hover .maxtel-product-review__media-overlay,
.maxtel-product-review__media-item:focus-visible .maxtel-product-review__media-overlay {
	opacity: 1;
	transform: translateY(0);
}

.maxtel-review-lightbox[hidden] {
	display: none;
}

.maxtel-review-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 2rem);
}

.maxtel-review-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.86);
	backdrop-filter: blur(4px);
}

.maxtel-review-lightbox__shell {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 0.75rem;
	width: min(1060px, 100%);
	height: min(720px, calc(100vh - 4rem));
}

.maxtel-review-lightbox__stage {
	display: grid;
	place-items: center;
	min-height: 0;
}

.maxtel-review-lightbox__stage img,
.maxtel-review-lightbox__stage video {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-radius: 8px;
	background: #020617;
	box-shadow: 0 22px 70px rgba(2, 6, 23, 0.35);
	object-fit: contain;
}

.maxtel-review-lightbox__close,
.maxtel-review-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: #0f172a;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 12px 32px rgba(2, 6, 23, 0.25);
	cursor: pointer;
}

.maxtel-review-lightbox__close {
	top: 0;
	right: 0;
}

.maxtel-review-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}

.maxtel-review-lightbox__nav--prev {
	left: 0;
}

.maxtel-review-lightbox__nav--next {
	right: 0;
}

.maxtel-review-lightbox__close:hover,
.maxtel-review-lightbox__nav:hover,
.maxtel-review-lightbox__close:focus-visible,
.maxtel-review-lightbox__nav:focus-visible {
	background: #fff;
	color: var(--maxtel-primary);
	outline: 3px solid rgba(0, 115, 183, 0.22);
}

.maxtel-review-lightbox__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	color: #e2e8f0;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.maxtel-review-lightbox__counter {
	color: #93c5fd;
}

body.maxtel-review-lightbox-open {
	overflow: hidden;
}

.maxtel-product-reviews__empty,
.maxtel-product-review-form-wrap {
	padding: 1rem;
}

.maxtel-product-review-form {
	display: grid;
	gap: 0.9rem;
}

.maxtel-review-feedback,
.maxtel-review-form-notice {
	padding: 0.85rem 1rem;
	border: 1px solid #b9e4cc;
	border-radius: 8px;
	background: #f0fdf4;
	color: #14532d;
	font-weight: 700;
	line-height: 1.55;
}

.maxtel-review-feedback--error,
.maxtel-review-form-notice--error {
	border-color: #fecaca;
	background: #fef2f2;
	color: #991b1b;
}

.maxtel-review-form-notice--info {
	border-color: #bfdbfe;
	background: #eff6ff;
	color: #1e3a8a;
}

.maxtel-review-form-notice strong {
	display: block;
	margin-bottom: 0.3rem;
}

.maxtel-review-form-notice ul {
	margin: 0;
	padding-left: 1.15rem;
}

.maxtel-product-review-form .comment-notes,
.maxtel-product-review-form .comment-form-author,
.maxtel-product-review-form .comment-form-email,
.maxtel-product-review-form .comment-form-comment,
.maxtel-product-review-form .comment-form-media,
.maxtel-product-review-form .comment-form-cookies-consent,
.maxtel-product-review-form .form-submit {
	margin: 0;
}

.maxtel-product-review-form .comment-form-rating {
	margin: 0;
	padding: 0;
	border: 0;
}

.maxtel-product-review-form label,
.maxtel-product-review-form legend {
	display: block;
	margin-bottom: 0.35rem;
	color: #172033;
	font-weight: 700;
}

.maxtel-product-review-form input[type="text"],
.maxtel-product-review-form input[type="email"],
.maxtel-product-review-form textarea {
	width: 100%;
	border: 1px solid #dbe5ef;
	border-radius: 6px;
	background: #fff;
}

.maxtel-product-review-form textarea {
	min-height: 120px;
	resize: vertical;
}

.maxtel-review-upload {
	display: grid;
	gap: 0.35rem;
}

.maxtel-review-upload__input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	opacity: 0;
}

.maxtel-product-review-form .maxtel-review-upload__dropzone {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0.65rem;
	align-items: center;
	margin: 0;
	padding: 0.7rem 0.75rem;
	border: 1px solid #dbe5ef;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	cursor: pointer;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.maxtel-review-upload__dropzone:hover,
.maxtel-review-upload__input:focus-visible + .maxtel-review-upload__dropzone,
.maxtel-review-upload.is-dragging .maxtel-review-upload__dropzone {
	border-color: var(--maxtel-primary);
	background: #f7fbff;
	box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12);
}

.maxtel-review-upload__icon {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #eff6ff;
	color: var(--maxtel-primary);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.maxtel-review-upload__copy {
	display: grid;
	gap: 0.08rem;
	min-width: 0;
}

.maxtel-review-upload__copy strong {
	color: #172033;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.25;
}

.maxtel-review-upload__copy small,
.maxtel-review-upload__files {
	color: #64748b;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

.maxtel-review-upload__action {
	padding: 0.42rem 0.68rem;
	border-radius: 6px;
	background: var(--maxtel-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.maxtel-review-upload__files {
	display: none;
}

.maxtel-review-upload.has-files .maxtel-review-upload__files {
	display: block;
	color: #0f766e;
}

.maxtel-product-review-form .comment-form-media > small {
	display: block;
	margin-top: 0.35rem;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.maxtel-product-review-form .is-invalid label,
.maxtel-product-review-form .is-invalid legend {
	color: #b91c1c;
}

.maxtel-product-review-form .is-invalid input[type="text"],
.maxtel-product-review-form .is-invalid input[type="email"],
.maxtel-product-review-form .is-invalid textarea {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.maxtel-product-review-form .is-invalid .maxtel-review-upload__dropzone,
.maxtel-product-review-form .comment-form-rating.is-invalid .maxtel-review-rating-options label {
	border-color: #ef4444;
	background: #fff7f7;
}

.maxtel-review-rating-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.maxtel-review-rating-options label {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0.5rem 0.7rem;
	border: 1px solid #dbe5ef;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
}

.maxtel-review-rating-options input {
	margin: 0;
}

.maxtel-review-rating-options small {
	color: #64748b;
	font-weight: 700;
}

@media (max-width: 640px) {
	.maxtel-product-review__media {
		grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
	}

	.maxtel-review-lightbox {
		padding: 0.8rem;
	}

	.maxtel-review-lightbox__shell {
		height: calc(100vh - 1.6rem);
	}

	.maxtel-review-lightbox__close,
	.maxtel-review-lightbox__nav {
		width: 38px;
		height: 38px;
		font-size: 26px;
	}

	.maxtel-review-lightbox__nav--prev {
		left: 0.25rem;
	}

	.maxtel-review-lightbox__nav--next {
		right: 0.25rem;
	}

	.maxtel-entry-lightbox {
		padding: 0.8rem;
	}

	.maxtel-entry-lightbox__shell {
		height: calc(100vh - 1.6rem);
	}

	.maxtel-entry-lightbox__close,
	.maxtel-entry-lightbox__nav {
		width: 38px;
		height: 38px;
		font-size: 26px;
	}

	.maxtel-entry-lightbox__nav--prev {
		left: 0.25rem;
	}

	.maxtel-entry-lightbox__nav--next {
		right: 0.25rem;
	}

	.maxtel-entry-content :where(figcaption, .wp-caption-text, .wp-element-caption, .blocks-gallery-caption) {
		border-radius: 8px;
	}

	.maxtel-product-review-form .maxtel-review-upload__dropzone {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.maxtel-review-upload__action {
		width: fit-content;
	}
}

.maxtel-product-spec-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	overflow: hidden;
}

.maxtel-product-spec-table th,
.maxtel-product-spec-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid #e8eef4;
	text-align: left;
	vertical-align: top;
}

.maxtel-product-spec-table th {
	width: 34%;
	background: #f8fafc;
	color: var(--maxtel-secondary);
}

.maxtel-product-spec-table__group th {
	width: 100%;
	padding: 0.9rem 1rem;
	background: #172033;
	color: #fff;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.maxtel-product-spec-content {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.maxtel-product-spec-content table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	overflow: hidden;
}

.maxtel-product-spec-content th,
.maxtel-product-spec-content td {
	padding: 0.85rem 1rem;
	border: 1px solid #e8eef4;
	text-align: left;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.maxtel-product-spec-content th {
	background: #f8fafc;
	color: var(--maxtel-secondary);
	font-weight: 700;
}

.maxtel-product-spec-content :where(p, ul, ol) {
	margin-top: 0;
}

.maxtel-product-spec-content :where(p, ul, ol):last-child {
	margin-bottom: 0;
}

.maxtel-product-qna {
	display: grid;
	gap: 0.75rem;
}

.maxtel-product-qna details {
	background: #f8fafc;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	padding: 0.9rem 1rem;
}

.maxtel-product-qna summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--maxtel-secondary);
}

.maxtel-product-qna div {
	margin-top: 0.75rem;
	color: #64748b;
}

.maxtel-inline-faq {
	margin: 0.75rem 0;
	padding: 0.9rem 1rem;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	background: #f8fafc;
}

.maxtel-inline-faq summary {
	cursor: pointer;
	color: var(--maxtel-secondary);
	font-weight: 700;
}

.maxtel-inline-faq__answer {
	margin-top: 0.75rem;
	color: #64748b;
}

.maxtel-inline-faq__answer > :last-child {
	margin-bottom: 0;
}

.maxtel-product-docs {
	display: grid;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.maxtel-product-docs li {
	padding: 0.9rem 1rem;
	border: 1px solid #e8eef4;
	border-radius: var(--maxtel-radius);
	background: #f8fafc;
	font-weight: 700;
}

.maxtel-product-doc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 320px));
	justify-content: start;
	gap: 0.75rem;
}

.maxtel-product-doc-grid .maxtel-dl-card {
	min-height: 0;
	padding: 0.85rem;
	border-radius: 8px;
}

.maxtel-product-doc-grid .maxtel-dl-card:hover {
	transform: translateY(-1px);
}

.maxtel-product-doc-grid .maxtel-dl-card__head {
	align-items: center;
	margin-bottom: 0.55rem;
}

.maxtel-product-doc-grid .maxtel-dl-card__file-icon {
	min-width: 40px;
	height: 40px;
	border-radius: 7px;
	font-size: 12px;
}

.maxtel-product-doc-grid .maxtel-dl-card__type {
	font-size: 12px;
	padding: 0.16rem 0.45rem;
}

.maxtel-product-doc-grid .maxtel-dl-card__title {
	margin-bottom: 0.25rem;
	font-size: 15px;
	line-height: 1.35;
}

.maxtel-product-doc-grid .maxtel-dl-card__product {
	margin-bottom: 0.25rem;
	font-size: 12px;
}

.maxtel-product-doc-grid .maxtel-dl-card__desc {
	display: none;
}

.maxtel-product-doc-grid .maxtel-dl-card__meta {
	margin-bottom: 0.65rem;
	font-size: 12px;
}

.maxtel-product-doc-grid .maxtel-dl-card__btn {
	min-height: 38px;
	padding: 0.45rem 0.8rem;
	font-size: 13px;
}

/* 404 */
.maxtel-404 {
	min-height: min(720px, calc(100vh - var(--maxtel-site-header-height)));
	padding: 0;
	background: #f5f8fb;
	color: var(--maxtel-secondary);
}

.maxtel-404__section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
	border-bottom: 1px solid #e2e8f0;
}

.maxtel-404__inner {
	max-width: 1040px;
}

.maxtel-404__intro {
	max-width: 720px;
}

.maxtel-404__code {
	display: block;
	margin-bottom: 1.1rem;
	color: rgba(0, 115, 183, 0.2);
	font-size: clamp(72px, 10vw, 112px);
	font-weight: 700;
	line-height: 0.78;
}

.maxtel-404__intro h1 {
	margin: 0;
	font-size: clamp(32px, 4vw, 46px);
	line-height: 1.15;
}

.maxtel-404__lead {
	max-width: 680px;
	margin: 1rem 0 0;
	color: #64748b;
	font-size: 16px;
	line-height: 1.65;
}

.maxtel-404__routes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 2.25rem;
}

.maxtel-404__route {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.85rem;
	align-items: center;
	min-height: 112px;
	padding: 1.15rem;
	border: 1px solid #d6e2ee;
	border-radius: 8px;
	background: #fff;
	color: var(--maxtel-secondary);
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.maxtel-404__route:hover,
.maxtel-404__route:focus-visible {
	border-color: #9bc7e3;
	color: var(--maxtel-secondary);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
	transform: translateY(-2px);
}

.maxtel-404__route.is-primary {
	border-color: var(--maxtel-primary);
	background: var(--maxtel-primary);
	color: #fff;
}

.maxtel-404__route.is-primary:hover,
.maxtel-404__route.is-primary:focus-visible {
	border-color: var(--maxtel-primary-dark);
	background: var(--maxtel-primary-dark);
	color: #fff;
}

.maxtel-404__route-copy {
	display: grid;
	gap: 0.3rem;
	min-width: 0;
}

.maxtel-404__route-copy strong {
	font-size: 16px;
	line-height: 1.3;
}

.maxtel-404__route-copy span {
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
}

.maxtel-404__route.is-primary .maxtel-404__route-copy span {
	color: rgba(255, 255, 255, 0.82);
}

.maxtel-404__route-icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #eef7fd;
	color: var(--maxtel-primary);
}

.maxtel-404__route.is-primary .maxtel-404__route-icon {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.maxtel-404__search {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.3fr);
	gap: 1.5rem;
	align-items: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #dbe5ef;
}

.maxtel-404__search-copy h2 {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
}

.maxtel-404__search-copy p {
	margin: 0.35rem 0 0;
	color: #64748b;
	font-size: 13px;
	line-height: 1.5;
}

.maxtel-404 .maxtel-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem;
}

.maxtel-404 .maxtel-search-form__input {
	width: 100%;
	min-width: 0;
	min-height: 48px;
	padding: 0.72rem 0.9rem;
	border: 1px solid #cbd9e6;
	border-radius: 8px;
	background: #fff;
	color: var(--maxtel-secondary);
	font: inherit;
}

.maxtel-404 .maxtel-search-form__input:focus {
	border-color: var(--maxtel-primary);
	outline: 3px solid rgba(0, 115, 183, 0.14);
	outline-offset: 1px;
}

.maxtel-404 .maxtel-search-form .maxtel-btn {
	min-height: 48px;
	justify-content: center;
}

@media (max-width: 760px) {
	.maxtel-404__routes {
		grid-template-columns: 1fr;
	}

	.maxtel-404__route {
		min-height: 92px;
	}

	.maxtel-404__search {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

@media (max-width: 430px) {
	.maxtel-404__section {
		padding: 3rem 0 7rem;
	}

	.maxtel-404__intro h1 {
		font-size: 30px;
	}

	.maxtel-404__lead {
		font-size: 14px;
	}

	.maxtel-404 .maxtel-search-form {
		grid-template-columns: 1fr;
	}

	.maxtel-404 .maxtel-search-form .maxtel-btn {
		width: 100%;
	}
}

/* Responsive */
@media (max-width: 1200px) {
	.maxtel-footer__grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.maxtel-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 1100px) {
	.maxtel-header-search {
		min-width: 300px;
		max-width: 340px;
	}

	.maxtel-menu {
		gap: 0.15rem 0.85rem;
	}
}

@media (max-width: 992px) {
	:root {
		--maxtel-header-topbar-height: 36px;
		--maxtel-header-main-height: 57px;
		--maxtel-header-ticker-height: 0px;
		--maxtel-site-header-height: 93px;
	}

	.maxtel-site-header {
		position: sticky !important;
		top: 0 !important;
		min-height: var(--maxtel-site-header-height);
	}

	body.admin-bar .maxtel-site-header {
		top: 32px !important;
	}

	.maxtel-site-header .maxtel-header-main {
		position: relative !important;
		top: auto !important;
	}

	.maxtel-ticker {
		display: none;
	}

	.maxtel-news-hero,
	.maxtel-news-featured-card,
	.maxtel-news-overview-panel,
	.maxtel-news-overview-featured {
		grid-template-columns: 1fr;
	}

	.maxtel-news-latest-panel {
		padding-top: 1rem;
		padding-left: 0;
		border-top: 1px solid #e2e8f0;
		border-left: 0;
	}

	.maxtel-news-featured-card__media img {
		min-height: 260px;
	}

	.maxtel-news-featured-card__media .maxtel-post-card__placeholder {
		min-height: 260px;
	}

	.maxtel-news-mini-grid,
	.maxtel-news-category-posts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.maxtel-news-category-layout {
		grid-template-columns: 1fr;
	}

	.maxtel-news-category-list .maxtel-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.maxtel-author-posts .maxtel-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.maxtel-news-category-sidebar,
	.maxtel-single-post-sidebar {
		position: static;
	}

	.maxtel-post-toc--sidebar {
		display: none;
	}

	.maxtel-post-toc--inline {
		margin-top: 1rem;
	}

	.maxtel-post-toc__summary {
		min-height: 50px;
		padding: 0.75rem 0.85rem;
	}

	.maxtel-post-toc__list {
		max-height: 46vh;
		padding-inline: 0.6rem;
	}

	.maxtel-single-post-layout {
		grid-template-columns: 1fr;
	}

	.single-product .maxtel-shop div.product {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	body.single-product > div.product {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	body.maxtel-product-detail-ratio-balanced.single-product .maxtel-shop div.product,
	body.maxtel-product-detail-ratio-media-large.single-product .maxtel-shop div.product,
	body.maxtel-product-detail-ratio-summary-large.single-product .maxtel-shop div.product,
	body.maxtel-product-detail-ratio-balanced.single-product > div.product,
	body.maxtel-product-detail-ratio-media-large.single-product > div.product,
	body.maxtel-product-detail-ratio-summary-large.single-product > div.product {
		grid-template-columns: 1fr;
	}

	.single-product .maxtel-shop {
		--maxtel-product-gallery-height: clamp(280px, 72vw, 390px);
	}

	.single-product .maxtel-shop div.product .woocommerce-product-gallery,
	.single-product .maxtel-shop div.product .summary,
	body.single-product > div.product .woocommerce-product-gallery,
	body.single-product > div.product .summary,
	.maxtel-product-media-column,
	.maxtel-product-gallery-actions,
	.maxtel-product-video-panel,
	.single-product .woocommerce-tabs,
	.maxtel-product-crosslinks {
		grid-column: 1;
		grid-row: auto;
	}

	body.maxtel-product-detail-sticky-gallery.single-product .maxtel-shop div.product .woocommerce-product-gallery,
	body.maxtel-product-detail-sticky-gallery.single-product > div.product .woocommerce-product-gallery,
	.single-product .maxtel-shop div.product .woocommerce-product-gallery {
		position: relative;
		top: auto;
		bottom: auto;
	}

	.single-product .maxtel-shop div.product .woocommerce-product-gallery,
	body.single-product > div.product .woocommerce-product-gallery {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.single-product .woocommerce-product-gallery__wrapper,
	.single-product .woocommerce-product-gallery .flex-viewport {
		grid-column: 1;
		grid-row: 1;
		touch-action: pan-y;
	}

	.single-product .woocommerce-product-gallery__image {
		aspect-ratio: 1 / 1;
		width: 100% !important;
		touch-action: pan-y;
	}

	.single-product .woocommerce-product-gallery__image,
	.single-product .woocommerce-product-gallery__image a,
	.single-product .woocommerce-product-gallery__image img {
		max-width: 100%;
	}

	.single-product .woocommerce-product-gallery .flex-viewport {
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden;
	}

	.single-product .woocommerce-product-gallery__wrapper {
		width: 100% !important;
		max-width: 100% !important;
		transform: none !important;
	}

	.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
		width: 100% !important;
		max-width: 100% !important;
	}

	.single-product .woocommerce-product-gallery__image img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: var(--maxtel-product-gallery-height);
		padding: 0.65rem;
		object-fit: contain;
	}

	.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
		display: none !important;
		float: none !important;
	}

	.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:first-child,
	.single-product .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image.flex-active-slide {
		display: grid !important;
	}

	.single-product .woocommerce-product-gallery__wrapper:has(.flex-active-slide) > .woocommerce-product-gallery__image {
		display: none !important;
	}

	.single-product .woocommerce-product-gallery__wrapper:has(.flex-active-slide) > .woocommerce-product-gallery__image.flex-active-slide {
		display: grid !important;
	}

	.single-product .maxtel-product-gallery-arrow {
		top: calc(1rem + (var(--maxtel-product-gallery-height) / 2));
		width: 38px;
		height: 38px;
		font-size: 28px;
		transform: translateY(-50%);
	}

	.single-product .maxtel-product-gallery-arrow--prev {
		left: clamp(0.75rem, 3vw, 1.1rem);
	}

	.single-product .maxtel-product-gallery-arrow--next {
		right: clamp(0.75rem, 3vw, 1.1rem);
	}

	.single-product .maxtel-product-gallery-arrow:hover,
	.single-product .maxtel-product-gallery-arrow:focus-visible {
		transform: translateY(-50%);
	}

	.single-product .woocommerce-product-gallery .flex-control-thumbs {
		grid-column: 1;
		grid-row: 2;
		display: flex;
		justify-content: flex-start;
		gap: 0.5rem;
		width: 100%;
		max-width: 100%;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 0.25rem;
		scroll-snap-type: x proximity;
	}

	.single-product .woocommerce-product-gallery:has(.woocommerce-product-gallery__image + .woocommerce-product-gallery__image) {
		grid-template-rows: var(--maxtel-product-gallery-height) minmax(68px, auto);
	}

	.single-product .woocommerce-product-gallery .flex-control-thumbs li {
		flex: 0 0 64px;
		max-width: 64px;
		scroll-snap-align: start;
	}

	.maxtel-product-meta-line,
	.maxtel-product-quote-card__support,
	.maxtel-product-policies {
		grid-template-columns: 1fr;
	}

	.maxtel-product-video-panel {
		width: 100%;
		margin: 0;
	}

	.single-product .maxtel-shop div.product .woocommerce-product-gallery,
	.single-product .maxtel-shop div.product .summary,
	body.single-product > div.product .woocommerce-product-gallery,
	body.single-product > div.product .summary {
		width: 100% !important;
	}

	.maxtel-cat-listing-layout {
		grid-template-columns: 1fr;
	}

	.maxtel-cat-sidebar {
		position: static;
	}

	.maxtel-cat-products__head {
		align-items: flex-start;
	}

	.maxtel-cat-products__headline {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 0.5rem;
	}

	.maxtel-cat-products__head h2 {
		font-size: 24px;
		line-height: 1.18;
	}

	.maxtel-cat-products__count {
		justify-self: start;
		min-height: 24px;
		font-size: 12px;
	}

	.tax-product_cat .maxtel-shop .woocommerce ul.products,
	.tax-product_cat .maxtel-shop ul.products,
	.tax-product_cat.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.maxtel-cat-hero {
		padding: 0;
	}

	.maxtel-cat-hero__media {
		display: none;
	}

	.maxtel-header-main__inner {
		display: grid;
		grid-template-columns: minmax(112px, auto) minmax(0, 1fr) auto;
		gap: 0.5rem;
		height: calc(var(--maxtel-header-main-height) - 1px);
		min-height: calc(var(--maxtel-header-main-height) - 1px);
		padding: 0.55rem 0;
	}

	.maxtel-header-main {
		height: var(--maxtel-header-main-height);
		min-height: var(--maxtel-header-main-height);
	}

	.maxtel-header__brand {
		--maxtel-header-logo-width: 128px;
		--maxtel-header-logo-image-height: 37.2px;
		--maxtel-header-logo-slot-height: 42px;
		min-width: 0;
	}

	.maxtel-header__brand .custom-logo-link {
		height: var(--maxtel-header-logo-slot-height);
	}

	.maxtel-logo-text__word {
		font-size: 22px;
	}

	.maxtel-nav,
	.maxtel-header__tools > .maxtel-btn--cta {
		display: none;
	}

	.maxtel-nav,
	.maxtel-menu {
		min-height: 0;
	}

	.maxtel-header__tools {
		justify-content: flex-end;
		gap: 0;
	}

	.maxtel-header-search-shared {
		display: block;
		min-width: 0;
		width: 100%;
		overflow: visible;
	}

	.maxtel-header-search-shared .maxtel-header-search {
		width: 100%;
		min-width: 0;
		max-width: none;
		height: 38px;
		border-radius: 10px;
		box-shadow: none;
	}

	.maxtel-header-search-shared .maxtel-header-search__cat {
		width: 78px;
		min-width: 78px;
		max-width: 78px;
		border-radius: 9px 0 0 9px;
		padding-left: 0.5rem;
		padding-right: 1.15rem;
		font-size: 12px;
		background-position:
			calc(100% - 10px) 50%,
			calc(100% - 6px) 50%,
			0 0;
		background-size: 4px 4px, 4px 4px, 100% 100%;
	}

	.maxtel-header-search-shared .maxtel-header-search-scope {
		flex-basis: 82px;
		width: 82px;
		min-width: 82px;
		max-width: 82px;
		border-radius: 9px 0 0 9px;
	}

	.maxtel-header-search-shared .maxtel-header-search-scope__button {
		border-radius: 9px 0 0 9px;
		padding: 0 0.5rem;
		font-size: 12px;
	}

	.maxtel-header-search-shared .maxtel-header-search-scope__chevron {
		width: 7px;
		height: 7px;
		border-width: 1.5px;
	}

	.maxtel-header-search-shared .maxtel-header-search-scope__menu {
		min-width: 156px;
	}

	.maxtel-header-search-shared .maxtel-header-search__input {
		min-width: 3.5rem;
		padding: 0 0.45rem;
		font-size: 12px;
	}

	.maxtel-header-search-shared .maxtel-header-search__btn {
		width: 38px;
		min-width: 38px;
		border-radius: 0 9px 9px 0;
	}

	.maxtel-header-search-shared .maxtel-header-search__suggestions {
		right: auto;
		left: 50%;
		width: min(360px, calc(100vw - 2rem));
		min-width: 0;
		max-height: min(480px, calc(100vh - 120px));
		transform: translateX(-50%);
	}

	.maxtel-menu-toggle {
		width: 38px;
		height: 38px;
		padding: 0.35rem;
		border: 1px solid #d6e2ee;
		border-radius: 10px;
		background: #fff;
	}

	.maxtel-mega {
		display: none !important;
	}

	body.maxtel-nav-open {
		overflow: hidden;
	}

	body.maxtel-nav-open::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 190;
		background: rgba(15, 23, 42, 0.48);
	}

	.maxtel-mobile-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 260;
		width: min(90vw, 390px);
		overflow-y: auto;
	}

	.maxtel-mega-mobile {
		margin: 0 1rem 1rem;
		border: 1px solid #dbe7f0;
		border-radius: var(--maxtel-radius);
		background: #f8fbfe;
	}

	.maxtel-mega-mobile__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		padding: 0.75rem;
	}

	.maxtel-mega-mobile__head > a {
		color: var(--maxtel-primary);
		font-size: 14px;
		font-weight: 700;
	}

	.maxtel-mega-mobile__toggle {
		flex-shrink: 0;
		padding: 0.45rem;
		border-radius: 50%;
		background: #e3f2fb;
		color: var(--maxtel-primary);
		transition: transform 0.2s ease;
	}

	.maxtel-mega-mobile__toggle[aria-expanded="true"] {
		transform: rotate(180deg);
	}

	.maxtel-mega-mobile__groups {
		padding: 0 0.75rem 0.75rem;
		border-top: 1px solid #dbe7f0;
	}

	.maxtel-mega-mobile__group {
		padding: 0.75rem 0;
		border-bottom: 1px solid #e2e8f0;
	}

	.maxtel-mega-mobile__group:last-child {
		border-bottom: 0;
	}

	.maxtel-mega-mobile__group > a {
		font-weight: 700;
		color: var(--maxtel-primary);
		font-size: 14px;
	}

	.maxtel-mega-mobile__group ul {
		list-style: none;
		margin: 0.35rem 0 0;
		padding: 0;
	}

	.maxtel-mega-mobile__group ul a {
		display: block;
		padding: 0.35rem 0;
		font-size: 13px;
		color: #64748b;
	}

	.maxtel-menu-toggle {
		display: flex;
	}

	.maxtel-topbar__left .maxtel-topbar__item:first-child span {
		display: none;
	}

	.maxtel-footer__bar {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.maxtel-footer__payments {
		justify-content: center;
	}
}

@media (max-width: 782px) {
	body.admin-bar .maxtel-site-header {
		top: 46px !important;
	}

	body.admin-bar.single-product .woocommerce-tabs ul.tabs,
	body.admin-bar.single-product div.product .woocommerce-tabs ul.tabs {
		top: calc(var(--maxtel-site-header-height, 96px) + 46px);
	}
}

@media (max-width: 640px) {
	body {
		overflow-x: hidden;
	}

	.maxtel-search-rows {
		gap: 1.5rem;
	}

	.maxtel-search-column__head {
		display: grid;
		gap: 0.55rem;
		align-items: start;
		justify-content: stretch;
	}

	.maxtel-search-column__head span {
		width: fit-content;
	}

	.maxtel-search-column__items,
	.maxtel-search-column--products .maxtel-search-column__items,
	.maxtel-search-column--posts .maxtel-search-column__items,
	.maxtel-search-column--documents .maxtel-search-column__items {
		grid-template-columns: 1fr;
	}

	.maxtel-search-column__more {
		width: 100%;
	}

	body.single-product {
		overflow-x: hidden;
		--maxtel-product-detail-gutter: 1rem;
	}

	body.single-product #primary > .maxtel-container,
	body.single-product .maxtel-layout-container {
		box-sizing: border-box;
		width: calc(100vw - 1rem) !important;
		max-width: calc(100vw - 1rem) !important;
		min-width: 0;
		margin-right: auto !important;
		margin-left: auto !important;
		overflow-x: clip;
		overflow-y: visible;
	}

	body.single-product .maxtel-product-detail-frame,
	body.single-product .maxtel-shop__frame,
	body.single-product > .woocommerce-notices-wrapper,
	body.single-product > div.product {
		box-sizing: border-box;
		width: calc(100vw - 1.5rem) !important;
		max-width: calc(100vw - 1.5rem) !important;
		margin-right: auto !important;
		margin-left: auto !important;
		overflow-x: clip;
		overflow-y: visible;
	}

	body.single-product :where(.maxtel-product-media-column, .woocommerce-product-gallery, .summary, .woocommerce-tabs, .maxtel-product-crosslinks, .maxtel-product-gallery-actions, .flex-control-thumbs) {
		box-sizing: border-box;
		max-width: 100%;
		min-width: 0;
	}

	.tax-product_cat .maxtel-product-archive-frame {
		width: calc(100% - 2rem) !important;
		max-width: calc(100% - 2rem) !important;
	}

	.single-product .maxtel-shop {
		--maxtel-product-detail-gutter: 1rem;
		padding-top: 0.35rem;
	}

	.single-product .maxtel-breadcrumbs,
	.single-product .maxtel-breadcrumbs a,
	.single-product .maxtel-breadcrumbs span {
		white-space: normal;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.maxtel-ticker__inner {
		gap: 0.5rem;
		height: calc(var(--maxtel-header-ticker-height) - 1px);
		min-height: calc(var(--maxtel-header-ticker-height) - 1px);
	}

	.maxtel-ticker {
		height: var(--maxtel-header-ticker-height);
		min-height: var(--maxtel-header-ticker-height);
	}

	.maxtel-ticker__badge {
		padding: 0.35rem 0.55rem;
		font-size: 12px;
	}

	.maxtel-ticker__content {
		gap: 1.5rem;
		animation-duration: 34s;
	}

	.maxtel-ticker__item {
		font-size: 12px;
	}

	.maxtel-categories {
		padding-block: 1.75rem;
	}

	.maxtel-categories .maxtel-section__title {
		margin-bottom: 1rem;
		font-size: 29px;
		line-height: 1.2;
	}

	.maxtel-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.maxtel-category-card {
		border-radius: 10px;
	}

	.maxtel-category-card__media {
		aspect-ratio: 1 / 1;
		min-height: 0;
		max-height: none;
	}

	.maxtel-category-card__body {
		gap: 0.25rem;
		padding: 0.62rem;
	}

	.maxtel-category-card h3,
	.maxtel-category-card p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.maxtel-category-card h3 {
		-webkit-line-clamp: 2;
		margin: 0;
		font-size: 12px;
		line-height: 1.32;
	}

	.maxtel-category-card p {
		-webkit-line-clamp: 1;
		font-size: 12px;
		line-height: 1.35;
	}

	.maxtel-category-card__link {
		margin-top: 0.35rem;
		font-size: 12px;
	}

	.maxtel-section-head,
	.maxtel-news-group__head,
	.maxtel-news-category-block__head {
		display: grid;
	}

	.maxtel-news-hero,
	.maxtel-news-group,
	.maxtel-news-featured-card__body,
	.maxtel-news-overview-panel {
		padding: 1rem;
	}

	.maxtel-news-search,
	.maxtel-news-mini-grid,
	.maxtel-news-category-posts,
	.maxtel-news-latest-item {
		display: grid;
		grid-template-columns: 1fr;
	}

	.maxtel-news-category-list .maxtel-post-grid {
		grid-template-columns: 1fr;
	}

	.maxtel-author-posts .maxtel-post-grid {
		grid-template-columns: 1fr;
	}

	.maxtel-news-latest-item__media img,
	.maxtel-news-latest-item__media .maxtel-post-card__placeholder {
		aspect-ratio: 16 / 9;
	}

	.maxtel-news-page .maxtel-news-overview,
	.maxtel-news-page .maxtel-news-category-sections {
		margin: 1.5rem 0;
	}

	.maxtel-news-page .maxtel-section__title {
		font-size: 28px;
		line-height: 1.2;
	}

	.maxtel-news-category-head {
		margin-bottom: 0.75rem;
	}

	.maxtel-news-category-page .maxtel-news-category-list {
		gap: 0.25rem;
	}

	.maxtel-news-page .maxtel-news-overview-panel {
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.maxtel-news-page .maxtel-news-latest-panel {
		padding-top: 0;
		border-top: 0;
	}

	.maxtel-news-page .maxtel-news-latest-panel__head {
		display: none;
	}

	.maxtel-news-page .maxtel-news-latest-list,
	.maxtel-news-page .maxtel-news-category-posts,
	.maxtel-news-category-page .maxtel-post-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 0;
	}

	.maxtel-news-page .maxtel-news-overview-featured,
	.maxtel-news-page .maxtel-news-latest-item,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card {
		display: grid;
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 0.85rem;
		align-items: start;
		height: auto;
		padding: 0.9rem 0;
		overflow: visible;
		background: transparent;
		border: 0;
		border-top: 1px solid #e2e8f0;
		border-radius: 0;
		box-shadow: none;
	}

	.maxtel-news-page .maxtel-news-overview-featured {
		padding-top: 0.25rem;
		border-top: 0;
	}

	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card:hover,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card:hover {
		border-color: #e2e8f0;
		box-shadow: none;
		transform: none;
	}

	.maxtel-news-page .maxtel-news-overview-featured__media,
	.maxtel-news-page .maxtel-news-latest-item__media,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__thumb,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__thumb {
		display: block;
		width: 100%;
		overflow: hidden;
		aspect-ratio: 16 / 10;
		background: #e8f0f8;
		border-radius: 6px;
	}

	.maxtel-news-page .maxtel-news-overview-featured__media img,
	.maxtel-news-page .maxtel-news-latest-item__media img,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__thumb img,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__thumb img,
	.maxtel-news-page .maxtel-news-overview-featured__media .maxtel-post-card__placeholder,
	.maxtel-news-page .maxtel-news-latest-item__media .maxtel-post-card__placeholder,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__placeholder,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__placeholder {
		display: block;
		width: 100%;
		height: 100%;
		min-height: 0;
		aspect-ratio: auto;
		object-fit: cover;
		object-position: center;
	}

	.maxtel-news-page .maxtel-news-overview-featured__body,
	.maxtel-news-page .maxtel-news-latest-item__body,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__body,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__body {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		min-width: 0;
		padding: 0;
	}

	.maxtel-news-page .maxtel-news-overview-featured__body > .maxtel-news-overview-label,
	.maxtel-news-page .maxtel-news-overview-featured__body p,
	.maxtel-news-page .maxtel-news-overview-featured__body .maxtel-btn,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__body p,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__body p,
	.maxtel-news-category-page .maxtel-post-grid .posted-on,
	.maxtel-news-category-page .maxtel-post-grid .entry-date,
	.maxtel-news-page .posted-on,
	.maxtel-news-page .entry-date {
		display: none;
	}

	.maxtel-news-page .maxtel-news-overview-featured__body h3,
	.maxtel-news-page .maxtel-news-latest-item__body h4,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__title,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__title {
		order: 1;
		display: -webkit-box;
		overflow: hidden;
		margin: 0;
		font-size: 16px;
		font-weight: 400;
		line-height: 1.32;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.maxtel-news-page .maxtel-news-overview-featured__body h3 a,
	.maxtel-news-page .maxtel-news-latest-item__body h4 a,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__title a,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__title a {
		font-weight: inherit;
	}

	.maxtel-news-page .maxtel-news-latest-item__body h4,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__title,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__title {
		-webkit-line-clamp: 2;
	}

	.maxtel-news-page .maxtel-news-overview-featured__meta,
	.maxtel-news-page .maxtel-news-latest-item__meta,
	.maxtel-news-page .maxtel-news-category-posts .maxtel-post-card__meta,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__meta {
		order: 2;
		gap: 0;
		margin: 0.42rem 0 0;
	}

	.maxtel-news-page .maxtel-post-card__cat,
	.maxtel-news-page .maxtel-news-latest-item__body .maxtel-post-card__cat,
	.maxtel-news-category-page .maxtel-post-grid .maxtel-post-card__cat {
		font-size: 11px;
		font-weight: 700;
		line-height: 1.25;
		text-transform: uppercase;
	}

	.maxtel-news-category-block__link {
		width: fit-content;
	}

	.maxtel-news-search .maxtel-btn {
		justify-content: center;
		width: 100%;
	}

	.maxtel-entry,
	.maxtel-author-hero,
	.maxtel-author-box,
	.maxtel-single-sidebar-block {
		padding: 1rem;
	}

	.maxtel-entry__title {
		font-size: 26px;
		line-height: 1.26;
	}

	.maxtel-entry__meta {
		gap: 0.3rem 0.75rem;
		font-size: 13px;
	}

	.maxtel-entry-content table {
		min-width: 560px;
		font-size: 14px;
	}

	.maxtel-entry-content table :where(th, td) {
		padding: 0.72rem 0.8rem;
	}

	.maxtel-author-hero,
	.maxtel-author-box {
		grid-template-columns: 1fr;
	}

	.maxtel-author-hero {
		gap: 1rem;
		margin: 1rem 0 1.5rem;
	}

	.maxtel-author-hero__profile {
		grid-template-columns: 88px minmax(0, 1fr);
		gap: 0.85rem;
	}

	.maxtel-author-hero__avatar,
	.maxtel-author-box__avatar {
		max-width: 96px;
	}

	.maxtel-author-hero__avatar {
		width: 88px;
		height: 88px;
	}

	.maxtel-author-hero__identity .maxtel-page-title {
		margin-bottom: 0.25rem;
		font-size: 24px;
		line-height: 1.22;
	}

	.maxtel-author-hero__role {
		font-size: 14px;
	}

	.maxtel-author-socials {
		gap: 0.35rem;
		margin-top: 0.65rem;
	}

	.maxtel-author-social {
		width: 34px;
		height: 34px;
	}

	.maxtel-author-bio {
		font-size: 14px;
		line-height: 1.6;
	}

	.maxtel-author-profile-list {
		grid-template-columns: 1fr;
	}

	.maxtel-author-profile-list__item,
	.maxtel-author-profile-list__item:nth-child(2n),
	.maxtel-author-profile-list__item:nth-last-child(-n + 2) {
		border-right: 0;
		border-bottom: 1px solid #d7e4f0;
	}

	.maxtel-author-profile-list__item:last-child {
		border-bottom: 0;
	}

	.maxtel-author-profile-list__item:nth-child(1) {
		grid-column: 1;
		grid-row: 1;
	}

	.maxtel-author-profile-list__item:nth-child(4) {
		grid-column: 1;
		grid-row: 2;
		border-bottom: 1px solid #d7e4f0;
	}

	.maxtel-author-profile-list__item:nth-child(2) {
		grid-column: 1;
		grid-row: 3;
	}

	.maxtel-author-profile-list__item:nth-child(3) {
		grid-column: 1;
		grid-row: 4;
		border-bottom: 0;
	}

	.maxtel-author-hero__content .maxtel-author-profile-list__item,
	.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(1),
	.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(2),
	.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(3),
	.maxtel-author-hero__content .maxtel-author-profile-list__item:nth-child(4) {
		grid-column: 1;
		grid-row: auto;
		border-right: 0;
		border-bottom: 1px solid #d7e4f0;
	}

	.maxtel-author-hero__content .maxtel-author-profile-list__item:last-child {
		border-bottom: 0;
	}

	.maxtel-author-box__avatar {
		width: 60px;
		height: 60px;
	}

	.maxtel-author-box {
		grid-template-columns: 60px minmax(0, 1fr);
		gap: 0.8rem;
		align-items: start;
		margin: 1rem 0 1.25rem;
		padding: 0.9rem;
		box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
	}

	.maxtel-author-box__content {
		display: contents;
	}

	.maxtel-author-box__head,
	.maxtel-post-rating-summary {
		display: grid;
	}

	.maxtel-author-box__head {
		align-self: center;
		gap: 0.35rem;
	}

	.maxtel-author-box__head .maxtel-eyebrow {
		margin-bottom: 0.1rem;
		font-size: 12px;
	}

	.maxtel-author-box h2 {
		font-size: 18px;
		line-height: 1.25;
	}

	.maxtel-author-box__count {
		width: fit-content;
		min-height: 24px;
		padding: 0.25rem 0.55rem;
		font-size: 12px;
	}

	.maxtel-author-box__content > p:not(.maxtel-eyebrow) {
		display: -webkit-box;
		grid-column: 1 / -1;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
		font-size: 14px;
		line-height: 1.55;
	}

	.maxtel-author-box__links {
		grid-column: 1 / -1;
		gap: 0.35rem;
		font-size: 12px;
	}

	.maxtel-author-box__links a {
		min-height: 28px;
		padding: 0.28rem 0.55rem;
	}

	.maxtel-post-rating-summary__score {
		text-align: left;
	}

	.maxtel-sidebar-product a {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.maxtel-compact-post {
		--maxtel-compact-thumb-width: 112px;
		grid-template-columns: var(--maxtel-compact-thumb-width) minmax(0, 1fr);
	}

	.maxtel-product-actions {
		display: grid;
		min-width: 0;
	}

	.maxtel-product-key-specs dl {
		grid-template-columns: 1fr;
	}

	.maxtel-product-actions .maxtel-btn {
		justify-content: center;
		min-width: 0;
		width: 100%;
		white-space: normal;
	}

	.maxtel-product-actions .maxtel-compare-toggle {
		min-width: 0;
		width: 100%;
		white-space: normal;
	}

	.maxtel-product-anchor-nav {
		gap: 1rem;
		margin-bottom: 1rem;
		padding: 0.65rem 0;
	}

	.maxtel-product-anchor-nav a {
		font-size: 13px;
	}

	.maxtel-product-quote-card__main {
		display: grid;
	}

	.maxtel-product-quote-card__main p {
		white-space: normal;
	}

	.maxtel-product-quote-card__actions {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.maxtel-product-quote-card__group {
		min-height: 54px;
		padding: 0.6rem 0.65rem;
	}

	.maxtel-product-quote-card__action {
		flex: 0 0 auto;
		width: 40px;
		height: 40px;
		min-height: 40px;
	}

	.maxtel-product-gallery-actions {
		flex-wrap: nowrap;
		gap: 0.55rem;
		overflow-x: auto;
		padding-bottom: 0.6rem;
		-webkit-overflow-scrolling: touch;
	}

	.maxtel-product-gallery-actions > a,
	.maxtel-product-gallery-actions .maxtel-compare-toggle {
		flex: 0 0 auto;
		font-size: 14px;
	}

	.maxtel-product-policies--media {
		display: none;
	}

	.maxtel-product-policies--summary {
		display: grid;
		min-height: 224px;
	}

	.single-product .maxtel-shop div.product .woocommerce-product-gallery,
	.single-product .maxtel-shop div.product .summary,
	body.single-product > div.product .woocommerce-product-gallery,
	body.single-product > div.product .summary,
	.maxtel-product-media-column,
	.maxtel-product-video-panel,
	.single-product .woocommerce-tabs,
	.maxtel-product-crosslinks__block {
		max-width: 100%;
		min-width: 0;
		border-radius: 10px;
		overflow-x: clip;
		overflow-y: visible;
	}

	.single-product .woocommerce-tabs,
	body.single-product div.product .woocommerce-tabs {
		overflow: visible;
	}

	.single-product .maxtel-shop div.product .summary,
	body.single-product > div.product .summary,
	body.maxtel-product-detail-style-brand.single-product .maxtel-shop div.product .summary,
	body.maxtel-product-detail-style-brand.single-product > div.product .summary {
		padding: 0.75rem 0.75rem 0;
	}

	.single-product .maxtel-shop div.product,
	body.single-product > div.product {
		min-width: 0;
		max-width: 100%;
		overflow-x: clip;
		overflow-y: visible;
	}

	.single-product .summary .product_title,
	.single-product .woocommerce-product-details__short-description,
	.maxtel-product-meta-line,
	.maxtel-product-feature-list,
	.maxtel-product-key-specs,
	.maxtel-product-quote-card,
	.maxtel-product-policies,
	.maxtel-product-policy,
	.single-product .woocommerce-tabs .panel {
		min-width: 0;
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.single-product .woocommerce-product-details__short-description,
	.single-product .woocommerce-product-details__short-description p,
	.single-product .woocommerce-product-details__short-description li,
	.maxtel-product-feature-list,
	.maxtel-product-feature-list li,
	.single-product .woocommerce-tabs .panel {
		overflow-wrap: normal;
		word-break: normal;
	}

	.single-product .summary .product_title {
		font-size: 28px;
	}

	.single-product .woocommerce-product-details__short-description table,
	.single-product .woocommerce-tabs .panel table:not(.maxtel-product-spec-table) {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.single-product .woocommerce-product-details__short-description table thead,
	.single-product .woocommerce-product-details__short-description table tbody,
	.single-product .woocommerce-product-details__short-description table tfoot,
	.single-product .woocommerce-tabs .panel table:not(.maxtel-product-spec-table) thead,
	.single-product .woocommerce-tabs .panel table:not(.maxtel-product-spec-table) tbody,
	.single-product .woocommerce-tabs .panel table:not(.maxtel-product-spec-table) tfoot {
		display: table;
		min-width: 560px;
	}

	.single-product .woocommerce-product-details__short-description table th,
	.single-product .woocommerce-product-details__short-description table td,
	.single-product .woocommerce-tabs .panel table:not(.maxtel-product-spec-table) th,
	.single-product .woocommerce-tabs .panel table:not(.maxtel-product-spec-table) td {
		min-width: 92px;
		white-space: normal;
		overflow-wrap: anywhere;
	}

	.single-product .woocommerce-product-gallery .flex-control-thumbs {
		display: flex;
		justify-content: flex-start;
		gap: 0.4rem;
		max-width: 100%;
		overflow-x: auto;
		padding-bottom: 0.25rem;
		scroll-snap-type: x proximity;
	}

	.single-product .woocommerce-product-gallery .flex-control-thumbs li {
		flex: 0 0 58px;
		scroll-snap-align: start;
	}

	.maxtel-product-meta-line {
		display: grid;
	}

	.maxtel-product-grid,
	.maxtel-woocommerce .woocommerce ul.products,
	.maxtel-woocommerce ul.products,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.875rem;
	}

	.maxtel-product-card__image,
	.maxtel-woocommerce .woocommerce ul.products li.product a img,
	.maxtel-woocommerce ul.products li.product a img,
	.woocommerce ul.products li.product a img {
		height: 170px;
		padding: 0.75rem;
	}

	.maxtel-product-card,
	.maxtel-woocommerce .woocommerce ul.products li.product,
	.maxtel-woocommerce ul.products li.product,
	.woocommerce ul.products li.product {
		min-height: auto;
	}

	.maxtel-product-card__code,
	.maxtel-loop-product-code {
		padding-inline: 0.75rem;
		font-size: 15px;
	}

	.maxtel-product-card__title,
	.maxtel-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title,
	.maxtel-woocommerce ul.products li.product .woocommerce-loop-product__title,
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		padding-inline: 0.75rem;
		font-size: 14px;
		line-height: 1.35;
		overflow-wrap: anywhere;
	}

	.maxtel-loop-product-code {
		overflow-wrap: anywhere;
	}

	.maxtel-product-card-meta {
		min-height: 5.35rem;
		padding-inline: 0.75rem;
		font-size: 12px;
	}

	.maxtel-product-card-meta__row {
		grid-template-columns: minmax(48px, 0.55fr) minmax(0, 1fr);
		gap: 5px;
	}

	.maxtel-product-card__price,
	.maxtel-woocommerce .woocommerce ul.products li.product .price,
	.maxtel-woocommerce ul.products li.product .price,
	.woocommerce ul.products li.product .price {
		padding-inline: 0.75rem;
		font-size: 14px;
	}

	.tax-product_cat .maxtel-shop .woocommerce ul.products,
	.tax-product_cat .maxtel-shop ul.products,
	.tax-product_cat.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.maxtel-shop .woocommerce ul.products,
	.maxtel-shop ul.products {
		display: grid !important;
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin: 0;
		padding: 0;
	}

	.maxtel-shop .woocommerce ul.products::before,
	.maxtel-shop .woocommerce ul.products::after,
	.maxtel-shop ul.products::before,
	.maxtel-shop ul.products::after {
		display: none;
	}

	.maxtel-shop .woocommerce ul.products li.product,
	.maxtel-shop ul.products li.product {
		float: none !important;
		width: 100% !important;
		min-width: 0;
		margin: 0 !important;
	}

	.tax-product_cat .maxtel-shop ul.products li.product a img,
	.tax-product_cat.woocommerce ul.products li.product a img {
		height: 150px;
		padding: 0.65rem;
	}

	.maxtel-woocommerce .woocommerce .woocommerce-result-count,
	.maxtel-woocommerce .woocommerce .woocommerce-ordering,
	.woocommerce .woocommerce-result-count,
	.woocommerce .woocommerce-ordering {
		float: none;
		width: 100%;
		text-align: left;
	}

	.maxtel-woocommerce .woocommerce .woocommerce-ordering select,
	.woocommerce .woocommerce-ordering select {
		width: 100%;
	}

	.maxtel-shop-loop > .maxtel-wc-ordering {
		display: grid;
		gap: 0;
		margin-left: 0;
	}

	.maxtel-wc-ordering__label {
		border-right: 0;
		border-bottom: 1px solid #e2e8f0;
		border-radius: 11px 11px 0 0;
	}

	.maxtel-wc-ordering__select {
		width: 100%;
		min-width: 0;
	}

	.maxtel-wc-ordering__button,
	.maxtel-shop-loop > .woocommerce-ordering select,
	.maxtel-woocommerce .woocommerce .woocommerce-ordering select {
		border-radius: 0 0 11px 11px;
	}

	.maxtel-wc-ordering__menu {
		left: 0;
		right: auto;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.maxtel-wc-ordering__option {
		white-space: normal;
	}

	.maxtel-compare-toggle {
		min-height: 36px;
		padding: 0.5rem 0.65rem;
	}

	.maxtel-woocommerce ul.products li.product .maxtel-compare-loop-action,
	.maxtel-woocommerce .woocommerce ul.products li.product .maxtel-compare-loop-action,
	.woocommerce ul.products li.product .maxtel-compare-loop-action {
		display: block;
		margin-top: auto;
		padding: 0 0.65rem 0.65rem;
	}

	.maxtel-compare-loop-action .maxtel-compare-toggle--loop {
		width: 100%;
		min-height: 34px;
		padding: 0.42rem 0.55rem;
		border-radius: 8px;
		font-size: 12px;
		line-height: 1.2;
	}

	.maxtel-compare-tray {
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 0.75rem;
		bottom: 0.75rem;
		right: 0.75rem;
		left: 0.75rem;
		width: auto;
		padding: 0.75rem;
	}

	.maxtel-compare-notice {
		top: 0.75rem;
		right: 0.75rem;
		left: 0.75rem;
		bottom: auto;
		width: auto;
	}

	.maxtel-compare-tray__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.maxtel-compare-chip {
		max-width: 100%;
	}

	.maxtel-compare-modal {
		padding: 0.5rem;
	}

	.maxtel-compare-modal__dialog {
		max-height: 92vh;
	}

	.maxtel-compare-modal__head {
		padding: 0.85rem 1rem;
	}

	.maxtel-compare-modal__head h2 {
		font-size: 16px;
	}

	.maxtel-compare-modal__body {
		padding: 1rem;
	}

	.maxtel-floating-actions {
		right: 12px;
		left: auto;
		bottom: 14px;
		right: max(12px, env(safe-area-inset-right));
		bottom: max(14px, env(safe-area-inset-bottom));
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-end;
		gap: 9px;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.maxtel-floating-actions--bottom-left {
		right: auto;
		left: 12px;
		left: max(12px, env(safe-area-inset-left));
		align-items: flex-start;
	}

	.maxtel-floating-action {
		flex: 0 0 auto;
		width: 46px;
		min-width: 46px;
		height: 46px;
		min-height: 46px;
		padding: 7px;
		border-radius: 999px;
		box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
		font-size: 12px;
		text-align: left;
	}

	.maxtel-floating-action--call:hover,
	.maxtel-floating-action--call:focus-visible,
	.maxtel-floating-action--zalo:hover,
	.maxtel-floating-action--zalo:focus-visible,
	.maxtel-floating-action--top:hover,
	.maxtel-floating-action--top:focus-visible {
		width: 46px;
	}

	.maxtel-floating-action:hover,
	.maxtel-floating-action:focus-visible {
		transform: none;
		box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
	}

	.maxtel-floating-action__icon {
		width: 30px;
		height: 30px;
		flex-basis: 30px;
		background: rgba(255, 255, 255, 0.16);
	}

	.maxtel-floating-action__body {
		display: none;
	}

	.maxtel-floating-action__meta {
		display: none;
	}

	body:has(.maxtel-compare-tray:not([hidden])) .maxtel-floating-actions {
		bottom: 118px;
		bottom: max(118px, calc(92px + env(safe-area-inset-bottom)));
	}

	.maxtel-compare-table {
		min-width: 640px;
	}

	.single-product .woocommerce-tabs ul.tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 0.25rem;
	}

	.single-product .woocommerce-tabs ul.tabs li {
		flex: 0 0 auto;
	}

	.single-product .woocommerce-tabs .panel {
		padding: 1rem;
	}

	.maxtel-product-spec-table th,
	.maxtel-product-spec-table td {
		display: block;
		width: 100%;
	}

	.maxtel-cat-filter,
	.maxtel-cat-block {
		padding: 1rem;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter,
	.tax-product_cat .maxtel-cat-sidebar .maxtel-cat-filter {
		padding: 0.75rem;
	}

	.maxtel-cat-filter__toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		width: 100%;
		min-height: 44px;
		border: 1px solid #cfd9e5;
		border-radius: 10px;
		background: #fff;
		color: #172033;
		padding: 0 0.85rem;
		font: inherit;
		font-size: 15px;
		font-weight: 700;
		cursor: pointer;
	}

	.maxtel-cat-filter__toggle svg {
		flex-shrink: 0;
		transition: transform 0.18s ease;
	}

	.maxtel-cat-filter.is-open .maxtel-cat-filter__toggle svg {
		transform: rotate(180deg);
	}

	.maxtel-cat-filter__panel {
		display: none;
		margin-top: 0.75rem;
		padding-top: 0.75rem;
		border-top: 1px solid #e2e8f0;
	}

	.maxtel-cat-filter.is-open .maxtel-cat-filter__panel {
		display: block;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__head {
		display: none;
	}

	.maxtel-cat-hero {
		padding: 0;
	}

	.maxtel-cat-hero__title {
		font-size: 28px;
	}
	.maxtel-cat-hero__intro {
		display: none;
	}

	.maxtel-cat-hero__desc,
	.maxtel-cat-filter__head p {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.maxtel-cat-hero__desc p {
		display: block;
		-webkit-line-clamp: unset;
	}

	.maxtel-cat-filter__actions {
		display: grid;
	}

	.maxtel-cat-filter__actions .maxtel-btn {
		justify-content: center;
		width: 100%;
	}

	.maxtel-cat-listing-layout,
	.maxtel-cat-sidebar,
	.maxtel-cat-sidebar .maxtel-cat-filter {
		min-width: 0;
		max-width: 100%;
	}

	.maxtel-cat-sidebar .maxtel-cat-filter__form input,
	.maxtel-cat-sidebar .maxtel-cat-filter__form select {
		min-width: 0;
	}

	.tax-product_cat .maxtel-shop .woocommerce ul.products,
	.tax-product_cat .maxtel-shop ul.products,
	.tax-product_cat.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.tax-product_cat .maxtel-shop ul.products li.product,
	.tax-product_cat.woocommerce ul.products li.product {
		border-radius: 8px;
	}

	.tax-product_cat .maxtel-shop ul.products li.product a img,
	.tax-product_cat.woocommerce ul.products li.product a img {
		height: clamp(112px, 33vw, 140px);
		margin: 0;
		padding: 0.28rem;
	}

	.woocommerce ul.products li.product span.onsale.maxtel-sale-badge,
	.maxtel-woocommerce ul.products li.product span.onsale.maxtel-sale-badge,
	.tax-product_cat .maxtel-shop ul.products li.product span.onsale.maxtel-sale-badge,
	.tax-product_cat.woocommerce ul.products li.product span.onsale.maxtel-sale-badge {
		top: 0.45rem;
		right: 0.45rem;
		padding: 0.28rem 0.42rem;
		border-radius: 999px;
		font-size: 12px;
		box-shadow: 0 6px 14px rgba(201, 36, 47, 0.2);
	}

	.woocommerce ul.products li.product .maxtel-sale-badge__label,
	.maxtel-woocommerce ul.products li.product .maxtel-sale-badge__label {
		display: none;
	}

	.woocommerce ul.products li.product .maxtel-sale-badge__value,
	.maxtel-woocommerce ul.products li.product .maxtel-sale-badge__value {
		font-size: 12px;
	}

	.tax-product_cat .maxtel-shop ul.products li.product .maxtel-loop-product-code,
	.tax-product_cat.woocommerce ul.products li.product .maxtel-loop-product-code {
		padding: 0.48rem 0.65rem 0.1rem;
		font-size: 12px;
		font-weight: 700;
		line-height: 1.25;
	}

	.tax-product_cat .maxtel-shop ul.products li.product .woocommerce-loop-product__title,
	.tax-product_cat.woocommerce ul.products li.product .woocommerce-loop-product__title {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		text-overflow: ellipsis;
		box-sizing: border-box;
		height: 2.56em;
		min-height: 2.56em;
		max-height: 2.56em;
		margin-bottom: 0.7rem;
		padding: 0 0.65rem;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.28;
		overflow-wrap: normal;
		word-break: normal;
	}

	.tax-product_cat .maxtel-product-card-hover,
	.tax-product_cat .maxtel-loop-product-hover,
	.tax-product_cat .woocommerce ul.products li.product:hover .maxtel-product-card-hover,
	.tax-product_cat .woocommerce ul.products li.product:focus-within .maxtel-product-card-hover {
		display: none !important;
	}

	.woocommerce nav.woocommerce-pagination {
		margin-top: 1rem;
	}

	.woocommerce nav.woocommerce-pagination ul {
		gap: 0.25rem;
		padding: 0.25rem;
		border-radius: 12px;
	}

	.woocommerce nav.woocommerce-pagination ul li .page-numbers {
		min-width: 2rem;
		min-height: 2rem;
		padding: 0.25rem 0.55rem;
		border-radius: 8px;
		font-size: 14px;
	}

	.maxtel-cat-product-card__actions {
		grid-template-columns: 1fr;
	}

	.maxtel-compare-toggle--cat-card {
		width: 100%;
	}

	body.single-product {
		font-size: 14px;
		line-height: 1.5;
	}

	.single-product .maxtel-breadcrumbs {
		padding-top: 0.45rem;
		padding-bottom: 0.45rem;
		font-size: 12px;
		line-height: 1.45;
	}

	.maxtel-product-gallery-actions {
		gap: 0.4rem;
		padding-bottom: 0.42rem;
	}

	.maxtel-product-gallery-actions > a,
	.maxtel-product-gallery-actions .maxtel-compare-toggle {
		min-height: 32px;
		font-size: 12px;
		line-height: 1.2;
	}

	.maxtel-product-gallery-actions svg,
	.maxtel-product-gallery-actions .maxtel-compare-toggle__icon {
		width: 18px;
		height: 18px;
	}

	.maxtel-product-badges {
		gap: 0.32rem;
	}

	.maxtel-product-badges span {
		min-height: 22px;
		padding: 0.2rem 0.48rem;
		font-size: 12px;
	}

	.single-product .maxtel-shop div.product .summary,
	body.single-product > div.product .summary,
	body.maxtel-product-detail-style-brand.single-product .maxtel-shop div.product .summary,
	body.maxtel-product-detail-style-brand.single-product > div.product .summary {
		gap: 0.62rem;
		padding: 0.65rem 0.65rem 0;
	}

	.single-product .summary .product_title {
		margin-bottom: 0.15rem;
		font-size: clamp(22px, 6vw, 24px);
		line-height: 1.18;
	}

	.single-product .woocommerce-product-details__short-description {
		font-size: 13px;
		line-height: 1.55;
	}

	.maxtel-product-meta-line {
		gap: 0.28rem;
		padding-bottom: 0.55rem;
		font-size: 12px;
		line-height: 1.35;
	}

	.maxtel-product-key-specs,
	.maxtel-product-feature-list,
	.maxtel-product-quote-card {
		padding: 0.65rem;
		border-radius: 8px;
	}

	.maxtel-product-key-specs h2,
	.maxtel-product-feature-list h2 {
		margin-bottom: 0.45rem;
		font-size: 13px;
		line-height: 1.25;
	}

	.maxtel-product-key-specs dl {
		gap: 0.38rem 0.55rem;
	}

	.maxtel-product-key-specs dt {
		font-size: 12px;
		line-height: 1.25;
	}

	.maxtel-product-key-specs dd {
		font-size: 13px;
		line-height: 1.3;
	}

	.maxtel-product-feature-list ul {
		gap: 0.45rem;
	}

	.maxtel-product-feature-list li {
		padding-left: 1rem;
		font-size: 13px;
		line-height: 1.42;
	}

	.maxtel-product-feature-list li::before {
		top: 0.42rem;
		width: 0.45rem;
		height: 0.45rem;
		box-shadow: 0 0 0 3px rgba(0, 115, 183, 0.12);
	}

	.maxtel-product-quote-card {
		gap: 0.5rem;
		min-height: 207px;
	}

	.maxtel-product-quote-card__main {
		padding-bottom: 0.5rem;
	}

	.maxtel-product-quote-card__price-head > span:not(.maxtel-product-quote-card__sale),
	.maxtel-product-quote-card__support span {
		margin-bottom: 0.16rem;
		font-size: 12px;
		line-height: 1.25;
	}

	.maxtel-product-quote-card__sale,
	.maxtel-product-quote-card__sale strong {
		font-size: 12px;
	}

	.maxtel-product-quote-card__price,
	.maxtel-product-quote-card__price strong {
		font-size: 18px;
	}

	.maxtel-product-price del {
		font-size: 12px;
	}

	.maxtel-product-price ins {
		font-size: 15px;
	}

	.maxtel-product-quote-card__main p,
	.maxtel-product-quote-card__support strong,
	.maxtel-product-quote-card__support .stock {
		font-size: 12px;
		line-height: 1.35;
	}

	.maxtel-product-quote-card__group {
		min-height: 48px;
		gap: 0.45rem;
		padding: 0.5rem 0.55rem;
	}

	.maxtel-product-quote-card__group-title {
		font-size: 13px;
		line-height: 1.25;
	}

	.maxtel-product-quote-card__group-phone {
		font-size: 12px;
	}

	.maxtel-product-quote-card__group-actions {
		gap: 0.28rem;
	}

	.maxtel-product-quote-card__action {
		width: 36px;
		height: 36px;
		min-height: 36px;
		border-radius: 5px;
		font-size: 12px;
	}

	.maxtel-product-quote-card__action svg {
		width: 16px;
		height: 16px;
	}

	.maxtel-product-quote-card__action--zalo svg,
	.maxtel-product-quote-card__action:nth-child(2) svg {
		width: 24px;
		height: 13px;
	}

	.maxtel-product-policies {
		gap: 0.45rem;
	}

	.maxtel-product-policy {
		gap: 0.5rem;
		padding: 0.58rem 0.65rem;
		border-radius: 8px;
	}

	.maxtel-product-policy__title {
		margin-bottom: 0.12rem;
		font-size: 12px;
		line-height: 1.25;
	}

	.maxtel-product-policy p {
		font-size: 12px;
		line-height: 1.35;
	}

	.single-product .woocommerce-tabs {
		margin-top: 1.15rem;
		padding: 0;
	}

	.single-product .woocommerce-tabs ul.tabs,
	body.single-product div.product .woocommerce-tabs ul.tabs {
		gap: 0.25rem;
		margin-bottom: 0.7rem;
		padding: 0 0.2rem;
	}

	.single-product .woocommerce-tabs ul.tabs li a,
	body.single-product div.product .woocommerce-tabs ul.tabs li a {
		padding: 0.42rem 0.62rem;
		font-size: 12px;
		line-height: 14px;
	}

	.single-product .woocommerce-tabs .panel,
	body.single-product div.product .woocommerce-tabs .panel {
		padding: 0.75rem !important;
		font-size: 13px;
		line-height: 1.55;
	}

	.maxtel-product-crosslinks__block > h2,
	.maxtel-product-tab-section h2 {
		margin-bottom: 0.65rem;
		font-size: 17px;
		line-height: 1.25;
	}

	.maxtel-product-spec-table th,
	.maxtel-product-spec-table td,
	.maxtel-product-spec-content th,
	.maxtel-product-spec-content td {
		padding: 0.55rem 0.65rem;
		font-size: 12px;
		line-height: 1.45;
	}

	.maxtel-product-spec-table__group th {
		padding: 0.65rem;
		font-size: 12px;
	}

	.maxtel-product-qna {
		gap: 0.55rem;
	}

	.maxtel-product-qna details,
	.maxtel-product-docs li {
		padding: 0.65rem 0.75rem;
		font-size: 13px;
		line-height: 1.45;
	}

	.maxtel-product-qna div {
		margin-top: 0.5rem;
	}

	.maxtel-product-doc-grid .maxtel-dl-card__title {
		font-size: 13px;
	}

	.maxtel-product-doc-grid .maxtel-dl-card__product,
	.maxtel-product-doc-grid .maxtel-dl-card__meta {
		font-size: 12px;
	}

	.maxtel-product-doc-grid .maxtel-dl-card__btn {
		min-height: 34px;
		font-size: 12px;
	}

	.maxtel-product-crosslinks {
		margin: 1rem 0;
		padding: 0.65rem;
	}

	.maxtel-product-crosslinks__tabs {
		gap: 0.24rem;
		padding: 0.2rem;
	}

	.maxtel-product-crosslinks__tab {
		min-height: 34px;
		padding: 0.42rem 0.55rem;
		font-size: 12px;
		line-height: 1.12;
	}

	.maxtel-product-crosslinks__tab small {
		min-width: 20px;
		height: 20px;
		font-size: 12px;
	}

	.maxtel-product-card__image,
	.maxtel-woocommerce .woocommerce ul.products li.product a img,
	.maxtel-woocommerce ul.products li.product a img,
	.woocommerce ul.products li.product a img {
		height: 150px;
		padding: 0.55rem;
	}

	.maxtel-product-card__code,
	.maxtel-loop-product-code,
	.tax-product_cat .maxtel-shop ul.products li.product .maxtel-loop-product-code,
	.tax-product_cat.woocommerce ul.products li.product .maxtel-loop-product-code {
		padding-inline: 0.6rem;
		font-size: 13px;
		line-height: 1.22;
	}

	.maxtel-product-card__title,
	.maxtel-woocommerce .woocommerce ul.products li.product .woocommerce-loop-product__title,
	.maxtel-woocommerce ul.products li.product .woocommerce-loop-product__title,
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.tax-product_cat .maxtel-shop ul.products li.product .woocommerce-loop-product__title,
	.tax-product_cat.woocommerce ul.products li.product .woocommerce-loop-product__title {
		padding-inline: 0.6rem;
		font-size: 12px;
		line-height: 1.28;
	}

	.maxtel-product-card-meta {
		min-height: 4.6rem;
		padding-inline: 0.6rem;
		font-size: 12px;
		line-height: 1.28;
	}

	.maxtel-product-card__price,
	.maxtel-woocommerce .woocommerce ul.products li.product .price,
	.maxtel-woocommerce ul.products li.product .price,
	.woocommerce ul.products li.product .price {
		padding-inline: 0.6rem;
		font-size: 12px;
	}

	.woocommerce nav.woocommerce-pagination ul li .page-numbers {
		min-width: 1.8rem;
		min-height: 1.8rem;
		font-size: 12px;
	}

	.maxtel-footer {
		padding: 1.25rem 0 0;
		font-size: 13px;
	}

	.maxtel-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
		padding-bottom: 1rem;
	}

	.maxtel-footer__brand,
	.maxtel-footer__contact,
	.maxtel-footer__grid > nav[aria-labelledby="maxtel-footer-policy-title"] {
		grid-column: 1 / -1;
	}

	.maxtel-footer__brand,
	.maxtel-footer__grid > .maxtel-footer__col:not(.maxtel-footer__brand):not(.maxtel-footer__contact) {
		padding: 0.9rem;
		border: 1px solid rgba(148, 163, 184, 0.16);
		border-radius: 12px;
		background: rgba(15, 35, 58, 0.72);
	}

	.maxtel-footer__brand {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.55rem 0.75rem;
	}

	.maxtel-footer__logo-wrap {
		justify-self: start;
		margin: 0;
		padding: 0.5rem 0.62rem;
		border-radius: 10px;
	}

	.maxtel-footer__logo-wrap .custom-logo {
		max-height: 36px;
	}

	.maxtel-footer__company {
		grid-column: 1 / -1;
		margin-bottom: 0.45rem;
		font-size: 13px;
		line-height: 1.32;
	}

	.maxtel-footer__desc,
	.maxtel-footer__meta,
	.maxtel-footer-list a,
	.maxtel-footer-contact,
	.maxtel-footer__copyright,
	.maxtel-footer__legal a,
	.maxtel-footer__payments {
		font-size: 12px;
		line-height: 1.45;
	}

	.maxtel-footer__desc {
		display: -webkit-box;
		grid-column: 1 / -1;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		margin-bottom: 0.2rem;
		overflow: hidden;
	}

	.maxtel-footer__meta {
		display: inline-flex;
		align-items: center;
		gap: 0.18rem;
		margin: 0.2rem 0.35rem 0.2rem 0;
		padding: 0.28rem 0.52rem;
		border: 1px solid rgba(148, 163, 184, 0.18);
		border-radius: 999px;
		background: rgba(15, 23, 42, 0.22);
	}

	.maxtel-footer__social {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		justify-content: flex-end;
		gap: 0.5rem;
		width: min(136px, 100%);
		margin: 0;
	}

	.maxtel-social {
		width: 40px;
		height: 40px;
		background: rgba(30, 64, 100, 0.88);
	}

	.maxtel-social svg {
		width: 20px;
		height: 20px;
	}

	.maxtel-footer__title {
		margin-bottom: 0.5rem;
		font-size: 12px;
	}

	.maxtel-footer-list li {
		margin-bottom: 0;
		padding-left: 0;
	}

	.maxtel-footer-list li::before {
		display: none;
	}

	.maxtel-footer-list a {
		display: block;
		padding: 0.25rem 0;
		line-height: 1.35;
	}

	.maxtel-footer__grid > nav[aria-labelledby="maxtel-footer-policy-title"] .maxtel-footer-list {
		columns: 2;
		column-gap: 1rem;
	}

	.maxtel-footer__badges {
		grid-column: 1 / -1;
		align-items: center;
		gap: 0.5rem;
		margin-top: 0.25rem;
	}

	.maxtel-footer-badge {
		min-height: 32px;
		border-radius: 6px;
	}

	.maxtel-footer-badge__image {
		max-width: 124px;
		max-height: 34px;
	}

	.maxtel-footer__contact {
		padding: 0;
	}

	.maxtel-footer__contact .maxtel-footer__title {
		margin: 0 0 0.5rem;
	}

	.maxtel-footer-contact {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
	}

	.maxtel-footer-contact li {
		margin-bottom: 0;
		padding: 0.5rem 0.6rem;
		border: 1px solid rgba(148, 163, 184, 0.15);
		border-radius: 10px;
		background: rgba(15, 35, 58, 0.62);
	}

	.maxtel-footer-contact li:nth-child(-n+3) {
		grid-column: 1 / -1;
	}

	.maxtel-footer__bar {
		gap: 0.6rem;
		padding: 0.85rem 0 1rem;
		text-align: center;
	}

	.maxtel-footer__legal {
		flex-wrap: wrap;
		gap: 0.45rem 0.9rem;
	}

	.maxtel-footer__payments {
		justify-content: center;
		gap: 0.35rem;
	}

	.maxtel-pay-badge {
		padding: 0.22rem 0.34rem;
		font-size: 10px;
	}

	body.single-product #primary {
		padding-bottom: 1rem;
	}

	body.single-product .maxtel-product-crosslinks--tabs {
		margin-bottom: 0.5rem;
	}

	body.single-product .maxtel-footer {
		margin-top: 1rem;
	}

	.maxtel-topbar__inner {
		font-size: 12px;
	}

	.maxtel-topbar__left {
		display: none;
	}

	.maxtel-topbar__right {
		width: 100%;
		justify-content: center;
	}

	.wpcb-floating-container.wpcb-pos-bottom-right {
		right: 0.65rem !important;
		bottom: 0.65rem !important;
		gap: 0.65rem !important;
	}

	.wpcb-floating-container .wpcb-btn {
		width: 48px !important;
		height: 48px !important;
	}

	.wpcb-floating-container .wpcb-zalo {
		padding: 8px !important;
	}

	.wpcb-floating-container .wpcb-call {
		padding: 11px !important;
	}
}

@media (max-width: 576px) {
	.maxtel-hero {
		min-height: 360px;
	}

	.maxtel-hero__content {
		padding: 2.5rem 0;
	}
}

@media (max-width: 430px) {
	.maxtel-entry__title {
		font-size: 24px;
	}

	.maxtel-header-main__inner {
		grid-template-columns: minmax(104px, auto) minmax(0, 1fr) auto;
		gap: 5px;
	}

	.maxtel-header__brand {
		--maxtel-header-logo-width: 128px;
		--maxtel-header-logo-image-height: 37.2px;
	}

	.maxtel-header-search-shared .maxtel-header-search__cat {
		width: 70px;
		min-width: 70px;
		max-width: 70px;
		padding-left: 0.42rem;
		padding-right: 1rem;
		font-size: 12px;
		background-position:
			calc(100% - 9px) 50%,
			calc(100% - 5px) 50%,
			0 0;
	}

	.maxtel-header-search-shared .maxtel-header-search-scope {
		flex-basis: 74px;
		width: 74px;
		min-width: 74px;
		max-width: 74px;
	}

	.maxtel-header-search-shared .maxtel-header-search-scope__button {
		padding-inline: 0.42rem;
		font-size: 11px;
	}

	.maxtel-header-search-shared .maxtel-header-search__input {
		min-width: 3rem;
		padding-inline: 0.35rem;
		font-size: 12px;
	}

	.maxtel-header-search-shared .maxtel-header-search__btn,
	.maxtel-menu-toggle {
		width: 36px;
		min-width: 36px;
	}
}

@media (max-width: 360px) {
	.maxtel-product-grid,
	.maxtel-woocommerce .woocommerce ul.products,
	.maxtel-woocommerce ul.products,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.tax-product_cat .maxtel-shop .woocommerce ul.products,
	.tax-product_cat .maxtel-shop ul.products,
	.tax-product_cat.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.55rem;
	}

	.maxtel-header__brand {
		--maxtel-header-logo-width: 104px;
		--maxtel-header-logo-image-height: 30.2px;
		--maxtel-header-logo-slot-height: 36px;
	}

	.maxtel-header-search-shared .maxtel-header-search__cat {
		display: none;
	}
}

