@font-face {
	font-family: 'Ruble Glyph';
	src: url('fonts/RubleGlyph.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	unicode-range: U+20BD;
}

.tpd-root {
	--tpd-font: 'Ruble Glyph', 'Styrene A Web', sans-serif;
	--tpd-text: #3c3c3c;
	--tpd-muted: #8a7f78;
	--tpd-border: #e7e1db;
	--tpd-bg-soft: #faf9f7;
	--tpd-accent: #dede2b;
	font-family: var(--tpd-font);
	font-weight: 500;
	color: var(--tpd-text);
	margin-top: 16px;
}

.tpd-root .mobile-block.fixing {
	z-index: 10000001;
}

body.tpd-city-open .mobile-block.fixing,
body.tpd-order-open .mobile-block.fixing,
body.tpd-error-drawer-open .mobile-block.fixing,
body.tpd-bnpl-modal-open .mobile-block.fixing,
body.tpd-tryon-open .mobile-block.fixing,
body.product-content-popup-open .mobile-block.fixing:not(.is-popup-mode) {
	bottom: -220px !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

body.tpd-order-open #retailcrm-consultant-app,
body.tpd-order-open .retailcrm-consultant-app,
body.tpd-error-drawer-open #retailcrm-consultant-app,
body.tpd-error-drawer-open .retailcrm-consultant-app,
body.tpd-city-open #retailcrm-consultant-app,
body.tpd-city-open .retailcrm-consultant-app,
body.tpd-bnpl-modal-open #retailcrm-consultant-app,
body.tpd-bnpl-modal-open .retailcrm-consultant-app,
body.tpd-tryon-open #retailcrm-consultant-app,
body.tpd-tryon-open .retailcrm-consultant-app,
body.product-content-popup-open #retailcrm-consultant-app,
body.product-content-popup-open .retailcrm-consultant-app {
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.tpd-header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	width: 100%;
}

.tpd-header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
}

.tpd-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	margin: 0;
	font-size: 12.6px;
	letter-spacing: -0.2px;
	color: var(--tpd-muted);
	min-width: 0;
}

.tpd-breadcrumbs__item {
	color: var(--tpd-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.tpd-breadcrumbs__item:hover {
	color: var(--tpd-text);
}

.tpd-breadcrumbs__sep {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	color: #cacaca;
}

.tpd-breadcrumbs__sep svg {
	display: block;
	width: 5px;
	height: 9px;
}

.tpd-breadcrumbs__sep:last-of-type {
	display: none;
}

.tpd-compare {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.tpd-compare__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #cacaca;
	border-radius: 2px;
	color: var(--tpd-text);
	transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.tpd-compare__icon svg {
	width: 14px;
	height: 14px;
	display: block;
	flex-shrink: 0;
}

.tpd-compare__label {
	font-size: 11.7px;
	letter-spacing: -0.26px;
	line-height: 1.2;
	color: var(--tpd-muted);
	white-space: nowrap;
	transition: color 0.18s;
}

.tpd-compare__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: auto;
	height: auto;
	padding: 2px 5px;
	border-radius: 0;
	background: #dede2b;
	color: var(--tpd-text);
	font-size: 9.9px;
	font-weight: 500;
	letter-spacing: -0.22px;
	line-height: 1.2;
	box-sizing: border-box;
}

.tpd-compare:hover .tpd-compare__icon {
	border-color: var(--tpd-text);
}

.tpd-compare:hover .tpd-compare__label {
	color: var(--tpd-text);
}

.tpd-compare.is-active .tpd-compare__icon {
	background: #3c3c3c;
	border-color: #3c3c3c;
	color: #fff;
}

.tpd-compare.is-active .tpd-compare__label {
	color: var(--tpd-text);
}

.tpd-actions__fav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 63px;
	min-height: 54px;
	flex-shrink: 0;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: #f5f1ed;
	cursor: pointer;
	transition: background 0.2s;
}

.tpd-actions__fav svg {
	width: 18px;
	height: 16px;
	display: block;
	flex-shrink: 0;
	overflow: visible;
	aspect-ratio: 18 / 16;
}

.tpd-actions__fav .product-card__favorite-body {
	fill: transparent;
	transition: fill 0.2s;
}

.tpd-actions__fav .product-card__favorite-border {
	fill: none;
	stroke: #3c3c3c;
}

.tpd-actions__fav:hover {
	background: #ece8e4;
}

.tpd-actions__fav.is-active .product-card__favorite-body {
	fill: #dede2b;
}

.tpd-actions__ask,
.page .j-sidePanel.tpd-actions__ask {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	margin: 0;
	border: 1px solid #e7e1db;
	border-radius: 4px;
	background: transparent;
	color: #3c3c3c;
	font: inherit;
	font-size: 15px;
	letter-spacing: -0.3px;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.tpd-actions__ask:hover,
.page .j-sidePanel.tpd-actions__ask:hover {
	border-color: #3c3c3c;
	background: transparent;
}

.tpd-actions__ask svg {
	flex-shrink: 0;
	display: block;
}

.tpd-actions__ask span {
	font-weight: 400;
	font-size: 15px;
	letter-spacing: -0.3px;
	line-height: 1.2;
}

.tpd-notify {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}

.tpd-notify__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 63px;
	padding: 12px 16px;
	border: 0;
	border-radius: 4px;
	background: #e7e1db;
	color: #8a7f78;
	font: inherit;
	font-size: 14.4px;
	letter-spacing: -0.64px;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.tpd-notify__btn:hover {
	background: #ddd6cf;
	color: #3c3c3c;
}

.tpd-notify__form {
	display: flex;
	gap: 8px;
	width: 100%;
}

.tpd-notify__form[hidden] {
	display: none !important;
}

.tpd-notify__input {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 48px;
	padding: 10px 12px;
	border: 1px solid #e7e1db;
	border-radius: 4px;
	background: #fff;
	font: inherit;
	font-size: 16px;
	color: var(--tpd-text);
}

.tpd-notify__submit {
	flex: 0 0 auto;
	min-height: 48px;
	padding: 10px 16px;
	border: 0;
	border-radius: 4px;
	background: #3c3c3c;
	color: #fff;
	font: inherit;
	font-size: 12.6px;
	letter-spacing: -0.28px;
	cursor: pointer;
}

.tpd-root--oos .tpd-pay,
.tpd-root--oos .tpd-delivery-wrap,
.tpd-root--oos .credit-by,
.tpd-root--oos .tpd-rev__promo {
	display: none !important;
}

.tpd-title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	margin: 0;
	font-family: var(--tpd-font);
	font-weight: 500;
	color: var(--tpd-text);
	text-transform: uppercase;
}

.tpd-header__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	width: 100%;
	min-width: 0;
}

.tpd-title__type {
	font-size: 19.8px;
	line-height: 1;
	letter-spacing: -0.88px;
}

.tpd-title__type-short {
	display: none;
}

.tpd-price__swiss.tpd-price__swiss--mob {
	display: none;
}

.tpd-title__main {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	column-gap: 0.3em;
	row-gap: 2px;
	font-size: 37.8px;
	line-height: 1;
	letter-spacing: -2.1px;
	font-weight: 600;
}

.tpd-title__part {
	white-space: nowrap;
}

.tpd-article {
	display: block;
	margin: 4px 0 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.26px;
	color: var(--tpd-muted);
	text-transform: none;
}

.tpd-badges {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.tpd-badge {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	padding: 2px 8px;
	background: var(--tpd-accent);
	color: var(--tpd-text);
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	text-transform: uppercase;
	white-space: nowrap;
}

.tpd-badge::after {
	content: '';
	position: absolute;
	inset: 0;
	width: 40%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
	animation: tpdBadgeShimmer 2.4s ease-in-out infinite;
	animation-delay: var(--tpd-shimmer-delay, 0s);
	pointer-events: none;
}

@keyframes tpdBadgeShimmer {
	0% {
		transform: translateX(-120%) skewX(-20deg);
	}

	100% {
		transform: translateX(320%) skewX(-20deg);
	}
}

.tpd-stock.stickers-title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.tpd-divider {
	width: 100%;
	height: 1px;
	background: #f5f1ed;
	flex-shrink: 0;
}

.tpd-stock .stc-yellow,
.tpd-stock .stc-black:not([style*="display:none"]) {
	display: none !important;
}

.tpd-stock__status,
.tpd-stock__pickup {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 8px 8px;
	background: #fff;
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	color: var(--tpd-text);
	white-space: nowrap;
}

.tpd-stock__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--tpd-accent);
}

.tpd-stock__status.is-out .tpd-stock__dot {
	background: var(--tpd-muted);
}

.tpd-stock__pickup {
	gap: 8px;
	cursor: pointer;
}

.tpd-stock__slash {
	color: var(--tpd-muted);
}

.tpd-stock__pickup:hover .tpd-stock__place,
.tpd-stock__pickup:hover .tpd-stock__place-status {
	text-decoration: underline;
}

.tpd-more-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 24px 0 40px;
}

.tpd-more-links__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 18px;
	border: 1px solid var(--tpd-border);
	border-radius: 4px;
	color: var(--tpd-text);
	font-size: 12.6px;
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.tpd-more-links__item:hover {
	border-color: var(--tpd-text);
}

