/**
 * Lab Buro storefront chrome — tokens from labburo.ru template CSS.
 */
:root {
	--lb-blue: #4292ee;
	--lb-blue-hover: #1266c7;
	--lb-blue-soft: #4dabf7;
	--lb-text: #161a1d;
	--lb-text-2: #505a62;
	--lb-muted: #7a8086;
	--lb-bg: #ffffff;
	--lb-bg-soft: #f8f8f8;
	--lb-bg-mute: #f5f5f5;
	--lb-border: #e8eaf6;
	--lb-border-soft: rgba(0, 0, 0, 0.07);
	--lb-footer-bg: #121212;
	--lb-footer-text: #b0b0b0;
	--lb-footer-dim: #777777;
	--lb-footer-card: #1e1e1e;
	--lb-radius-btn: 8px;
	--lb-radius-chip: 10px;
	--lb-radius-card: 12px;
	--lb-radius-lg: 16px;
	--lb-radius-xl: 20px;
	--lb-font-body: "Inter", "SF Pro Display", system-ui, -apple-system, sans-serif;
	--lb-font-display: "SF Pro Display", "Inter", system-ui, sans-serif;
	--lb-container: 1464px;
	--lb-icon-btn: 46px;
	--lb-logo-h: 48px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--lb-font-body);
	font-size: 16px;
	line-height: 24px;
	color: var(--lb-text);
	background: var(--lb-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading,
.wp-block-post-title {
	font-family: var(--lb-font-display);
	color: var(--lb-text);
	letter-spacing: -0.02em;
}

a {
	color: var(--lb-blue);
	text-decoration-thickness: 0.5px;
	text-underline-offset: 0.12em;
}

/* ——— Header (lb_header) ——— */
.lb-header {
	border-bottom: 1px solid var(--lb-border-soft);
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 100;
}

/* Match page content “ears” (root padding) */
.lb-header.has-global-padding,
.lb-header {
	padding-left: var(--wp--style--root--padding-left, var(--wp--preset--spacing--50)) !important;
	padding-right: var(--wp--style--root--padding-right, var(--wp--preset--spacing--50)) !important;
}

.lb-header__inner {
	max-width: var(--wp--style--global--wide-size, var(--lb-container));
	margin: 0 auto;
	padding: 12px 0 !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
}

.lb-header__left {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.lb-header__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
	flex-shrink: 0;
}

.lb-header__logo img {
	height: var(--lb-logo-h);
	width: auto;
	max-width: 200px;
	display: block;
}

.lb-header__wordmark {
	display: inline-flex;
	align-items: baseline;
	gap: 0.28em;
	font-family: var(--lb-font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	text-decoration: none !important;
	line-height: 1;
	color: var(--lb-blue);
}

.lb-header__wordmark span {
	font-weight: 300;
	color: var(--lb-blue);
}

.lb-header__nav {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: nowrap;
	margin: 0 !important;
	padding: 0 !important;
}

.lb-header__nav .wp-block-navigation__container,
.lb-header__nav .wp-block-navigation-item {
	margin: 0 !important;
	padding: 0 !important;
	gap: 6px !important;
}

.lb-header__nav a {
	color: var(--lb-text) !important;
	text-decoration: none !important;
	font-size: 15px;
	font-weight: 500;
	padding: 0 !important;
	margin: 0 !important;
}

.lb-header__nav a:hover {
	color: var(--lb-blue) !important;
}

.lb-header__actions {
	display: flex !important;
	align-items: center;
	gap: 6px !important;
	flex-shrink: 0;
}

.lb-header__actions > * {
	margin: 0 !important;
}

.lb-header__chip,
.lb-header .wc-block-customer-account a,
.lb-header .wp-block-woocommerce-customer-account a,
.lb-header .wc-block-mini-cart__button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: var(--lb-icon-btn) !important;
	height: var(--lb-icon-btn) !important;
	min-width: var(--lb-icon-btn) !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: var(--lb-radius-chip) !important;
	border: 1px solid var(--lb-border) !important;
	background: #fff !important;
	color: var(--lb-text) !important;
	box-shadow: none !important;
	line-height: 1 !important;
	text-decoration: none !important;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lb-header .wc-block-customer-account,
.lb-header .wp-block-woocommerce-customer-account {
	display: inline-flex !important;
	align-items: center;
	line-height: 0;
}

.lb-header .wc-block-mini-cart {
	display: inline-flex !important;
	align-items: center;
	background: transparent !important;
	border: 0 !important;
}

.lb-header__chip:hover,
.lb-header .wc-block-customer-account a:hover,
.lb-header .wp-block-woocommerce-customer-account a:hover,
.lb-header .wc-block-mini-cart__button:hover {
	background: var(--lb-blue) !important;
	border-color: var(--lb-blue) !important;
	color: #fff !important;
}

.lb-header .wc-block-mini-cart__quantity-badge {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: transparent !important;
	box-shadow: none !important;
}

.lb-header .wc-block-mini-cart__button .wc-block-mini-cart__icon,
.lb-header .wc-block-customer-account__account-icon,
.lb-header .wp-block-woocommerce-customer-account svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	fill: currentColor !important;
	color: inherit !important;
	background: transparent !important;
	flex-shrink: 0;
}

.lb-header .wc-block-customer-account__account-icon path,
.lb-header .wp-block-woocommerce-customer-account svg path {
	fill: currentColor !important;
	stroke: currentColor;
}

.lb-header .wc-block-mini-cart__badge {
	background: var(--lb-blue) !important;
	color: #fff !important;
}

/* Search: center icon vertically in chip */
.lb-header-search {
	margin: 0 !important;
}

.lb-header-search .wp-block-search__inside-wrapper {
	display: flex !important;
	align-items: center !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

.lb-header-search .wp-block-search__button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: var(--lb-icon-btn) !important;
	height: var(--lb-icon-btn) !important;
	min-width: var(--lb-icon-btn) !important;
	min-height: var(--lb-icon-btn) !important;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: var(--lb-radius-chip) !important;
	border: 1px solid var(--lb-border) !important;
	background: #fff !important;
	color: var(--lb-text) !important;
	line-height: 0 !important;
	box-shadow: none !important;
}

.lb-header-search .wp-block-search__button svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
	flex-shrink: 0;
}

