/* Bonacart — сучасний шар поверх базової теми */

:root {
	--ta-bg: #eef1f6;
	--ta-surface: #ffffff;
	--ta-text: #12151c;
	--ta-muted: #64708b;
	--ta-accent: #00a3a0;
	--ta-accent-hover: #008380;
	--ta-accent-soft: rgba(0, 163, 160, 0.14);
	--ta-accent-line: #00b8b5;
	--ta-cart-accent: #e85d04;
	--ta-cart-accent-hover: #c2410c;
	--ta-cart-accent-soft: rgba(232, 93, 4, 0.12);
	--ta-border: #e1e7ef;
	--ta-radius: 14px;
	--ta-radius-sm: 10px;
	--ta-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
	--ta-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);

	--link-color: var(--ta-muted);
	--link-color-hover: var(--ta-accent);
	--breadcrumb-background: var(--ta-bg);
	--breadcrumb-color: var(--ta-muted);
	--breadcrumb-active-color: var(--ta-text);

	--button-primary-color: var(--ta-accent);
	--button-primary-color-hover: var(--ta-accent-hover);
	--button-primary-color-text: #fff;
	--button-secondary-color: #edeef2;
	--button-secondary-color-hover: #dfe3ea;
	--button-secondary-color-text: var(--ta-text);

	--header-top-background: var(--ta-surface);
	--header-top-link-color: var(--ta-text);
	--header-top-link-hover-color: var(--ta-accent);
	--header-top-language-active-color: var(--ta-text);
	--header-catalog-button-color: var(--ta-accent);
	--header-catalog-button-color-text: #fff;
	--header-schedule-color: var(--ta-muted);
	--header-counter-background: var(--ta-cart-accent);
	--header-counter-color: #fff;
	--header-horizontal-menu-background: var(--ta-surface);
	--header-horizontal-menu-border-color: var(--ta-border);
	--header-horizontal-menu-link-color: var(--ta-text);

	--footer-link-color: #e2e8f0;
	--footer-link-color-hover: #fff;
	--footer-text-color: #cbd5e1;
	--footer-copyright-color: #94a3b8;
	--footer-developer-color: #94a3b8;
	--footer-border-color: rgba(255, 255, 255, 0.08);

	--product-buy-button-color: var(--ta-accent);
	--product-buy-button-color-hover: var(--ta-accent-hover);
	--product-buy-button-color-text: #fff;
	--product-fast-order-button-color: var(--ta-text);
	--product-fast-order-button-color-hover: #2d3340;
	--product-fast-order-button-color-text: #fff;

	--input-border-color: var(--ta-border);
	--product-thumb-name-color: var(--ta-text);
	--product-thumb-price-color: var(--ta-text);
	--product-thumb-old-price-color: var(--ta-muted);
	--product-thumb-background-color: var(--ta-surface);
	--product-thumb-border-color: var(--ta-border);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "DM Sans", "Montserrat", system-ui, -apple-system, sans-serif;
	background: var(--ta-bg);
	color: var(--ta-text);
	font-size: 15px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

.ta-main-content {
	flex: 1 0 auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

/* Сторінки з мало контенту (404 тощо): основний блок заповнює висоту */
.ta-main-content > #error-not-found {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem 0 3rem;
}

h1, h2, h3, h4, h5, h6,
.header-middle .header-sitename {
	font-family: "Montserrat", "DM Sans", sans-serif;
	font-weight: 600;
	letter-spacing: -0.02em;
}

#common-home.container,
#product-category.container,
#product-search.container,
#product-special.container,
.container[class*="product-"] {
	padding-bottom: 2rem;
}

a {
	transition: color 0.15s ease, opacity 0.15s ease;
}

header .header-middle {
	padding: 18px 0;
	box-shadow: 0 1px 0 var(--ta-border);
}

header .header-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header .contact .tel a {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.btn,
button.btn {
	border-radius: var(--ta-radius-sm);
	font-weight: 600;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:active,
.btn:active {
	transform: translateY(1px);
}

.breadcrumb-row {
	margin-bottom: 0;
	padding-bottom: 0;
}

.breadcrumb {
	border-radius: var(--ta-radius-sm);
	padding: 0.5rem 0;
	margin-bottom: 0 !important;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.4rem;
	width: 100%;
	margin: 1.75rem 0 0.35rem;
	padding: 0.7rem 0.75rem;
	list-style: none;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	box-shadow: var(--ta-shadow-sm);
}

.pagination > li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0 !important;
	border: 0 !important;
	background: transparent !important;
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
	text-align: center;
}

.pagination > li > a,
.pagination > li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.45rem;
	height: 2.45rem;
	padding: 0 0.7rem;
	border: 1px solid var(--ta-border) !important;
	border-radius: 12px !important;
	background: #fff !important;
	color: var(--ta-text) !important;
	font-size: 14px !important;
	font-weight: 650;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.pagination > li > a:hover {
	color: var(--ta-accent-hover) !important;
	background: var(--ta-accent-soft) !important;
	border-color: rgba(0, 163, 160, 0.4) !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 16px rgba(0, 163, 160, 0.12);
}

.pagination > li.active > span {
	background: var(--ta-accent) !important;
	border-color: var(--ta-accent) !important;
	color: #fff !important;
	box-shadow: 0 8px 18px rgba(0, 163, 160, 0.28);
}

.pagination > li.first-page::after,
.pagination > li.last-page::before {
	content: "…";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.1rem;
	height: 2.45rem;
	color: var(--ta-muted);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.08em;
	pointer-events: none;
}

@media (max-width: 575.98px) {
	.pagination {
		gap: 0.3rem;
		padding: 0.55rem 0.5rem;
	}

	.pagination > li > a,
	.pagination > li > span {
		min-width: 2.15rem;
		height: 2.15rem;
		padding: 0 0.45rem;
		font-size: 13px !important;
		border-radius: 10px !important;
	}

	.pagination > li.first-page::after,
	.pagination > li.last-page::before {
		height: 2.15rem;
	}
}

.product-thumb,
.product-row .product-thumb.ta-product-thumb {
	border-radius: var(--ta-radius) !important;
	border: 1px solid var(--ta-border) !important;
	box-shadow: var(--ta-shadow-sm);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0 !important;
	margin: 0 !important;
	background: var(--ta-surface) !important;
	text-align: left;
	box-sizing: border-box;
}

.product-thumb:hover {
	box-shadow: var(--ta-shadow);
	transform: translateY(-3px);
	border-color: rgba(0, 163, 160, 0.35) !important;
}

.product-row.row,
.catalog-row.row {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	border: 0 !important;
	margin-top: 1.25rem;
	margin-bottom: 1.5rem;
	margin-left: 0 !important;
	margin-right: 0 !important;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}

@media (min-width: 768px) {
	.product-row.row,
	.catalog-row.row {
		gap: 1.15rem;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-row.row:has(> .col-md-6),
	.catalog-row.row:has(> .col-md-6) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.product-row.row:has(> .col-lg-6),
	.catalog-row.row:has(> .col-lg-6) {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-row.row:has(> .col-lg-4),
	.catalog-row.row:has(> .col-lg-4) {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-row.row:has(> .col-lg-3),
	.catalog-row.row:has(> .col-lg-3) {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.product-row.row:has(> .col-lg-2-4),
	.catalog-row.row:has(> .col-lg-2-4) {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (min-width: 1200px) {
	.product-row.row:has(> .col-xl-2),
	.catalog-row.row:has(> .col-xl-2) {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.ta-article-list__grid,
#article-catalog .article-list {
	border: 0 !important;
	margin-top: 1.25rem;
	margin-bottom: 1.5rem;
	margin-left: 0;
	margin-right: 0;
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 0;
	row-gap: 1.25rem;
}

.product-row > div[class*="col"],
.catalog-row > div[class*="col"] {
	width: auto !important;
	max-width: none !important;
	flex: none !important;
	border: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0;
	display: flex;
	align-items: stretch;
}

.ta-article-list__grid > div[class*="col"],
#article-catalog .article-list > div[class*="col"] {
	border: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	display: flex;
	align-items: stretch;
}

.product-row > div[class*="col"] > .product-thumb {
	width: 100%;
}

.catalog-row > div[class*="col"] > .category-thumb {
	width: 100%;
}

.category-thumb {
	border-radius: var(--ta-radius) !important;
	border: 1px solid var(--ta-border) !important;
	box-shadow: var(--ta-shadow-sm);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
	display: flex !important;
	flex-direction: column;
	height: 100%;
	padding: 0 !important;
	margin-bottom: 0 !important;
	background: var(--ta-surface) !important;
	text-align: center;
}

.category-thumb:hover {
	box-shadow: var(--ta-shadow);
	transform: translateY(-3px);
	border-color: rgba(0, 163, 160, 0.35) !important;
}

.category-thumb .image,
.category-thumb .ta-category-thumb__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #fff;
	flex-shrink: 0;
}

.category-thumb .image a,
.category-thumb .ta-category-thumb__image a {
	display: block;
	height: 100%;
}

.category-thumb .image img,
.category-thumb .ta-category-thumb__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 1.1rem;
	transition: transform 0.25s ease;
}

.category-thumb:hover .image img,
.category-thumb:hover .ta-category-thumb__image img {
	transform: scale(1.04);
}

.category-thumb .caption {
	padding: 0.75rem 0.85rem 1rem !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 3.75rem;
}

.category-thumb a.category-name {
	margin-top: 0 !important;
	display: block;
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1.35;
	color: var(--ta-text) !important;
	text-decoration: none !important;
	word-break: break-word;
}

.category-thumb a.category-name:hover {
	color: var(--ta-accent) !important;
	text-decoration: none !important;
}

.ta-product-thumb__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #fff;
	padding: 0 !important;
	margin: 0 !important;
}

.ta-product-thumb__image img,
.product-thumb .ta-product-thumb__image img.img-fluid {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover;
	display: block;
	padding: 0 !important;
	margin: 0 !important;
	transition: transform 0.25s ease;
}

.product-thumb:hover .ta-product-thumb__image img {
	transform: scale(1.03);
}

.product-thumb .caption {
	padding: 8px 10px 10px !important;
	display: flex;
	flex-direction: column;
	flex: 1;
	text-align: left;
}

.ta-product-thumb__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem;
	min-height: 1.3em;
	margin-bottom: 0.35rem;
	font-size: 11px;
	line-height: 1.3;
}

.ta-product-thumb__sku {
	color: var(--ta-muted);
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ta-product-thumb__stock {
	flex-shrink: 0;
	font-weight: 600;
	white-space: nowrap;
}

.ta-product-thumb__stock.is-instock {
	color: #007a78;
}

.ta-product-thumb__stock.is-outstock {
	color: #b45309;
}

.ta-product-thumb__stock.is-clarify {
	color: #b45309;
	max-width: 11rem;
	white-space: normal;
	text-align: right;
	line-height: 1.25;
	font-size: 11px;
}

.product-thumb a.product-name,
.product-thumb .ta-product-thumb__name {
	font-weight: 600;
	line-height: 1.3;
	font-size: 14px;
	margin-bottom: 0.45rem !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: normal;
	min-height: calc(1.3em * 2);
	max-height: calc(1.3em * 2);
}

.product-thumb .product-price {
	font-weight: 700;
	font-size: 1rem;
	margin-top: auto !important;
	margin-bottom: 0.45rem;
	flex-shrink: 0;
}

.product-thumb .product-price .old-product-price {
	text-decoration: line-through;
	color: var(--ta-muted);
	font-weight: 500;
	font-size: 0.9em;
	margin-right: 0.35rem;
}

.product-thumb .product-button {
	margin-top: 0;
	flex-shrink: 0;
}

.product-thumb .ta-product-thumb__name + .product-button {
	margin-top: auto !important;
}

.product-thumb .product-price + .product-button {
	margin-top: 0 !important;
}

.product-buy-button.in-cart {
	opacity: 0.92;
}

.product-thumb .product-buy-button,
.product-thumb .product-report-avail-button {
	width: 100%;
	border-radius: var(--ta-radius-sm);
	margin-top: 0 !important;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
	font-size: 13px;
}

.product-thumb .product-sticker {
	top: 10px;
	left: 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	pointer-events: none;
}

.product-sticker .product-sticker__badge {
	display: inline-block;
	padding: 0.28rem 0.55rem;
	min-width: 0;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-align: center;
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.product-sticker .product-sticker__badge--new {
	background: var(--ta-accent);
	color: #fff;
}

.product-sticker .product-sticker__badge--hit {
	background: var(--ta-cart-accent);
	color: #fff;
}

.product-sticker .product-sticker__badge:not(.product-sticker__badge--new):not(.product-sticker__badge--hit) {
	background: var(--ta-text);
	color: #fff;
}

#content .row > [class*="col-"] .panel,
#content .panel-default,
.well {
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	box-shadow: none;
	background: var(--ta-surface);
}

.category-wall .category-wall-item,
.info-tile .tile,
.advantage-block .item {
	border-radius: var(--ta-radius);
	box-shadow: var(--ta-shadow-sm);
	overflow: hidden;
}

.form-control {
	border-radius: var(--ta-radius-sm);
	border-color: var(--ta-border);
}

.form-control:focus {
	border-color: var(--ta-accent);
	box-shadow: 0 0 0 3px var(--ta-accent-soft);
}

footer {
	background: #3a3f42;
	margin-top: 3rem;
	padding-top: 0;
}

footer .footer-logo {
	display: inline-block;
	max-width: 180px;
}

footer .footer-logo img {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

footer .footer-bottom {
	border-top-color: var(--footer-border-color);
}

footer .link-list a {
	border-radius: 4px;
	color: var(--footer-link-color);
}

footer .schedule,
footer .address {
	color: var(--footer-link-color);
}

/* ——— Мобільний футер: таби з іконками ——— */
.ta-footer-mobile {
	padding: 0.75rem 0 1rem;
	margin-bottom: 0.75rem;
}

.ta-footer-mobile__tabs {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	margin: 0;
	padding: 0 0.5rem;
	list-style: none;
	border-bottom: 1px solid var(--footer-border-color);
	gap: 0.25rem;
}

.ta-footer-mobile__tabs .nav-item {
	flex: 1 1 0;
	min-width: 0;
}

.ta-footer-mobile__tabs .nav-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 100%;
	min-height: 4.25rem;
	padding: 0.5rem 0.2rem;
	border: none;
	border-radius: var(--ta-radius-sm) var(--ta-radius-sm) 0 0;
	background: transparent;
	color: var(--footer-link-color);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	opacity: 0.72;
	transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.ta-footer-mobile__tabs .nav-link:hover,
.ta-footer-mobile__tabs .nav-link:focus {
	color: #fff;
	opacity: 1;
}

.ta-footer-mobile__tabs .nav-link.active {
	color: #fff;
	opacity: 1;
	background: rgba(255, 255, 255, 0.07);
	box-shadow: inset 0 -2px 0 var(--ta-accent-line);
}

.ta-footer-mobile__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
}

.ta-footer-mobile__icon svg {
	width: 1.35rem;
	height: 1.35rem;
	display: block;
}

.ta-footer-mobile__label {
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ta-footer-mobile__panels {
	padding: 1rem 1rem 0.25rem;
	min-height: 6rem;
}

.ta-footer-mobile__panels .link-list li {
	padding: 0.55rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ta-footer-mobile__panels .link-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ta-footer-mobile__panels .link-list a {
	display: inline-block;
	padding: 0.1rem 0;
	font-size: 14px;
}

.ta-footer-mobile__copyright {
	padding: 0.85rem 1rem 0;
	border-top: 1px solid var(--footer-border-color);
	color: var(--footer-copyright-color);
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

@media (max-width: 720px) {
	footer .link-list a,
	footer .schedule,
	footer .address {
		color: var(--footer-link-color);
	}

	footer .link-list a:hover,
	footer.footer3 .link-list a.active {
		color: var(--footer-link-color-hover);
	}
}

/* ——— Кнопка «нагору» ——— */
.progress-wrap {
	position: fixed;
	right: 24px;
	bottom: 28px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	box-shadow: var(--ta-shadow-sm);
	z-index: 1040;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition:
		opacity 0.2s ease,
		visibility 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease;
}

body.has-live-chat .progress-wrap {
	bottom: calc(1.25rem + 3.5rem + 0.75rem);
	right: 1.25rem;
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap.active-progress:hover {
	transform: translateY(-6px);
	border-color: var(--ta-accent);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
	background: #fff;
}

.progress-wrap.active-progress:active {
	transform: translateY(-3px);
	box-shadow: var(--ta-shadow-sm);
	transition-duration: 0.05s;
	transition-delay: 0s;
}

.progress-wrap svg.progress-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 22px;
	transform: translate(-50%, -50%);
}

.progress-wrap svg.progress-arrow path {
	fill: var(--ta-text);
	transition: fill 0.2s ease;
}

.progress-wrap.active-progress:hover svg.progress-arrow path {
	fill: var(--ta-accent);
}

.home-slider {
	margin-bottom: 0;
}

.ta-slider-wrap {
	border-radius: var(--ta-radius);
	overflow: hidden;
	box-shadow: var(--ta-shadow-sm);
	background: var(--ta-surface);
}

.ta-slider-wrap .swiper-container {
	border-radius: inherit;
}

.ta-slider-wrap .swiper-slide img {
	width: 100%;
	display: block;
	vertical-align: middle;
}

@media (min-width: 768px) {
	.ta-slider-wrap .swiper-slide img {
		max-height: clamp(200px, 40vw, 460px);
		object-fit: cover;
		object-position: center;
	}
}

.ta-slider-wrap .swiper-pagination.slider {
	bottom: 12px !important;
}

.ta-slider-wrap .swiper-pagination-bullet-active {
	background: var(--ta-accent) !important;
}

.ta-home-main {
	padding-top: 1.25rem;
}

/* ——— Головна: однакові відступи між блоками ——— */
#common-home {
	--ta-home-gap: 1.75rem;
}

#common-home .ta-home-block {
	margin: 0 0 var(--ta-home-gap);
}

#common-home .ta-home-categories {
	margin-top: 25px;
}

.ta-home-categories__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.ta-home-categories__head .ta-section-title {
	flex: 1;
	min-width: 0;
	margin-bottom: 1.25rem !important;
}

.ta-home-categories__all {
	flex-shrink: 0;
	margin-bottom: 1.25rem;
	padding-bottom: 10px;
	color: var(--ta-accent);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.ta-home-categories__all:hover {
	color: var(--ta-accent-hover);
	text-decoration: underline;
	text-underline-offset: 3px;
}

#common-home .ta-home-block:last-child {
	margin-bottom: 0;
}

#common-home .product-row,
#common-home .catalog-row,
#common-home .ta-article-list__grid {
	margin-top: 0;
	margin-bottom: 0;
}

#common-home .ta-article-list {
	margin: 0 0 var(--ta-home-gap);
	margin-top: 1.25rem;
}

#common-home .info-block .row {
	margin-top: 0;
	margin-bottom: 0;
}

#common-home .advantage {
	margin-bottom: 0;
}

/* ——— Хедер: каталог і пошук ——— */
header.site-header .header-middle .header-catalog-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 48px;
	box-shadow: 0 2px 12px rgba(0, 163, 160, 0.28);
	font-weight: 700;
	letter-spacing: 0.02em;
}