@media (min-width: 851px) {
	.tpd-viewport {
		--tpd-header-h: 105px;
		--tpd-sticky-top: 113px;
		--tpd-panel-gap: 24px;
		position: relative;
		display: grid;
		grid-template-columns: minmax(0, 2.2fr) minmax(380px, 1fr);
		column-gap: 48px;
		align-items: stretch;
		height: auto;
	}

	.tpd-viewport>.tpd-main {
		grid-column: 1;
		grid-row: 1;
		min-width: 0;
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 40px;
		overflow: visible;
	}

	.tpd-viewport>.tpd-aside {
		grid-column: 2;
		grid-row: 1;
		min-width: 0;
		position: relative;
		height: auto;
		align-self: stretch;
		overflow: visible;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail.product-page-main__section,
	.tpd-viewport>.tpd-aside>.get-product-detail[data-tpd-aside] {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		min-width: 0;
		width: 100%;
		position: sticky;
		top: var(--tpd-sticky-top, 120px);
		max-height: none;
		overflow: visible;
		box-sizing: border-box;
		z-index: 2;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail>.tpd-aside-fit,
	.tpd-viewport>.tpd-aside>.get-product-detail>[data-tpd-aside-fit] {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		width: 100%;
		min-width: 0;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail.product-page-main__section:not(:has([data-tpd-rating]))>.tpd-aside-fit,
	.tpd-viewport>.tpd-aside>.get-product-detail:not(:has([data-tpd-rating]))>[data-tpd-aside-fit] {
		gap: 12px;
	}

	.tpd-viewport>.tpd-aside>.tpd-viewport__divider {
		position: absolute;
		left: -24px;
		top: 40%;
		transform: translate(-50%, -50%);
		z-index: 5;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		pointer-events: none;
		margin: 0;
		width: max-content !important;
		max-width: none !important;
		height: auto;
		flex: none !important;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.15s ease;
	}

	.tpd-viewport>.tpd-aside>.tpd-viewport__divider.is-pinned {
		position: fixed !important;
		transform: translate(-50%, -50%);
		margin: 0;
		z-index: 30;
		opacity: 1;
		visibility: visible;
	}

	.tpd-viewport>.tpd-aside>.tpd-viewport__divider.is-off {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail>div,
	.tpd-viewport>.tpd-aside>.get-product-detail>.tpd-aside-fit>div,
	.tpd-viewport>.tpd-aside>.get-product-detail>[data-tpd-aside-fit]>div {
		flex: none !important;
		width: 100%;
		max-width: 100%;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .r-block,
	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-rblock-legacy,
	.tpd-viewport>.tpd-aside>.get-product-detail .ft-logo {
		display: none !important;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .product-page__slider.hide-pc,
	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-mob-gallery,
	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-tryon {
		display: none !important;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .product-page-main {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .product-page-main__row {
		border-bottom: none;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .product-page-main__row.edit-mob-row,
	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-price-block {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		width: 100%;
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-actions-wrap.product-page-main__row,
	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-actions-wrap {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}


	.tpd-price {
		container-type: inline-size;
		container-name: tpd-price;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 12px;
		width: 100%;
	}

	.tpd-price__left {
		display: flex;
		flex-direction: column;
		gap: 8px;
		flex: 1 1 auto;
		min-width: 0;
	}

	.tpd-price__current {
		font-size: 46.8px;
		line-height: 1;
		letter-spacing: -2.6px;
		font-weight: 600;
		text-transform: uppercase;
		color: var(--tpd-text);
		white-space: nowrap;
		overflow: hidden;
	}

	.tpd-price__current .tpd-price__currency {
		font-size: 0.62em;
		font-weight: 600;
		letter-spacing: 0;
		vertical-align: baseline;
	}

	.tpd-price__meta {
		display: flex;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.tpd-price__old {
		position: relative;
		display: inline-block;
		font-size: 14px;
		line-height: 1.4;
		letter-spacing: -0.28px;
		color: #cacaca;
		white-space: nowrap;
		overflow: hidden;
	}

	.tpd-price__old .tpd-price__currency {
		font-size: 0.85em;
	}

	.tpd-price__old-text {
		display: inline-block;
	}

	.tpd-price__old-strike {
		position: absolute;
		left: 0;
		right: 0;
		top: 50%;
		height: 6px;
		transform: translateY(-50%);
		pointer-events: none;
		overflow: hidden;
	}

	.tpd-price__old-strike svg {
		display: block;
		width: 100%;
		height: 100%;
	}

	.tpd-price__percent {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 4px 4px 5px;
		border-radius: 4px;
		background: var(--tpd-accent);
		font-size: 12.6px;
		line-height: 1.2;
		letter-spacing: -0.24px;
		color: var(--tpd-text);
		white-space: nowrap;
	}

	.tpd-price__badges {
		display: flex !important;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 24px;
		flex: 0 0 auto;
	}

	.tpd-price__badges:not(:has(.tpd-price__brand)) {
		display: none !important;
	}

	.tpd-price__brand,
	.tpd-price__swiss {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 0;
		text-decoration: none;
		color: var(--tpd-text);
		text-align: center;
	}

	.tpd-price__brand-logo {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 52px;
		flex-shrink: 0;
	}

	.tpd-price__brand-logo img {
		height: 22px;
		width: auto;
		object-fit: contain;
		filter: grayscale(1);
		transition: filter 0.3s;
	}

	.tpd-price__brand:hover .tpd-price__brand-logo img {
		filter: grayscale(0);
	}

	.tpd-price__brand-title {
		font-size: 12.6px;
		line-height: 1.2;
		letter-spacing: -0.2px;
		color: var(--tpd-text);
		white-space: nowrap;
	}

	.tpd-price__brand-title--full {
		display: none;
	}

	.tpd-price__brand-sub {
		font-size: 10.8px;
		line-height: 1.2;
		color: var(--tpd-muted);
		letter-spacing: -0.24px;
		white-space: nowrap;
	}

	.tpd-price__swiss-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 52px;
		flex-shrink: 0;
		filter: grayscale(1);
		transition: filter 0.3s;
	}

	.tpd-price__swiss-icon svg {
		width: 32px;
		height: 32px;
	}

	.tpd-price__swiss:hover .tpd-price__swiss-icon {
		filter: grayscale(0);
	}

	.tpd-price__swiss-label {
		font-size: 12.6px;
		line-height: 1.2;
		letter-spacing: -0.2px;
		color: var(--tpd-text);
		white-space: nowrap;
	}

	.tpd-price:has(.tpd-price__meta) .tpd-price__brand-logo,
	.tpd-price:has(.tpd-price__meta) .tpd-price__swiss-icon {
		height: 64px;
	}


	.tpd-viewport>.tpd-aside>.get-product-detail .product-page-main__action.is-compare {
		display: none !important;
	}

	.tpd-viewport .product-page__slider.hide-mob,
	.tpd-viewport .tpd-gallery {
		min-width: 0;
		width: 100% !important;
		flex: 0 0 auto;
		height: auto !important;
		margin: 0 !important;
		overflow: visible !important;
	}

	.tpd-viewport .tpd-tabs {
		min-width: 0;
		width: 100%;
	}

	.tpd-viewport .tpd-more-links {
		margin: 0 0 40px;
	}

	.tpd-viewport__dot {
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #d0c8c0;
		display: block;
		transition: background 0.2s ease;
	}

	.tpd-viewport__dot.is-active {
		background: #3c3c3c;
	}

	.tpd-viewport__burger {
		width: 14px;
		height: 12px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.tpd-viewport__burger span {
		width: 14px;
		height: 2px;
		border-radius: 1px;
		background: #d0c8c0;
		display: block;
		transition: background 0.2s ease;
	}

	.tpd-viewport__burger.is-active span {
		background: #3c3c3c;
	}


	.tpd-gallery__viewport {
		width: 100%;
		container-type: inline-size;
	}

	.tpd-gallery__grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px;
		gap: clamp(20px, 6cqi, 64px);
		align-items: start;
		width: 100%;
		transform: none !important;
	}

	.tpd-gallery__grid>.tpd-gallery__item {
		display: block !important;
		position: relative;
		width: 100% !important;
		max-width: none !important;
		aspect-ratio: 1;
		height: auto !important;
		max-height: none !important;
		min-height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		overflow: hidden;
		background: #fff;
		flex: none !important;
	}

	.tpd-gallery__grid>.tpd-gallery__item.tpd-gallery__item--tryon {
		overflow: hidden;
		z-index: 2;
	}

	.tpd-gallery__item::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background: linear-gradient(90deg, #ede8e3 0%, #f7f4f1 45%, #ede8e3 90%);
		background-size: 240px 100%;
		animation: tpd-delivery-skeleton-shimmer 1.15s ease-in-out infinite;
		transition: opacity 0.2s ease;
	}

	.tpd-gallery__item.is-media-ready::before {
		opacity: 0;
		visibility: hidden;
	}

	.tpd-gallery__item .tpd-gallery__link,
	.tpd-gallery__item .fancybox-trigger,
	.tpd-gallery__item .tpd-gallery__video,
	.tpd-gallery__item .product-page__video-slide,
	.tpd-gallery__item .video-thumbnail,
	.tpd-gallery__item .video-preview {
		display: block !important;
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		aspect-ratio: auto !important;
		overflow: hidden;
		background: transparent;
	}


	.tpd-gallery__item .fancybox-trigger img,
	.tpd-gallery__item .fancybox-trigger .fit-cover,
	.tpd-gallery__item .tpd-gallery__link>img,
	.tpd-gallery__item img.fit-cover,
	.tpd-gallery__item .video-preview-img {
		display: block !important;
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		aspect-ratio: auto !important;
		object-fit: contain !important;
		object-position: center !important;
		background: transparent;
		opacity: 0;
		transition: opacity 0.22s ease;
	}

	.tpd-gallery__item.is-media-ready .fancybox-trigger img,
	.tpd-gallery__item.is-media-ready .fancybox-trigger .fit-cover,
	.tpd-gallery__item.is-media-ready .tpd-gallery__link>img,
	.tpd-gallery__item.is-media-ready img.fit-cover,
	.tpd-gallery__item.is-media-ready .video-preview-img {
		opacity: 1;
	}

	.tpd-gallery__item .video-source {
		display: none !important;
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center !important;
		background: #fff;
	}

	.tpd-gallery__item .product-page__video-slide.is-video-ready .video-source {
		display: block !important;
	}

	.tpd-gallery__item .product-page__video-slide.is-video-ready .video-preview-img {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.tpd-gallery__item--fill .fancybox-trigger img,
	.tpd-gallery__item--fill .fancybox-trigger .fit-cover,
	.tpd-gallery__item--fill .tpd-gallery__link>img,
	.tpd-gallery__item--fill img.fit-cover,
	.tpd-gallery__item--fill .video-preview-img {
		object-fit: cover !important;
	}

	.tpd-gallery:not(.is-expanded) .tpd-gallery__item--extra {
		display: none !important;
	}

	.tpd-gallery__expand {
		display: flex;
		align-items: center;
		gap: 20px;
		width: 100%;
		margin-top: 64px;
	}

	.tpd-gallery__expand-line {
		flex: 1;
		height: 1px;
		background: var(--tpd-border);
	}

	.tpd-gallery__expand-btn {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		flex-shrink: 0;
		padding: 10px 20px;
		border: 1px solid var(--tpd-border);
		border-radius: 999px;
		background: #fff;
		color: var(--tpd-text);
		font-family: var(--tpd-font);
		font-size: 11.7px;
		letter-spacing: -0.26px;
		cursor: pointer;
		transition: border-color 0.2s, background 0.2s;
	}

	.tpd-gallery__expand-btn:hover {
		border-color: var(--tpd-text);
		background: var(--tpd-bg-soft);
	}

	.tpd-gallery__expand-btn svg {
		transition: transform 0.2s;
	}

	.tpd-gallery__expand-btn.is-expanded svg {
		transform: rotate(180deg);
	}

	.tpd-gallery__more {
		display: none !important;
	}


	.tpd-pay {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		margin: 0;
		padding: 12px 0 0;
		border: 0;
		border-top: 1px solid #f5f1ed;
		min-height: 0;
		height: auto;
	}

	.tpd-pay .tpd-pay__method,
	.tpd-pay .tpd-pay__link {
		display: inline-flex !important;
		align-items: center;
		height: auto !important;
		min-height: 0 !important;
		max-height: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		line-height: 1.2 !important;
	}

	.tpd-pay__methods {
		display: flex;
		align-items: center;
		gap: 12px;
		min-width: 0;
	}

	.tpd-pay__method {
		display: inline-flex;
		align-items: center;
		gap: 4px;
		font-size: 12.6px;
		letter-spacing: -0.24px;
		line-height: 1.2;
		color: var(--tpd-text);
		cursor: pointer;
		white-space: nowrap;
		transition: opacity 0.15s;
	}

	.tpd-pay__method:hover {
		opacity: 0.7;
	}

	.tpd-pay__method--split {
		cursor: pointer;
	}

	.tpd-pay__method--split:hover {
		opacity: 0.7;
	}

	.tpd-pay__sep {
		align-self: stretch;
		width: 1px;
		min-height: 14px;
		background: #f5f1ed;
	}

	.tpd-pay__icon {
		display: inline-flex;
		flex-shrink: 0;
		width: 16px;
		height: 16px;
	}

	.tpd-pay__icon img,
	.tpd-pay__icon svg {
		width: 16px;
		height: 16px;
		object-fit: contain;
		display: block;
	}

	.tpd-pay__link {
		display: inline-flex !important;
		align-items: center;
		gap: 8px;
		flex-shrink: 0;
		font-size: 12.6px;
		letter-spacing: -0.24px;
		line-height: 1.2;
		color: var(--tpd-text);
		text-decoration: underline;
		text-underline-offset: 2px;
		cursor: pointer;
		white-space: nowrap;
		transition: opacity 0.15s;
	}

	.tpd-pay__link:hover {
		opacity: 0.7;
	}

	.tpd-pay__link svg {
		flex-shrink: 0;
	}

	.tpd-root .credit-by.tpd-credit,
	.tpd-root .tpd-credit {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
		margin: 0;
		padding: 8px 0 0;
		border: 0;
		border-top: 1px solid #f5f1ed;
		border-left: 0;
		white-space: nowrap;
		cursor: default;
	}

	.tpd-root .tpd-credit span {
		font-size: 12.6px;
		font-weight: 400;
		letter-spacing: -0.24px;
		line-height: 1.2;
		color: var(--tpd-text);
	}

	.tpd-root .tpd-credit svg {
		display: block;
		flex-shrink: 0;
		height: 28px;
		width: auto;
	}

	.tpd-root .tpd-credit svg rect {
		fill: transparent;
	}

	.tpd-pay .tpd-pay__mobile,
	.tpd-pay .btn-dolyami.tpd-pay__mobile,
	.tpd-pay .j-sidePanel.tpd-pay__mobile {
		display: none !important;
	}


	.tpd-actions {
		display: flex;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.tpd-actions__cart.button.is-primary.is-cart {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 100%;
		font-weight: 500;
		min-height: 54px;
		padding: 12px 16px;
		margin: 0;
		border: 0;
		border-radius: 4px;
		background: #3c3c3c !important;
		color: #fff !important;
		font-size: 14.4px;
		letter-spacing: -0.64px;
		line-height: 1.2;
		text-align: center;
		cursor: pointer;
		transition: background 0.2s;
	}

	.tpd-actions__cart.button.is-primary.is-cart:hover {
		background: #2a2a2a !important;
	}

	.tpd-actions__row {
		display: flex;
		align-items: stretch;
		gap: 8px;
		width: 100%;
	}

	.tpd-actions__secondary.button.is-ghost {
		flex: 1 0 0;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		min-height: 54px;
		padding: 8px 16px;
		margin: 0;
		border: 0 !important;
		border-radius: 4px;
		background: #f5f1ed !important;
		color: var(--tpd-text) !important;
		font-size: 14.4px;
		letter-spacing: -0.32px;
		line-height: 1.2;
		text-align: center;
		cursor: pointer;
		transition: background 0.2s;
		box-shadow: none !important;
	}

	.tpd-actions__secondary.button.is-ghost:hover {
		background: #ece8e4 !important;
	}

	.tpd-actions__secondary.button.is-ghost.is-ordered,
	.tpd-actions__secondary.button.is-ghost.is-ordered:hover,
	button.button.is-ghost.is-ordered,
	button.button.is-ghost.is-ordered:hover {
		background: #e7e1db !important;
		color: #8a7f78 !important;
		cursor: default;
	}

	.tpd-actions__secondary-title {
		display: block;
		font-size: 14.4px;
		letter-spacing: -0.32px;
		line-height: 1.2;
	}

	.tpd-actions__secondary-sub {
		display: block;
		font-size: 11.7px;
		letter-spacing: -0.26px;
		line-height: 1.2;
		color: #8a7f78;
	}

	.tpd-actions__secondary-sub[hidden] {
		display: none !important;
	}

	.tpd-actions-wrap.u-row-flex-bottom {
		display: block;
		flex-direction: column;
	}
}

@media (min-width: 851px) {
	.tpd-viewport>.tpd-aside>.get-product-detail>.tpd-aside-fit,
	.tpd-viewport>.tpd-aside>.get-product-detail>[data-tpd-aside-fit] {
		zoom: 0.8;
	}
}

@media (min-width: 851px) and (max-width: 1679px) {
	.tpd-viewport>.tpd-main {
		zoom: 0.85;
	}
}

@media (max-width: 850px) {
	.tpd-viewport {
		display: block;
	}

	.tpd-gallery {
		display: none !important;
	}

	.tpd-viewport__divider {
		display: none !important;
	}

	.tpd-aside,
	.tpd-viewport>.tpd-aside>.get-product-detail.product-page-main__section,
	.tpd-viewport>.tpd-aside>.get-product-detail[data-tpd-aside] {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start !important;
		gap: 0 !important;
		width: 100%;
		max-height: none !important;
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
		position: static !important;
		top: auto !important;
		zoom: normal !important;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail>.tpd-aside-fit,
	.tpd-viewport>.tpd-aside>.get-product-detail>[data-tpd-aside-fit] {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		gap: 0 !important;
		width: 100%;
		zoom: normal !important;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail>div,
	.tpd-viewport>.tpd-aside>.get-product-detail>.tpd-aside-fit>div,
	.tpd-viewport>.tpd-aside>.get-product-detail>[data-tpd-aside-fit]>div {
		flex: none !important;
		min-height: 0 !important;
		height: auto !important;
	}

	.tpd-viewport>.tpd-aside>.get-product-detail .r-block,
	.tpd-viewport>.tpd-aside>.get-product-detail .tpd-rblock-legacy,
	.tpd-viewport>.tpd-aside>.get-product-detail .ft-logo {
		display: none !important;
		margin: 0 !important;
		padding: 0 !important;
		height: 0 !important;
		overflow: hidden !important;
	}

	.tpd-mob-gallery {
		order: -1;
		position: relative;
		display: block !important;
		width: 100vw;
		max-width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);

		aspect-ratio: 100 / 115;
		height: auto;
		max-height: none;
		overflow: hidden;
		background: #fff;
		flex-shrink: 0;
	}

	.tpd-mob-gallery__slider,
	.tpd-mob-gallery__swiper {
		position: absolute;
		inset: 0;
		width: 100% !important;
		height: 100% !important;
		margin: 0 !important;
		overflow: hidden;
	}

	.tpd-mob-gallery .swiper-wrapper {
		height: 100% !important;
		align-items: stretch !important;
		box-sizing: border-box;
	}

	.tpd-mob-gallery .swiper-slide,
	.tpd-mob-gallery .tpd-mob-gallery__slide,
	.tpd-mob-gallery .hide-pc-photo {
		width: 100% !important;
		max-width: none !important;
		height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		flex-shrink: 0 !important;
		position: relative !important;
		display: block !important;
		box-sizing: border-box;
		overflow: hidden;
	}

	.tpd-mob-gallery .swiper-slide:nth-child(odd),
	.tpd-mob-gallery .swiper-slide:nth-child(even) {
		width: 100% !important;
		max-width: none !important;
		height: 100% !important;
		margin: 0 !important;
	}

	.tpd-mob-gallery .tpd-mob-gallery__link,
	.tpd-mob-gallery .fancybox-trigger,
	.tpd-mob-gallery .product-page__video-slide,
	.tpd-mob-gallery .video-thumbnail,
	.tpd-mob-gallery .video-preview {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		min-height: 0 !important;
		display: block !important;
		margin: 0 !important;
		padding: 0 !important;
		aspect-ratio: auto !important;
		background: transparent !important;
		overflow: hidden !important;
	}

	.tpd-mob-gallery .product-page__video-slide {
		opacity: 1 !important;
		cursor: pointer;
	}

	.tpd-mob-gallery .swiper-slide img,
	.tpd-mob-gallery .video-preview-img,
	.tpd-mob-gallery .video-source {
		position: absolute !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: contain !important;
		object-position: center !important;
		display: block !important;
		margin: auto !important;
		flex-shrink: 0 !important;
	}

	.tpd-mob-gallery__slide::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background: linear-gradient(90deg, #ede8e3 0%, #f7f4f1 45%, #ede8e3 90%);
		background-size: 240px 100%;
		animation: tpd-delivery-skeleton-shimmer 1.15s ease-in-out infinite;
		transition: opacity 0.2s ease;
	}

	.tpd-mob-gallery__slide.is-media-ready::before {
		opacity: 0;
	}

	.tpd-mob-gallery .swiper-slide img,
	.tpd-mob-gallery .video-preview-img {
		opacity: 0;
		transition: opacity 0.22s ease;
	}

	.tpd-mob-gallery__slide.is-media-ready img,
	.tpd-mob-gallery__slide.is-media-ready .video-preview-img {
		opacity: 1;
	}

	.tpd-mob-gallery .video-play-button {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 2;
	}

	.tpd-mob-gallery__badges {
		position: absolute;
		top: 12px;
		left: 12px;
		z-index: 2;
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		pointer-events: none;
	}

	.tpd-mob-gallery__badges .tpd-badge {
		height: auto;
		padding: 3px 8px;
		border-radius: 3px;
		font-size: 9.9px;
		letter-spacing: 0.04em;
	}

	.tpd-mob-gallery__video-btn {
		position: absolute;
		top: 12px;
		right: 12px;
		z-index: 6;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding: 6px 12px;
		border: 0;
		border-radius: 999px;
		background: rgba(0, 0, 0, 0.6);
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
		color: #fff;
		font-size: 11px;
		font-weight: 600;
		line-height: 1.2;
		letter-spacing: -0.2px;
		text-decoration: none;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
	}

	.tpd-mob-gallery__video-btn svg {
		flex-shrink: 0;
		width: 14px;
		height: 14px;
	}

	.tpd-mob-gallery__video-btn:active {
		opacity: 0.85;
	}

	.tpd-mob-gallery__count {
		position: absolute;
		bottom: 12px;
		right: 12px;
		z-index: 5;
		padding: 3px 10px;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.85);
		-webkit-backdrop-filter: blur(4px);
		backdrop-filter: blur(4px);
		font-size: 10.8px;
		letter-spacing: -0.2px;
		color: var(--tpd-text);
		line-height: 1.2;
		pointer-events: none;
	}

	.tpd-mob-gallery__dots {
		display: none !important;
	}

	.tpd-mob-gallery__dot {
		width: 6px;
		height: 6px;
		border-radius: 3px;
		background: rgba(60, 60, 60, 0.25);
		transition: width 0.25s ease, background 0.25s ease;
	}

	.tpd-mob-gallery__dot.is-active {
		width: 20px;
		background: #3c3c3c;
	}

	.tpd-tryon {
		order: -1;
		display: flex !important;
		align-items: center;
		gap: 10px;
		width: 100vw;
		max-width: 100vw;
		margin-top: 10px;
		margin-bottom: 0;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		padding: 11px 16px;
		border: 0;
		border-top: 1px solid #dcd6d0;
		border-bottom: 1px solid #dcd6d0;
		background: #f0ece8;
		cursor: pointer;
		box-sizing: border-box;
		font: inherit;
		text-align: left;
		color: inherit;
		-webkit-tap-highlight-color: transparent;
	}

	.tpd-tryon__icon {
		flex-shrink: 0;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		background: #e2ddd8;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.tpd-tryon__text {
		flex: 1;
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 1px;
	}

	.tpd-tryon__title {
		font-size: 13px;
		font-weight: 500;
		letter-spacing: -0.22px;
		line-height: 1.2;
		color: #3c3c3c;
	}

	.tpd-tryon__sub {
		font-size: 11px;
		font-weight: 400;
		letter-spacing: -0.14px;
		line-height: 1.2;
		color: #8a7f78;
	}

	.tpd-tryon__chevron {
		flex-shrink: 0;
		color: #3c3c3c;
		opacity: 0.35;
		display: flex;
	}

	.tpd-tryon-card {
		display: none !important;
	}

	.tpd-warranty-row {
		display: flex !important;
		align-items: center;
		gap: 16px;
		flex-wrap: wrap;
		width: 100%;
		padding: 12px 0 16px;
		border-bottom: 1px solid #e7e1db;
		box-sizing: border-box;
	}

	.tpd-warranty-row .tpd-price__brand-logo {
		height: 11px;
		margin-right: 6px;
	}

	.tpd-warranty-row .tpd-price__brand-logo img {
		height: 11px;
	}

	.tpd-rating:has(+ .tpd-warranty-row) {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.tpd-badges--header {
		display: none !important;
	}

	.tpd-header {
		order: 0;
		padding: 16px 0 0;
		gap: 8px;
		box-sizing: border-box;
	}

	.tpd-header__top {
		align-items: flex-start;
	}

	.tpd-header__heading {
		margin-top: 8px;
	}

	.tpd-compare {
		display: none !important;
	}

	.tpd-breadcrumbs {
		font-size: 9.9px;
		letter-spacing: 0.02em;
		gap: 4px;
		line-height: 1.4;
	}

	.tpd-breadcrumbs__sep {
		color: var(--tpd-muted);
	}

	.tpd-breadcrumbs__sep svg {
		display: none;
	}

	.tpd-breadcrumbs__sep::before {
		content: '/';
		font-size: 9.9px;
		line-height: 1;
		color: var(--tpd-muted);
	}

	.tpd-title {
		gap: 2px;
	}

	.tpd-title__type {
		font-size: 9.9px;
		letter-spacing: 0.08em;
		line-height: 1.4;
		color: var(--tpd-muted);
		text-transform: uppercase;
	}

	.tpd-title__type-full {
		display: none;
	}

	.tpd-title__type-short {
		display: inline;
	}

	.tpd-title__main {
		font-size: 27px;
		line-height: 1.1;
		letter-spacing: -0.7px;
		font-weight: 600;
	}

	.tpd-article {
		margin: 4px 0 0;
		font-size: 13px;
		font-weight: 500;
		letter-spacing: -0.02em;
		line-height: 1.4;
	}

	.tpd-stock.stickers-title {
		gap: 8px;
	}

	.tpd-stock__status,
	.tpd-stock__pickup {
		padding: 0;
		background: transparent;
		font-size: 11.7px;
		letter-spacing: -0.26px;
		gap: 8px;
	}

	.tpd-stock__slash {
		color: var(--tpd-muted);
	}

	.tpd-stock__place,
	.tpd-stock__place-status,
	.tpd-stock__slash {
		color: var(--tpd-muted);
	}

	.tpd-divider {
		display: block;
		background: #e7e1db;
	}

	.tpd-rating {
		gap: 8px;
		width: 100%;
		padding-bottom: 12px;
		margin-bottom: 0;
		border-bottom: 0;
		box-sizing: border-box;
	}

	.tpd-rating__star--desk {
		display: none !important;
	}

	.tpd-rating__stars {
		display: inline-flex !important;
	}

	.tpd-rating__value {
		font-size: 22px;
		letter-spacing: -0.4px;
		text-transform: none;
		line-height: 1;
		font-weight: 600;
	}

	.tpd-rating__meta {
		display: flex;
		flex: 1 1 auto;
		align-items: center;
		min-width: 0;
		gap: 4px;
		font-size: 10.8px;
		letter-spacing: -0.2px;
		line-height: 1.2;
	}

	.tpd-rating__link {
		font-size: 10.8px !important;
		text-underline-offset: 2px;
	}

	.tpd-rating__photos {
		margin-left: auto;
	}

	.tpd-rating__photos img,
	.tpd-rating__photos .tpd-rating__preview {
		width: 36px;
		height: 36px;
		max-width: 36px;
		max-height: 36px;
		margin-left: -10px;
	}

	.tpd-rating__photos img:first-child,
	.tpd-rating__photos .tpd-rating__preview:first-child {
		margin-left: 0;
	}

	.product-page-main {
		order: 1;
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch;
		justify-content: flex-start !important;
		gap: 10px !important;
		padding: 0 !important;
		margin: 0 !important;
		min-height: 0 !important;
		height: auto !important;
		box-sizing: border-box;
		width: 100%;
	}


	.tpd-root .product-page-main>.product-page-main__row,
	.tpd-root .get-product-detail .product-page-main__row {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		border-bottom: none !important;
		justify-content: flex-start !important;
		gap: 0 !important;
		min-height: 0 !important;
		height: auto !important;
		flex: none !important;
	}

	.tpd-delivery [data-tpd-delivery-body] {
		min-height: 0 !important;
	}

	.tpd-root .get-product-detail .product-page-main__row.tpd-delivery-wrap {
		margin-top: 0 !important;
		padding: 16px 0 8px !important;
		background: #fff;
	}

	.tpd-price-block.product-page-main__row.edit-mob-row,
	.tpd-price-block {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch;
		gap: 0 !important;
		width: 100%;
		margin-bottom: 0 !important;
		padding-top: 14px !important;
		padding-bottom: 0 !important;
		border-bottom: none !important;
	}

	.tpd-price {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 0;
		width: 100%;
		min-height: 0 !important;
		height: auto !important;
	}

	.tpd-price__left {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: nowrap;
		gap: 8px;
		flex: 0 0 auto;
		width: 100%;
		min-width: 0;
	}

	.tpd-price__current {
		font-size: 40px;
		line-height: 1;
		letter-spacing: -1px;
		font-weight: 600;
		color: var(--tpd-text);
	}

	.tpd-price__current .tpd-price__currency {
		font-size: 0.62em;
		font-weight: 600;
		letter-spacing: 0;
		vertical-align: baseline;
	}

	.tpd-price__meta {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.tpd-price__old {
		position: relative;
		display: inline-block;
		font-size: 14px;
		line-height: 1;
		letter-spacing: -0.28px;
		color: #cacaca;
		text-decoration: none;
		white-space: nowrap;
		overflow: hidden;
	}

	.tpd-price__old .tpd-price__currency {
		font-size: 0.85em;
	}

	.tpd-price__old-text {
		display: inline-block;
	}

	.tpd-price__old-strike {
		position: absolute;
		left: 0;
		right: 0;
		top: 50%;
		height: 6px;
		transform: translateY(-50%);
		pointer-events: none;
		overflow: hidden;
	}

	.tpd-price__old-strike svg {
		display: block;
		width: 100%;
		height: 100%;
	}

	.tpd-price__percent {
		display: inline-flex;
		align-items: center;
		padding: 2px 7px;
		border-radius: 3px;
		background: var(--tpd-accent);
		color: var(--tpd-text);
		font-size: 10.8px;
		letter-spacing: -0.2px;
		line-height: 1.2;
	}

	.tpd-price__badges {
		display: flex !important;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 10px;
		flex: 0 0 auto;
		width: 100%;
		max-width: 100%;
		margin-top: 12px;
		padding: 12px 0 14px;
		border-bottom: 1px solid #e7e1db;
		box-sizing: border-box;
	}

	.tpd-price__brand,
	.tpd-price__swiss {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		gap: 6px;
		text-decoration: none;
		color: inherit;
		text-align: left;
	}

	.tpd-price__swiss.tpd-price__swiss--mob {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		padding-left: 10px;
		border-left: 1px solid #e7e1db;
	}

	.tpd-price__brand-logo {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 14px;
		margin-right: 0;
		flex-shrink: 0;
	}

	.tpd-price__brand-logo img {
		height: 11px;
		width: auto;
		object-fit: contain;
		filter: grayscale(1);
		opacity: 0.7;
	}

	.tpd-price__brand-title,
	.tpd-price__brand-sub,
	.tpd-price__swiss-label {
		font-size: 10.8px;
		letter-spacing: -0.15px;
		color: var(--tpd-muted);
		line-height: 1.2;
		white-space: nowrap;
	}

	.tpd-price__brand-title--full {
		display: inline !important;
	}

	.tpd-price__brand-title--desk,
	.tpd-price__brand-sub {
		display: none !important;
	}

	.tpd-price__brand-sub::before {
		content: none;
	}

	.tpd-price__swiss-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 14px;
		height: 14px;
		margin-right: 0;
		opacity: 1;
		flex-shrink: 0;
		filter: none;
	}

	.tpd-price__swiss-icon svg {
		width: 14px;
		height: 14px;
	}

	.tpd-price__badges:empty {
		display: none !important;
	}

	.tpd-pay {
		display: block;
		width: 100%;
		margin: 0;
		padding: 12px 0 4px;
		border: 0;
		text-align: left;
	}

	.tpd-pay:empty {
		display: none !important;
	}

	.tpd-pay__methods,
	.tpd-pay__link {
		display: none !important;
	}

	.tpd-root .tpd-pay__mobile,
	.tpd-pay .tpd-pay__mobile,
	.page .tpd-pay .tpd-pay__mobile {
		height: auto !important;
		min-height: 0 !important;
	}

	.tpd-pay__mobile,
	.tpd-pay .tpd-pay__mobile,
	.page .tpd-pay .tpd-pay__mobile {
		display: inline-flex !important;
		align-items: center;
		justify-content: flex-start !important;
		flex-wrap: wrap;
		gap: 6px;
		width: auto !important;
		max-width: 100%;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-left: 0 !important;
		border-radius: 0 !important;
		background: none !important;
		box-shadow: none !important;
		cursor: pointer;
		font-size: 10.8px;
		line-height: 1.4;
		letter-spacing: -0.2px;
		color: var(--tpd-muted);
		text-align: left !important;
		text-decoration: underline;
		text-underline-offset: 3px;
	}

	.tpd-pay__mobile em {
		font-style: normal;
		color: var(--tpd-text);
		text-decoration: inherit;
	}

	.tpd-pay__mobile-methods {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		flex-wrap: wrap;
	}

	.tpd-pay__mobile-item {
		display: inline-flex;
		align-items: center;
		gap: 3px;
		color: var(--tpd-text);
	}

	.tpd-pay__mobile-item img,
	.tpd-pay__mobile-item svg {
		width: 14px;
		height: 14px;
		flex-shrink: 0;
	}

	.tpd-pay__mobile-or {
		color: var(--tpd-muted);
	}

	.tpd-root .credit-by.tpd-credit,
	.tpd-root .tpd-credit {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 6px;
		width: 100%;
		margin: 0 0 8px;
		padding: 0;
		border: 0;
		border-left: 0;
	}

	.tpd-root .tpd-credit span {
		font-size: 10.8px;
	}

	.tpd-root .tpd-credit svg {
		height: 24px;
	}

	.tpd-actions-wrap.product-page-main__row,
	.tpd-actions-wrap {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-bottom: 16px !important;
		border-bottom: 1px solid #e7e1db !important;
	}

	.tpd-actions-wrap.u-row-flex-bottom {
		display: block !important;
		flex-direction: column !important;
	}

	.tpd-actions {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}

	.tpd-actions__cart.button.is-primary.is-cart {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 58px;
		min-height: 58px;
		padding: 12px 16px;
		font-weight: 500;
		margin: 0;
		border: 0;
		border-radius: 4px;
		background: #3c3c3c !important;
		color: #fff !important;
		font-size: 14.4px;
		letter-spacing: -0.32px;
		line-height: 1.2;
		text-align: center;
		cursor: pointer;
	}

	.tpd-actions__row {
		display: flex;
		align-items: stretch;
		gap: 10px;
		width: 100%;
	}

	.tpd-actions__secondary.button.is-ghost {
		flex: 1 1 0%;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		height: 52px;
		min-height: 52px;
		padding: 8px 12px;
		margin: 0;
		border: 1px solid #e7e1db !important;
		border-radius: 4px;
		background: #fff !important;
		color: var(--tpd-text) !important;
		font-size: 11.7px;
		letter-spacing: -0.26px;
		line-height: 1.2;
		text-align: center;
		cursor: pointer;
		box-shadow: none !important;
	}

	.tpd-actions__secondary-title {
		display: block;
		font-size: 11.7px;
		letter-spacing: -0.26px;
		line-height: 1.2;
	}

	.tpd-actions__secondary-sub {
		display: block;
		font-size: 9.9px;
		letter-spacing: -0.2px;
		line-height: 1.2;
		color: var(--tpd-muted);
	}

	.tpd-actions__secondary-sub[hidden] {
		display: none !important;
	}

	.tpd-actions__fav {
		width: 52px;
		min-width: 52px;
		height: 52px;
		min-height: 52px;
		border: 1px solid #e7e1db;
		background: #fff;
	}

	.tpd-actions__fav:hover {
		background: #faf9f7;
	}

	.tpd-notify {
		width: 100%;
	}

	.tpd-notify__btn {
		width: 100%;
		height: 58px;
		border-radius: 4px;
		border: 0;
		background: #8a7f78;
		color: #fff;
		font-size: 14.4px;
		letter-spacing: -0.32px;
		cursor: pointer;
	}

	.tpd-root .get-product-detail .product-page-main__row.tpd-delivery-wrap {
		margin-top: 0 !important;
		padding: 16px 0 8px !important;
		background: #fff;
		border-bottom: none !important;
	}

	.tpd-delivery__divider {
		display: none;
	}

	.tpd-delivery__icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		color: rgba(117, 117, 117, 0.5);
	}

	.tpd-delivery__row {
		display: flex;
		align-items: center;
		gap: 12px;
		padding: 12px 0;
		border-top: 0;
		border-bottom: 1px solid #e0e0e0;
	}

	.tpd-delivery__row--head {
		align-items: center;
		padding-top: 0;
		padding-bottom: 0;
		margin-bottom: 12px;
		border-bottom: 0;
	}

	.tpd-delivery__row--last {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.tpd-delivery__head-main {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;
	}

	.tpd-delivery__head-title {
		font-size: 14px;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: -0.28px;
		color: #1a1a1a;
		white-space: nowrap;
	}

	.tpd-delivery__badge {
		font-size: 11px;
		font-weight: 700;
		line-height: 1.2;
		padding: 2px 8px;
		border-radius: 4px;
		background: #dede2b;
		color: #1a1a1a;
		flex-shrink: 0;
		white-space: nowrap;
	}

	.tpd-delivery__row--head .tpd-delivery__left {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;
	}

	.tpd-delivery__row:not(.tpd-delivery__row--head) .tpd-delivery__left {
		flex: 1;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		min-width: 0;
	}

	.tpd-delivery__row:not(.tpd-delivery__row--head) .tpd-delivery__label {
		font-size: 11px;
		line-height: 1.3;
		font-weight: 400;
		color: #757575;
		white-space: normal;
	}

	.tpd-delivery__sub,
	.tpd-delivery__row:not(.tpd-delivery__row--head) .tpd-delivery__place {
		font-size: 11px;
		line-height: 1.3;
		font-weight: 600;
		color: #1a1a1a;
		white-space: normal;
	}

	.tpd-delivery__value {
		font-size: 12px;
		line-height: 1.2;
		letter-spacing: -0.24px;
		color: #757575;
		flex-shrink: 0;
	}

	.tpd-delivery__value.is-today {
		color: #059669;
		font-weight: 600;
	}

	.tpd-delivery__meta {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 2px;
		flex-shrink: 0;
		text-align: right;
	}

	.tpd-delivery__price {
		font-size: 13px;
		line-height: 1.2;
		letter-spacing: -0.26px;
		font-weight: 500;
		color: #1a1a1a;
		white-space: nowrap;
	}

	.tpd-delivery__price--free {
		font-weight: 500;
		color: #1a1a1a;
	}

	.tpd-delivery__city {
		display: inline-flex;
		align-items: center;
		gap: 2px;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.2;
		color: #1a1a1a !important;
		text-decoration: underline;
		text-decoration-style: dashed;
		text-underline-offset: 2px;
	}

	.tpd-delivery__city-pin {
		display: none;
	}

	.tpd-delivery__city-chevron {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		color: #757575;
	}

	.tpd-delivery__city svg path {
		fill: currentColor;
		stroke: none;
	}

	.tpd-root .flex-start-ed p.tpd-delivery__hint,
	.tpd-delivery__hint {
		display: block;
		width: 100%;
		margin: 0;
		padding: 14px 0 8px;
		border-top: 1px solid #e0e0e0;
		text-align: left;
		font-size: 12px;
		line-height: 1.4;
		letter-spacing: -0.2px;
		font-weight: 400;
		color: #8a7f78;
		justify-content: unset;
	}

	.tpd-tabs__nav {
		gap: 0 !important;
		overflow-x: auto;
		overflow-y: visible;
		touch-action: pan-x;
		overscroll-behavior-x: contain;
		overscroll-behavior-y: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin-bottom: 20px;
		border-bottom-color: #e7e1db;
		justify-content: flex-start !important;
	}

	.tpd-tabs__nav::-webkit-scrollbar {
		display: none;
	}

	.tpd-tabs__btn {
		flex-shrink: 0;
		gap: 6px;
		padding: 14px 16px !important;
		font-size: 11.7px !important;
		line-height: 1.2 !important;
		letter-spacing: -0.26px !important;
	}

	.tpd-tabs__btn:first-child {
		padding-left: 0 !important;
	}

	.tpd-tabs__btn:last-child {
		padding-right: 16px !important;
	}

	.tpd-tabs__btn-count {
		min-width: 17px;
		height: 17px;
		padding: 0 5px;
		border-radius: 20px;
		font-size: 9.9px;
		letter-spacing: -0.2px;
		line-height: 17px;
		box-sizing: border-box;
	}

	.tpd-tabs__panel,
	.tpd-tabs__panel .product-section-body,
	.tpd-tabs__panel .product-section-body p,
	.tpd-tabs__panel .product-page-specs__label,
	.tpd-tabs__panel .product-page-specs__value,
	.tpd-tabs__panel .warranty-block,
	.tpd-tabs__panel .warranty-block p,
	.tpd-tabs__panel .warranty-block li,
	.tpd-tabs__panel .features__list,
	.tpd-tabs__panel .features__list ul>li,
	.tpd-tabs__panel .features__list ul>li p,
	.tpd-tabs__panel .functions__item-body {
		font-size: 11.7px !important;
		letter-spacing: -0.2px;
		line-height: 1.6;
	}

	.tpd-tabs__panel .features__item-title,
	.tpd-tabs__panel .features__list ul>li strong,
	.tpd-tabs__panel .warranty-block__title {
		font-size: 11.7px !important;
		letter-spacing: -0.26px;
		line-height: 1.4;
	}

	.tpd-tabs__panel .product-section-more,
	.tpd-tabs__panel .product-section-more span {
		font-size: 11.7px !important;
	}

	.tpd-tabs__panel .type-2-container span {
		font-size: 12.6px !important;
		font-weight: 500;
		line-height: 120%;
	}
}

.tpd-desc-spoiler {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
}

.tpd-desc-spoiler .product-section-body {
	width: 100%;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tpd-desc-spoiler:not(.is-expanded) .product-section-body {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 16;
	line-clamp: 16;
}

.tpd-desc-spoiler.is-truncated .product-section-body::after,
.tpd-features-spoiler.is-truncated .product-section-body::after {
	display: none;
}

.tpd-desc-spoiler__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font-family: inherit;
	color: #8a7f78;
	transition: color 0.2s;
}

.tpd-desc-spoiler__btn:hover {
	color: #3c3c3c;
}

.tpd-desc-spoiler__btn span {
	font-size: 12.6px !important;
	letter-spacing: -0.28px;
	line-height: 1.2;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tpd-desc-spoiler__btn svg {
	flex-shrink: 0;
	transition: transform 0.25s;
}

.tpd-desc-spoiler.is-expanded .tpd-desc-spoiler__btn svg,
.tpd-features-spoiler.is-expanded .tpd-desc-spoiler__btn svg {
	transform: rotate(180deg);
}

.tpd-features-spoiler {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
}

.tpd-rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 6px;
}

.tpd-rating__score {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.tpd-rating__star {
	display: inline-flex;
	line-height: 0;
}

.tpd-rating__stars {
	display: none;
	align-items: center;
	gap: 3px;
	line-height: 0;
	flex-shrink: 0;
}

.tpd-rating__stars svg {
	display: block;
	flex-shrink: 0;
}

.tpd-rating__value {
	font-size: 14.4px;
	line-height: 1.2;
	letter-spacing: -0.64px;
	text-transform: uppercase;
	color: var(--tpd-text);
}

.tpd-rating__meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	color: var(--tpd-muted, #8a7f78);
}

.tpd-rating__link {
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.tpd-rating__link:hover {
	color: var(--tpd-text);
}

.tpd-rating__sep {
	opacity: 0.7;
}

.tpd-rating__photos {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 12px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	line-height: 0;
	vertical-align: middle;
}

.tpd-rating__photos img,
.tpd-rating__photos .tpd-rating__preview {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 1.5px solid #fff;
	box-sizing: border-box;
	margin-left: -10px;
	background: #f5f1ed;
	position: relative;
	overflow: hidden;
}

.tpd-rating__photos img:first-child,
.tpd-rating__photos .tpd-rating__preview:first-child {
	margin-left: 0;
	z-index: 1;
}

.tpd-rating__photos img:nth-child(2),
.tpd-rating__photos .tpd-rating__preview:nth-child(2) {
	z-index: 2;
}

.tpd-rating__photos img:nth-child(3),
.tpd-rating__photos .tpd-rating__preview:nth-child(3) {
	z-index: 3;
}

@media (max-width: 850px) {
	.tpd-root .tpd-article {
		font-weight: 500;
	}

	.tpd-root .tpd-stock__place,
	.tpd-root .tpd-stock__place-status,
	.tpd-root .tpd-stock__slash {
		color: var(--tpd-muted);
	}

	.tpd-root .tpd-rating__value {
		font-size: 22px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: -0.4px;
		text-transform: none;
	}

	.tpd-root .tpd-rating__photos img,
	.tpd-root .tpd-rating__photos .tpd-rating__preview {
		width: 36px;
		height: 36px;
		max-width: 36px;
		max-height: 36px;
		margin-left: -10px;
	}

	.tpd-root .tpd-price__current {
		font-size: 40px;
	}
}

.tpd-rating__preview--video {
	background: #1e1a16;
	position: relative;
}

.tpd-rating__preview-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.tpd-rating__preview--video .tpd-media-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.tpd-rating__preview--video .tpd-media-play::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #fff;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.tpd-tabs {
	width: 100%;
	margin-top: 0;
}

.tpd-tabs__nav {
	display: flex;
	align-items: flex-end;
	gap: 32px;
	border-bottom: 1px solid #e7e1db;
	margin-bottom: 32px;
	overflow-x: auto;
	overflow-y: visible;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
	overscroll-behavior-y: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.tpd-tabs__nav::-webkit-scrollbar {
	display: none;
}

.tpd-tabs__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: -1px;
	padding: 0 0 12px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: none;
	color: #8a7f78;
	font-size: 14.4px;
	line-height: 1.2;
	letter-spacing: -0.32px;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.tpd-tabs__btn:hover {
	color: var(--tpd-text);
}

.tpd-tabs__btn.is-active {
	color: var(--tpd-text);
	border-bottom-color: #3c3c3c;
}

.tpd-tabs__btn-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	padding: 1px 6px;
	border-radius: 10px;
	background: #f5f1ed;
	color: #8a7f78;
	font-size: 9.9px;
	line-height: 1.4;
}

.tpd-tabs__panels {
	position: relative;
	width: 100%;
	min-height: 0;
}

.tpd-tabs__panel {
	display: none;
}

.tpd-tabs__panel.is-active {
	display: block;
}

.tpd-tabs__video {
	margin-top: 24px;
}

.tpd-desc-tab {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	width: 100%;
}

.tpd-desc-tab .tpd-tabs__video {
	margin-top: 0;
}

.tpd-manuals {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.tpd-manual {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #e7e1db;
	border-radius: 6px;
	background: #faf9f7;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tpd-manual:hover {
	border-color: #c0b8b0;
	background: #f7f4f0;
	text-decoration: none;
	color: inherit;
}

.tpd-manual__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 4px;
	background: #e7e1db;
	color: #8a7f78;
}

.tpd-manual__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	flex: 1 1 auto;
	min-width: 0;
}

.tpd-manual__title {
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: -0.28px;
	color: #3c3c3c;
	font-weight: 500;
}

.tpd-manual__meta {
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: -0.2px;
	color: #8a7f78;
}

.tpd-manual__download {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	color: #3c3c3c;
	opacity: 0.35;
}

.tpd-manual:hover .tpd-manual__download {
	opacity: 0.55;
}

.tpd-desc-specs {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tpd-desc-specs__group {
	width: 100%;
}

.tpd-desc-specs__title {
	display: block;
	margin: 0 0 12px;
	font-family: inherit;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: #b0a89f;
}

.tpd-desc-specs__list {
	width: 100%;
}

.tpd-desc-specs__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 11px 4px;
	margin: 0 -4px;
	border-bottom: 1px solid #f5f1ed;
	transition: background-color 0.2s;
}

.tpd-desc-specs__row.is-last {
	border-bottom: 0;
}

.tpd-desc-specs__row:hover {
	background: #faf9f7;
}

.tpd-desc-specs__label {
	flex-shrink: 0;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.28px;
	color: #8a7f78;
}

.tpd-desc-specs__value {
	text-align: right;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.28px;
	color: #3c3c3c;
	max-width: 55%;
}

.tpd-desc-specs__value.is-key {
	font-weight: 500;
}

.tpd-desc-specs__heading {
	margin: 0 0 4px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.22px;
	color: #5a5450;
}

.tpd-desc-specs__group.is-divided .tpd-desc-specs__heading {
	margin-top: 20px;
}

.tpd-specs-more {
	width: 100%;
}

.tpd-specs-more__summary {
	display: flex;
	align-items: center;
	gap: 12px;
	list-style: none;
	cursor: pointer;
	user-select: none;
}

.tpd-specs-more__summary::-webkit-details-marker,
.tpd-specs-more__summary::marker {
	display: none;
	content: none;
}

.tpd-specs-more__line {
	flex: 1;
	height: 1px;
	background: #ede8e3;
}

.tpd-specs-more__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	font-size: 13px;
	letter-spacing: -0.24px;
	line-height: 1.2;
	color: #8a7f78;
	transition: color 0.2s;
}

.tpd-specs-more__summary:hover .tpd-specs-more__btn {
	color: #3c3c3c;
}

.tpd-specs-more__btn svg {
	flex-shrink: 0;
	transition: transform 0.25s;
}

.tpd-specs-more[open] .tpd-specs-more__btn svg {
	transform: rotate(180deg);
}

.tpd-specs-more__close {
	display: none;
}

.tpd-specs-more[open] .tpd-specs-more__open {
	display: none;
}

.tpd-specs-more[open] .tpd-specs-more__close--full {
	display: inline;
}

.tpd-specs-more[open] .tpd-specs-more__close--short {
	display: none;
}

.tpd-specs-more__body {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-top: 20px;
}

button.tpd-error-open {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 6px;
	margin: 4px 0 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	letter-spacing: -0.18px;
	line-height: 1.2;
	color: #5a5450;
	transition: color 0.2s;
}

button.tpd-error-open:hover {
	color: #1a1a1a;
}

button.tpd-error-open svg {
	flex-shrink: 0;
}

.tpd-tabs__warranty-return {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.tpd-tabs__return-block {
	padding-top: 8px;
	border-top: 1px solid #e7e1db;
}

.tpd-tabs .warranty-block__title {
	margin-top: 0;
	margin-bottom: 8px;
}

.tpd-brand-tab {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	width: 100%;
}

.tpd-brand-tab__logo-wrap {
	display: flex;
	align-items: center;
}

.tpd-brand-tab__logo {
	display: block;
	height: 32px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.tpd-brand-tab__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.tpd-brand-tab__title {
	margin: 0;
	font-size: 22px;
	line-height: 1;
	letter-spacing: -0.88px;
	text-transform: uppercase;
	color: #3c3c3c;
	font-weight: inherit;
}

.tpd-brand-tab__text {
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: -0.3px;
	color: #3c3c3c;
}

.tpd-brand-tab__text p {
	margin: 0 0 16px;
}

.tpd-brand-tab__text p:last-child {
	margin-bottom: 0;
}

.tpd-brand-tab__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.tpd-brand-tab__tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border: 1px solid #e7e1db;
	border-radius: 4px;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	color: #8a7f78;
}

@media (max-width: 850px) {
	.tpd-tabs__nav {
		gap: 0 !important;
		margin-bottom: 20px !important;
		justify-content: flex-start !important;
		align-items: flex-end !important;
		overflow-x: auto;
		overflow-y: visible;
		touch-action: pan-x;
		overscroll-behavior-y: auto;
	}

	.tpd-tabs__btn {
		padding: 14px 16px !important;
		font-size: 11.7px !important;
		line-height: 1.2 !important;
		letter-spacing: -0.26px !important;
	}

	.tpd-tabs__btn:first-child {
		padding-left: 0 !important;
	}

	.tpd-tabs__btn:last-child {
		padding-right: 16px !important;
	}

	.tpd-brand-tab {
		gap: 20px;
	}

	.tpd-brand-tab__logo {
		height: 28px;
	}

	.tpd-brand-tab__title {
		font-size: 18px;
		letter-spacing: -0.72px;
	}

	.tpd-brand-tab__text {
		font-size: 13px;
		line-height: 1.7;
		letter-spacing: -0.2px;
	}

	.tpd-brand-tab__tag {
		font-size: 11px;
		letter-spacing: -0.2px;
	}

	.tpd-desc-tab {
		gap: 20px;
	}

	.tpd-manual {
		padding: 12px 14px;
		gap: 12px;
	}

	.tpd-manual__title {
		font-size: 13px;
		letter-spacing: -0.26px;
	}

	.tpd-manual__meta {
		font-size: 11px;
		letter-spacing: -0.15px;
	}

	.tpd-desc-specs {
		gap: 20px;
	}

	.tpd-desc-specs__title {
		display: block;
		margin: 0 0 12px;
		font-size: 10px;
		font-weight: 400;
		line-height: 1.4;
		letter-spacing: 0.9px;
		text-transform: uppercase;
		color: #b0a89f;
	}

	.tpd-desc-specs__label,
	.tpd-desc-specs__value {
		font-size: 13px !important;
		letter-spacing: -0.26px !important;
		line-height: 1.4 !important;
	}

	.tpd-desc-specs__label {
		color: #8a7f78 !important;
	}

	.tpd-desc-specs__value {
		color: #3c3c3c !important;
		font-weight: 400;
	}

	.tpd-desc-specs__value.is-key {
		font-weight: 500;
	}

	.tpd-desc-specs__heading {
		font-size: 13px;
		letter-spacing: -0.22px;
	}

	.tpd-desc-specs__row {
		padding: 11px 0;
		margin: 0;
		border-bottom-color: #f5f1ed;
	}

	.tpd-specs-more__body .tpd-desc-specs__row {
		align-items: flex-start;
	}

	.tpd-desc-specs__group.is-divided {
		padding-top: 0;
		border-top: 0;
	}

	.tpd-specs-more__summary {
		gap: 10px;
	}

	.tpd-specs-more__btn {
		letter-spacing: -0.22px;
	}

	.tpd-specs-more[open] .tpd-specs-more__close--full {
		display: none;
	}

	.tpd-specs-more[open] .tpd-specs-more__close--short {
		display: inline;
	}

	.tpd-specs-more__body {
		gap: 0;
		padding-top: 20px;
	}
}

.tpd-delivery-wrap {
	position: relative;
	width: 100%;
}

.tpd-delivery {
	position: relative;
	width: 100%;
}

.tpd-delivery--recalc-pending [data-tpd-delivery-body] {
	display: none;
}

.tpd-delivery__skeleton {
	display: none;
}

.tpd-delivery--recalc-pending .tpd-delivery__skeleton {
	display: block;
}

.tpd-delivery__skeleton-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 12px;
	margin-bottom: 0;
	border-bottom: 1px solid #f5f1ed;
}

.tpd-delivery__skeleton-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid #f5f1ed;
}

.tpd-delivery__skeleton-left {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
	min-width: 0;
}

.tpd-delivery__skeleton-line {
	border-radius: 6px;
	background: linear-gradient(90deg, #ede8e3 0%, #f7f4f1 45%, #ede8e3 90%);
	background-size: 240px 100%;
	animation: tpd-delivery-skeleton-shimmer 1.15s ease-in-out infinite;
}

.tpd-delivery__skeleton-line--title {
	width: 168px;
	height: 14px;
}

.tpd-delivery__skeleton-line--city {
	width: 72px;
	height: 14px;
	flex-shrink: 0;
}

.tpd-delivery__skeleton-line--label {
	width: 132px;
	height: 13px;
}

.tpd-delivery__skeleton-line--sub {
	width: 96px;
	height: 13px;
}

.tpd-delivery__skeleton-line--value {
	width: 56px;
	height: 13px;
	flex-shrink: 0;
}

.tpd-delivery__skeleton-line--value-short {
	width: 44px;
}

@keyframes tpd-delivery-skeleton-shimmer {
	0% {
		background-position: -240px 0;
	}

	100% {
		background-position: calc(100% + 240px) 0;
	}
}

@media (min-width: 851px) {
	.tpd-delivery--recalc-pending .tpd-delivery__skeleton {
		min-height: 168px;
	}
}

@media (min-width: 851px) {
	.tpd-delivery__icon,
	.tpd-delivery__divider,
	.tpd-delivery__city-pin,
	.tpd-delivery__city-chevron {
		display: none;
	}

	.tpd-delivery__row--head .tpd-delivery__left {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
}

@media (min-width: 851px) {
	.tpd-delivery [data-tpd-delivery-body] {
		min-height: 168px;
	}
}

.tpd-delivery__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid #f5f1ed;
}

.tpd-delivery__row--head {
	border-top: 0;
	padding-top: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #f5f1ed;
}

.tpd-delivery__row--last {
	padding-bottom: 0;
}

@media (max-width: 850px) {
	.tpd-root .get-product-detail .product-page-main__row.tpd-actions-wrap {
		padding-bottom: 16px !important;
		border-bottom: 1px solid #e7e1db !important;
	}

	.tpd-delivery__row {
		border-top: 0;
	}

	.tpd-delivery__row--head {
		align-items: center;
		padding-bottom: 0;
		margin-bottom: 12px;
		border-bottom: 0;
	}

	.tpd-delivery__head-main,
	.tpd-delivery__row--head .tpd-delivery__left {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 8px;
	}

	.tpd-delivery__head-title {
		white-space: nowrap;
	}

	.tpd-delivery__row--head .tpd-delivery__badge {
		flex-shrink: 0;
		white-space: nowrap;
	}

	.tpd-delivery__city-pin {
		display: none;
	}
}

.tpd-delivery__left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	min-width: 0;
}

.tpd-delivery__label {
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	color: #8a7f78;
	white-space: nowrap;
}

.tpd-delivery__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 4px 5px;
	border-radius: 4px;
	background: #dede2b;
	color: #3c3c3c;
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	white-space: nowrap;
}

.tpd-delivery__place {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	color: #3c3c3c;
	white-space: nowrap;
}

.tpd-delivery__value {
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	color: #8a7f78;
	white-space: nowrap;
}

.tpd-delivery__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	flex-shrink: 0;
	text-align: right;
}

.tpd-delivery__price {
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: -0.26px;
	color: #3c3c3c;
	white-space: nowrap;
}

.tpd-delivery__price--free {
	font-weight: 500;
}

.tpd-delivery__city {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: none;
	color: #3c3c3c;
	font: inherit;
	font-size: 12.6px;
	line-height: 1.2;
	letter-spacing: -0.24px;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
	white-space: nowrap;
}

.tpd-delivery__city:hover {
	opacity: 0.75;
}

.tpd-root .flex-start-ed p.tpd-delivery__hint,
.tpd-delivery__hint {
	display: block;
	width: 100%;
	margin: 14px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid #f0ece8;
	text-align: left;
	font-size: 12px;
	line-height: 1.4;
	letter-spacing: -0.2px;
	font-weight: 400;
	color: #8a7f78;
	justify-content: unset;
	align-items: unset;
}

.tpd-delivery__hint-em,
.tpd-delivery__hint-sum {
	display: inline;
	white-space: nowrap;
	color: #1a1a1a;
	font-weight: 700;
}

.tpd-city-panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 30;
	padding: 18px 20px 20px;
	border: 1px solid #e7e1db;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1.5px 4px rgba(0, 0, 0, 0.06);
}

.tpd-city-panel[hidden] {
	display: none !important;
}

.tpd-city-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.tpd-city-panel__title {
	font-size: 13.5px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.36px;
	color: #3c3c3c;
}

.tpd-city-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f5f1ed;
	cursor: pointer;
}

.tpd-city-panel__search {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 9px 12px;
	border-radius: 8px;
	background: #faf9f7;
}

.tpd-city-panel__input {
	flex: 1;
	min-width: 0;
	border: 0;
	outline: none;
	background: transparent;
	color: #3c3c3c;
	font: inherit;
	font-size: 16px;
	letter-spacing: -0.24px;
}

.tpd-city-panel__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #e7e1db;
	cursor: pointer;
}

.tpd-city-panel__clear[hidden] {
	display: none !important;
}

.tpd-city-panel__section-label {
	margin-bottom: 10px;
	font-size: 9.9px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #8a7f78;
}

.tpd-city-panel__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 16px;
	font-weight: 500;
}

.tpd-city-panel__chip {
	padding: 6px 12px;
	border: 1.5px solid #e7e1db;
	border-radius: 6px;
	background: #fff;
	color: #3c3c3c;
	font: inherit;
	font-size: 11.7px;
	line-height: 1.2;
	letter-spacing: -0.26px;
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.tpd-city-panel__chip.is-active {
	border-color: transparent;
	background: #3c3c3c;
	color: #fff;
}

.tpd-city-panel__results {
	max-height: 160px;
	margin: 0 0 16px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.tpd-city-panel__results[hidden],
.tpd-city-panel__popular[hidden] {
	display: none !important;
}

.tpd-city-panel__result {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 9px 0;
	border: 0;
	border-bottom: 1px solid #f5f1ed;
	background: none;
	color: #8a7f78;
	font: inherit;
	font-size: 11.7px;
	letter-spacing: -0.26px;
	text-align: left;
	cursor: pointer;
}

.tpd-city-panel__result.is-active {
	color: #3c3c3c;
	font-weight: 500;
}

.tpd-city-panel__empty {
	padding: 8px 0;
	font-size: 11.7px;
	font-weight: 500;
	color: #8a7f78;
}

.tpd-city-panel__hint {
	padding: 8px 0;
	font-size: 11.7px;
	font-weight: 500;
	color: #8a7f78;
}

.tpd-city-panel__loading {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 5;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: inherit;
	background: #fff;
	font-size: 11.7px;
	line-height: 1.35;
	letter-spacing: -0.26px;
	color: #3c3c3c;
	text-align: center;
}

.tpd-city-panel.is-loading .tpd-city-panel__loading {
	display: flex;
}

.tpd-city-panel.is-loading .tpd-city-panel__body,
.tpd-city-panel.is-loading .tpd-city-panel__search {
	pointer-events: none;
}

.tpd-city-panel__handle {
	display: none;
}

.tpd-city-panel__foot,
.tpd-city-panel__apply {
	display: none !important;
}

.tpd-city-backdrop {
	position: fixed;
	inset: 0;
	z-index: 29;
	background: transparent;
}

body.tpd-city-open {
	overflow: hidden;
}

@media (min-width: 851px) {
	body.tpd-city-open {
		overflow: visible;
	}

	.tpd-city-panel {
		z-index: 30;
	}

	.tpd-city-panel.tpd-city-panel--float:not([hidden]) {
		position: fixed !important;
		z-index: 10050 !important;
		right: auto;
		max-height: calc(100vh - 24px);
		overflow: auto;
	}

	.tpd-city-backdrop {
		z-index: 10040;
	}
}

@media (max-width: 850px) {
	.tpd-city-backdrop {
		z-index: 10000010;
		background: rgba(0, 0, 0, 0.5);
	}

	.tpd-city-panel:not([hidden]) {
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10000011;
		display: flex !important;
		flex-direction: column;
		width: 100%;
		height: auto;
		max-height: 88vh;
		padding: 0;
		border: 0;
		border-radius: 20px 20px 0 0;
		box-shadow: none;
		overflow: hidden;
		animation: tpdCityUp 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	}

	@keyframes tpdCityUp {
		from {
			transform: translateY(100%);
		}

		to {
			transform: translateY(0);
		}
	}

	.tpd-city-panel__handle {
		display: flex;
		justify-content: center;
		padding: 14px 0 6px;
		flex-shrink: 0;
	}

	.tpd-city-panel__handle span {
		width: 32px;
		height: 3.5px;
		border-radius: 2px;
		background: #e7e1db;
	}

	.tpd-city-panel__head {
		margin-bottom: 0;
		padding: 8px 20px 18px;
		flex-shrink: 0;
	}

	.tpd-city-panel__title {
		font-size: 16.2px !important;
		letter-spacing: -0.5px !important;
		line-height: 1.2;
	}

	.tpd-city-panel__close {
		width: 30px;
		height: 30px;
		background: #f5f1ed;
	}

	.tpd-city-panel__search {
		margin: 0 16px 12px;
		padding: 12px 16px;
		border-radius: 12px;
		flex-shrink: 0;
	}

	.tpd-city-panel__input {
		font-size: 16px !important;
		letter-spacing: -0.3px;
		line-height: 1.3;
	}

	.tpd-city-panel__clear {
		width: 20px;
		height: 20px;
	}

	.tpd-city-panel__results {
		flex: 0 1 auto;
		min-height: 0;
		max-height: 42vh;
		margin: 0 16px 12px;
		padding: 0;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.tpd-city-panel__body {
		flex: 1 1 auto;
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		padding: 0 16px 8px;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		touch-action: pan-y;
	}

	.tpd-city-panel__section-label {
		margin-bottom: 14px;
		letter-spacing: 0.06em;
		font-weight: 500;
	}

	.tpd-city-panel__chips {
		gap: 8px;
		margin-bottom: 8px;
		padding-bottom: 8px;
	}

	.tpd-city-panel__chip {
		padding: 9px 18px;
		border-radius: 8px;
		font-size: 12.6px !important;
		letter-spacing: -0.3px;
	}

	.tpd-city-panel__result {
		padding: 15px 0;
		font-size: 13.5px !important;
		letter-spacing: -0.3px;
		color: #3c3c3c;
	}

	.tpd-city-panel__result.is-active {
		font-weight: 600;
	}

	.tpd-city-panel__empty,
	.tpd-city-panel__hint {
		padding: 20px 0;
		font-size: 12.6px;
		font-weight: 500;
		text-align: center;
	}

	.tpd-city-panel__foot,
	.tpd-city-panel__apply {
		display: none !important;
	}
}

.tpd-order[hidden] {
	display: none !important;
}

body.tpd-order-open {
	overflow: hidden;
}

.tpd-order {
	position: fixed;
	inset: 0;
	z-index: 10000012;
}

.tpd-order__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.38);
	backdrop-filter: blur(2px);
}

.tpd-order__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(520px, 100%);
	background: #fff;
	box-shadow: -8px 0 48px rgba(0, 0, 0, 0.14);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	animation: tpdOrderIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 851px) and (max-width: 1679px) {
	.tpd-order__panel {
		zoom: 0.9;
	}

	.tpd-order__panel .tpd-order__input {
		font-size: 17.8px;
	}
}

@keyframes tpdOrderIn {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(0);
	}
}

.tpd-order__close {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 2;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background 0.15s;
}

.tpd-order__handle {
	display: none;
}

.tpd-order__close:hover {
	background: #f5f1ed;
}

.tpd-order__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 32px 44px 80px;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
}

.tpd-order__title {
	margin: 28px 0 32px;
	font-size: 36px;
	font-weight: 500;
	letter-spacing: -1.8px;
	line-height: 1;
	text-transform: uppercase;
	color: #3c3c3c;
}

.tpd-order__product {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-bottom: 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid #f5f1ed;
}

.tpd-order__product-img {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	background: #faf9f7;
	overflow: hidden;
}

.tpd-order__product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tpd-order__product-name {
	font-size: 13.5px;
	letter-spacing: -0.3px;
	line-height: 1.3;
	color: #3c3c3c;
	margin-bottom: 4px;
}

.tpd-order__product-art {
	font-size: 9.9px;
	letter-spacing: 0.02em;
	color: #8a7f78;
	margin-bottom: 10px;
}

.tpd-order__product-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	color: #3c3c3c;
}

.tpd-order__product-price-now {
	font-size: 21.6px;
	letter-spacing: -0.9px;
	line-height: 1;
	color: #3c3c3c;
	white-space: nowrap;
}

.tpd-order__product-price-meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tpd-order__product-price-meta[hidden] {
	display: none !important;
}

.tpd-order__product-price-old {
	position: relative;
	font-size: 12.6px;
	line-height: 1.4;
	letter-spacing: -0.28px;
	color: #cacaca;
	white-space: nowrap;
}

.tpd-order__product-price-old::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	background: var(--tpd-accent, #dede2b);
	transform: translateY(-50%) rotate(-8deg);
}

.tpd-order__product-price-percent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border-radius: 4px;
	background: var(--tpd-accent, #dede2b);
	font-size: 10.8px;
	letter-spacing: -0.24px;
	line-height: 1;
	color: #3c3c3c;
	white-space: nowrap;
}

.tpd-order__shop {
	margin-bottom: 28px;
}

.tpd-order__shop[hidden] {
	display: none !important;
}

.tpd-order__shop-title {
	margin: 0 0 16px;
	font-size: 19.8px;
	font-weight: 500;
	letter-spacing: -0.7px;
	line-height: 1.2;
	color: #3c3c3c;
}

.tpd-order__shop-meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 14px;
}

.tpd-order__shop-meta p,
.tpd-order__shop-meta a {
	margin: 0;
	font-size: 12.6px;
	letter-spacing: -0.28px;
	line-height: 1.4;
	color: #3c3c3c;
	text-decoration: none;
}

.tpd-order__shop-meta a:hover {
	opacity: 0.75;
}

.tpd-order__shop-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 14px;
}