.lb-header-search .wp-block-search__button:hover {
	background: var(--lb-blue) !important;
	border-color: var(--lb-blue) !important;
	color: #fff !important;
}

.lb-header .wp-block-site-logo img {
	width: auto !important;
	height: 25px !important;
	max-width: none !important;
	object-fit: contain;
}

.lb-header__wordmark a {
	color: var(--lb-blue) !important;
	text-decoration: none !important;
}

/* Hide duplicate site title when logo is set */
.lb-header:has(.wp-block-site-logo img) .lb-header__wordmark {
	display: none;
}

/* ——— Footer (site-footer from labburo) ——— */
.site-footer {
	background-color: var(--lb-footer-bg);
	color: var(--lb-footer-text);
	padding-top: 60px;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
	overflow: hidden;
	margin-top: 0;
}

.site-footer a {
	color: var(--lb-footer-text);
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer .blue_blur {
	background-color: #559ced2e;
	height: 700px;
	width: 700px;
	position: absolute;
	border-radius: 50%;
	filter: blur(200px);
	pointer-events: none;
}

.site-footer .blur_1 { top: -110px; left: -120px; }
.site-footer .blur_2 { right: -400px; bottom: -200px; }

.site-footer .ft_cont {
	max-width: var(--lb-container);
	margin: auto;
	padding: 0 20px;
	z-index: 10;
	position: relative;
}

.site-footer .footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	gap: 24px;
}

.site-footer .footer-nav {
	display: flex;
	gap: 40px;
	width: 100%;
	justify-content: space-between;
}

.site-footer .footer-brand {
	min-width: 170px;
	max-width: 220px;
	flex-shrink: 0;
}

.site-footer .logo_footer {
	display: flex;
	flex-direction: column;
	line-height: 0.9;
	margin-bottom: 20px;
	text-decoration: none !important;
	width: 130px;
}

.site-footer .logo_footer .lab {
	color: var(--lb-blue);
	font-size: 36px;
	font-weight: 700;
	font-family: var(--lb-font-display);
	letter-spacing: -0.04em;
}

.site-footer .logo_footer .buro {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	font-family: var(--lb-font-display);
	letter-spacing: -0.04em;
}

.site-footer .brand-tagline {
	font-size: 20px !important;
	color: #fff;
	margin: 0 0 35px;
	line-height: normal !important;
	font-weight: 700;
}

.site-footer .brand-description {
	font-size: 14px !important;
	margin: 0 0 35px !important;
	color: var(--lb-footer-text);
}

.site-footer .social-links > p {
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
}

.site-footer .social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 15px;
}

.site-footer .social-icons a {
	color: var(--lb-footer-text);
	font-size: 20px;
	display: inline-flex;
	opacity: 0.75;
}

.site-footer .social-icons a:hover {
	color: var(--lb-blue-soft);
	opacity: 1;
}

.site-footer .line_vert {
	width: 1px;
	align-self: stretch;
	background-color: #ffffff1c;
	flex-shrink: 0;
}