header.site-header .header-catalog-menu {
	border-radius: var(--ta-radius-sm);
	overflow: visible;
	font-size: clamp(12px, calc(12px + 3 * (100vw - 1024px) / 416), 15px);
	padding: 0.8em 1.067em;
	width: max-content;
	max-width: none;
	max-height: calc(100dvh - 8rem);
	top: 100%;
	left: 0;
	right: auto;
	margin: 4px 0 0 0;
}

header.site-header .header-catalog-menu-parent {
	display: grid;
	grid-template-columns: repeat(var(--dropdown-cols, 3), max-content);
	gap: 0.13em 0.27em;
	width: max-content;
	max-width: none;
	min-width: 0;
	justify-content: start;
}

header.site-header .header-catalog-menu li {
	width: auto !important;
	min-width: 0;
	padding: 0.4em 0.53em;
}

header.site-header .header-catalog-menu li a {
	display: block;
	font-size: 1em;
	white-space: normal;
	overflow-wrap: anywhere;
	line-height: 1.35;
}

header.site-header .header-catalog-menu li .arrow {
	display: none;
}

header.site-header .header-catalog-menu-children1,
header.site-header .header-catalog-menu-children2 {
	display: none !important;
}

header .search-block #search .form-control {
	border: none !important;
	border-radius: 0 !important;
}

header .search-block #search .btn-lg,
header .search-block .header-search-group .btn-lg {
	border: none !important;
	border-left: 1px solid var(--ta-border) !important;
	border-radius: 0 !important;
}

header .search-block .search-list {
	border-color: var(--ta-border);
	border-radius: 0 0 var(--ta-radius-sm) var(--ta-radius-sm);
	box-shadow: var(--ta-shadow-sm);
	overflow: hidden;
}

header .search-block .search-result {
	padding: 4px 0;
}

header .search-block .search-result .search-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px;
	text-decoration: none;
}

header .search-block .search-result .search-item .product-name {
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

header .search-block .search-other {
	padding: 8px 10px 10px;
}

header .search-block .search-other a {
	display: block;
	width: 100%;
	padding: 10px 14px;
	border-radius: var(--ta-radius-sm);
	background: var(--ta-accent);
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(0, 163, 160, 0.28);
}

header .search-block .search-other a:hover {
	background: var(--ta-accent-hover);
	color: #fff !important;
}

/* ——— Горизонтальне меню ——— */
header .horizontal-menu {
	box-shadow: inset 0 1px 0 var(--ta-border);
}

header .horizontal-menu li {
	margin-right: 0.35rem !important;
}

header .horizontal-menu > .container ul.list-inline > li.list-inline-item > a,
header .horizontal-menu > .container ul.list-inline > li.has-submenu > .horizontal-menu-item > a {
	display: inline-block;
	padding: 13px 10px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -0.01em;
	border-radius: var(--ta-radius-sm);
}

header .horizontal-menu li.has-submenu > .child1 {
	width: max-content;
	max-width: none;
	min-width: 0;
	font-size: clamp(12px, calc(12px + 3 * (100vw - 1024px) / 416), 15px);
	padding: 0.8em 1.067em;
	display: none;
	left: 0;
	right: auto;
	margin-left: 0;
}

header .horizontal-menu li.menu-children-left .child1 {
	left: 0;
	right: auto;
	margin-left: 0;
}

header .horizontal-menu li.has-submenu:hover > .child1 {
	display: grid !important;
	grid-template-columns: repeat(var(--dropdown-cols, 3), max-content);
	gap: 0.13em 0.27em;
	justify-content: start;
	max-height: calc(100dvh - 8rem);
	overflow-x: visible;
	overflow-y: auto;
}

header .horizontal-menu li .child1 > li {
	break-inside: avoid;
	width: 100%;
	padding-left: 0;
}

header .horizontal-menu li .child1 a {
	font-size: 1em;
	padding: 0.4em 1em;
	white-space: normal;
	overflow-wrap: anywhere;
	line-height: 1.35;
}

header .horizontal-menu li .child2,
header .horizontal-menu li .child1 .submenu-arrow,
header .horizontal-menu li .child1 .arrow {
	display: none !important;
}

header .horizontal-menu > .container ul.list-inline > li.list-inline-item:hover > a,
header .horizontal-menu > .container ul.list-inline > li.has-submenu:hover > .horizontal-menu-item > a,
header .horizontal-menu li .child1 a:hover,
header .horizontal-menu li .child2 a:hover {
	color: var(--ta-accent-hover) !important;
}

/* Активний пункт меню — колір з палітри теми, без фону */
header .horizontal-menu > .container ul.list-inline > li.is-active > .horizontal-menu-item > a,
header .horizontal-menu > .container ul.list-inline > li.is-active > .horizontal-menu-item > a.is-active,
header .horizontal-menu li .child1 a.is-active,
header .horizontal-menu li .child2 a.is-active {
	color: var(--ta-accent-hover) !important;
	font-weight: 700;
}

header .horizontal-menu > .container ul.list-inline > li.is-active > .horizontal-menu-item > .menu-arrow path,
header .horizontal-menu li .child1 li.is-active > .submenu-arrow path,
header .horizontal-menu li .child1 li.is-active > .arrow path {
	fill: var(--ta-accent-hover);
}

/* ——— Інформаційні сторінки (Доставка, Повернення, Контакти, Про нас) ——— */
#information-information .h1,
#article-catalog .h1,
#article-article .h1 {
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 20px !important;
	font-weight: 600;
}

