:root {
	--tmv9-red: #AD1716;
	--tmv9-red-dark: #8E1211;
	--tmv9-ink: #141212;
	--tmv9-warm: #F7F5F1;
	--tmv9-line: #DEDAD5;
	--tmv9-muted: #6E6A66;
	--tmv9-shell: 1440px;
	--tmv9-radius: 12px;
}

.tmv9-topbar,
.tmv9-header,
.tmv9-header *,
.tmv9-request,
.tmv9-request *,
.tmv9-footer,
.tmv9-footer * {
	box-sizing: border-box;
}

.tmv9-topbar,
.tmv9-header,
.tmv9-request,
.tmv9-footer {
	font-family: Poppins, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.tmv9-shell {
	width: min(calc(100% - 56px), var(--tmv9-shell));
	margin-inline: auto;
}

.tmv9-skip {
	position: fixed;
	z-index: 100000;
	left: 16px;
	top: 10px;
	padding: 10px 14px;
	background: var(--tmv9-ink);
	color: #fff;
	transform: translateY(-150%);
}

.tmv9-skip:focus {
	transform: none;
}

.tmv9-topbar {
	position: relative;
	z-index: 1001;
	background: var(--tmv9-ink);
	color: #fff;
	font-size: 12px;
}

.tmv9-topbar-inner {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.tmv9-topbar p {
	margin: 0;
	color: #fff;
	font-size: inherit;
	font-weight: 700;
}

.tmv9-topbar a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .86);
	white-space: nowrap;
}

.tmv9-topbar a:hover,
.tmv9-topbar a strong {
	color: #fff;
}

.tmv9-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: transparent;
	transition: box-shadow .22s ease;
}

body.admin-bar .tmv9-header {
	top: 32px;
}

.tmv9-header.is-scrolled {
	box-shadow: 0 14px 34px rgba(20, 18, 18, .12);
}

.tmv9-brandbar {
	background: var(--tmv9-red);
	color: #fff;
}

.tmv9-brandbar-inner {
	min-height: 70px;
	display: flex;
	align-items: center;
	gap: 24px;
}

.tmv9-brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.tmv9-brand img {
	display: block;
	width: 260px;
	height: auto;
	max-height: 31px;
	object-fit: contain;
}

