@font-face {
	font-family: "TT Travels Next";
	src: url("../fonts/TT_Travels_Next_Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "TT Travels Next";
	src: url("../fonts/TT_Travels_Next_ExtraBold.woff2") format("woff2");
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "TT Travels Next";
	src: url("../fonts/TT_Travels_Next_Black.woff2") format("woff2");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "TT Travels Next Outline";
	src: url("../fonts/TT_Travels_Next_Black_Outline.woff2") format("woff2");
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--black: #050505;
	--white: #fff;
	--ink: #151515;
	--paper: #f7f6f2;
	--muted: #5c5c5c;
	--rebecca: #6c2d90;
	--bubblegum: #f3a7b6;
	--ciclamino: #d33b83;
	--lacca: #c0131f;
	--camelioska: #f3d25e;
	--manifesto: #22a969;
	--pad: clamp(20px, 3.2vw, 56px);
	--header-h: 100px;
	--display: "TT Travels Next", "Arial Narrow", "Plus Jakarta Sans", Arial, sans-serif;
	--body: "Plus Jakarta Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--black);
	color: var(--white);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.5;
}
body:not(.has-overlay-header) { padding-top: var(--header-h); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
.screen-reader-text, .skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	color: #000;
}

.site-header {
	position: fixed;
	z-index: 1000;
	inset: 0 0 auto;
	height: var(--header-h);
	color: #fff;
	background: transparent;
	transition: background-color .35s ease, box-shadow .35s ease;
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-header.is-scrolled,
body:not(.has-overlay-header) .site-header,
.menu-is-open .site-header {
	background: #050505;
	box-shadow: 0 1px rgba(255, 255, 255, .1);
}
.site-header__inner {
	height: 100%;
	display: grid;
	grid-template-columns: minmax(210px, 360px) 1fr auto;
	align-items: center;
	gap: clamp(22px, 3vw, 58px);
	padding: 0 var(--pad);
}
.site-branding {
	position: relative;
	z-index: 1002;
	display: block;
	width: max-content;
}
.site-branding img { width: auto; height: 30px; }

.primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(30px, 4vw, 70px);
	padding: 0;
	margin: 0;
	list-style: none;
}
.primary-menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	min-height: var(--header-h);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-shadow: 0 1px 18px rgba(0, 0, 0, .25);
}
.primary-menu > .menu-item:hover > a,
.primary-menu > .menu-item:focus-within > a {
	text-decoration: underline;
	text-underline-offset: 7px;
	text-decoration-thickness: 2px;
}

.menu-item { position: relative; }
.menu-item--dropdown::after {
	content: "";
	position: absolute;
	left: -18px;
	right: -18px;
	top: calc(100% - 20px);
	height: 38px;
}
.submenu-panel {
	position: absolute;
	top: calc(100% - 20px);
	left: 50%;
	z-index: 1001;
	width: min(520px, calc(100vw - 40px));
	min-height: 330px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 30px 40px;
	background: var(--submenu-bg);
	color: var(--submenu-link);
	text-align: center;
	box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, -8px);
	transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.menu-item:hover > .submenu-panel,
.menu-item:focus-within > .submenu-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.submenu-panel a {
	color: var(--submenu-link);
	font-size: 15px;
	line-height: 1.08;
	font-weight: 500;
	text-shadow: none;
	text-transform: none;
	letter-spacing: -.02em;
}
.submenu-panel a:hover {
    text-decoration: underline;
}
.submenu-panel--two-col {
	width: min(940px, calc(100vw - 80px));
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: clamp(38px, 7vw, 110px);
	text-align: left;
}
.submenu-panel__col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}
.submenu-panel__heading {
	color: var(--submenu-link);
    margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.08;
	font-weight: 800;
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2vw, 38px);
	position: relative;
	z-index: 1002;
}
.header-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
	white-space: nowrap;
	text-shadow: 0 1px 18px rgba(0, 0, 0, .25);
}
.header-action svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.header-action--search span { display: none; }
.header-cart__count {
	position: static;
	display: inline;
	min-width: 0;
	height: auto;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}
.menu-toggle {
	display: none;
	border: 0;
	background: none;
	color: inherit;
	padding: 7px;
}
.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 25px;
	height: 1px;
	background: currentColor;
	margin: 6px 0;
}

