
:root {
	--ink: #151515;
	--paper: #f3f0e9;
	--paper-deep: #e7e0d5;
	--white: #fff;
	--line: rgba(21, 21, 21, .18);
	--header-height: 86px;
	--ease-art: cubic-bezier(.22, .61, .36, 1);
	--serif: "Times New Roman", Times, serif;
	--sans: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.is-locked {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 10px 15px;
	clip: auto;
	background: #fff;
	color: #000;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: var(--header-height);
	color: #fff;
	transition: color .35s ease, background .35s ease, transform .35s ease;
}

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

.site-header.is-solid,
body:not(.carsolli-front-page) .site-header {
	color: var(--ink);
	background: rgba(243, 240, 233, .94);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 35px;
}

.site-header__shop-link {
	position: absolute;
	left: 90px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
}

.site-branding {
	grid-column: 2;
	justify-self: center;
	line-height: 1;
}

.site-branding .custom-logo {
	width: auto;
	max-width: 170px;
	max-height: 48px;
}

.site-branding__text,
.footer-brand__logo {
	font-family: var(--serif);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.site-header__actions {
	grid-column: 3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.icon-button {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.icon-button svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.menu-toggle {
	grid-column: 1;
	justify-self: start;
}

.menu-toggle__lines {
	display: grid;
	gap: 7px;
	width: 27px;
}

.menu-toggle__lines i {
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform .35s ease;
}

.site-header__cart-count {
	position: absolute;
	top: 4px;
	right: 1px;
	display: grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 20px;
	background: currentColor;
	color: #111;
	font-size: 9px;
	font-weight: 700;
}

.site-header.is-solid .site-header__cart-count,
body:not(.carsolli-front-page) .site-header__cart-count {
	background: var(--ink);
	color: var(--paper);
}

.site-drawer {
	position: fixed;
	inset: 0;
	z-index: 300;
	visibility: hidden;
	pointer-events: none;
}

.site-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.site-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	opacity: 0;
	transition: opacity .5s ease;
}

.site-drawer.is-open .site-drawer__backdrop {
	opacity: 1;
}

.site-drawer__panel {
	position: relative;
	width: min(610px, 92vw);
	height: 100%;
	padding: 34px clamp(28px, 5vw, 72px);
	background: var(--paper);
	transform: translateX(-102%);
	transition: transform .65s var(--ease-art);
	overflow-y: auto;
}

.site-drawer.is-open .site-drawer__panel {
	transform: translateX(0);
}

.site-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--line);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
}

.drawer-close {
	font-family: var(--serif);
	font-size: 38px;
	font-weight: 300;
}

.drawer-navigation {
	padding: 35px 0;
}

.drawer-navigation ul,
.site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.drawer-navigation > ul > li {
	border-bottom: 1px solid var(--line);
}

.drawer-navigation > ul > li > a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	font-family: var(--serif);
	font-size: clamp(28px, 5.4vw, 54px);
	line-height: 1.05;
	letter-spacing: -.03em;
	text-transform: uppercase;
	transition: padding-left .3s ease, opacity .3s ease;
}

.drawer-navigation > ul > li > a::after {
	content: "↗";
	font-family: var(--sans);
	font-size: 18px;
	opacity: 0;
	transform: translateX(-8px);
	transition: opacity .3s ease, transform .3s ease;
}

.drawer-navigation > ul > li > a:hover {
	padding-left: 12px;
}

.drawer-navigation > ul > li > a:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.site-drawer__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	padding-top: 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.search-overlay {
	position: fixed;
	inset: 0;
	z-index: 320;
	display: grid;
	place-items: center;
	padding: 30px;
	background: rgba(243, 240, 233, .98);
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}

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

.search-overlay__close {
	position: absolute;
	top: 25px;
	right: 35px;
	border: 0;
	background: none;
	font-family: var(--serif);
	font-size: 48px;
	cursor: pointer;
}

.search-overlay__inner {
	width: min(900px, 100%);
}

.search-overlay__inner > p {
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .22em;
}

.art-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 20px;
}

.art-search-form label {
	display: block;
}

.art-search-form input {
	width: 100%;
	padding: 10px 0 16px;
	border: 0;
	border-bottom: 1px solid var(--ink);
	outline: none;
	background: transparent;
	font-family: var(--serif);
	font-size: clamp(30px, 5vw, 62px);
}

.art-search-form button {
	padding: 15px 0;
	border: 0;
	border-bottom: 1px solid var(--ink);
	background: transparent;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	cursor: pointer;
}