.tmv9-utility {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.tmv9-utility-button,
.tmv9-menu-toggle,
.tmv9-search-close,
.tmv9-request-close {
	border: 0;
	font: inherit;
	cursor: pointer;
}

.tmv9-utility-button {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	padding: 0;
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.tmv9-utility-button:hover,
.tmv9-utility-button[aria-expanded="true"] {
	background: rgba(255, 255, 255, .15);
}

.tmv9-icon {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.tmv9-icon-search {
	border: 2px solid currentColor;
	border-radius: 50%;
	transform: scale(.68);
}

.tmv9-icon-search::after {
	content: "";
	position: absolute;
	width: 9px;
	height: 2px;
	right: -7px;
	bottom: -4px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: left center;
}

.tmv9-icon-close::before,
.tmv9-icon-close::after {
	content: "";
	position: absolute;
	left: 9px;
	top: 2px;
	width: 2px;
	height: 16px;
	background: currentColor;
}

.tmv9-icon-close::before { transform: rotate(45deg); }
.tmv9-icon-close::after { transform: rotate(-45deg); }

.tmv9-lang {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, .42);
	border-radius: 999px;
	overflow: hidden;
}

.tmv9-lang a {
	min-width: 36px;
	min-height: 32px;
	display: grid !important;
	place-items: center;
	padding: 0 9px !important;
	background: transparent !important;
	color: rgba(255, 255, 255, .72) !important;
	font-size: 11px !important;
	font-weight: 850;
}

.tmv9-lang a:first-child,
.tmv9-lang a.gt-current-lang {
	background: #fff !important;
	color: var(--tmv9-red) !important;
}

.tmv9-account-links {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .9);
	font-size: 11px;
	font-weight: 750;
	white-space: nowrap;
}

.tmv9-account-links a { color: inherit; }
.tmv9-account-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.tmv9-account-links span { color: rgba(255, 255, 255, .45); }

.tmv9-cart {
	position: relative;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	color: #fff !important;
}

.tmv9-cart:hover { background: rgba(255, 255, 255, .15); color: #fff; }

.tmv9-cart-icon {
	display: block;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tmv9-cart-icon circle { fill: currentColor; stroke: none; }

.tmv9-cart-count {
	position: absolute;
	right: -1px;
	top: -1px;
	min-width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	padding: 0 4px;
	border-radius: 99px;
	background: #fff;
	color: var(--tmv9-red);
	font-size: 8px;
	font-weight: 900;
	box-shadow: 0 3px 9px rgba(0, 0, 0, .12);
}

.tmv9-cart-count .wd-cart-number,
.tmv9-cart-count .wd-tools-count {
	position: static;
	min-width: 0;
	height: auto;
	padding: 0;
	background: transparent;
	color: inherit;
	font: inherit;
}

.tmv9-cart-count .wd-cart-number > span,
.tmv9-cart-count .wd-tools-count > span { display: none; }

.tmv9-menu-toggle {
	display: none;
	position: relative;
	width: 42px;
	height: 42px;
	padding: 0;
	background: transparent;
}

.tmv9-menu-toggle span {
	position: absolute;
	left: 10px;
	right: 10px;
	top: 50%;
	height: 2px;
	background: #fff;
	transition: transform .2s ease;
}

.tmv9-menu-toggle span:first-child { transform: translateY(-4px); }
.tmv9-menu-toggle span:last-child { transform: translateY(4px); }
.tmv9-menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.tmv9-menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.tmv9-navrow {
	background: #fff;
	border-bottom: 1px solid var(--tmv9-line);
}

.tmv9-navrow-inner {
	min-height: 55px;
	display: flex;
	align-items: center;
	gap: 22px;
}

.tmv9-nav { min-width: 0; flex: 1 1 auto; }

.tmv9-nav-list,
.tmv9-mobile-nav-list,
.tmv9-submenu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tmv9-nav-list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.55vw, 25px);
	min-height: 55px;
	font-size: 12px;
	font-weight: 720;
}

.tmv9-nav-list > li {
	position: relative;
	top: auto !important;
	display: flex;
	align-items: stretch;
	flex: 0 0 auto;
	margin: 0 !important;
	transform: none !important;
}

.tmv9-nav-list > li > a {
	position: relative;
	top: auto !important;
	display: flex;
	align-items: center;
	min-height: 55px;
	margin: 0 !important;
	padding: 0;
	color: var(--tmv9-ink);
	transform: none !important;
	white-space: nowrap;
}

.tmv9-nav-list > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	height: 2px;
	border-radius: 2px;
	background: var(--tmv9-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .22s ease;
}

.tmv9-nav-list > li:hover > a::after,
.tmv9-nav-list > li:focus-within > a::after,
.tmv9-nav-list > li.is-current > a::after { transform: scaleX(1); }

.tmv9-nav-list > .has-submenu > a { padding-right: 15px; }
.tmv9-nav-list > .has-submenu > a::before {
	content: "";
	position: absolute;
	right: 1px;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
}

.tmv9-submenu {
	position: absolute;
	z-index: 40;
	left: -18px;
	top: calc(100% - 3px);
	width: 280px;
	padding: 10px;
	border: 1px solid var(--tmv9-line);
	border-radius: var(--tmv9-radius);
	background: #fff;
	box-shadow: 0 20px 44px rgba(20, 18, 18, .14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.has-submenu:hover > .tmv9-submenu,
.has-submenu:focus-within > .tmv9-submenu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.tmv9-submenu a {
	display: block;
	padding: 10px 11px;
	border-radius: 8px;
	color: var(--tmv9-ink);
	font-size: 11px;
	font-weight: 650;
}

.tmv9-submenu a:hover,
.tmv9-submenu a:focus { background: var(--tmv9-warm); color: var(--tmv9-red); }

.tmv9-button,
body .tmv9-navrow .tmv9-header-cta.tmv9-button {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 17px;
	border: 1px solid transparent !important;
	border-radius: 12px;
	background: #AD1716 !important;
	background-clip: padding-box;
	box-shadow: 0 12px 28px rgba(173, 23, 22, .22) !important;
	color: #fff !important;
	font: inherit;
	font-size: 11px;
	font-weight: 820;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.tmv9-button:hover,
.tmv9-button:focus-visible,
body .tmv9-navrow .tmv9-header-cta.tmv9-button:hover,
body .tmv9-navrow .tmv9-header-cta.tmv9-button:focus-visible {
	border-color: transparent !important;
	background: #8E1211 !important;
	box-shadow: 0 16px 32px rgba(173, 23, 22, .28) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.tmv9-search-panel {
	background: #fff;
	border-bottom: 1px solid var(--tmv9-line);
}

.tmv9-search-panel[hidden] { display: none; }

.tmv9-search-inner {
	min-height: 82px;
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) 38px;
	align-items: center;
	gap: 22px;
	padding-block: 11px;
}

.tmv9-search-copy strong,
.tmv9-search-copy span { display: block; }
.tmv9-search-copy strong { color: var(--tmv9-ink); font-size: 13px; }
.tmv9-search-copy span { margin-top: 3px; color: var(--tmv9-muted); font-size: 9px; }

.tmv9-search-widget .searchform,
.tmv9-search-widget form {
	margin: 0;
	border-radius: var(--tmv9-radius) !important;
	background: var(--tmv9-warm) !important;
	background-clip: padding-box;
}

.tmv9-search-widget input[type="text"],
.tmv9-search-widget input[type="search"] {
	min-height: 54px;
	font-family: inherit;
	font-size: 13px;
}

.tmv9-search-close,
.tmv9-request-close {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid var(--tmv9-line);
	border-radius: 50%;
	background: #fff;
	color: var(--tmv9-ink);
}

.tmv9-mobile-menu { display: none; }

.tmv9-overlay {
	position: fixed;
	z-index: 1090;
	inset: 0;
	background: rgba(15, 15, 15, .42);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.tmv9-overlay.is-visible { opacity: 1; visibility: visible; }

.tmv9-request {
	position: fixed;
	z-index: 1100;
	top: var(--tmv9-request-top, 124px);
	right: max(28px, calc((100vw - var(--tmv9-shell)) / 2 + 28px));
	width: min(720px, calc(100vw - 56px));
	padding: 22px;
	border: 1px solid var(--tmv9-line);
	border-radius: var(--tmv9-radius);
	background: #fff;
	box-shadow: 0 24px 70px rgba(20, 18, 18, .18);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.tmv9-request.is-open { opacity: 1; visibility: visible; transform: none; }

.tmv9-request-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding: 3px 4px 17px;
	border-bottom: 1px solid var(--tmv9-line);
}

.tmv9-request-head span { display: block; color: var(--tmv9-red); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.tmv9-request-head strong { display: block; margin-top: 4px; color: var(--tmv9-ink); font-size: 19px; letter-spacing: -.025em; }

.tmv9-request-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }

.tmv9-request-option {
	min-height: 195px;
	display: flex;
	flex-direction: column;
	padding: 18px;
	border: 1px solid var(--tmv9-line);
	border-radius: var(--tmv9-radius);
	background: var(--tmv9-warm);
	background-clip: padding-box;
	color: var(--tmv9-ink);
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tmv9-request-option:hover,
.tmv9-request-option:focus { transform: translateY(-2px); border-color: var(--tmv9-red); background: #fff; color: var(--tmv9-ink); }

.tmv9-request-icon {
	position: relative;
	width: 43px;
	height: 43px;
	display: grid;
	place-items: center;
	border-radius: var(--tmv9-radius);
	background: var(--tmv9-ink);
	color: #fff;
}

.tmv9-request-icon-tile::before {
	content: "";
	width: 21px;
	height: 21px;
	border: 1.5px solid currentColor;
	background: linear-gradient(90deg, transparent 31%, currentColor 32%, currentColor 35%, transparent 36%, transparent 64%, currentColor 65%, currentColor 68%, transparent 69%), linear-gradient(transparent 31%, currentColor 32%, currentColor 35%, transparent 36%, transparent 64%, currentColor 65%, currentColor 68%, transparent 69%);
}

.tmv9-request-icon-folder::before {
	content: "";
	width: 23px;
	height: 16px;
	border: 1.5px solid currentColor;
	border-radius: 2px;
	transform: skew(-4deg);
}

.tmv9-request-option h3 { margin: 25px 0 6px; color: var(--tmv9-ink); font-size: 17px; line-height: 1.15; }
.tmv9-request-option p { margin: 0; color: var(--tmv9-muted); font-size: 10.5px; line-height: 1.65; }
.tmv9-request-option b { display: inline-flex; gap: 7px; margin-top: auto; padding-top: 14px; color: var(--tmv9-red); font-size: 10px; }

.tmv9-request-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 13px; padding: 13px 4px 0; color: var(--tmv9-muted); font-size: 10px; }
.tmv9-request-foot a { color: var(--tmv9-ink); font-weight: 800; }

body.tmv9-request-open,
body.tmv9-mobile-open { overflow: hidden; }

.tmv9-footer {
	padding: 72px 0 24px;
	background: var(--tmv9-ink);
	color: #fff;
}

.tmv9-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, .65fr);
	gap: 60px;
	padding-bottom: 54px;
}

.tmv9-footer-brand img { display: block; width: 235px; height: auto; }
.tmv9-footer-brand p { max-width: 420px; margin: 22px 0 0; color: rgba(255, 255, 255, .58); font-size: 11px; line-height: 1.75; }

.tmv9-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, .6); font-size: 10px; line-height: 1.7; }
.tmv9-footer-column strong { margin-bottom: 7px; color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.tmv9-footer-column a { color: inherit; }
.tmv9-footer-column a:hover { color: #fff; }
.tmv9-footer-note { margin-top: 7px; padding: 7px 9px; border: 1px solid rgba(255, 255, 255, .15); border-radius: var(--tmv9-radius); color: rgba(255, 255, 255, .76); }

.tmv9-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .4);
	font-size: 9px;
}

.tmv9-footer-legal {
	max-width: 980px;
	line-height: 1.65;
}

@media (max-width: 1260px) {
	.tmv9-nav-list { gap: 13px; font-size: 10.5px; }
	.tmv9-header-cta { padding-inline: 12px; font-size: 10px; }
	.tmv9-account-links { font-size: 10px; }
	.tmv9-footer-grid { gap: 32px; }
}

@media (max-width: 1100px) {
	.tmv9-navrow { display: none; }
	.tmv9-menu-toggle { display: block; }
	.tmv9-mobile-menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: block;
		max-height: calc(100dvh - 102px);
		overflow: auto;
		padding: 18px 28px 26px;
		border-bottom: 1px solid var(--tmv9-line);
		background: #fff;
		box-shadow: 0 20px 36px rgba(0, 0, 0, .12);
	}
	.tmv9-mobile-menu[hidden] { display: none; }
	.tmv9-mobile-nav-list > li > a { display: block; padding: 13px 3px; border-bottom: 1px solid var(--tmv9-line); color: var(--tmv9-ink); font-size: 13px; font-weight: 750; }
	.tmv9-mobile-nav-list .tmv9-submenu { position: static; width: auto; padding: 5px 0 8px 15px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.tmv9-mobile-nav-list .tmv9-submenu a { padding-block: 8px; }
	.tmv9-mobile-account { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: center; margin-top: 12px; }
	.tmv9-mobile-account > a { padding: 10px; border: 1px solid var(--tmv9-line); border-radius: var(--tmv9-radius); color: var(--tmv9-ink); text-align: center; font-size: 10px; }
	.tmv9-lang-mobile { border-color: var(--tmv9-line); }
	.tmv9-lang-mobile a { color: var(--tmv9-muted) !important; }
	.tmv9-lang-mobile a:first-child,
	.tmv9-lang-mobile a.gt-current-lang { background: var(--tmv9-red) !important; color: #fff !important; }
	.tmv9-mobile-cta { width: 100%; margin-top: 14px; }
	.tmv9-footer-grid { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 28px; }
}

@media (max-width: 782px) {
	body.admin-bar .tmv9-header { top: 46px; }
}

@media (max-width: 760px) {
	.tmv9-shell { width: min(calc(100% - 28px), var(--tmv9-shell)); }
	.tmv9-topbar-inner { min-height: 34px; justify-content: center; }
	.tmv9-topbar p { font-size: 9px; text-align: center; }
	.tmv9-topbar a { display: none; }
	.tmv9-brandbar-inner { min-height: 64px; gap: 8px; }
	.tmv9-brand img { width: 178px; }
	.tmv9-utility { gap: 2px; }
	.tmv9-account-links,
	.tmv9-lang-desktop { display: none; }
	.tmv9-utility-button,
	.tmv9-cart,
	.tmv9-menu-toggle { width: 38px; height: 38px; }
	.tmv9-mobile-menu { padding: 14px 14px 24px; }
	.tmv9-mobile-account { grid-template-columns: 1fr 1fr; }
	.tmv9-mobile-account .tmv9-lang { grid-column: 1 / -1; justify-self: start; }
	.tmv9-search-inner { min-height: 74px; grid-template-columns: minmax(0, 1fr) 36px; gap: 8px; padding-block: 9px; }
	.tmv9-search-copy { display: none; }
	.tmv9-request {
		top: auto;
		right: 14px;
		left: 14px;
		bottom: 14px;
		width: auto;
		max-height: calc(100dvh - 28px);
		overflow: auto;
		padding: 18px;
	}
	.tmv9-request-options { grid-template-columns: 1fr; }
	.tmv9-request-option { min-height: 150px; }
	.tmv9-request-foot { align-items: flex-start; flex-direction: column; gap: 5px; }
	.tmv9-footer { padding-top: 58px; }
	.tmv9-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
	.tmv9-footer-brand { grid-column: 1 / -1; }
	.tmv9-footer-bottom { flex-direction: column; gap: 7px; }
}

@media (max-width: 430px) {
	.tmv9-brand img { width: 158px; }
	.tmv9-footer-grid { grid-template-columns: 1fr; }
	.tmv9-footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
	.tmv9-header *,
	.tmv9-request,
	.tmv9-overlay { transition: none !important; }
}