.hero-slider {
	position: relative;
	height: 100vh;
	height: 100svh;
	min-height: 600px;
	overflow: hidden;
	background: #111;
	touch-action: pan-y;
}
.hero-slider__track {
	display: flex;
	height: 100%;
	transition: transform .95s cubic-bezier(.77, 0, .18, 1);
	will-change: transform;
}
.hero-slide {
	position: relative;
	flex: 0 0 100%;
	height: 100%;
	overflow: hidden;
}
.hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .2), transparent 36%);
	pointer-events: none;
}
.hero-slide > img,
.hero-slide > video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.035);
	transition: transform 6s ease;
}
.hero-slide.is-active > img,
.hero-slide.is-active > video { transform: scale(1); }

.brand-intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 30px;
	padding: clamp(80px, 11vw, 160px) var(--pad);
	background: var(--paper);
	color: var(--ink);
}
.brand-intro__kicker {
	font-family: var(--display);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .22em;
	text-transform: uppercase;
}
.brand-intro h1 {
	max-width: 1120px;
	margin: 0;
	font-family: var(--display);
	font-size: 70px;
	line-height: .86;
	letter-spacing: -.065em;
}
.brand-intro p {
	max-width: 720px;
	margin: 0;
	color: #3f3f3f;
	font-size: clamp(17px, 1.55vw, 23px);
	line-height: 1.45;
}
.brand-intro--secondary {
	background: var(--paper);
}

.glitch-section {
	display: block;
	padding: clamp(48px, 6vw, 96px) 0 0;
	background: #fff;
	color: var(--ink);
}
.section-heading {
	padding: 0 var(--pad) clamp(34px, 5vw, 72px);
	text-align: center;
}
.section-heading h1 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(38px, 3.3vw, 70px);
	line-height: 1.08;
	letter-spacing: -.035em;
	text-transform: none;
}
.product-mosaic {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}
.product-mosaic.is-dragging { cursor: grabbing; }
.product-mosaic__track {
	display: flex;
	width: 100%;
	transition: transform .75s cubic-bezier(.77, 0, .18, 1);
	will-change: transform;
}
.mosaic-product {
	position: relative;
	flex: 0 0 25%;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--tile-bg, var(--bubblegum));
	margin: 0 !important;
	isolation: isolate;
	transition: background-color .55s ease;
}
.mosaic-product::before,
.mosaic-product::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
	transition: background-color .55s ease, transform .55s ease;
}
.mosaic-product::before {
	inset: 0;
	background: var(--tile-mark, var(--lacca));
	mask: url("../img/tmc-logo.svg") center / 118% 118% no-repeat;
	-webkit-mask: url("../img/tmc-logo.svg") center / 118% 118% no-repeat;
}
.mosaic-product::after {
	display: none;
}
.mosaic-product__image {
	position: absolute;
	inset: 11%;
	z-index: 1;
	display: grid;
	place-items: center;
	padding: 0;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}
.mosaic-product__image img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	filter: drop-shadow(0 20px 28px rgba(0, 0, 0, .16));
	transition: transform .6s cubic-bezier(.22, 1, .36, 1), filter .35s;
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
}
.mosaic-product__overlay {
	position: absolute;
	z-index: 2;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: clamp(14px, 1.6vw, 24px);
	background: rgba(0, 0, 0, .88);
	color: #fff;
	opacity: 0;
	transform: translateY(12px);
	transition: .35s ease;
	pointer-events: none;
}
.pattern-1 { --tile-bg: var(--camelioska); --tile-mark: var(--rebecca); }
.pattern-2 { --tile-bg: var(--lacca); --tile-mark: var(--camelioska); }
.pattern-3 { --tile-bg: var(--rebecca); --tile-mark: var(--bubblegum); }
.pattern-4 { --tile-bg: var(--bubblegum); --tile-mark: var(--rebecca); }
.pattern-5 { --tile-bg: var(--manifesto); --tile-mark: var(--rebecca); }
.pattern-6 { --tile-bg: var(--bubblegum); --tile-mark: var(--lacca); }
.pattern-7 { --tile-bg: var(--ciclamino); --tile-mark: var(--manifesto); }
.pattern-8 { --tile-bg: var(--bubblegum); --tile-mark: var(--camelioska); }
.pattern-9 { --tile-bg: var(--camelioska); --tile-mark: var(--lacca); }
.pattern-10 { --tile-bg: var(--manifesto); --tile-mark: var(--bubblegum); }
.pattern-11 { --tile-bg: var(--lacca); --tile-mark: var(--rebecca); }
.pattern-12 { --tile-bg: var(--rebecca); --tile-mark: var(--manifesto); }
.mosaic-product:hover .mosaic-product__overlay,
.mosaic-product:focus-within .mosaic-product__overlay {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}
.mosaic-product:hover img {
	transform: scale(1.045);
	filter: saturate(.9) contrast(1.03) drop-shadow(0 22px 34px rgba(0, 0, 0, .2));
}
.mosaic-product h2 {
	margin: 0 0 8px;
	font-size: clamp(14px, 1.25vw, 18px);
	line-height: 1.1;
}
.mosaic-product .price {
	margin-bottom: 16px;
	font-size: 13px;
	color: rgba(255, 255, 255, .82);
}
.mosaic-product .button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 40px !important;
	padding: 10px 18px !important;
	border: 1px solid #fff !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #fff !important;
	font-size: 10px !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	text-transform: uppercase;
}
.mosaic-product .added_to_cart {
	margin: 10px 0 0;
	font-size: 11px;
}
.empty-products {
	grid-column: 2;
	margin: 0;
	padding: 70px 0;
	border-top: 1px solid #ddd;
	color: #777;
}