.site-footer .nav-block {
	min-width: 140px;
}

.site-footer .nameft {
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
	font-weight: 700;
}

.site-footer .nav-block ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .nav-block ul li {
	margin-bottom: 8px;
}

.site-footer .all-catalog-link {
	display: inline-block;
	margin-top: 8px;
	color: #fff !important;
	font-weight: 700;
}

.site-footer .info-block.contacts {
	min-width: 220px;
	max-width: 280px;
}

.site-footer .contacts-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .contacts-list li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--lb-footer-text);
}

.site-footer .contacts-list svg {
	flex-shrink: 0;
	margin-top: 2px;
	opacity: 0.8;
}

.site-footer .trust-block {
	margin-top: 24px;
}

.site-footer .ratings {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.site-footer .rating-card {
	background: var(--lb-footer-card);
	border-radius: 8px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-size: 12px;
}

.site-footer .rating-card strong {
	color: #fff;
	font-size: 14px;
}

.site-footer .rating-card .stars {
	color: #f5c518;
	font-size: 13px;
}

.site-footer .payment-methods {
	padding: 30px 0;
	border-bottom: 1px solid #ffffff24;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.site-footer .payment-methods h4 {
	color: #fff;
	margin: 0;
	font-size: 16px;
}

.site-footer .pay-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer .pay-list li {
	background: var(--lb-footer-card);
	border-radius: 8px;
	padding: 8px 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.site-footer .footer-bottom {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 12px;
}

.site-footer .copyright {
	color: #fff;
	font-weight: 600;
	margin: 0 0 8px;
}

.site-footer .disclaimer {
	max-width: 500px;
	color: var(--lb-footer-dim);
	margin: 0;
	line-height: 1.45;
}

.site-footer .legal-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: right;
	min-width: 260px;
}

.site-footer .legal-info a {
	color: #c5cad0;
}

.site-footer .company-details {
	color: var(--lb-footer-dim);
	margin: 0;
}

@media (max-width: 1100px) {
	.site-footer .footer-nav {
		flex-wrap: wrap;
		gap: 32px;
	}

	.site-footer .line_vert {
		display: none;
	}

	.site-footer .legal-info {
		text-align: left;
	}
}

@media (max-width: 720px) {
	.lb-header__nav { display: none; }
	.lb-header-search { display: none !important; }
	.lb-header .wp-block-site-logo img { height: 18px !important; }

	.site-footer .footer-nav {
		flex-direction: column;
		gap: 32px;
	}

	.site-footer .footer-bottom {
		flex-direction: column;
		padding-bottom: 80px;
	}

	.site-footer .logo_footer .lab,
	.site-footer .logo_footer .buro {
		font-size: 28px;
	}
}

/* ——— Buttons ——— */
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button:not(.is-link) {
	border-radius: var(--lb-radius-btn) !important;
	font-weight: 600 !important;
}

.wp-element-button,
.wp-block-button__link {
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.wp-block-button__link:hover,
.wp-element-button:hover {
	transform: translateY(-1px);
}

.wp-block-search__inside-wrapper,
.wp-block-search__input {
	border-radius: var(--lb-radius-chip) !important;
}

.wp-block-search__button {
	border-radius: var(--lb-radius-chip) !important;
	background: var(--lb-blue) !important;
}

/* ——— Product cards ——— */
ul.products,
.wc-block-product-template,
.wp-block-post-template.is-layout-grid {
	gap: 12px !important;
}

ul.products li.product,
.wc-block-product,
.wp-block-post.product {
	background: var(--lb-bg-mute);
	border-radius: var(--lb-radius-card);
	padding: 12px 12px 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wp-block-post.product .wp-block-group {
	padding-bottom: 0 !important;
	margin-top: 8px;
	row-gap: 4px;
}

ul.products li.product:hover,
.wc-block-product:hover,
.wp-block-post.product:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wp-block-post.product .lb-product-card__body {
	padding-bottom: 0 !important;
	margin-top: 8px;
	row-gap: 4px !important;
}

.wp-block-post.product .lb-product-card__body,
.wp-block-post.product .lb-product-card__body .wp-block-post-title,
.wp-block-post.product .lb-product-card__body .wp-block-woocommerce-product-price,
.wp-block-post.product .lb-product-card__body .wc-block-components-product-price {
	text-align: left !important;
}

.wp-block-post.product .wc-block-components-product-button,
.wp-block-post.product .wp-block-woocommerce-product-button {
	margin-top: 8px !important;
	width: 100%;
}

.wp-block-post.product .wc-block-components-product-button__button,
.wp-block-post.product .wp-block-button__link,
.wp-block-post.product a.add_to_cart_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: var(--lb-blue) !important;
	border: 1px solid var(--lb-blue) !important;
	color: #fff !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	border-radius: var(--lb-radius-btn) !important;
	padding: 0.55em 1rem !important;
}

.wp-block-post.product .wc-block-components-product-button__button span,
.wp-block-post.product .wp-block-button__link span,
.wp-block-post.product a.add_to_cart_button span {
	color: #fff !important;
}

.wp-block-post.product .wc-block-components-product-button__button:hover,
.wp-block-post.product .wp-block-button__link:hover,
.wp-block-post.product a.add_to_cart_button:hover {
	background: #2f7ad4 !important;
	border-color: #2f7ad4 !important;
	color: #fff !important;
}

/* Product card images — equal height, keep radius */
.wp-block-post.product .wc-block-components-product-image,
.wp-block-post.product .wp-block-woocommerce-product-image,
ul.products li.product .wc-block-components-product-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--lb-radius-card);
	border: 1px solid var(--lb-border-soft);
	background: #fff;
}