.tpd-order__shop-links a {
	font-size: 11.7px;
	letter-spacing: -0.26px;
	color: #3c3c3c;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tpd-order__contacts {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 24px;
}

.tpd-order__phones {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tpd-order__phones a {
	font-size: 12.6px;
	line-height: 1.4;
	letter-spacing: -0.28px;
	color: #3c3c3c;
	text-decoration: none;
}

.tpd-order__phones a:hover {
	opacity: 0.75;
}

.tpd-order__messengers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}

.tpd-order__messengers--shop {
	margin: 0 0 14px;
}

.tpd-order__messengers a {
	font-size: 11.7px;
	line-height: 1.35;
	letter-spacing: -0.26px;
	color: #3c3c3c;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tpd-order__status {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	font-size: 12.6px;
	letter-spacing: -0.28px;
	color: #3c3c3c;
}

.tpd-order__status-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #dede2b;
	flex-shrink: 0;
}

.tpd-order__banner {
	background: #f5f1ed;
	border-radius: 6px;
	padding: 16px 18px;
	font-size: 11.7px;
	line-height: 1.65;
	letter-spacing: -0.24px;
	color: #3c3c3c;
}

.tpd-order__promo {
	margin: 0 0 22px;
}

.tpd-order__promo-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	padding: 10px 0 14px;
	border: 0;
	border-bottom: 1.5px solid #cacaca;
	background: none;
	font: inherit;
	font-size: 13px;
	line-height: 1.3;
	color: rgb(100, 90, 80);
	text-align: left;
	cursor: pointer;
}