.archive-panels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	color: var(--ink);
}
.archive-panel {
	min-height: clamp(360px, 45vw, 620px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(24px, 3.5vw, 58px);
	border-right: 1px solid rgba(0, 0, 0, .12);
	transition: color .25s ease, background-color .25s ease;
}
.archive-panel:last-child { border-right: 0; }
.archive-panel > span:not(.archive-panel__logos) {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .18em;
}
.archive-panel__logos {
	position: relative;
	display: block;
	width: min(100%, 560px);
	margin: auto 0 28px;
}
.archive-panel__logo {
	width: 100%;
	height: auto;
	transition: opacity .25s ease;
}
.archive-panel__logo--hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}
.archive-panel:hover .archive-panel__logo--base { opacity: 0; }
.archive-panel:hover .archive-panel__logo--hover { opacity: 1; }
.archive-panel p {
	max-width: 360px;
	margin: 0;
	color: currentColor;
	font-size: 15px;
	font-weight: 600;
}
.archive-panel--apparel { background: var(--camelioska); color: var(--rebecca); }
.archive-panel--library { background: var(--rebecca); color: var(--bubblegum); }
.archive-panel--archive { background: var(--bubblegum); color: var(--lacca); }
.archive-panel--apparel:hover { background: var(--lacca); color: var(--camelioska); }
.archive-panel--library:hover { background: var(--manifesto); color: var(--rebecca); }
.archive-panel--archive:hover { background: var(--ciclamino); color: var(--manifesto); }
.color-strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	height: 16px;
}
.color-strip i:nth-child(1) { background: var(--rebecca); }
.color-strip i:nth-child(2) { background: var(--bubblegum); }
.color-strip i:nth-child(3) { background: var(--ciclamino); }
.color-strip i:nth-child(4) { background: var(--lacca); }
.color-strip i:nth-child(5) { background: var(--camelioska); }
.color-strip i:nth-child(6) { background: var(--manifesto); }