#information-information .h1::after,
#article-catalog .h1::after,
#article-article .h1::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 220px;
	height: 3px;
	background: var(--ta-accent-line);
	border-radius: 2px;
}

#information-information #content > .description,
#information-information #content p,
#information-information #content li,
#information-information #content td,
#information-information #content span:not(.badge) {
	color: #3a3a3a;
}

#information-information #content h2,
#information-information #content h3,
#information-information #content h4,
#information-information #content strong,
#information-information #content b {
	color: #3a3a3a;
}

/* Контент статті / інфо: картинки не вилазять за межі на мобільних */
#article-article .ta-article-body,
#article-catalog .ta-article-body,
#information-information .ta-article-body {
	overflow-x: auto;
	max-width: 100%;
}

#article-article .ta-article-body img,
#article-catalog .ta-article-body img,
#information-information .ta-article-body img,
#article-article .ta-article-body iframe,
#article-catalog .ta-article-body iframe,
#information-information .ta-article-body iframe,
#article-article .ta-article-body table,
#article-catalog .ta-article-body table,
#information-information .ta-article-body table,
#article-article .ta-article-body video,
#information-information .ta-article-body video {
	max-width: 100% !important;
	height: auto !important;
}

#article-article .ta-article-body img,
#article-catalog .ta-article-body img,
#information-information .ta-article-body img {
	display: block;
}

.ta-article-products--sidebar {
	position: sticky;
	top: 100px;
	margin-top: 0;
}

.ta-article-products__body {
	padding: 12px;
	background: var(--ta-bg);
}

.ta-article-products__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ta-article-products__item {
	margin: 0;
	padding: 0;
	border: 0;
}

.ta-article-products__card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	box-shadow: var(--ta-shadow-sm);
	text-decoration: none;
	color: var(--ta-text);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ta-article-products__card:hover {
	border-color: rgba(0, 163, 160, 0.45);
	box-shadow: var(--ta-shadow);
	transform: translateY(-1px);
	color: var(--ta-text);
}

.ta-article-products__thumb {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--ta-accent-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ta-article-products__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ta-article-products__name {
	flex: 1;
	min-width: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ta-text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.ta-article-products__card:hover .ta-article-products__name {
	color: var(--ta-accent-hover);
}

.polmostrow-embed {
	width: 100%;
	margin-top: 8px;
}

.polmostrow-embed__frame {
	display: block;
	width: 100%;
	min-height: 100vh;
	border: 0;
	background: #fff;
}

/* ——— Нижня мобільна панель ——— */
@media (max-width: 991.98px) {
	body {
		padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
	}

	.bottom-mobile-menu {
		border-top: 1px solid var(--ta-border);
		background: rgba(255, 255, 255, 0.94);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		padding-bottom: env(safe-area-inset-bottom, 0px);
		box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.07);
		display: flex;
	}

	.bottom-mobile-menu-item {
		flex: 1 1 0;
		min-width: 0;
		float: none;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	.bottom-mobile-menu-item--contact .item-title {
		max-width: 4.5rem;
		margin-inline: auto;
	}

	.bottom-mobile-menu-item:not(.cart-icon):not(.wishlist-icon) {
		color: var(--ta-accent);
	}

	.bottom-mobile-menu-item .item-title {
		color: inherit;
		font-size: 10px;
	}

	.bottom-mobile-menu-item svg,
	.bottom-mobile-menu .cart-icon svg,
	.bottom-mobile-menu .wishlist-icon svg {
		display: block;
		width: 24px !important;
		height: 24px !important;
		max-width: 24px;
		max-height: 24px;
		margin: 0 auto;
		flex-shrink: 0;
		overflow: visible;
	}

	.bottom-mobile-menu .cart-icon .header-count,
	.bottom-mobile-menu .wishlist-icon .header-count {
		top: 4px;
		right: calc(50% - 22px);
		margin: 0;
		left: auto;
	}

	#content.col-sm-9,
	#content.col-sm-6,
	#content.col-lg-9,
	#content.col-lg-6,
	#content.col-lg-8,
	#column-right,
	#column-left {
		flex: 0 0 100%;
		max-width: 100%;
		width: 100%;
	}

	.ta-article-products--sidebar {
		position: static;
		margin-top: 1.25rem;
	}
}

/* ——— Бокові блоки (меню / контакти) ——— */
.ta-sidebar-block {
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	overflow: hidden;
	box-shadow: var(--ta-shadow-sm);
}

.ta-sidebar-block__head {
	background: var(--ta-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 12px 16px;
}

.ta-sidebar-menu__row {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	overflow: visible;
}

.ta-sidebar-menu__link {
	flex: 1 1 auto;
	min-width: 0;
	display: block;
	text-decoration: none;
	line-height: 1.35;
	transition: color 0.15s ease;
}

.ta-sidebar-menu__toggle {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	margin: -4px -6px -4px 0;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: var(--ta-muted);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	line-height: 1;
}

.ta-sidebar-menu__toggle:hover {
	color: var(--ta-accent);
	background: rgba(0, 0, 0, 0.04);
}

.ta-sidebar-menu__chevron {
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	transform: rotate(-90deg);
	transition: transform 0.15s ease;
}

.ta-sidebar-menu__item.is-open > .ta-sidebar-menu__row .ta-sidebar-menu__chevron {
	transform: rotate(0deg);
}

.ta-sidebar-menu__item[data-level="0"] > .ta-sidebar-menu__row {
	padding-top: 11px;
	padding-bottom: 11px;
}

.ta-sidebar-menu__item[data-level="0"] > .ta-sidebar-menu__row .ta-sidebar-menu__link {
	color: var(--ta-text);
	font-size: 14px;
	font-weight: 600;
}

.ta-sidebar-menu__item[data-level="0"] > .ta-sidebar-menu__row .ta-sidebar-menu__link:hover {
	color: var(--ta-accent);
}

.ta-sidebar-menu__sub {
	display: none;
	padding: 0 14px 6px 24px;
}

.ta-sidebar-menu__item.is-open > .ta-sidebar-menu__sub {
	display: block;
}

.ta-sidebar-menu__sub .ta-sidebar-menu__row {
	padding: 5px 4px 5px 0;
	overflow: visible;
}

.ta-sidebar-menu__sub .ta-sidebar-menu__link {
	color: var(--ta-muted);
	font-size: 13px;
	font-weight: 400;
}

.ta-sidebar-menu__sub .ta-sidebar-menu__link::before {
	content: "—\00a0";
	color: #a8b4c4;
	font-weight: 400;
}

.ta-sidebar-menu__sub .ta-sidebar-menu__link:hover {
	color: var(--ta-accent);
}

.ta-sidebar-menu__sub .ta-sidebar-menu__link:hover::before {
	color: var(--ta-accent);
	opacity: 0.65;
}

.ta-sidebar-menu__item[data-level="2"] > .ta-sidebar-menu__row {
	padding-left: 10px;
}

.ta-sidebar-menu__item[data-level="3"] > .ta-sidebar-menu__row {
	padding-left: 18px;
}

.ta-sidebar-contacts {
	padding: 4px 0 8px;
}

.ta-sidebar-contacts__item {
	padding: 12px 16px;
	border-top: 1px solid var(--ta-border);
}

.ta-sidebar-contacts__item:first-child {
	border-top: 0;
}

.ta-sidebar-contacts__label {
	color: #1a3a5c;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.ta-sidebar-contacts__value {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #334155;
	font-size: 14px;
	line-height: 1.45;
}

.ta-sidebar-contacts__icon {
	flex: 0 0 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ta-accent);
}

.ta-sidebar-contacts__value a {
	color: inherit;
	text-decoration: none;
}

.ta-sidebar-contacts__value a:hover {
	color: var(--ta-accent);
}

/* ——— Статті (головна / каталог) ——— */
.ta-article-list {
	margin: 2rem 0 1.5rem;
}

.ta-article-list__title {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 1.25rem !important;
	font-weight: 600;
}

.ta-article-list__title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 72px;
	height: 3px;
	background: var(--ta-accent-line);
	border-radius: 2px;
}

.ta-article-list__grid {
	width: 100%;
}

.ta-article-card {
	width: 100%;
}

.ta-article-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--ta-shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ta-article-card__link:hover {
	transform: translateY(-4px);
	box-shadow: var(--ta-shadow);
	border-color: rgba(0, 163, 160, 0.45);
	color: inherit;
}

.ta-article-card__media {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--ta-bg);
}

.ta-article-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.ta-article-card__link:hover .ta-article-card__img {
	transform: scale(1.04);
}

.ta-article-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem 1.1rem 1.15rem;
	flex: 1;
}

.ta-article-card__date {
	font-size: 12px;
	color: var(--ta-muted);
	line-height: 1.4;
}

.ta-article-card__date::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ta-accent);
	margin-right: 0.45rem;
	vertical-align: 0.05em;
	opacity: 0.85;
}

.ta-article-card__title {
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--ta-text);
	margin: 0 !important;
	margin-bottom: 0;
	transition: color 0.15s ease;
}

.ta-article-card__link:hover .ta-article-card__title {
	color: var(--ta-accent);
}

/* ——— Переваги (блок на головній) ——— */
.advantage .advantage-block .advantage-image,
.advantage .advantage-icon-wrap {
	background: var(--ta-accent-soft);
	color: var(--ta-accent);
}

/* ——— Кошик / обране: залишаємо помаранчевий ——— */
header .cart-menu .cart-icon a,
header .cart-menu .wishlist-icon a,
header .header-middle-cart-list .cart-icon a,
header .header-middle-cart-list .wishlist-icon a,
.bottom-mobile-menu a.cart-icon,
.bottom-mobile-menu a.wishlist-icon {
	color: var(--ta-cart-accent);
	transition: color 0.15s ease;
}

header .cart-menu .cart-icon a:hover,
header .cart-menu .wishlist-icon a:hover,
header .header-middle-cart-list .cart-icon a:hover,
header .header-middle-cart-list .wishlist-icon a:hover,
.bottom-mobile-menu a.cart-icon:hover,
.bottom-mobile-menu a.wishlist-icon:hover {
	color: var(--ta-cart-accent-hover);
}

header .cart-menu .cart-icon svg path,
header .cart-menu .wishlist-icon svg path,
header .header-middle-cart-list .cart-icon svg path,
header .header-middle-cart-list .wishlist-icon svg path,
.bottom-mobile-menu a.cart-icon svg path,
.bottom-mobile-menu a.wishlist-icon svg path {
	fill: currentColor !important;
}