.tpd-order__promo-toggle:hover:not(.is-applied) {
	color: rgb(60, 60, 60);
}

.tpd-order__promo-toggle.is-applied {
	cursor: default;
	color: rgb(45, 120, 45);
	border-bottom-color: #cacaca;
}

.tpd-order__promo-toggle.is-open:not(.is-applied),
.tpd-order__promo-toggle.is-error:not(.is-applied) {
	border-bottom-color: transparent;
	padding-bottom: 10px;
}

.tpd-order__promo-icon {
	display: inline-flex;
	flex-shrink: 0;
	color: rgb(150, 140, 130);
}

.tpd-order__promo-toggle.is-applied .tpd-order__promo-icon,
.tpd-order__promo-toggle.is-error .tpd-order__promo-icon {
	color: rgb(45, 120, 45);
}

.tpd-order__promo-toggle.is-error:not(.is-applied) .tpd-order__promo-icon {
	color: rgb(150, 140, 130);
}

.tpd-order__promo-label {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
}

.tpd-order__promo-idle {
	color: inherit;
}

.tpd-order__promo-applied {
	display: none;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.tpd-order__promo-toggle.is-applied .tpd-order__promo-idle,
.tpd-order__promo-toggle.is-applied .tpd-order__promo-chevron {
	display: none;
}

.tpd-order__promo-toggle.is-applied .tpd-order__promo-applied {
	display: flex;
}

.tpd-order__promo-applied-text {
	color: rgb(45, 120, 45);
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

.tpd-order__promo-code-badge {
	display: inline-block;
	background: rgb(222, 222, 43);
	color: rgb(60, 60, 60);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1.3;
	padding: 2px 6px;
	border-radius: 3px;
	white-space: nowrap;
}

.tpd-order__promo-code-badge:empty {
	display: none;
}

.tpd-order__promo-remove {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgb(170, 160, 150);
	cursor: pointer;
	transition: color 0.15s;
}

.tpd-order__promo-toggle.is-applied .tpd-order__promo-remove,
.tpd-order__promo-toggle.is-error .tpd-order__promo-remove {
	display: inline-flex;
}

.tpd-order__promo-remove:hover {
	color: rgb(60, 60, 60);
}

.tpd-order__promo-chevron {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: auto;
	color: rgb(170, 160, 150);
	transition: transform 0.2s;
}

.tpd-order__promo-toggle.is-open .tpd-order__promo-chevron,
.tpd-order__promo-toggle.is-error .tpd-order__promo-chevron {
	transform: rotate(180deg);
}

.tpd-order__promo-toggle.is-error .tpd-order__promo-chevron,
.tpd-order__promo-toggle.is-applied .tpd-order__promo-remove ~ .tpd-order__promo-chevron {
	margin-left: 0;
}

.tpd-order__promo-toggle.is-error .tpd-order__promo-remove {
	margin-left: auto;
}

.tpd-order__promo-toggle.is-applied .tpd-order__promo-chevron {
	margin-left: 0;
}

.tpd-order__promo-body {
	padding: 0 0 12px;
}

.tpd-order__promo-body[hidden] {
	display: none !important;
}

.tpd-order__promo-field {
	display: flex;
	align-items: stretch;
	border: 1px solid rgb(220, 214, 208);
	border-radius: 3px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.15s;
}

.tpd-order__promo-field:focus-within:not(.is-error) {
	border-color: rgb(60, 60, 60);
}

.tpd-order__promo-field.is-error {
	border-color: rgb(210, 60, 60);
}

.tpd-order__promo-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 40px;
	padding: 0 8px 0 12px;
	border: 0;
	border-radius: 0;
	background: transparent;
	outline: none;
	font: inherit;
	font-size: 16px;
	letter-spacing: 0.5px;
	color: rgb(60, 60, 60);
	box-sizing: border-box;
}

.tpd-order__promo-input::placeholder {
	color: rgb(170, 160, 150);
}

.tpd-order__promo-dismiss {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	padding: 0;
	border: 0;
	border-left: 1px solid rgb(220, 214, 208);
	background: transparent;
	color: rgb(170, 160, 150);
	cursor: pointer;
	transition: color 0.15s;
}

.tpd-order__promo-field.is-error .tpd-order__promo-dismiss {
	display: inline-flex;
	border-left-color: rgb(210, 60, 60);
}

.tpd-order__promo-dismiss:hover {
	color: rgb(60, 60, 60);
}

.tpd-order__promo-check {
	flex-shrink: 0;
	height: 40px;
	margin: 0;
	padding: 0 12px;
	border: 0;
	border-left: 1px solid rgb(220, 214, 208);
	background: transparent;
	font: inherit;
	font-size: 12px;
	font-weight: 500;
	color: rgb(60, 60, 60);
	cursor: pointer;
	transition: background 0.15s, opacity 0.15s;
}

.tpd-order__promo-field.is-error .tpd-order__promo-check {
	border-left-color: rgb(210, 60, 60);
}

.tpd-order__promo-check:hover:not(:disabled) {
	background: rgb(247, 243, 238);
}

.tpd-order__promo-check:disabled {
	opacity: 0.4;
	cursor: default;
}

.tpd-order__promo-error {
	margin: 6px 0 0;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	color: rgb(210, 60, 60);
}

.tpd-order__promo-error[hidden] {
	display: none !important;
}

.tpd-order__field {
	display: block;
	margin-bottom: 28px;
}

.tpd-order__label {
	display: block;
	margin-bottom: 8px;
	font-size: 10.8px;
	letter-spacing: -0.24px;
	line-height: 1;
	color: #8a7f78;
}

.tpd-order__input {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 0;
	border: 0;
	border-bottom: 1.5px solid #cacaca;
	background: transparent;
	outline: none;
	font: inherit;
	font-size: 16px;
	letter-spacing: -0.36px;
	color: #3c3c3c;
}

.tpd-order__input:focus {
	border-bottom-color: #3c3c3c;
}

.tpd-order__input.is-ok {
	border-bottom-color: #2f7d32;
	color: #2f7d32;
}

.tpd-order__input.is-err {
	border-bottom-color: #b42318;
	color: #b42318;
}

.tpd-order__input.is-ok:focus {
	border-bottom-color: #2f7d32;
}

.tpd-order__input.is-err:focus {
	border-bottom-color: #b42318;
}

.tpd-order__error {
	margin: -8px 0 16px;
	font-size: 11.7px;
	line-height: 1.4;
	color: #b42318;
	white-space: pre-line;
}

.tpd-order__error[hidden] {
	display: none !important;
}

.tpd-order__submit {
	width: 100%;
	height: 68px;
	margin-bottom: 20px;
	border: 0;
	background: #3c3c3c;
	color: #fff;
	font: inherit;
	font-size: 14.4px;
	letter-spacing: -0.32px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.tpd-order__submit:hover:not(:disabled) {
	background: #2a2a2a;
}

.tpd-order__submit:disabled {
	background: #e7e1db;
	color: #8a7f78;
	cursor: default;
}

.tpd-order__agree {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 4px 0 16px;
	cursor: pointer;
}

.tpd-order__agree-input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.tpd-order__agree-box {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	border: 1.5px solid #cfc6be;
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
	transition: background 0.15s, border-color 0.15s;
}

.tpd-order__agree-box svg {
	opacity: 0;
	transition: opacity 0.15s;
}

.tpd-order__agree-input:checked+.tpd-order__agree-box {
	background: #3c3c3c;
	border-color: #3c3c3c;
}

.tpd-order__agree-input:checked+.tpd-order__agree-box svg {
	opacity: 1;
}

.tpd-order__agree-input:focus-visible+.tpd-order__agree-box {
	outline: 2px solid #3c3c3c;
	outline-offset: 2px;
}

.tpd-order__agree-text {
	font-size: 10.8px;
	letter-spacing: -0.24px;
	line-height: 1.55;
	color: #8a7f78;
}

.tpd-order__agree-text a {
	color: #8a7f78;
	text-decoration: underline;
}

.tpd-order__terms {
	margin: 0;
	font-size: 10.8px;
	letter-spacing: -0.24px;
	line-height: 1.65;
	color: #8a7f78;
}

.tpd-order__terms a {
	color: #8a7f78;
	text-decoration: underline;
}

.tpd-order__success {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 48px 0;
	text-align: center;
}

.tpd-order__success[hidden] {
	display: none !important;
}

.tpd-order.is-success .tpd-order__title,
.tpd-order.is-success .tpd-order__product,
.tpd-order.is-success .tpd-order__shop,
.tpd-order.is-success .tpd-order__contacts {
	display: none !important;
}

.tpd-order.is-success .tpd-order__scroll {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	box-sizing: border-box;
}

.tpd-order.is-success .tpd-order__success {
	flex: 1;
	justify-content: center;
	padding: 32px 0;
}

.tpd-order__success-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #dede2b;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tpd-order__success-title {
	font-size: 19.8px;
	letter-spacing: -0.8px;
	line-height: 1.2;
	color: #3c3c3c;
}

.tpd-order__success-sub {
	font-size: 12.6px;
	letter-spacing: -0.28px;
	color: #8a7f78;
}

.tpd-order__success-num {
	font-size: 11.7px;
	letter-spacing: -0.26px;
	color: #cacaca;
}

.tpd-order__success .tpd-order__submit {
	width: auto;
	min-width: 160px;
	height: auto;
	padding: 14px 40px;
	margin-top: 8px;
	margin-bottom: 0;
}

@media (max-width: 850px) {
	.tpd-order__backdrop {
		background: rgba(0, 0, 0, 0.5);
		backdrop-filter: none;
	}

	.tpd-order__panel {
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-height: 92vh;
		border-radius: 20px 20px 0 0;
		animation: tpdOrderUp 0.32s cubic-bezier(0.22, 1, 0.36, 1);
		zoom: normal;
	}

	@keyframes tpdOrderUp {
		from {
			transform: translateY(100%);
		}

		to {
			transform: translateY(0);
		}
	}

	.tpd-order__handle {
		display: flex;
		justify-content: center;
		padding: 14px 0 6px;
		flex-shrink: 0;
	}

	.tpd-order__handle span {
		width: 32px;
		height: 3.5px;
		border-radius: 2px;
		background: #e7e1db;
	}

	.tpd-order__close {
		top: 22px;
		right: 20px;
		width: 30px;
		height: 30px;
		background: #f5f1ed;
	}

	.tpd-order__scroll {
		flex: 1 1 auto;
		min-height: 0;
		padding: 0 20px 40px;
	}

	.tpd-order__title {
		margin: 8px 0 16px;
		padding-right: 40px;
		font-size: 18px !important;
		font-weight: 500;
		letter-spacing: -0.6px !important;
		line-height: 1.2;
		text-transform: none;
	}

	.tpd-order__product {
		gap: 14px;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.tpd-order__product-img {
		width: 64px;
		height: 64px;
	}

	.tpd-order__product-name {
		font-size: 11.7px !important;
		letter-spacing: -0.26px;
		margin-bottom: 3px;
	}

	.tpd-order__product-art {
		font-size: 9px !important;
		margin-bottom: 8px;
	}

	.tpd-order__product-price,
	.tpd-order__product-price-now {
		font-size: 18px !important;
		letter-spacing: -0.6px;
	}

	.tpd-order__shop {
		margin-bottom: 20px;
	}

	.tpd-order__shop-title {
		font-size: 15.3px !important;
		letter-spacing: -0.5px;
		line-height: 1.25;
	}

	.tpd-order__shop-meta p,
	.tpd-order__shop-meta a {
		font-size: 11.7px !important;
		letter-spacing: -0.26px;
	}

	.tpd-order__shop-links a {
		font-size: 10.8px !important;
	}

	.tpd-order__status {
		font-size: 11.7px !important;
		letter-spacing: -0.26px;
	}

	.tpd-order__banner {
		padding: 14px 16px;
		font-size: 10.8px !important;
		letter-spacing: -0.22px;
		line-height: 1.65;
	}

	.tpd-order__submit {
		height: 54px;
		border-radius: 12px;
		font-size: 13.5px !important;
	}

	.tpd-order__input {
		font-size: 16px !important;
		letter-spacing: -0.32px;
	}

	.tpd-order__terms {
		font-size: 9.9px !important;
		letter-spacing: -0.22px;
		line-height: 1.65;
		padding-bottom: 4px;
	}
}


.tpd-bnpl-modal {
	position: fixed;
	inset: 0;
	z-index: 10000013;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.tpd-bnpl-modal[hidden] {
	display: none !important;
}

.tpd-bnpl-modal.is-open {
	display: flex !important;
}

.tpd-bnpl-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 17, 14, 0.55);
	backdrop-filter: blur(2px);
}

.tpd-bnpl-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(520px, 100%);
	max-height: calc(100vh - 32px);
	overflow: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
	outline: none;
}