.collection-stage {
	position: relative;
	width: 100%;
	height: 100svh;
	min-height: 580px;
	overflow: hidden;
	background: #111;
	outline: none;
}

.collection-stage__slides,
.collection-panel {
	position: absolute;
	inset: 0;
}

.collection-panel {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 8%, 0);
	transition:
		opacity .9s var(--ease-art),
		transform 1s var(--ease-art),
		visibility 0s linear 1s;
}

.collection-panel.is-active {
	z-index: 2;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
	transition-delay: 0s;
}

.collection-panel.is-exiting-up {
	z-index: 1;
	visibility: visible;
	transform: translate3d(0, -8%, 0);
}

.collection-panel.is-exiting-down {
	z-index: 1;
	visibility: visible;
	transform: translate3d(0, 8%, 0);
}

.collection-panel__media {
	position: absolute;
	inset: -6%;
	background-position: center;
	background-size: cover;
	transform: scale(1.1) translate3d(var(--move-x, 0), var(--move-y, 0), 0);
	transition: transform 1.4s var(--ease-art);
	will-change: transform;
}

.collection-panel.is-active .collection-panel__media {
	transform: scale(1) translate3d(var(--move-x, 0), var(--move-y, 0), 0);
}

.collection-panel__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, .28), transparent 34%, transparent 65%, rgba(0, 0, 0, .35)),
		linear-gradient(90deg, rgba(0, 0, 0, .17), transparent 55%);
}

.collection-panel__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(1440px, calc(100% - 120px));
	height: 100%;
	margin: 0 auto;
	color: #fff;
}

.panel-position-left .collection-panel__content {
	align-items: flex-start;
	text-align: left;
}

.panel-position-center .collection-panel__content {
	align-items: center;
	text-align: center;
}

.panel-position-right .collection-panel__content {
	align-items: flex-end;
	text-align: right;
}

.collection-panel__eyebrow {
	margin: 0 0 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .28em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .55s ease .25s, transform .7s var(--ease-art) .25s;
}

.collection-panel h2 {
	max-width: 1100px;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(65px, 11vw, 180px);
	font-weight: 400;
	line-height: .78;
	letter-spacing: -.06em;
	text-transform: uppercase;
	text-shadow: 0 2px 28px rgba(0, 0, 0, .15);
	opacity: 0;
	transform: translateY(45px);
	transition: opacity .7s ease .35s, transform .9s var(--ease-art) .35s;
}

.collection-panel__link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: 38px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .24em;
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .7s ease .5s, transform .9s var(--ease-art) .5s;
}

.collection-panel__link svg {
	width: 42px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1;
	transition: transform .3s ease;
}

.collection-panel__link:hover svg {
	transform: translateX(7px);
}

.collection-panel.is-active .collection-panel__eyebrow,
.collection-panel.is-active h2,
.collection-panel.is-active .collection-panel__link {
	opacity: 1;
	transform: translateY(0);
}

.collection-stage__pagination {
	position: absolute;
	top: 50%;
	right: 30px;
	z-index: 6;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transform: translateY(-50%);
}

.collection-stage__pagination button {
	position: relative;
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: transform .25s ease, background .25s ease;
}

.collection-stage__pagination button::after {
	content: "";
	position: absolute;
	inset: -7px;
}

.collection-stage__pagination button.is-active {
	background: #fff;
	transform: scale(1.25);
}

.collection-stage__counter {
	position: absolute;
	left: 34px;
	bottom: 28px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 11px;
	color: #fff;
	font-size: 10px;
	letter-spacing: .15em;
}

.collection-stage__counter i {
	width: 45px;
	height: 1px;
	background: rgba(255, 255, 255, .55);
}

.collection-stage__hint {
	position: absolute;
	left: 50%;
	bottom: 20px;
	z-index: 5;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, .8);
	transform: translateX(-50%);
}

.collection-stage__hint > span {
	position: relative;
	width: 22px;
	height: 35px;
	border: 1px solid rgba(255, 255, 255, .7);
	border-radius: 14px;
}

.collection-stage__hint > span::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 50%;
	width: 3px;
	height: 6px;
	border-radius: 2px;
	background: #fff;
	transform: translateX(-50%);
	animation: art-scroll-hint 1.65s infinite;
}

.collection-stage__hint small {
	font-size: 8px;
	letter-spacing: .2em;
}

@keyframes art-scroll-hint {
	0% { opacity: 0; transform: translate(-50%, 0); }
	25% { opacity: 1; }
	75% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 11px); }
}

.section-shell {
	padding: clamp(90px, 10vw, 160px) clamp(24px, 5vw, 80px);
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 55px;
}