.site-footer {
	background: #050505;
	color: #fff;
	padding: clamp(64px, 7vw, 96px) var(--pad) clamp(42px, 5vw, 70px);
}
.site-footer__menus {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr));
	gap: clamp(34px, 7vw, 120px);
	max-width: 1724px;
	margin: 0 auto;
	padding: 0 clamp(0px, 2vw, 40px) clamp(78px, 8vw, 118px);
	border-bottom: 1px solid rgba(255, 255, 255, .46);
}
.site-footer h2 {
	margin: 0 0 22px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: .02em;
}
.site-footer a {
	margin: auto;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(15px, 1.05vw, 20px);
	line-height: 1.35;
	font-weight: 400;
}
.site-footer a:hover { color: #fff; }
.site-footer ul {
	display: flex;
	flex-direction: column;
	gap: 19px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-footer__legal {
	text-align: center;
	padding-top: 18px;
}
.site-footer__legal p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, .78);
	font-size: clamp(14px, 1vw, 18px);
	line-height: 1.45;
}
.site-footer__legal a {
	font-size: inherit;
	line-height: inherit;
}
.site-footer__social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	margin: clamp(38px, 4vw, 62px) 0 clamp(52px, 5vw, 78px);
}
.site-footer__social a {
	display: grid;
	place-items: center;
	color: #fff;
}
.site-footer__social svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.site-footer__social rect,
.site-footer__social circle,
.site-footer__social path {
	vector-effect: non-scaling-stroke;
}
.site-footer__brand {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
}
.site-footer__brand img {
	width: auto;
	height: 20px;
}
.site-footer__brand span {
	color: #fff;
	font-size: clamp(13px, 1.2vw, 18px);
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.content-shell {
	min-height: 70vh;
	padding: clamp(70px, 10vw, 140px) var(--pad);
	background: var(--paper);
	color: #111;
}
.page-heading { margin-bottom: 70px; }
.page-heading > p {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .15em;
}
.page-heading h1 {
	max-width: 1100px;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(50px, 9vw, 140px);
	line-height: .86;
	letter-spacing: -.065em;
}
.entry-content {
	max-width: 850px;
	font-size: clamp(18px, 2vw, 23px);
}
.entry-card {
	border-top: 1px solid #bbb;
	padding: 35px 0;
}
.entry-card h2 {
	margin: 0;
	font-size: clamp(26px, 4vw, 50px);
}
.error-page {
	min-height: 75vh;
	display: grid;
	place-content: center;
	text-align: center;
	padding: 120px 20px;
}
.error-page > p {
	margin: 0;
	color: #333;
	font-size: 15vw;
	line-height: .7;
}
.error-page h1 { font-size: clamp(28px, 5vw, 60px); }
.error-page .button {
	display: inline-block;
	border: 1px solid;
	padding: 14px 24px;
	margin: auto;
}
.shop-shell .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
}
.shop-shell .woocommerce ul.products::before,
.shop-shell .woocommerce ul.products::after { display: none; }
.shop-shell .woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button { border-radius: 0 !important; }
.woocommerce div.product {
	max-width: 1400px;
	margin: auto;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error { border-top-color: #111 !important; }

@media (max-width: 1180px) {
	.site-header__inner { grid-template-columns: minmax(190px, 280px) auto auto; }
	.header-action--account span,
	.header-action--wishlist span { display: none; }
}

@media (max-width: 900px) {
	.site-header__inner {
		display: flex;
		gap: 18px;
	}
	.site-branding {
		width: max-content;
		margin-right: auto;
	}
	.menu-toggle {
		display: block;
		position: relative;
		z-index: 1003;
		order: 3;
	}
	.header-actions {
		z-index: 1003;
		order: 2;
		gap: 14px;
	}
	.header-action--account,
	.header-action--wishlist { display: none; }
	.primary-nav {
		position: fixed;
		inset: 0;
		display: block;
		padding: calc(var(--header-h) + 30px) var(--pad) 45px;
		background: #050505;
		opacity: 0;
		visibility: hidden;
		overflow: auto;
		transition: .3s;
	}
	.primary-nav.is-open {
		opacity: 1;
		visibility: visible;
	}
	.primary-menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 26px;
	}
	.primary-menu > .menu-item > a {
		min-height: auto;
		font-size: clamp(30px, 9vw, 58px);
		line-height: .9;
		letter-spacing: -.04em;
		text-transform: none;
	}
	.submenu-panel {
		position: static;
		width: 100%;
		min-height: 0;
		align-items: flex-start;
		padding: 22px;
		background: var(--submenu-bg);
		color: var(--submenu-link);
		text-align: left;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}
	.submenu-panel--two-col {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}
	.menu-is-open { overflow: hidden; }
	.mosaic-product { flex-basis: 50%; }
	.archive-panels { grid-template-columns: 1fr; }
	.archive-panel {
		min-height: 320px;
		border-right: 0;
		border-bottom: 1px solid rgba(0, 0, 0, .12);
	}
	.site-footer__menus {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-bottom: 60px;
	}
	.shop-shell .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
	.hero-slider { min-height: 560px; }
	.mosaic-product { flex-basis: 100%; }
	.section-heading { overflow: hidden; }
	.section-heading h1 { font-size: 11vw; }
	.mosaic-product__image { inset: 11%; }
	.site-footer__menus {
		grid-template-columns: 1fr;
		gap: 34px;
	}
	.site-footer a { font-size: 16px; }
	.site-footer__legal p { font-size: 13px; }
	.shop-shell .woocommerce ul.products { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}