.tpd-bnpl-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px 0;
}

.tpd-bnpl-modal__title {
	margin: 0;
	font-size: 18px;
	line-height: 1;
	letter-spacing: -0.54px;
	color: var(--tpd-text, #3c3c3c);
}

.tpd-bnpl-modal__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border: 0;
	background: none;
	cursor: pointer;
	line-height: 0;
}

.tpd-bnpl-modal__tabs {
	display: flex;
	gap: 6px;
	padding: 20px 28px 0;
}

.tpd-bnpl-modal__tab {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border: 0;
	border-radius: 4px;
	background: #f5f1ed;
	color: #8a7f78;
	font: inherit;
	font-size: 13px;
	line-height: 1;
	letter-spacing: -0.26px;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.tpd-bnpl-modal__tab.is-active {
	background: #3c3c3c;
	color: #fff;
}

.tpd-bnpl-modal__body {
	padding: 24px 28px 28px;
}

.tpd-bnpl-modal__hero {
	margin-bottom: 24px;
}

.tpd-bnpl-modal__amount {
	margin: 0 0 6px;
	font-size: 32px;
	line-height: 1.1;
	letter-spacing: -1.2px;
	color: var(--tpd-text, #3c3c3c);
}

.tpd-bnpl-modal__subtitle {
	margin: 0;
	font-size: 13px;
	line-height: 1.4;
	letter-spacing: -0.26px;
	color: #8a7f78;
}

.tpd-bnpl-modal__timeline {
	display: flex;
	position: relative;
	margin-bottom: 28px;
}

.tpd-bnpl-modal__timeline::before {
	content: "";
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	height: 1px;
	background: #e7e1db;
	z-index: 0;
}

.tpd-bnpl-modal__timeline-item {
	flex: 1;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

.tpd-bnpl-modal__timeline-item:first-child {
	align-items: flex-start;
}

.tpd-bnpl-modal__timeline-item:last-child {
	align-items: flex-end;
}

.tpd-bnpl-modal__timeline-item:not(:first-child):not(:last-child) {
	align-items: center;
}

.tpd-bnpl-modal__timeline-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	background: #fff;
	border: 1.5px solid #e7e1db;
	color: #8a7f78;
	font-size: 11px;
	line-height: 1;
}

.tpd-bnpl-modal__timeline-item.is-today .tpd-bnpl-modal__timeline-dot {
	background: #3c3c3c;
	border-color: #3c3c3c;
	color: #fff;
}

.tpd-bnpl-modal__timeline-label {
	margin: 0 0 2px;
	font-size: 11px;
	line-height: 1.2;
	letter-spacing: -0.22px;
	color: #8a7f78;
}

.tpd-bnpl-modal__timeline-value {
	margin: 0;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -0.3px;
	color: var(--tpd-text, #3c3c3c);
	font-weight: 500;
}

.tpd-bnpl-modal__divider {
	height: 1px;
	background: #f5f1ed;
	margin-bottom: 20px;
}

.tpd-bnpl-modal__steps-title {
	margin: 0 0 14px;
	font-size: 11px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8a7f78;
}

.tpd-bnpl-modal__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tpd-bnpl-modal__step {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.tpd-bnpl-modal__step-num {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #f5f1ed;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	line-height: 1;
	color: #8a7f78;
}

.tpd-bnpl-modal__step-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	letter-spacing: -0.26px;
	color: #5a524b;
}

.tpd-bnpl-modal__fineprint {
	margin: 20px 0 0;
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: -0.22px;
	color: #b5a99e;
}

body.tpd-bnpl-modal-open {
	overflow: hidden;
}

@media (max-width: 850px) {
	.tpd-bnpl-modal {
		align-items: flex-end;
		padding: 0;
	}

	.tpd-bnpl-modal__dialog {
		width: 100%;
		max-height: 92vh;
		border-radius: 12px 12px 0 0;
	}

	.tpd-bnpl-modal__header,
	.tpd-bnpl-modal__tabs,
	.tpd-bnpl-modal__body {
		padding-left: 20px;
		padding-right: 20px;
	}

	.tpd-bnpl-modal__amount {
		font-size: 26px;
	}
}

.tpd-store-modal {
	position: fixed !important;
	inset: 0 !important;
	z-index: 10000012 !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center !important;
}

.tpd-store-modal.is-hidden {
	display: none !important;
}

@media (min-width: 768px) {
	.tpd-store-modal {
		align-items: center !important;
	}
}

.tpd-store-modal__overlay {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(0, 0, 0, 0.5) !important;
	backdrop-filter: blur(2px) !important;
	-webkit-backdrop-filter: blur(2px) !important;
}

.tpd-store-modal__panel {
	position: relative !important;
	z-index: 1 !important;
	width: 100% !important;
	max-width: 100% !important;
	background: #fff !important;
	border-radius: 12px 12px 0 0 !important;
	overflow: hidden !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2) !important;
	font-family: "Styrene A Web", sans-serif !important;
}

@media (min-width: 768px) {
	.tpd-store-modal__panel {
		max-width: 480px !important;
		border-radius: 12px !important;
	}
}

.tpd-store-modal__header {
	display: flex !important;
	align-items: flex-start !important;
	justify-content: space-between !important;
	padding: 20px 20px 16px !important;
	border-bottom: 1px solid rgb(235, 230, 225) !important;
}

.tpd-store-modal__eyebrow {
	margin-bottom: 4px !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	color: rgb(203, 187, 167) !important;
}

.tpd-store-modal__title {
	margin: 0 !important;
	font-size: 22px !important;
	font-weight: 500 !important;
	letter-spacing: -0.8px !important;
	line-height: 26px !important;
	color: rgb(60, 60, 60) !important;
}

.tpd-store-modal__close {
	margin: 4px -4px 0 0 !important;
	padding: 4px !important;
	border: none !important;
	background: transparent !important;
	color: rgb(147, 147, 147) !important;
	cursor: pointer !important;
	transition: color 0.15s ease !important;
}

.tpd-store-modal__close:hover {
	color: rgb(60, 60, 60) !important;
}

.tpd-store-modal__map {
	position: relative !important;
	width: 100% !important;
	height: 180px !important;
	background: rgb(241, 237, 232) !important;
	overflow: hidden !important;
}

.tpd-store-modal__map img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.tpd-store-modal__body {
	display: flex !important;
	flex-direction: column !important;
	gap: 16px !important;
	padding: 20px !important;
}

.tpd-store-modal__row {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
}

.tpd-store-modal__row--center {
	align-items: center !important;
}

.tpd-store-modal__icon {
	display: inline-flex !important;
	flex-shrink: 0 !important;
	margin-top: 2px !important;
	color: rgb(203, 187, 167) !important;
}

.tpd-store-modal__row--center .tpd-store-modal__icon {
	margin-top: 0 !important;
}

.tpd-store-modal__primary {
	font-size: 15px !important;
	font-weight: 500 !important;
	letter-spacing: -0.3px !important;
	line-height: 1.3 !important;
	color: rgb(60, 60, 60) !important;
}

.tpd-store-modal__meta {
	margin-top: 2px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: rgb(147, 147, 147) !important;
}

.tpd-store-modal__phone {
	font-size: 15px !important;
	font-weight: 500 !important;
	letter-spacing: -0.3px !important;
	color: rgb(60, 60, 60) !important;
	text-decoration: none !important;
	transition: color 0.15s ease !important;
}

.tpd-store-modal__phone:hover {
	color: rgb(222, 222, 43) !important;
}

.tpd-store-modal__actions {
	display: flex !important;
	gap: 12px !important;
	margin-top: 4px !important;
}

.tpd-store-modal__btn {
	flex: 1 1 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	height: 44px !important;
	padding: 0 12px !important;
	border-radius: 6px !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	transition: background 0.15s ease, border-color 0.15s ease !important;
	box-sizing: border-box !important;
}

.tpd-store-modal__btn--primary {
	background: rgb(60, 60, 60) !important;
	color: #fff !important;
	border: none !important;
}

.tpd-store-modal__btn--primary:hover {
	background: rgb(40, 40, 40) !important;
	color: #fff !important;
}

.tpd-store-modal__btn--secondary {
	background: rgb(247, 243, 238) !important;
	color: rgb(60, 60, 60) !important;
	border: 1px solid rgb(225, 219, 213) !important;
}

.tpd-store-modal__btn--secondary:hover {
	background: rgb(240, 236, 230) !important;
	color: rgb(60, 60, 60) !important;
}

.tpd-delivery__place-btn {
	padding: 0;
	border: none;
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	text-align: left;
}

.tpd-delivery__place-btn:hover span {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.tpd-tabs,
	.product-reviews-wrapper-node {
		content-visibility: auto;
		contain-intrinsic-size: auto 480px;
	}
}

.tpd-tryon-modal {
	position: fixed;
	inset: 0;
	z-index: 10000014;
	display: none;
	flex-direction: column;
	justify-content: flex-end;
}

.tpd-tryon-modal[hidden] {
	display: none;
}

.tpd-tryon-modal.is-open {
	display: flex;
}

.tpd-tryon-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.tpd-tryon-modal__sheet {
	position: relative;
	background: #faf9f7;
	border-radius: 16px 16px 0 0;
	padding: 28px 24px 40px;
}

.tpd-tryon-modal__handle {
	width: 36px;
	height: 4px;
	border-radius: 2px;
	background: #ddd8d3;
	margin: 0 auto 24px;
}

.tpd-tryon-modal__hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 28px;
}

.tpd-tryon-modal__app-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: #f0ece8;
	border: 1.5px solid #e2ddd8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-sizing: border-box;
}