/* ——— Заголовки секцій (полоска знизу) ——— */
.ta-section-title {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 1.25rem !important;
	font-weight: 600;
}

.ta-section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 72px;
	height: 3px;
	background: var(--ta-accent-line);
	border-radius: 2px;
}

.ta-section-title--page::after {
	width: 220px;
}

/* ——— Підкреслення назв товарів ——— */
.product-thumb a.product-name,
.product-thumb .ta-product-thumb__name,
.ta-cart-list a.product-name,
.cart-list a.product-name,
.product-reviews .product-name,
#order-cart .ta-cart-list li .product-name {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.product-thumb a.product-name:hover,
.ta-cart-list a.product-name:hover,
.cart-list a.product-name:hover,
.product-reviews .product-name:hover,
#order-cart .ta-cart-list li .product-name:hover {
	text-decoration: underline;
}

/* ——— Сторінка товару: галерея ——— */
#product-product .ta-product-layout__gallery {
	max-width: 100%;
}

#product-product .ta-product-layout__info {
	min-width: 0;
}

#product-product .ta-product-header {
	margin-bottom: 1.75rem;
}

#product-product .ta-product-heading__title {
	margin-bottom: 0 !important;
}

#product-product .ta-product-header__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 0.45rem;
	text-align: right;
}

#product-product .ta-product-related {
	margin-top: 2rem;
}

#product-product .ta-product-related .ta-section-title {
	margin-bottom: 1.25rem !important;
}

#product-product .ta-product-heading__code {
	display: inline-block;
	margin: 0;
	padding: 0.3rem 0.65rem;
	border-radius: var(--ta-radius-sm);
	background: var(--ta-bg);
	color: var(--ta-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	white-space: nowrap;
}

#product-product .ta-product-header__rating {
	justify-content: flex-end;
	gap: 0.15rem;
	align-items: center;
}

.product-rating a {
	margin-top: 0;
}

@media (max-width: 767.98px) {
	#product-product .ta-product-header__meta {
		align-items: flex-start;
		margin-top: 0.5rem;
		text-align: left;
	}

	#product-product .ta-product-heading__code {
		white-space: normal;
	}
}

#product-product .ta-product-info-panel {
	padding: 1rem 1rem 0;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
}

#product-product .ta-product-price-stock {
	margin: 0 0 0.75rem;
	padding: 0.15rem 0 0.6rem;
	border-bottom: 1px solid var(--ta-border);
}

#product-product .ta-product-price-stock__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

#product-product .ta-product-price-stock--stock-only .ta-product-price-stock__row {
	justify-content: flex-end;
}

#product-product .ta-product-price-stock__actions {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex: 0 0 auto;
	margin-left: auto;
}

#product-product .ta-product-wishlist-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #e85d04;
	flex-shrink: 0;
	line-height: 1;
}

#product-product .ta-product-wishlist-btn:hover,
#product-product .ta-product-wishlist-btn:focus {
	border: 0;
	background: transparent;
	color: var(--ta-cart-accent-hover);
}

#product-product .ta-product-wishlist-btn__icon {
	display: block;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.5l-1.1-1C5.14 14.24 2 11.36 2 7.5 2 4.42 4.42 2 7.5 2c1.74 0 3.41.81 4.5 2.09C13.09 2.81 14.76 2 16.5 2 19.58 2 22 4.42 22 7.5c0 3.86-3.14 6.74-8.9 11.96L12 20.5z' stroke='%23000' stroke-width='1.75' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 20.5l-1.1-1C5.14 14.24 2 11.36 2 7.5 2 4.42 4.42 2 7.5 2c1.74 0 3.41.81 4.5 2.09C13.09 2.81 14.76 2 16.5 2 19.58 2 22 4.42 22 7.5c0 3.86-3.14 6.74-8.9 11.96L12 20.5z' stroke='%23000' stroke-width='1.75' fill='none' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

#product-product .ta-product-wishlist-btn.is-active .ta-product-wishlist-btn__icon {
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.5l-1.1-1C5.14 14.24 2 11.36 2 7.5 2 4.42 4.42 2 7.5 2c1.74 0 3.41.81 4.5 2.09C13.09 2.81 14.76 2 16.5 2 19.58 2 22 4.42 22 7.5c0 3.86-3.14 6.74-8.9 11.96L12 20.5z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 20.5l-1.1-1C5.14 14.24 2 11.36 2 7.5 2 4.42 4.42 2 7.5 2c1.74 0 3.41.81 4.5 2.09C13.09 2.81 14.76 2 16.5 2 19.58 2 22 4.42 22 7.5c0 3.86-3.14 6.74-8.9 11.96L12 20.5z' fill='%23000'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ta-product-price-stock__price-value {
	margin-bottom: 0 !important;
}

#product-product .ta-product-price-stock__price {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0 !important;
}

#product-product .ta-product-price-stock__price .h1 {
	margin: 0;
	font-size: clamp(1.5rem, 2.2vw, 2rem);
	line-height: 1;
}

#product-product .ta-product-price-stock__old {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--ta-muted);
	font-size: 14px;
	text-decoration: line-through;
}

#product-product .ta-product-price-stock__discounts {
	margin-top: 0.35rem;
}

#product-product .ta-product-price-stock__discount {
	display: inline-block;
	color: var(--ta-text);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
}

#product-product .ta-product-price-stock__discount-list {
	padding-top: 0.5rem;
}

#product-product .ta-product-price-stock__stock {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	align-self: center;
	margin: 0;
	padding: 0.35rem 0.65rem;
	border-radius: var(--ta-radius-sm);
	line-height: 1.2;
	white-space: nowrap;
}

#product-product .ta-product-price-stock__stock--in {
	background: var(--instock-status-color);
}

#product-product .ta-product-price-stock__stock--out {
	background: var(--outstock-status-color);
}

#product-product .ta-product-price-stock__stock--clarify {
	background: #fff4e5;
	color: #9a3412;
}

#product-product .ta-product-stock-clarify {
	margin-top: 0.55rem;
	padding: 0.55rem 0.7rem;
	border-radius: var(--ta-radius-sm);
	background: #fff7ed;
	border: 1px solid #fdba74;
	color: #9a3412;
	font-size: 0.9rem;
	line-height: 1.35;
}

#order-cart .ta-cart-qty__btn:disabled,
#order-cart .ta-cart-qty.is-max .ta-cart-qty__btn[data-quantity="plus"] {
	opacity: 0.4;
	cursor: not-allowed;
	background: var(--ta-bg);
	color: #9aa0a6;
}

#order-cart .ta-cart-qty__input[readonly] {
	background: #f3f4f6;
	color: #6b7280;
	cursor: default;
}

#product-product .product-price {
	margin-top: 0 !important;
}

/* ——— Сторінка товару: поділитись ——— */
#product-product .ta-product-share {
	margin-top: 0.75rem;
	padding: 0.85rem 0 0.25rem;
	border-top: 1px solid var(--ta-border);
}

#product-product .ta-product-share__row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

#product-product .ta-product-share__title {
	margin: 0 !important;
	color: var(--ta-muted);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

#product-product .ta-product-share__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.4rem;
}

#product-product .ta-product-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: var(--ta-radius-sm);
	text-decoration: none;
	transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

#product-product .ta-product-share__btn:hover {
	transform: translateY(-1px);
	opacity: 0.92;
}

#product-product .ta-product-share__btn svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: #fff;
}

#product-product .ta-product-share__btn--facebook {
	background: #3b5998;
}

#product-product .ta-product-share__btn--twitter {
	background: #0f1419;
}

#product-product .ta-product-share__btn--twitter svg {
	fill: #fff;
}

#product-product .ta-product-share__btn--viber {
	background: #7360f2;
}

#product-product .ta-product-share__btn--viber svg {
	width: 17px;
	height: 17px;
}

#product-product .ta-product-share__btn--telegram {
	background: #229ed9;
}

#product-product .product-price .price-block {
	margin-bottom: 0 !important;
}

#product-product .product-images,
#product-product .product-info {
	position: static !important;
	top: auto !important;
}

#product-product .ta-product-gallery {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

#product-product .ta-product-gallery__main {
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	overflow: hidden;
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
}

#product-product .ta-product-gallery__main .swiper-slide {
	height: auto;
	min-height: 280px;
	background: var(--ta-bg);
}

#product-product .ta-product-zoom {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	cursor: zoom-in;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ta-bg);
}

#product-product .ta-product-zoom__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.12s ease-out;
	will-change: transform;
}

#product-product .ta-product-gallery__video {
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 0.75rem;
	background: var(--ta-bg);
}

#product-product .ta-product-gallery__video--wide {
	aspect-ratio: auto;
	padding: 1rem;
}

#product-product .ta-product-gallery__thumbs {
	position: static !important;
	top: auto !important;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

#product-product .ta-product-gallery__thumbs .product-thumbs-item {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	margin: 0 !important;
	padding: 0;
	border: 2px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	overflow: hidden;
	cursor: pointer;
	text-align: center;
	background: var(--ta-surface);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#product-product .ta-product-gallery__thumbs .product-thumbs-item:hover {
	border-color: rgba(0, 163, 160, 0.55);
	transform: translateY(-1px);
}

#product-product .ta-product-gallery__thumbs .product-thumbs-item.active {
	border-color: var(--ta-accent);
	box-shadow: 0 0 0 3px var(--ta-accent-soft);
}

#product-product .ta-product-gallery__thumbs .product-thumbs-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#product-product .ta-product-gallery__thumbs .product-thumbs-item--video svg {
	width: 28px;
	height: 28px;
	color: var(--ta-muted);
}

#product-product .ta-product-gallery__thumbs .product-thumbs-item--video.active svg,
#product-product .ta-product-gallery__thumbs .product-thumbs-item--video:hover svg {
	color: var(--ta-accent);
}

#product-product .ta-product-gallery--modal .ta-product-gallery__main {
	border-radius: var(--ta-radius-sm);
	box-shadow: none;
}

@media (min-width: 992px) {
	#product-product .ta-product-gallery__main .swiper-slide {
		min-height: 280px;
	}

	#product-product .ta-product-gallery__thumbs .product-thumbs-item {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 767.98px) {
	#product-product .ta-product-gallery__thumbs .product-thumbs-item {
		width: 64px;
		height: 64px;
	}

	#product-product .ta-product-zoom {
		cursor: default;
	}
}

/* ——— Сторінка товару: опис і характеристики (на всю ширину) ——— */
#product-product .ta-product-details {
	width: 100%;
	margin-top: 1rem;
}

#product-product .ta-product-details .ta-product-description,
#product-product .ta-product-details .ta-product-attributes {
	margin-top: 0.75rem;
}

#product-product .ta-product-details .ta-product-description:first-child,
#product-product .ta-product-details .ta-product-attributes:first-child {
	margin-top: 0;
}

/* ——— Сторінка товару: опис ——— */
#product-product .ta-product-description {
	margin-top: 0.75rem;
	padding: 1rem 1rem 0.85rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
}

#product-product .ta-product-description__title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 0.75rem !important;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid var(--ta-border);
	color: var(--ta-text);
	text-transform: none;
	letter-spacing: 0;
}

#product-product .ta-product-description__body {
	font-size: 14px;
	line-height: 1.6;
	color: var(--ta-text);
}

#product-product .ta-product-description__body > :last-child {
	margin-bottom: 0;
}

#product-product .ta-product-short-description {
	margin-top: 0.75rem;
}

#product-product .ta-product-ask-chat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin: 0.15rem 0 0.35rem;
	padding: 0.45rem 0.95rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	color: var(--ta-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	box-shadow: none;
	transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

#product-product .ta-product-ask-chat:hover,
#product-product .ta-product-ask-chat:focus {
	color: var(--ta-accent-hover);
	border-color: rgba(0, 163, 160, 0.45);
	background: var(--ta-accent-soft);
	outline: none;
}