.section-kicker {
	margin: 0 0 11px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
}

.section-heading h2,
.editorial-story h2,
.page-hero h1 {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(48px, 7vw, 105px);
	font-weight: 400;
	line-height: .9;
	letter-spacing: -.045em;
}

.section-heading > a {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.product-showcase {
	background: var(--paper);
	overflow: hidden;
}

.product-showcase__rail {
	display: grid;
	grid-auto-columns: minmax(280px, 26vw);
	grid-auto-flow: column;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 25px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.art-product-card {
	scroll-snap-align: start;
}

.art-product-card__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--paper-deep);
}

.art-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--ease-art), filter .5s ease;
}

.art-product-card__image > span {
	position: absolute;
	left: 50%;
	bottom: 25px;
	padding: 11px 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, .9);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	opacity: 0;
	transform: translate(-50%, 10px);
	transition: opacity .3s ease, transform .3s ease;
}

.art-product-card__image:hover img {
	transform: scale(1.035);
}

.art-product-card__image:hover > span {
	opacity: 1;
	transform: translate(-50%, 0);
}

.art-product-card__meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	padding-top: 16px;
}

.art-product-card h3 {
	margin: 0;
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.15;
}

.art-product-card__price {
	font-size: 13px;
	white-space: nowrap;
}

.art-product-card__price del {
	opacity: .45;
}

.art-product-card__price ins {
	text-decoration: none;
}

.editorial-story {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	min-height: 85vh;
	background: #1b1b1b;
	color: #fff;
}

.editorial-story__media {
	overflow: hidden;
}

.editorial-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.editorial-story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(50px, 8vw, 120px);
}

.editorial-story h2 {
	margin-bottom: 35px;
}

.editorial-story__content > p:not(.section-kicker) {
	max-width: 580px;
	margin: 0;
	color: rgba(255, 255, 255, .74);
	font-family: var(--serif);
	font-size: clamp(20px, 2vw, 30px);
	line-height: 1.45;
}

.text-arrow-link {
	align-self: flex-start;
	margin-top: 38px;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .17em;
}

.trust-strip {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--paper);
}

.trust-strip > div {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 45px clamp(24px, 4vw, 65px);
}

.trust-strip > div + div {
	border-left: 1px solid var(--line);
}

.trust-strip span {
	position: absolute;
	top: 22px;
	right: 25px;
	font-size: 9px;
	letter-spacing: .15em;
	opacity: .45;
}

.trust-strip strong {
	font-family: var(--serif);
	font-size: 25px;
	font-weight: 400;
}

.trust-strip small {
	margin-top: 4px;
	opacity: .6;
}

.site-footer {
	padding: clamp(70px, 9vw, 130px) clamp(24px, 5vw, 80px) 25px;
	background: #151515;
	color: #fff;
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.3fr .65fr .8fr 1.2fr;
	gap: clamp(35px, 5vw, 90px);
}

.footer-brand__logo {
	margin-bottom: 25px;
	font-size: 38px;
}

.footer-brand p,
.footer-newsletter p {
	max-width: 450px;
	margin: 0;
	color: rgba(255, 255, 255, .62);
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.6;
}

.footer-column h3,
.footer-newsletter h3 {
	margin: 0 0 22px;
	font-size: 10px;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.footer-column li {
	margin: 8px 0;
}

.footer-column a {
	color: rgba(255, 255, 255, .68);
	font-size: 13px;
	transition: color .25s ease;
}

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

.newsletter-form {
	display: grid;
	grid-template-columns: 1fr auto;
	margin-top: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.newsletter-form input,
.newsletter-form button {
	min-width: 0;
	padding: 12px 0;
	border: 0;
	outline: none;
	background: transparent;
	color: #fff;
}

.newsletter-form button {
	padding-left: 15px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .13em;
	cursor: pointer;
}

.footer-newsletter small {
	display: block;
	margin-top: 10px;
	color: rgba(255, 255, 255, .35);
	font-size: 9px;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 85px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: rgba(255, 255, 255, .42);
	font-size: 10px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.content-shell,
.commerce-shell {
	min-height: 75vh;
	padding: calc(var(--header-height) + 75px) clamp(24px, 5vw, 80px) 100px;
}

.page-hero {
	max-width: 1200px;
	margin: 0 0 70px;
	padding-top: 30px;
}

.entry-page__featured {
	margin-bottom: 70px;
}

.entry-page__featured img {
	width: 100%;
	max-height: 75vh;
	object-fit: cover;
}

.entry-content {
	max-width: 900px;
	margin: 0 auto;
	font-family: var(--serif);
	font-size: 21px;
	line-height: 1.75;
}

.entry-content h2,
.entry-content h3 {
	font-weight: 400;
	line-height: 1.1;
}

.entry-content h2 {
	font-size: 48px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 22px;
}

.journal-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--paper-deep);
}

.journal-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--ease-art);
}