.tpd-tryon-modal__title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.5px;
	line-height: 1.2;
	color: #1a1a1a;
}

.tpd-tryon-modal__lead {
	margin: 0;
	max-width: 280px;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: -0.22px;
	line-height: 1.5;
	color: #8a7f78;
}

.tpd-tryon-modal__stores {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tpd-tryon-modal__store {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	border-radius: 12px;
	text-decoration: none;
	box-sizing: border-box;
}

.tpd-tryon-modal__store > span:not(.tpd-tryon-modal__badge) {
	display: flex;
	flex-direction: column;
}

.tpd-tryon-modal__badge {
	margin-left: auto;
	padding: 2px 7px;
	border-radius: 4px;
	background: rgba(180, 120, 0, 0.09);
	color: #9a6a00;
	font-size: 10px;
	letter-spacing: -0.1px;
	white-space: nowrap;
	flex-shrink: 0;
}

.tpd-tryon-modal__desktop {
	display: none;
}

.tpd-tryon-modal__store-caption {
	font-size: 10px;
	letter-spacing: 0.2px;
	line-height: 1.2;
	color: #a09890;
}

.tpd-tryon-modal__store-name {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: -0.3px;
	line-height: 1.2;
	color: #1a1a1a;
}

.tpd-tryon-modal__store--apple,
.tpd-tryon-modal__store--google {
	background: #fff;
	border: 1.5px solid #e7e1db;
}

body.tpd-tryon-open {
	overflow: hidden;
}

@media (min-width: 851px) {
	.tpd-tryon-card {
		position: absolute;
		top: auto;
		right: auto;
		bottom: 0;
		left: 0;
		z-index: 4;
		display: flex !important;
		align-items: center;
		gap: 12px;
		padding: 12px 14px 12px 14px;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 16px;
		background: rgba(20, 18, 15, 0.66);
		box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		text-align: left;
		font: inherit;
		color: #fff;
	}

	.tpd-tryon-card[hidden],
	html.tpd-tryon-card-hidden .tpd-tryon-card {
		display: none !important;
	}

	.tpd-tryon-card__close {
		order: 3;
		width: 22px;
		height: 22px;
		margin-left: 4px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.16);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		flex-shrink: 0;
		padding: 0;
	}

	.tpd-tryon-card__row {
		display: flex;
		align-items: center;
		gap: 12px;
		min-width: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: inherit;
		font: inherit;
		text-align: left;
		cursor: pointer;
	}

	.tpd-tryon-card__icon {
		flex-shrink: 0;
		width: 38px;
		height: 38px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.16);
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.tpd-tryon-card__text {
		display: flex;
		flex-direction: column;
		gap: 3px;
		min-width: 0;
	}

	.tpd-tryon-card__title {
		font-size: 14px;
		font-weight: 500;
		letter-spacing: -0.28px;
		line-height: 1.2;
		color: #fff;
		white-space: nowrap;
	}

	.tpd-tryon-card__sub {
		font-size: 11px;
		letter-spacing: -0.15px;
		line-height: 1.2;
		color: rgba(255, 255, 255, 0.5);
		white-space: nowrap;
	}

	.tpd-tryon-modal {
		justify-content: center;
		align-items: center;
	}

	.tpd-tryon-modal__mobile {
		display: none;
	}

	.tpd-tryon-modal__desktop {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		width: 420px;
		padding: 32px;
		border-radius: 20px;
		background: #faf9f7;
		box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
		box-sizing: border-box;
	}

	.tpd-tryon-modal__close {
		position: absolute;
		top: 14px;
		right: 14px;
		width: 28px;
		height: 28px;
		border: 0;
		border-radius: 50%;
		background: #f0ece8;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.tpd-tryon-modal__mark {
		display: block;
		width: 110px;
		height: 16px;
	}

	.tpd-tryon-modal__desk-title {
		margin: 14px 0 6px;
		font-size: 18px;
		font-weight: 500;
		letter-spacing: -0.5px;
		line-height: 1.2;
		color: #1e1b18;
	}

	.tpd-tryon-modal__desk-lead {
		margin: 0 0 24px;
		font-size: 13px;
		letter-spacing: -0.2px;
		line-height: 1.5;
		color: #9a9088;
	}

	.tpd-tryon-modal__qr {
		display: flex;
		gap: 12px;
		width: 100%;
	}

	.tpd-tryon-modal__qr-card {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding: 18px 12px 16px;
		background: #fff;
		border: 1px solid #e7e1db;
		border-radius: 12px;
		text-decoration: none;
		color: inherit;
	}

	.tpd-tryon-modal__qr-card img {
		width: 120px;
		height: 120px;
		display: block;
	}

	.tpd-tryon-modal__qr-label {
		display: flex;
		align-items: center;
		gap: 6px;
		font-size: 13px;
		font-weight: 500;
		letter-spacing: -0.22px;
		color: #1e1b18;
	}

	.tpd-tryon-modal__badge--desk {
		margin-left: 0;
	}
}