#product-product .ta-product-ask-chat__icon {
	flex-shrink: 0;
}

/* ——— Сторінка товару: характеристики ——— */
#product-product .ta-product-attributes {
	margin-top: 0.75rem;
	padding: 1rem 1rem 0.85rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
}

#product-product .ta-product-attributes__title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 0.75rem !important;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid var(--ta-border);
	color: var(--ta-text);
	text-transform: none;
	letter-spacing: 0;
}

#product-product .ta-product-attributes__list {
	position: relative;
}

#product-product .ta-product-attributes--collapsed .ta-product-attributes__list {
	max-height: 12.5rem;
	overflow: hidden;
}

#product-product .ta-product-attributes--collapsed .ta-product-attributes__list::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2.5rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--ta-surface));
	pointer-events: none;
}

#product-product .ta-product-attributes__item {
	border-bottom: 1px solid var(--ta-border);
}

#product-product .ta-product-attributes__item:last-child {
	border-bottom: 0;
}

@media (min-width: 992px) {
	#product-product .ta-product-attributes__list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 1.25rem;
	}

	#product-product .ta-product-attributes__item:nth-last-child(-n+2) {
		border-bottom: 0;
	}
}

#product-product .ta-product-attributes__row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 0;
	padding: 0.5rem 0;
	font-size: 13px;
	line-height: 1.4;
}

#product-product .ta-product-attributes__row dt {
	flex: 0 0 42%;
	max-width: 42%;
	margin: 0;
	color: var(--ta-muted);
	font-weight: 400;
}

#product-product .ta-product-attributes__row dd {
	flex: 1;
	margin: 0;
	color: var(--ta-text);
	font-weight: 500;
	word-break: break-word;
}

#product-product .ta-product-attributes__row dd a {
	color: var(--ta-accent);
	text-decoration: none;
}

#product-product .ta-product-attributes__row dd a:hover {
	text-decoration: underline;
}

#product-product .ta-product-attributes__toggle {
	display: inline-block;
	margin-top: 0.65rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ta-accent);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#product-product .ta-product-attributes__toggle:hover {
	color: var(--ta-accent-hover);
}

#product-product .ta-product-accordion {
	border: 1px solid var(--ta-border) !important;
	border-radius: var(--ta-radius-sm);
	margin-top: 0.75rem;
	overflow: hidden;
}

#product-product .ta-product-accordion .accordion-item {
	border-color: var(--ta-border);
}

#product-product .ta-product-accordion .accordion-button {
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
	padding: 0.85rem 1rem;
	box-shadow: none !important;
}

#product-product .ta-product-accordion .accordion-button:not(.collapsed) {
	background: var(--ta-surface);
	color: var(--ta-text);
}

#product-product .product-price.form-group {
	margin-bottom: 0;
}

#product-product #product > .form-group:last-child {
	margin-bottom: 0;
}

#product-product .product-variations {
	margin-top: 1rem;
}

/* ——— Сторінка товару: доставка і оплата ——— */
#product-product .ta-product-delivery,
#product-product .ta-product-payment {
	margin-top: 0.75rem;
	padding: 1rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
}

#product-product .ta-product-delivery__title,
#product-product .ta-product-payment__title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 0.75rem !important;
	padding-bottom: 0.55rem;
	border-bottom: 1px solid var(--ta-border);
	color: var(--ta-text);
	text-transform: none;
	letter-spacing: 0;
}

#product-product .ta-product-delivery__name {
	font-weight: 600;
	font-size: 12px;
}

#product-product .ta-product-delivery__text {
	color: var(--ta-muted);
	font-size: 12px;
}

#product-product .ta-product-delivery__price {
	font-weight: 600;
	font-size: 12px;
}

#product-product .ta-product-payment__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
}

#product-product .ta-product-payment__card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0.35rem 0.5rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
}

#product-product .ta-product-payment__card .svg_icon {
	display: block;
	flex: 0 1 auto;
	max-height: 20px;
	max-width: 100%;
	width: auto;
	height: auto;
}

/* ——— Сторінка категорії: опис і порожній стан ——— */
#product-category .ta-category-description {
	margin: 0 0 1.25rem;
	padding: 1rem 1.15rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
}

#product-category .ta-category-description__body {
	font-size: 14px;
	line-height: 1.65;
	color: var(--ta-text);
}

#product-category .ta-category-description__body > :first-child {
	margin-top: 0;
}

#product-category .ta-category-description__body > :last-child {
	margin-bottom: 0;
}

#product-category .ta-category-description__body img,
#product-category .ta-category-description__body iframe,
#product-category .ta-category-description__body table,
#product-category .ta-category-description__body video {
	max-width: 100% !important;
	height: auto !important;
}

#product-category .ta-category-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1rem;
	margin: 1.25rem 0 1.5rem;
	padding: 1.5rem 1rem;
}

#product-category .ta-category-empty__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--ta-text);
	max-width: 28rem;
}

#product-category .ta-category-empty .btn {
	min-width: 12rem;
}

/* ——— Мобільна панель фільтр / сортування ——— */
.ta-category-toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.4rem;
	margin-bottom: 0.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ta-category-toolbar__btn {
	flex: 0 0 70px;
	width: 70px;
	max-width: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	color: var(--ta-text);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--ta-shadow-sm);
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ta-category-toolbar__btn:hover,
.ta-category-toolbar__btn:focus {
	background: var(--ta-accent-soft);
	border-color: var(--ta-accent);
	color: var(--ta-accent);
	outline: none;
	box-shadow: 0 0 0 3px var(--ta-accent-soft);
}

.ta-category-toolbar__btn .fa {
	pointer-events: none;
}

.ta-category-toolbar__btn--filter .fa {
	font-size: 15px;
}

.ta-category-toolbar__btn--sort .fa {
	font-size: 16px;
}

/* ——— Боковий фільтр категорії ——— */
#column-left .filter-place,
#column-left .ta-category-filter {
	min-width: 0;
}

.filter-place {
	width: 100%;
	max-width: 100%;
}

.filter-place.ta-sidebar-block .ta-category-filter {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.ta-category-filter {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
	overflow: hidden;
}

.ta-category-filter__body {
	flex: 1 1 auto;
	min-height: 0;
	max-height: calc(100vh - 220px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ta-category-filter__footer {
	position: sticky;
	bottom: 0;
	z-index: 3;
	padding: 0.75rem 1rem;
	background: var(--ta-surface);
	border-top: 1px solid var(--ta-border);
	box-shadow: 0 -8px 16px rgba(255, 255, 255, 0.85);
}

.ta-category-filter__footer .btn-filter {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0.55rem 0.85rem;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	border-radius: var(--ta-radius-sm) !important;
	box-sizing: border-box;
}

.ta-filter-section {
	padding: 0.85rem 1rem 0.95rem;
	border-bottom: 1px solid var(--ta-border);
}

.ta-filter-section:last-child {
	border-bottom: 0;
}

.ta-filter-section__title {
	margin: 0 0 0.65rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ta-muted);
	line-height: 1.3;
}

.ta-filter-section__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.ta-filter-check {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.32rem 0.45rem;
	border-radius: 8px;
	cursor: pointer;
	color: var(--ta-text);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.2;
}

.ta-filter-check:hover {
	background: var(--ta-accent-soft);
}

.ta-filter-check .form-check-input {
	margin: 0 !important;
	flex: 0 0 16px;
	flex-shrink: 0;
}

.ta-filter-check .form-check-input:checked + span {
	color: var(--ta-accent-hover);
	font-weight: 600;
}

.ta-filter-price {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}

.ta-filter-price .form-control {
	min-width: 0;
	text-align: center;
}

.ta-filter-price__sep {
	flex: 0 0 auto;
	color: var(--ta-muted);
	font-size: 13px;
	font-weight: 600;
}

.ta-filter-options {
	display: flex;
	flex-direction: column;
	max-height: 16.5rem;
	overflow-y: auto;
	margin: 0 -0.35rem;
	padding: 0.1rem 0.35rem;
	-webkit-overflow-scrolling: touch;
}

.ta-filter-check--other {
	margin-top: 0.15rem;
	border: 1px dashed var(--ta-border);
}

.ta-category-filter .form-control {
	border-color: var(--ta-border);
	border-radius: var(--ta-radius-sm);
	font-size: 13px;
}

.ta-category-filter .form-check-input,
.category-filter .ta-filter-check input[type=checkbox] {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	border: 1px solid var(--ta-border) !important;
	border-radius: 2px !important;
	background-color: #fff;
	background-image: none;
	background-size: 12px 12px !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	box-shadow: none !important;
	float: none;
	vertical-align: middle;
	top: 0;
	position: static;
}

.ta-category-filter .form-check-input:checked,
.category-filter .ta-filter-check input[type=checkbox]:checked {
	background-color: var(--ta-accent);
	border-color: var(--ta-accent) !important;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.ta-category-filter .form-check-label {
	font-size: 13px !important;
	font-weight: 500;
	color: var(--ta-text);
	cursor: pointer;
}

.ta-category-filter .btn-filter {
	background: var(--ta-accent) !important;
	border-color: var(--ta-accent) !important;
	color: #fff !important;
}

.ta-category-filter .btn-filter:hover {
	background: var(--ta-accent-hover) !important;
	border-color: var(--ta-accent-hover) !important;
}

/* Виробник — автокомпліт */
.ta-filter-mfr-autocomplete {
	position: relative;
}

.ta-filter-mfr-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.15rem;
}

.ta-filter-mfr-chips:empty {
	display: none;
}

.ta-filter-mfr-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	max-width: 100%;
	padding: 0.28rem 0.35rem 0.28rem 0.55rem;
	border-radius: 999px;
	background: var(--ta-accent-soft);
	border: 1px solid rgba(0, 163, 160, 0.28);
	color: var(--ta-accent-hover);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
}

.ta-filter-mfr-chip__label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 11rem;
}

.ta-filter-mfr-chip__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	height: 1.15rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 131, 128, 0.12);
	color: var(--ta-accent-hover);
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}

.ta-filter-mfr-chip__remove:hover {
	background: var(--ta-accent);
	color: #fff;
}

.ta-filter-mfr-menu.dropdown-menu {
	display: block;
	margin: 0;
	padding: 0.35rem 0;
	overflow-y: auto;
	overflow-x: hidden;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow);
}

.ta-filter-mfr-menu.dropdown-menu[hidden] {
	display: none !important;
}

.ta-filter-mfr-menu .dropdown-item {
	display: block;
	width: 100%;
	padding: 0.45rem 0.85rem;
	border: 0;
	background: transparent;
	color: var(--ta-text);
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	white-space: normal;
	cursor: pointer;
}

.ta-filter-mfr-menu .dropdown-item:hover,
.ta-filter-mfr-menu .dropdown-item:focus {
	background: var(--ta-accent-soft);
	color: var(--ta-accent-hover);
}

.offcanvas-filter .offcanvas-body {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
}

.offcanvas-filter .ta-category-filter {
	flex: 1;
	min-height: 0;
	height: 100%;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.offcanvas-filter .ta-category-filter__body {
	max-height: none;
}

.car-filter-place + .filter-place .ta-category-filter,
.car-filter-place .ta-car-category-filter {
	margin-bottom: 0;
}

#filterMobile .car-filter-place,
#filterMobile .filter-place {
	width: 100%;
	border: 0;
	box-shadow: none;
	margin-bottom: 0;
}

#filterMobile .filter-place .ta-sidebar-block__head {
	display: none !important;
}

#filterMobile .filter-place .ta-category-filter {
	margin-top: 0.75rem;
	border-top: 1px solid var(--ta-border);
	border-radius: 0;
	box-shadow: none;
}

.car-filter-place.ta-sidebar-block .ta-car-category-filter {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
}