.wp-block-post.product .wc-block-components-product-image a,
.wp-block-post.product .wp-block-woocommerce-product-image a {
	display: block;
	width: 100%;
	height: 100%;
}

ul.products li.product .wc-block-components-product-image img,
.wp-block-post.product .wc-block-components-product-image img,
.wp-block-post.product .wp-block-woocommerce-product-image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center !important;
	border-radius: 0 !important;
	border: 0 !important;
	background: transparent;
}

.woocommerce-product-gallery__image img {
	border-radius: var(--lb-radius-card) !important;
	border: 1px solid var(--lb-border-soft);
	background: #fff;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wp-block-post.product .wp-block-post-title,
.wp-block-post.product .wp-block-post-title a,
.wc-block-components-product-name {
	font-family: var(--lb-font-body) !important;
	color: var(--lb-text) !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	line-height: 1.35 !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product .price,
.wp-block-post.product .wc-block-components-product-price,
.wc-block-components-product-price {
	color: var(--lb-text) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.3 !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product .price del,
.wc-block-components-product-price del {
	color: var(--lb-muted) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
}

/* Category tiles on home */
.lb-category-tiles {
	gap: 1rem !important;
}

.lb-category-tiles > .wp-block-column {
	flex-basis: 0 !important;
	flex-grow: 1 !important;
	min-width: 0 !important; /* allow shrink below intrinsic 570px image width */
}

/* Mobile: horizontal scroll row */
@media (max-width: 781px) {
	.lb-category-tiles {
		--lb-tiles-gutter: var(--wp--style--root--padding-left, 1.75rem);
		display: flex !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: 0.75rem !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		/* Spacers (::before/::after) keep edge gutters — padding inside
		   overflow scroll often gets scrolled away / snap-eaten on mobile. */
		padding: 0 0 4px !important;
		margin-left: calc(-1 * var(--lb-tiles-gutter)) !important;
		margin-right: calc(-1 * var(--wp--style--root--padding-right, 1.75rem)) !important;
		width: auto !important;
		max-width: none !important;
		scroll-snap-type: none;
	}

	.lb-category-tiles::before,
	.lb-category-tiles::after {
		content: "";
		flex: 0 0 var(--lb-tiles-gutter);
		width: var(--lb-tiles-gutter);
		min-width: var(--lb-tiles-gutter);
		pointer-events: none;
	}

	.lb-category-tiles::after {
		flex-basis: var(--wp--style--root--padding-right, 1.75rem);
		width: var(--wp--style--root--padding-right, 1.75rem);
		min-width: var(--wp--style--root--padding-right, 1.75rem);
	}

	.lb-category-tiles > .wp-block-column {
		flex: 0 0 42% !important;
		flex-basis: 42% !important;
		flex-grow: 0 !important;
		flex-shrink: 0 !important;
		min-width: 140px !important;
		max-width: 180px !important;
		scroll-snap-align: none;
		scroll-margin: 0;
	}

	.lb-category-tiles a > p {
		font-size: 13px !important;
	}
}



.lb-category-tiles > .wp-block-column a {
	text-decoration: none !important;
	color: var(--lb-text);
	display: block;
}

.lb-category-tiles img {
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	aspect-ratio: 570 / 320;
	object-fit: cover;
	border-radius: var(--lb-radius-xl) !important;
	display: block;
	margin: 0 !important;
}

.lb-category-tiles .wp-block-image,
.lb-category-tiles figure {
	margin: 0 !important;
	width: 100%;
}

.lb-category-tiles a > p {
	margin: 8px 0 0 !important;
	font-family: var(--lb-font-body) !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	line-height: 1.35 !important;
	color: var(--lb-text) !important;
	text-align: center !important;
}

/* Keep breadcrumb links inline inside filter/product columns */
.wp-block-columns.alignwide > .wp-block-column .woocommerce-breadcrumb a,
.wp-block-columns.alignwide > .wp-block-column .wc-block-breadcrumbs a {
	display: inline !important;
}

/* Filters sidebar */
.wp-block-woocommerce-product-filters > .wp-block-heading,
.wc-block-product-filters__overlay-content > .wp-block-heading {
	display: none !important;
}

.wp-block-woocommerce-product-filters,
.wp-block-woocommerce-filter-wrapper {
	font-size: 14px;
}

.wp-block-woocommerce-filter-wrapper,
.wc-blocks-filter-wrapper {
	margin-top: 24px !important;
}

.wp-block-woocommerce-product-filters h3.wp-block-heading,
.wp-block-woocommerce-product-filter-price h3.wp-block-heading,
.wp-block-woocommerce-product-filter-attribute h3.wp-block-heading,
.wp-block-woocommerce-filter-wrapper h3.wp-block-heading,
.wc-block-product-filters__overlay-content h3.wp-block-heading {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	margin: 0 0 0.625rem !important;
}

.wp-block-woocommerce-product-filter-attribute {
	margin-top: 24px !important;
}

/* Mobile filter trigger — opens WC overlay dialog */
@media (max-width: 600px) {
	.wc-block-product-template,
	.wc-block-product-template__responsive,
	.wp-block-post-template.is-layout-grid,
	ul.products {
		grid-template-columns: 1fr !important;
	}

	.wc-block-product-filters__open-overlay {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 100%;
		min-height: 44px;
		padding: 0.65rem 1rem !important;
		border: 1px solid var(--lb-border-soft) !important;
		border-radius: var(--lb-radius-lg) !important;
		background: var(--lb-bg-soft) !important;
		color: var(--lb-text) !important;
		font-family: var(--lb-font-body) !important;
		font-size: 14px !important;
		font-weight: 600 !important;
		cursor: pointer;
	}

	.wc-block-product-filters__open-overlay svg {
		flex: 0 0 auto;
	}

	/* Dialog sheet */
	.wc-block-product-filters.is-overlay-opened .wc-block-product-filters__overlay-dialog {
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
	}

	.wc-block-product-filters__close-overlay {
		font-family: var(--lb-font-body) !important;
		font-weight: 600 !important;
		color: var(--lb-text) !important;
	}

	.wc-block-product-filters__overlay-footer .wp-block-button__link,
	.wc-block-product-filters__overlay-footer button {
		width: 100%;
		border-radius: var(--lb-radius-lg) !important;
	}
}

/* Breadcrumbs — keep on one line */
.wp-block-breadcrumbs,
.wc-block-breadcrumbs,
.woocommerce-breadcrumb {
	display: block !important;
	white-space: nowrap !important;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.4 !important;
	height: auto !important;
}

.woocommerce-breadcrumb a {
	display: inline !important;
	white-space: nowrap;
}

/* Pagination — horizontal row, full product-column width */
.wp-block-query .wp-block-query-pagination,
.wp-block-query-pagination {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-top: 1.5rem !important;
	box-sizing: border-box;
}

.wp-block-query-pagination-numbers {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 4px 6px !important;
	flex: 1 1 100% !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 100% !important;
	height: auto !important;
	writing-mode: horizontal-tb !important;
}

.wp-block-query-pagination-numbers a,
.wp-block-query-pagination-numbers span {
	display: inline-flex !important;
	flex: 0 0 auto !important;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	padding: 0 0.4rem;
	line-height: 1 !important;
	white-space: nowrap;
}

/* Hide page title on My Account (incl. login) */
body.woocommerce-account .wp-block-post-title {
	display: none !important;
}

/* My Account */
.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: var(--lb-radius-lg);
	background: var(--lb-bg-soft);
	overflow: hidden;
	border: 1px solid var(--lb-border-soft);
}

.woocommerce-MyAccount-navigation a {
	display: block;
	padding: 0.85rem 1.1rem;
	text-decoration: none !important;
	color: var(--lb-text);
	font-weight: 500;
}

.woocommerce-MyAccount-navigation .is-active a,
.woocommerce-MyAccount-navigation a:hover {
	background: var(--lb-blue);
	color: #fff !important;
}

/* Wide content */
.woocommerce.woocommerce-page main {
	max-width: calc(var(--wp--style--global--wide-size) + var(--wp--style--root--padding-right) + var(--wp--style--root--padding-left));
}