.tpd-error[hidden] {
	display: none !important;
}

body.tpd-error-drawer-open {
	overflow: hidden;
	padding-right: var(--tpd-scrollbar, 0px);
}

body.tpd-error-drawer-open .header {
	right: var(--tpd-scrollbar, 0px);
}

.tpd-error {
	position: fixed;
	inset: 0;
	z-index: 10000013;
}

.tpd-error__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 20, 20, 0.4);
	backdrop-filter: blur(2px);
}

.tpd-error__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(480px, 100%);
	display: flex;
	flex-direction: column;
	background: #f5f1ed;
	box-shadow: -12px 0 48px rgba(0, 0, 0, 0.14);
	animation: tpdErrorIn 0.38s cubic-bezier(0.32, 0, 0.15, 1);
}

.tpd-error__panel:focus {
	outline: none;
}

@keyframes tpdErrorIn {
	from { transform: translateX(100%); }
	to { transform: translateX(0); }
}

.tpd-error__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	padding: 20px 32px;
	border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.tpd-error__logo {
	display: block;
	width: 110px;
	height: 16px;
}

.tpd-error__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	border: 0;
	background: none;
	color: rgba(26, 26, 26, 0.35);
	cursor: pointer;
	line-height: 0;
}

.tpd-error__close:hover {
	color: #1a1a1a;
}