.ta-car-category-filter {
	margin-bottom: 1rem;
}

.ta-car-category-filter .ta-car-filter-fields {
	padding: 0.65rem 0.75rem 0.5rem;
}

.ta-car-category-filter .ta-car-filter-field {
	margin-bottom: 0.55rem;
}

.ta-car-category-filter .ta-car-filter-field:last-child {
	margin-bottom: 0;
}

.ta-car-category-filter .ta-car-filter-field--universal {
	margin-bottom: 0.65rem;
	padding-bottom: 0.6rem;
	border-bottom: 1px solid var(--ta-border);
}

.ta-car-category-filter .ta-car-filter-label {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ta-muted);
	line-height: 1.3;
}

.ta-car-category-filter .form-select,
.ta-car-category-filter .form-select-sm {
	min-height: 30px;
	padding: 0.2rem 1.6rem 0.2rem 0.45rem;
	font-size: 12px;
	line-height: 1.35;
	border-color: var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background-size: 12px 9px;
}

.ta-car-category-filter .ta-car-filter-autocomplete {
	position: relative;
}

.ta-car-category-filter .ta-car-filter-autocomplete .form-control,
.ta-car-category-filter .ta-car-filter-autocomplete .form-control-sm {
	min-height: 30px;
	padding: 0.2rem 0.45rem;
	font-size: 12px;
	line-height: 1.35;
	border-color: var(--ta-border);
	border-radius: var(--ta-radius-sm);
}

.ta-car-category-filter .ta-car-filter-autocomplete .form-control::placeholder {
	color: var(--ta-muted);
	opacity: 0.85;
}

.ta-car-category-filter .ta-car-filter-autocomplete .dropdown-menu {
	position: absolute;
	z-index: 1060;
	display: none;
	width: 100%;
	max-height: 220px;
	overflow-y: auto;
	margin: 2px 0 0;
	padding: 0.25rem 0;
	list-style: none;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	box-shadow: var(--ta-shadow-sm);
}

.ta-car-category-filter .ta-car-filter-autocomplete .dropdown-menu > li > a {
	display: block;
	padding: 0.35rem 0.65rem;
	font-size: 12px;
	line-height: 1.35;
	color: var(--ta-text);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ta-car-category-filter .ta-car-filter-autocomplete .dropdown-menu > li > a:hover,
.ta-car-category-filter .ta-car-filter-autocomplete .dropdown-menu > li > a:focus {
	background: var(--ta-accent-soft);
	color: var(--ta-text);
}

.ta-car-category-filter .form-check {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	margin: 0;
	min-height: 0;
}

.ta-car-category-filter .form-check-input {
	width: 15px;
	height: 15px;
	margin-top: 0.1rem;
	flex-shrink: 0;
	border: 1px solid var(--ta-border) !important;
	border-radius: 4px !important;
	cursor: pointer;
}

.ta-car-category-filter .form-check-input:checked {
	background-color: var(--ta-accent);
	border-color: var(--ta-accent) !important;
}

.ta-car-category-filter .form-check-label {
	font-size: 12px !important;
	font-weight: 500;
	line-height: 1.35;
	color: var(--ta-text);
	cursor: pointer;
}

.ta-car-category-filter .ta-car-filter-field--sizes {
	margin-bottom: 0.35rem;
}

.ta-car-category-filter .ta-car-filter-sizes {
	max-height: 150px;
	overflow-y: auto;
	padding: 0.15rem 0.1rem 0.1rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-bg);
}

.ta-car-category-filter .ta-car-filter-sizes .form-check {
	margin-bottom: 0.2rem;
	padding-left: 1.45rem;
}

.ta-car-category-filter .ta-car-filter-sizes .form-check:last-child {
	margin-bottom: 0.1rem;
}

.ta-car-category-filter .ta-car-filter-sizes .form-check-label {
	font-size: 11px !important;
	line-height: 1.3;
}

.ta-car-category-filter .ta-car-filter-sizes .form-check-input {
	width: 13px;
	height: 13px;
	margin-left: -1.45rem;
	margin-top: 0.12rem;
}

.ta-car-category-filter .ta-car-filter-field--stock {
	margin-top: 0.15rem;
	padding-top: 0.55rem;
	border-top: 1px solid var(--ta-border);
}

.ta-car-category-filter .ta-car-filter-price .form-control {
	min-height: 30px;
	padding: 0.2rem 0.45rem;
	font-size: 12px;
	border-color: var(--ta-border);
}

.ta-car-category-filter .ta-car-filter-price .input-group-text {
	padding: 0.2rem 0.35rem;
	font-size: 11px;
	background: var(--ta-surface);
	border-color: var(--ta-border);
	color: var(--ta-muted);
}

.ta-car-category-filter .car-filter-reset {
	display: block;
	text-align: center;
	text-decoration: none;
}

.ta-car-category-filter .car-filter-reset:hover,
.ta-car-category-filter .car-filter-reset:focus {
	text-decoration: none;
}

.ta-car-category-filter .ta-car-filter-accordion {
	border-top: 1px solid var(--ta-border);
}

.ta-car-category-filter .ta-car-filter-accordion .accordion-button {
	font-size: 13px;
	padding: 0.65rem 0.75rem;
}

.ta-car-category-filter .ta-car-filter-accordion .accordion-body {
	padding: 0.5rem 0.75rem 0.65rem;
}

.ta-car-category-filter .form-check-inline {
	margin-right: 1rem;
}

/* ——— Кошик ——— */
#order-cart .ta-section-title {
	display: inline-block;
}

#order-cart .ta-cart-list {
	border: 0;
	padding: 0;
	font-size: 14px;
	background: transparent;
}

#order-cart .ta-cart-list > li {
	padding: 1rem 1.1rem;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	box-shadow: var(--ta-shadow-sm);
	margin-bottom: 0.65rem;
}

#order-cart .ta-cart-list > li + li {
	border-top: 0;
}

#order-cart .ta-cart-list li img {
	display: block;
	max-height: 72px;
	width: 100%;
	margin: 0 auto;
	border-radius: var(--ta-radius-sm);
	object-fit: contain;
	background: var(--ta-bg);
}

#order-cart .ta-cart-list li .product-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ta-text);
	line-height: 1.35;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#order-cart .ta-cart-list li .product-name:hover {
	color: var(--ta-accent);
}

#order-cart .ta-cart-list li .product-option {
	margin-top: 0.25rem;
	font-size: 12px;
	color: var(--ta-muted);
}

#order-cart .ta-cart-list li .label {
	margin-bottom: 0.25rem;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ta-muted);
}

#order-cart .ta-cart-list li .product-total {
	font-weight: 700;
	font-size: 15px;
	color: var(--ta-text);
	white-space: nowrap;
}

#order-cart .ta-cart-qty {
	display: inline-flex;
	align-items: stretch;
	width: 100%;
	max-width: 6.75rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	overflow: hidden;
	background: var(--ta-surface);
}

#order-cart .ta-cart-qty__btn {
	flex: 0 0 30px;
	width: 30px;
	height: 32px;
	padding: 0;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--ta-bg);
	color: var(--ta-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

#order-cart .ta-cart-qty__btn:hover {
	background: var(--ta-accent-soft);
	color: var(--ta-accent-hover);
}

#order-cart .ta-cart-qty__input {
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	height: 32px;
	padding: 0 0.2rem !important;
	border: 0 !important;
	border-left: 1px solid var(--ta-border) !important;
	border-right: 1px solid var(--ta-border) !important;
	border-radius: 0 !important;
	background: var(--ta-surface);
	color: var(--ta-text);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	box-shadow: none !important;
	-moz-appearance: textfield;
}

#order-cart .ta-cart-qty__input::-webkit-outer-spin-button,
#order-cart .ta-cart-qty__input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#order-cart .ta-cart-qty__input:focus {
	outline: none;
	box-shadow: none !important;
}

#order-cart .ta-cart-list [data-remove] {
	border: 0;
	background: transparent;
	padding: 0.35rem;
	border-radius: var(--ta-radius-sm);
	line-height: 1;
}

#order-cart .ta-cart-list [data-remove]:hover {
	background: rgba(234, 50, 83, 0.1);
}

#order-cart .ta-cart-list [data-remove]:hover svg path {
	fill: #ea3253;
}

#order-cart .cart-total,
#order-cart .ta-cart-total {
	margin-top: 0.5rem;
	width: fit-content;
	min-width: 12rem;
	padding: 0.85rem 1.35rem;
	background: var(--ta-surface);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	box-shadow: var(--ta-shadow-sm);
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.2rem;
}

#order-cart .ta-cart-total__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ta-muted);
	white-space: nowrap;
}

#order-cart .cart-total .total-count,
#order-cart .ta-cart-total__amount {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ta-text);
	white-space: nowrap;
}

#order-cart .cart-minimum-total {
	border: 1px solid rgba(232, 93, 4, 0.35);
	background: var(--ta-cart-accent-soft);
	color: var(--ta-text);
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	padding: 0.85rem 1rem;
	border-radius: var(--ta-radius-sm);
}

#order-cart .cart-action {
	margin-top: 1rem;
}

#order-cart .cart-action .btn-primary {
	background: var(--ta-accent) !important;
	border-color: var(--ta-accent) !important;
	color: #fff !important;
	font-weight: 600;
	padding-top: 0.65rem;
	padding-bottom: 0.65rem;
}

#order-cart .cart-action .btn-primary:hover {
	background: var(--ta-accent-hover) !important;
	border-color: var(--ta-accent-hover) !important;
}

#order-cart .ta-cart-continue {
	background: var(--ta-surface);
	border: 2px solid var(--ta-accent) !important;
	color: var(--ta-accent) !important;
	font-weight: 600;
	text-decoration: none !important;
	padding-top: 0.65rem;
	padding-bottom: 0.65rem;
	box-shadow: var(--ta-shadow-sm);
}

#order-cart .ta-cart-continue:hover,
#order-cart .ta-cart-continue:focus {
	background: var(--ta-accent-soft);
	border-color: var(--ta-accent-hover) !important;
	color: var(--ta-accent-hover) !important;
	text-decoration: none !important;
}

@media (max-width: 991.98px) {
	#order-cart .ta-cart-list > li {
		padding: 0.85rem 0.75rem;
	}

	#order-cart .ta-cart-list li .product-total {
		font-size: 14px;
	}
}

/* ——— Сторінка входу ——— */
#account-login {
	padding-bottom: 2.75rem;
}

#account-login .ta-section-title {
	margin-bottom: 1.5rem;
}

.ta-login-shell {
	max-width: 1040px;
	margin-inline: auto;
}

.ta-login-grid {
	margin-top: 0.15rem;
}

.ta-login-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 1.35rem 1.2rem 1.45rem;
	border: 1px solid var(--ta-border);
	border-radius: calc(var(--ta-radius) + 2px);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ta-login-card--login {
	padding-top: 1.5rem;
	border-color: rgba(0, 163, 160, 0.28);
	box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
}

.ta-login-card--register {
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(0, 163, 160, 0.07) 100%),
		var(--ta-surface);
}

.ta-login-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ta-accent) 0%, #66d4d2 55%, rgba(0, 163, 160, 0.35) 100%);
}

.ta-login-card__head {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 1.1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(225, 231, 239, 0.95);
}

.ta-login-card__head-text {
	min-width: 0;
}

.ta-login-card__eyebrow {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ta-accent);
}

.ta-login-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--ta-bg);
	color: var(--ta-text);
	border: 1px solid rgba(225, 231, 239, 0.95);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.ta-login-card__icon--accent {
	background: linear-gradient(145deg, rgba(0, 163, 160, 0.18) 0%, rgba(0, 163, 160, 0.08) 100%);
	color: var(--ta-accent);
	border-color: rgba(0, 163, 160, 0.22);
}