.journal-card__image:hover img {
	transform: scale(1.035);
}

.journal-card__date {
	margin: 15px 0 5px;
	font-size: 10px;
	letter-spacing: .15em;
}

.journal-card h2 {
	margin: 0;
	font-family: var(--serif);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
}

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 25px;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title {
	margin: 0 0 35px;
	font-family: var(--serif);
	font-size: clamp(48px, 7vw, 95px);
	font-weight: 400;
	line-height: .9;
	letter-spacing: -.04em;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 35px;
	font-size: 12px;
}

.woocommerce .woocommerce-ordering select {
	padding: 10px 25px 10px 10px;
	border: 0;
	border-bottom: 1px solid var(--ink);
	background: transparent;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 55px 22px;
	margin: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4 / 5;
	margin: 0 0 15px;
	object-fit: cover;
	background: var(--paper-deep);
	transition: transform .6s var(--ease-art);
}

.woocommerce ul.products li.product a:hover img {
	transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	font-family: var(--serif);
	font-size: 22px;
	font-weight: 400;
}

.woocommerce ul.products li.product .price {
	color: var(--ink);
	font-size: 13px;
}

.woocommerce ul.products li.product .button {
	margin-top: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--ink);
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	font-size: 10px;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
	gap: clamp(45px, 6vw, 100px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product div.summary {
	position: sticky;
	top: 120px;
	align-self: start;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ink);
	font-size: 20px;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	min-height: 52px;
	padding: 0 28px;
	border-radius: 0;
	background: var(--ink);
	color: #fff;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: var(--line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--ink);
	background: #fff;
}

@media (max-width: 1024px) {
	:root {
		--header-height: 74px;
	}

	.site-header__inner {
		padding: 0 20px;
	}

	.site-header__shop-link {
		display: none;
	}

	.collection-panel__content {
		width: calc(100% - 70px);
	}

	.product-showcase__rail {
		grid-auto-columns: minmax(280px, 42vw);
	}

	.site-footer__top {
		grid-template-columns: 1fr 1fr;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

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

	.site-header__account {
		display: none;
	}

	.site-header__actions {
		gap: 0;
	}

	.site-branding .custom-logo {
		max-width: 125px;
		max-height: 36px;
	}

	.site-branding__text {
		font-size: 23px;
	}

	.collection-stage {
		min-height: 520px;
	}

	.collection-panel__content {
		width: calc(100% - 42px);
		padding-top: 30px;
	}

	.panel-position-right .collection-panel__content {
		align-items: flex-start;
		text-align: left;
	}

	.collection-panel h2 {
		font-size: clamp(52px, 17vw, 90px);
		line-height: .83;
	}

	.collection-panel__link {
		margin-top: 28px;
	}

	.collection-stage__pagination {
		right: 14px;
	}

	.collection-stage__counter {
		left: 18px;
	}

	.section-shell {
		padding-right: 20px;
		padding-left: 20px;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.product-showcase__rail {
		grid-auto-columns: minmax(250px, 78vw);
	}

	.editorial-story {
		grid-template-columns: 1fr;
	}

	.editorial-story__media {
		min-height: 55vh;
	}

	.editorial-story__content {
		padding: 65px 24px 75px;
	}

	.trust-strip {
		grid-template-columns: 1fr;
	}

	.trust-strip > div + div {
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.art-search-form {
		grid-template-columns: 1fr;
	}

	.post-grid {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 12px;
	}

	.woocommerce div.product {
		display: block;
	}

	.woocommerce div.product div.summary {
		position: static;
		margin-top: 35px;
	}

	.commerce-shell {
		padding-right: 15px;
		padding-left: 15px;
	}
}

@media (max-width: 480px) {
	.site-header__inner {
		padding: 0 11px;
	}

	.icon-button {
		width: 39px;
	}

	.collection-stage__hint {
		display: none;
	}

	.collection-stage__counter {
		bottom: 18px;
	}

	.collection-panel__eyebrow {
		margin-bottom: 14px;
	}

	.site-drawer__panel {
		width: 100%;
	}

	.drawer-navigation > ul > li > a {
		font-size: 35px;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr 1fr;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 17px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