.tpd-error__body {
	flex: 1;
	overflow-y: auto;
	padding: 36px 32px;
}

.tpd-error__form {
	max-width: 340px;
}

.tpd-error__title {
	margin: 0 0 6px !important;
	font-size: 23px !important;
	font-weight: 500 !important;
	letter-spacing: -0.5px !important;
	line-height: 1.25 !important;
	text-transform: none !important;
	color: #1a1a1a !important;
}

.tpd-error__lead {
	margin: 0 0 24px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(26, 26, 26, 0.45);
}

.tpd-error__product {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding: 10px 12px;
	border-radius: 6px;
	background: rgba(26, 26, 26, 0.05);
}

.tpd-error__product-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
}

.tpd-error__product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tpd-error__product-name {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: -0.2px;
	color: #1a1a1a;
}

.tpd-error__product-meta {
	margin: 2px 0 0;
	font-size: 11px;
	letter-spacing: -0.15px;
	color: rgba(26, 26, 26, 0.4);
}

.tpd-error__types-label {
	margin: 0 0 8px;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(26, 26, 26, 0.38);
}

.tpd-error__type {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin: 0 0 6px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	text-align: left;
	font: inherit;
	font-size: 14px;
	letter-spacing: -0.22px;
	color: rgba(26, 26, 26, 0.6);
}

.tpd-error__type.is-active {
	color: #1a1a1a;
}

.tpd-error__radio {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	box-sizing: border-box;
	border: 1.5px solid rgba(26, 26, 26, 0.22);
	border-radius: 50%;
	background: transparent;
}

.tpd-error__radio::after {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #f5f1ed;
	opacity: 0;
}

.tpd-error__type.is-active .tpd-error__radio {
	border-color: #1a1a1a;
	background: #1a1a1a;
}

.tpd-error__type.is-active .tpd-error__radio::after {
	opacity: 1;
}

.tpd-error__field {
	position: relative;
	display: block;
	margin: 24px 0 0;
	padding-top: 20px;
}

.tpd-error__textarea,
.tpd-error__input {
	display: block;
	width: 100%;
	padding: 4px 0 8px;
	border: 0;
	border-bottom: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 0;
	background: transparent;
	font: inherit;
	font-size: 15px;
	color: #1a1a1a;
	outline: none;
	resize: none;
}

.tpd-error__placeholder {
	position: absolute;
	left: 0;
	top: 24px;
	pointer-events: none;
	font-size: 15px;
	color: rgba(26, 26, 26, 0.38);
	transition: top 0.2s, font-size 0.2s, color 0.2s;
}

.tpd-error__field.is-filled .tpd-error__placeholder,
.tpd-error__field.is-focus .tpd-error__placeholder {
	top: 0;
	font-size: 11px;
	color: rgba(26, 26, 26, 0.45);
}

.tpd-error__msg {
	margin: 12px 0 0;
	font-size: 13px;
	color: #b42318;
}

.tpd-error__submit {
	width: 100%;
	height: 44px;
	margin-top: 24px;
	padding: 0 16px;
	border: 0;
	border-radius: 0;
	background: #1a1a1a;
	color: #f5f1ed;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.tpd-error__submit:disabled {
	background: rgba(26, 26, 26, 0.1);
	color: rgba(26, 26, 26, 0.3);
	cursor: not-allowed;
}

.tpd-error__success {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 340px;
	padding: 40px 0 0;
	text-align: center;
}

.tpd-error__form[hidden],
.tpd-error__success[hidden] {
	display: none !important;
}

.tpd-error__check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: #dede2b;
}

.tpd-error__success-title {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -0.4px;
	color: #1a1a1a;
}

.tpd-error__success-text {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(26, 26, 26, 0.45);
}

@media (max-width: 850px) {
	.tpd-error__head,
	.tpd-error__body {
		padding-left: 20px;
		padding-right: 20px;
	}
}