.ta-login-card__title {
	margin: 0 !important;
	font-size: 1.2rem;
	line-height: 1.25;
	color: var(--ta-text);
	letter-spacing: -0.02em;
}

.ta-login-card__lead {
	margin: 0 0 1.1rem;
	font-size: 14px;
	line-height: 1.6;
	color: var(--ta-muted);
}

.ta-login-benefits {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin-bottom: 1.35rem !important;
}

.ta-login-benefits__item {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.7rem 0.8rem;
	font-size: 14px;
	line-height: 1.4;
	color: var(--ta-text);
	border: 1px solid rgba(225, 231, 239, 0.95);
	border-radius: var(--ta-radius-sm);
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.ta-login-benefits__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--ta-accent-soft);
	color: var(--ta-accent);
}

.ta-login-form-panel {
	padding: 1.1rem;
	border: 1px solid rgba(225, 231, 239, 0.95);
	border-radius: var(--ta-radius-sm);
	background:
		linear-gradient(180deg, rgba(238, 241, 246, 0.55) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.ta-login-form {
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
}

.ta-login-field__label {
	display: block;
	margin-bottom: 0.42rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ta-muted);
}

.ta-login-field__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.42rem;
}

.ta-login-field__row .ta-login-field__label {
	margin-bottom: 0;
}

.ta-login-field__input {
	min-height: 46px;
	padding: 0.6rem 0.9rem;
	font-size: 15px;
	background: #fff;
	border-color: rgba(225, 231, 239, 0.95);
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.ta-login-field__input::placeholder {
	color: #9aa6b8;
}

.ta-login-field__input:focus {
	background: #fff;
	border-color: var(--ta-accent);
	box-shadow: 0 0 0 4px var(--ta-accent-soft);
}

.ta-login-forgot {
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--ta-accent);
	text-decoration: none;
	transition: color 0.15s ease;
}

.ta-login-forgot:hover {
	color: var(--ta-accent-hover);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.ta-login-form__actions {
	display: flex;
	padding-top: 0.15rem;
}

.ta-login-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	padding: 0.6rem 1.15rem;
	border: 1px solid transparent;
	border-radius: var(--ta-radius-sm);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.ta-login-btn--primary {
	background: linear-gradient(180deg, #33bbb8 0%, var(--ta-accent) 100%);
	border-color: var(--ta-accent);
	color: #fff;
	box-shadow: 0 8px 20px rgba(0, 163, 160, 0.28);
}

.ta-login-btn--primary:hover {
	background: linear-gradient(180deg, var(--ta-accent) 0%, var(--ta-accent-hover) 100%);
	border-color: var(--ta-accent-hover);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 163, 160, 0.32);
}

.ta-login-btn--outline {
	margin-top: auto;
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(0, 163, 160, 0.45);
	color: var(--ta-accent);
	box-shadow: var(--ta-shadow-sm);
}

.ta-login-btn--outline:hover {
	background: #fff;
	border-color: var(--ta-accent);
	color: var(--ta-accent-hover);
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(0, 163, 160, 0.16);
	text-decoration: none;
}

.ta-login-btn:active {
	transform: translateY(0);
}

@media (min-width: 768px) {
	.ta-login-card {
		padding: 1.55rem 1.45rem 1.65rem;
	}

	.ta-login-card--login {
		padding-top: 1.7rem;
	}

	.ta-login-form-panel {
		padding: 1.25rem 1.2rem 1.3rem;
	}

	.ta-login-card__title {
		font-size: 1.35rem;
	}

	.ta-login-card__lead,
	.ta-login-benefits__item {
		font-size: 15px;
	}
}

@media (min-width: 992px) {
	.ta-login-card--register {
		position: sticky;
		top: 1.25rem;
	}

	.ta-login-card--login:hover {
		border-color: rgba(0, 163, 160, 0.42);
		box-shadow: 0 14px 42px rgba(15, 23, 42, 0.09);
	}

	.ta-login-card--register:hover {
		border-color: rgba(0, 163, 160, 0.3);
		box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
	}

	.ta-login-btn--primary {
		width: auto;
		min-width: 180px;
	}
}

@media (max-width: 575.98px) {
	.ta-login-card {
		padding: 1.15rem 1rem 1.2rem;
	}

	.ta-login-form-panel {
		padding: 0.95rem 0.85rem;
	}

	.ta-login-field__row {
		flex-wrap: wrap;
	}

	.ta-login-benefits__item {
		padding: 0.62rem 0.7rem;
	}
}

/* ——— Сторінка реєстрації ——— */
#account-register {
	padding-bottom: 2.75rem;
}

#account-register .ta-section-title {
	margin-bottom: 1.5rem;
}

.ta-login-shell--register {
	max-width: 1080px;
}

.ta-register-form fieldset {
	border: 0;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.ta-register-section + .ta-register-section {
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(225, 231, 239, 0.95);
}

.ta-register-section__title {
	display: block;
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ta-text);
}

.ta-register-form .ta-login-field {
	margin-bottom: 0;
}

.ta-register-form .text-danger {
	margin-top: 0.35rem;
	font-size: 13px;
}

.ta-register-choice {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.ta-register-choice--stack {
	flex-direction: column;
	align-items: stretch;
}

.ta-register-choice__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.55rem 0.8rem;
	border: 1px solid rgba(225, 231, 239, 0.95);
	border-radius: var(--ta-radius-sm);
	background: #fff;
	font-size: 14px;
	font-weight: 500;
	color: var(--ta-text);
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ta-register-choice__item:has(input:checked) {
	border-color: rgba(0, 163, 160, 0.55);
	background: var(--ta-accent-soft);
}

.ta-register-choice__item input {
	margin: 0;
	accent-color: var(--ta-accent);
}

.ta-register-footer {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(225, 231, 239, 0.95);
}

.ta-register-agree {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ta-muted);
	cursor: pointer;
}

.ta-register-agree input {
	flex-shrink: 0;
	margin-top: 0.2rem;
	accent-color: var(--ta-accent);
}

.ta-register-agree a {
	color: var(--ta-accent);
	font-weight: 600;
}

.ta-register-agree a:hover {
	color: var(--ta-accent-hover);
}

.ta-register-upload {
	width: auto;
	min-width: 0;
	align-self: flex-start;
}

.ta-register-form .input-group {
	display: flex;
	align-items: stretch;
}

.ta-register-form .input-group .ta-login-field__input {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.ta-register-date-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	border: 1px solid rgba(225, 231, 239, 0.95) !important;
	border-left: 0 !important;
	border-radius: 0 var(--ta-radius-sm) var(--ta-radius-sm) 0 !important;
	background: #fff !important;
	color: var(--ta-muted) !important;
}

.ta-login-field__input--textarea {
	min-height: 110px;
	resize: vertical;
}

select.ta-login-field__input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364708b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	padding-right: 2.2rem;
}

@media (min-width: 992px) {
	#account-register .ta-login-card--register {
		position: sticky;
		top: 1.25rem;
	}

	.ta-register-footer {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1.25rem;
	}

	.ta-register-agree {
		flex: 1;
	}

	.ta-register-footer .ta-login-form__actions {
		flex-shrink: 0;
		padding-top: 0;
	}

	.ta-register-footer .ta-login-btn--primary {
		min-width: 200px;
	}
}

@media (max-width: 575.98px) {
	.ta-register-footer .ta-login-btn--primary {
		width: 100%;
	}
}

/* ——— Особистий кабінет: бокове меню ——— */
.account-menu-place {
	position: sticky;
	top: 1.25rem;
	align-self: flex-start;
}

.ta-account-nav {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 1.15rem 0.85rem 0.9rem;
	border: 1px solid rgba(0, 163, 160, 0.22);
	border-radius: calc(var(--ta-radius) + 2px);
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(0, 163, 160, 0.06) 100%),
		var(--ta-surface);
	box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
}

.ta-account-nav__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ta-accent) 0%, #66d4d2 55%, rgba(0, 163, 160, 0.35) 100%);
}

.ta-account-nav__head {
	padding: 0.15rem 0.55rem 0.95rem;
	margin-bottom: 0.35rem;
	border-bottom: 1px solid rgba(225, 231, 239, 0.95);
}

.ta-account-nav__eyebrow {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ta-accent);
}

.ta-account-nav__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ta-text);
}

.ta-account-nav__list {
	list-style: none;
	margin: 0;
	padding: 0.2rem 0;
}

.ta-account-nav__divider {
	height: 1px;
	margin: 0.35rem 0.55rem;
	background: rgba(225, 231, 239, 0.95);
}

.ta-account-nav__link {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.72rem 0.65rem;
	border-radius: var(--ta-radius-sm);
	color: var(--ta-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.ta-account-nav__link:hover {
	background: var(--ta-accent-soft);
	color: var(--ta-accent-hover);
	text-decoration: none;
}

.ta-account-nav__link.is-active {
	background: var(--ta-accent-soft);
	color: var(--ta-accent-hover);
	box-shadow: inset 3px 0 0 var(--ta-accent);
}

.ta-account-nav__icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--ta-accent);
	box-shadow: inset 0 0 0 1px rgba(0, 163, 160, 0.16);
}

.ta-account-nav__link.is-active .ta-account-nav__icon,
.ta-account-nav__link:hover .ta-account-nav__icon {
	background: #fff;
	color: var(--ta-accent-hover);
}

.ta-account-nav__text {
	min-width: 0;
}

.ta-account-nav__footer {
	margin-top: 0.35rem;
	padding-top: 0.45rem;
	border-top: 1px solid rgba(225, 231, 239, 0.95);
}

.ta-account-nav__link--logout {
	color: var(--ta-muted);
}

.ta-account-nav__link--logout:hover {
	background: rgba(220, 38, 38, 0.06);
	color: #b42318;
}

.ta-account-nav__link--logout:hover .ta-account-nav__icon {
	color: #b42318;
	box-shadow: inset 0 0 0 1px rgba(220, 38, 38, 0.14);
}

.ta-account-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0, 163, 160, 0.28);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
	color: var(--ta-text);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.ta-account-nav__toggle:hover,
.ta-account-nav__toggle:focus {
	border-color: rgba(0, 163, 160, 0.45);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	color: var(--ta-accent-hover);
	text-decoration: none;
}

#accountMenuMobile .ta-account-nav {
	border: 0;
	box-shadow: none;
	background: transparent;
	padding: 0;
}

#accountMenuMobile .ta-account-nav__accent,
#accountMenuMobile .ta-account-nav__head {
	display: none;
}

.ta-account-empty {
	padding: 1.5rem 1.25rem;
	border: 1px dashed rgba(0, 163, 160, 0.35);
	border-radius: var(--ta-radius);
	background: rgba(255, 255, 255, 0.72);
}

.ta-account-empty__title {
	margin: 0 0 0.45rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ta-text);
}

.ta-account-empty__text {
	margin: 0;
	color: var(--ta-muted);
	font-size: 15px;
	line-height: 1.55;
}

[id^="account-"] #content > .ta-section-title {
	display: inline-block;
}

[id^="account-"] {
	padding-bottom: 2.5rem;
}

[id^="account-"] > .container {
	padding-top: 0.35rem;
}

@media (max-width: 991.98px) {
	[id^="account-"] .row > .col-lg-3:first-child {
		display: none;
	}
}

/* ——— Кабінет: список бажань ——— */
#account-wishlist .ta-wishlist-list {
	margin: 0;
	padding: 0;
}

#account-wishlist .ta-wishlist-list__item {
	padding: 1rem 1.1rem;
	margin-bottom: 0.65rem;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
}

#account-wishlist .ta-wishlist-list__thumb {
	display: block;
	overflow: hidden;
	border-radius: var(--ta-radius-sm);
	background: var(--ta-bg);
}

#account-wishlist .ta-wishlist-list__thumb img {
	display: block;
	max-height: 72px;
	width: 100%;
	margin: 0 auto;
	object-fit: contain;
}

#account-wishlist .ta-wishlist-list__name {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ta-text);
}

#account-wishlist .ta-wishlist-list__name:hover {
	color: var(--ta-accent);
}

#account-wishlist .ta-wishlist-list__model {
	margin-top: 0.2rem;
	font-size: 12px;
	color: var(--ta-muted);
}

#account-wishlist .ta-wishlist-list__stock {
	display: inline-block;
	margin-top: 0.45rem;
	padding: 0.18rem 0.55rem;
	border-radius: 999px;
	background: var(--ta-accent-soft);
	color: var(--ta-accent-hover);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
}

#account-wishlist .ta-wishlist-list__price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
}

@media (min-width: 768px) {
	#account-wishlist .ta-wishlist-list__price {
		align-items: center;
	}
}

#account-wishlist .ta-wishlist-list__price-current {
	font-size: 15px;
	font-weight: 700;
	color: var(--ta-text);
	white-space: nowrap;
}

#account-wishlist .ta-wishlist-list__price-old {
	font-size: 13px;
	color: var(--ta-muted);
	text-decoration: line-through;
	white-space: nowrap;
}

#account-wishlist .ta-wishlist-list .label {
	margin-bottom: 0.25rem;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ta-muted);
}

#account-wishlist .ta-wishlist-list__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
	color: var(--ta-muted);
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

#account-wishlist .ta-wishlist-list__remove:hover {
	border-color: rgba(220, 38, 38, 0.25);
	background: rgba(220, 38, 38, 0.06);
	color: #b42318;
	text-decoration: none;
}

@media (max-width: 767.98px) {
	#account-wishlist .ta-wishlist-list__item {
		padding: 0.9rem 0.85rem;
	}

	#account-wishlist .ta-wishlist-list__price-current {
		font-size: 14px;
	}
}

/* ——— Оформлення замовлення ——— */
#product-order {
	padding-bottom: 2.5rem;
}

#product-order .ta-section-title {
	margin-bottom: 1.35rem;
}

#product-order .ta-checkout-layout {
	margin-top: 0.15rem;
}

#product-order .ta-checkout-form-card,
#product-order .ta-checkout-summary {
	border: 1px solid var(--ta-border);
	border-radius: calc(var(--ta-radius) + 2px);
	background: var(--ta-surface);
	box-shadow: var(--ta-shadow-sm);
}

#product-order .ta-checkout-form-card {
	padding: 1.25rem 1.15rem 1.35rem;
}

#product-order .ta-checkout-summary {
	padding: 1.15rem 1.1rem 1.25rem;
}

#product-order .ta-checkout-summary__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--ta-border);
}

#product-order .ta-checkout-summary__notice {
	margin: 0 0 0.85rem;
	padding: 0.65rem 0.75rem;
	border-radius: var(--ta-radius);
	background: color-mix(in srgb, var(--ta-accent) 10%, transparent);
	color: var(--ta-text, #222);
	font-size: 0.92rem;
	line-height: 1.4;
}

#product-order .ta-checkout-summary__group-title {
	margin: 0.35rem 0 0.55rem;
	font-size: 0.95rem;
	font-weight: 600;
}

#product-order .ta-checkout-summary__list--group {
	margin-bottom: 0.85rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px dashed var(--ta-border);
}

#product-order .ta-checkout-summary__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ta-text);
	letter-spacing: -0.02em;
}

#product-order .ta-checkout-summary__edit {
	font-size: 13px;
	font-weight: 600;
	color: var(--ta-accent);
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
}

#product-order .ta-checkout-summary__edit:hover {
	color: var(--ta-accent-hover);
}

#product-order .ta-checkout-summary__list {
	margin-bottom: 0.85rem;
}

#product-order .ta-cart-list > li {
	padding: 0.9rem 0.95rem;
	background: var(--ta-bg);
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	margin-bottom: 0.55rem;
}

#product-order .ta-cart-list li img {
	display: block;
	max-height: 64px;
	width: 100%;
	margin: 0 auto;
	border-radius: var(--ta-radius-sm);
	object-fit: contain;
	background: var(--ta-surface);
}

#product-order .ta-cart-list li .product-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ta-text);
	line-height: 1.35;
	text-decoration: underline;
	text-underline-offset: 2px;
}

#product-order .ta-cart-list li .product-name:hover {
	color: var(--ta-accent);
}

#product-order .ta-cart-list li .product-option {
	margin-top: 0.2rem;
	font-size: 12px;
	color: var(--ta-muted);
}

#product-order .ta-cart-list li .label {
	margin-bottom: 0.2rem;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ta-muted);
}

#product-order .ta-cart-list li .product-total {
	font-weight: 700;
	font-size: 14px;
	color: var(--ta-text);
	white-space: nowrap;
}

#product-order .ta-checkout-summary__total {
	width: 100%;
	max-width: none;
	align-items: flex-end;
	margin-top: 0;
}

#product-order .ta-checkout-form-section + .ta-checkout-form-section {
	margin-top: 1.15rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(225, 231, 239, 0.95);
}

#product-order .ta-checkout-form-section__title {
	margin: 0 0 0.85rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--ta-text);
	letter-spacing: -0.01em;
}

#product-order .ta-checkout-field__label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 12px;
	font-weight: 600;
	color: var(--ta-muted);
}

#product-order .ta-checkout-field__input,
#product-order .ta-checkout-field__textarea {
	border: 1px solid var(--ta-border) !important;
	border-radius: var(--ta-radius-sm) !important;
	background: var(--ta-surface);
	color: var(--ta-text);
	font-size: 14px;
	box-shadow: none !important;
}

#product-order .ta-checkout-field__input:focus,
#product-order .ta-checkout-field__textarea:focus {
	border-color: rgba(0, 163, 160, 0.65) !important;
	box-shadow: 0 0 0 3px rgba(0, 163, 160, 0.14) !important;
}

#product-order .ta-checkout-field__input.is-invalid,
#product-order .ta-checkout-field__textarea.is-invalid {
	border-color: #ea3253 !important;
}

#product-order .invalid-feedback {
	font-size: 12px;
}

#product-order .ta-checkout-form-actions {
	margin-top: 1.2rem;
}

#product-order .ta-checkout-submit {
	background: var(--ta-accent) !important;
	border-color: var(--ta-accent) !important;
	color: #fff !important;
	font-weight: 700;
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}

#product-order .ta-checkout-submit:hover:not(:disabled) {
	background: var(--ta-accent-hover) !important;
	border-color: var(--ta-accent-hover) !important;
}

#product-order .ta-checkout-submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

#product-order .select2-container--default .select2-selection--single {
	height: 42px;
	border: 1px solid var(--ta-border);
	border-radius: var(--ta-radius-sm);
	background: var(--ta-surface);
}

#product-order .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 40px;
	padding-left: 0.75rem;
	color: var(--ta-text);
	font-size: 14px;
}

#product-order .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 40px;
}

#product-order .select2-container--default.select2-container--open .select2-selection--single,
#product-order .select2-container--default.select2-container--focus .select2-selection--single {
	border-color: rgba(0, 163, 160, 0.65);
}

@media (max-width: 991.98px) {
	#product-order .ta-checkout-summary {
		margin-bottom: 0.15rem;
	}

	#product-order .ta-cart-list > li {
		padding: 0.8rem 0.75rem;
	}
}

/* Live chat widget */
.ta-live-chat {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 1050;
	font-family: inherit;
}

.ta-live-chat-toggle {
	width: 3.5rem;
	height: 3.5rem;
	border: 0;
	border-radius: 50%;
	background: #e85d04;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.ta-live-chat-toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	flex-shrink: 0;
}

.ta-live-chat-toggle-icon::before {
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ta-live-chat-badge {
	position: absolute;
	top: -0.25rem;
	right: -0.25rem;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.35rem;
	border-radius: 999px;
	background: #c1121f;
	color: #fff;
	font-size: 0.7rem;
	line-height: 1.25rem;
	text-align: center;
}

.ta-live-chat-panel {
	position: absolute;
	right: 0;
	bottom: calc(3.5rem + 0.75rem);
	width: 22rem;
	max-width: calc(100vw - 2rem);
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ta-live-chat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	background: #e85d04;
	color: #fff;
}

.ta-live-chat-close {
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.ta-live-chat-start,
.ta-live-chat-body {
	padding: 1rem;
}

.ta-live-chat-welcome {
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: #555;
}

.ta-live-chat-messages {
	height: 16rem;
	overflow-y: auto;
	margin-bottom: 0.75rem;
	padding-right: 0.25rem;
}

.ta-live-chat-msg {
	margin-bottom: 0.65rem;
	max-width: 85%;
}

.ta-live-chat-msg--client {
	margin-left: auto;
	text-align: right;
}

.ta-live-chat-msg--manager,
.ta-live-chat-msg--system {
	margin-right: auto;
}

.ta-live-chat-msg-text {
	display: inline-block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.75rem;
	background: #f1f3f5;
	font-size: 0.9rem;
	word-break: break-word;
	text-align: left;
}

.ta-live-chat-msg--client .ta-live-chat-msg-text {
	background: #fde8d8;
}

.ta-live-chat-msg--system .ta-live-chat-msg-text {
	background: #e9ecef;
	font-style: italic;
}

.ta-live-chat-msg-time {
	font-size: 0.7rem;
	color: #888;
	margin-top: 0.15rem;
}

.ta-live-chat-compose textarea {
	resize: none;
	margin-bottom: 0.5rem;
}

.ta-live-chat-compose textarea:disabled {
	background: #f8f9fa;
	opacity: 0.85;
}

.ta-live-chat-send-btn {
	width: 100%;
	position: relative;
	min-height: 2.5rem;
}

.ta-live-chat-send-btn.is-sending {
	pointer-events: none;
}

.ta-live-chat-send-btn.is-sending .ta-live-chat-send-text {
	visibility: hidden;
}

.ta-live-chat-send-spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.1rem;
	height: 1.1rem;
	margin: -0.55rem 0 0 -0.55rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ta-live-chat-spin 0.7s linear infinite;
}

.ta-live-chat-send-btn.is-sending .ta-live-chat-send-spinner {
	display: block;
}

#ta-live-chat-start-btn.is-sending {
	position: relative;
	color: transparent;
	pointer-events: none;
}

#ta-live-chat-start-btn.is-sending::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.1rem;
	height: 1.1rem;
	margin: -0.55rem 0 0 -0.55rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ta-live-chat-spin 0.7s linear infinite;
}

.ta-live-chat-msg--pending .ta-live-chat-msg-text {
	opacity: 0.85;
}

.ta-live-chat-pending-dot {
	display: inline-block;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: #e85d04;
	animation: ta-live-chat-pulse 1s ease-in-out infinite;
	vertical-align: middle;
}

@keyframes ta-live-chat-spin {
	to { transform: rotate(360deg); }
}

@keyframes ta-live-chat-pulse {
	0%, 100% { opacity: 0.35; transform: scale(0.85); }
	50% { opacity: 1; transform: scale(1); }
}

.ta-live-chat-closed {
	font-size: 0.9rem;
	color: #666;
	text-align: center;
	padding: 0.5rem 0;
}

@media (max-width: 991.98px) {
	.ta-live-chat {
		right: 0.75rem;
		bottom: calc(58px + env(safe-area-inset-bottom, 0px) + 0.75rem);
	}

	body.has-live-chat .progress-wrap {
		bottom: calc(58px + env(safe-area-inset-bottom, 0px) + 0.75rem + 3.5rem + 0.75rem);
		right: 0.75rem;
	}
}

@media (max-width: 575.98px) {
	.ta-live-chat-panel {
		width: calc(100vw - 1.5rem);
	}
}

