:root {
	--ink: #171615;
	--carbon: #24221f;
	--graphite: #4b4742;
	--bone: #f1ede6;
	--paper: #fffdf8;
	--line: #d7d0c7;
	--teal: #344f4a;
	--teal-dark: #253c38;
	--amber: #9a7a45;
	--clay: #8b5a42;
	--green: #64745f;
	--muted: #6d6861;
	--shadow: 0 18px 44px rgba(23, 22, 21, 0.14);
	--soft-shadow: 0 10px 28px rgba(23, 22, 21, 0.09);
	--font-ui: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bone);
	color: var(--ink);
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(20, 17, 15, 0.045) 1px, transparent 1px),
		linear-gradient(180deg, rgba(20, 17, 15, 0.045) 1px, transparent 1px),
		linear-gradient(135deg, #f7f4ee 0%, #ebe4db 42%, #faf7f1 100%);
	background-size: 56px 56px, 56px 56px, auto;
}

body::after {
	content: "";
	position: fixed;
	inset: auto 0 0;
	z-index: -1;
	height: 46vh;
	background: linear-gradient(180deg, transparent, rgba(52, 79, 74, 0.06));
	pointer-events: none;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--teal-dark);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	left: -9999px;
}

.skip-link:focus {
	left: 18px;
	top: 18px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--paper);
	color: var(--ink);
	border-radius: 8px;
}

.motion-shell {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.motion-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(20, 17, 15, 0.96);
	border-bottom: 1px solid rgba(255, 250, 242, 0.12);
}

.motion-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 82px;
}

.motion-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--paper);
}

.motion-brand img {
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 250, 242, 0.24);
	border-radius: 8px;
	background: var(--ink);
	object-fit: cover;
}

.motion-brand strong {
	display: block;
	font-size: 20px;
	line-height: 1.15;
}

.motion-brand small {
	display: block;
	color: rgba(255, 250, 242, 0.78);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
}

.motion-nav {
	justify-self: end;
}

.motion-nav__list,
.motion-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.motion-nav a {
	display: block;
	padding: 10px 12px;
	color: rgba(255, 250, 242, 0.9);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
}

.motion-nav a:hover,
.motion-nav a:focus,
.motion-nav .current-menu-item > a {
	background: rgba(255, 250, 242, 0.1);
	color: var(--amber);
}

.motion-cart {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid rgba(255, 250, 242, 0.22);
	border-radius: 999px;
	color: var(--paper);
	font-weight: 900;
}

.motion-cart b {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--teal);
	color: var(--ink);
	font-size: 12px;
}

.motion-menu-toggle {
	display: none;
	align-items: center;
	gap: 6px;
	border: 0;
	background: transparent;
	color: var(--paper);
	font-weight: 900;
}

.motion-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.motion-header .motion-menu-toggle {
	width: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 250, 242, 0.22);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.08);
	color: var(--paper);
	box-shadow: none;
	transform: none;
}

.motion-header .motion-menu-toggle:hover,
.motion-header .motion-menu-toggle:focus {
	background: rgba(255, 250, 242, 0.14);
	color: var(--paper);
	box-shadow: none;
	transform: none;
}

.motion-header .motion-menu-toggle b {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.motion-main {
	min-height: 60vh;
}

.motion-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(20, 17, 15, 0.96), rgba(20, 17, 15, 0.84) 54%, rgba(37, 60, 56, 0.78)),
		url("../../../../uploads/2021/04/pt1.jpg") center/cover;
	color: var(--paper);
}

.motion-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 88px;
	background: linear-gradient(180deg, transparent, var(--bone));
}

.motion-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
	gap: 64px;
	align-items: center;
	min-height: 720px;
	padding: 94px 0 118px;
}

.motion-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--teal);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.motion-kicker::before {
	content: "";
	width: 34px;
	height: 2px;
	background: currentColor;
}

.motion-hero h1,
.motion-page-hero h1 {
	margin: 16px 0 18px;
	color: inherit;
	font-size: 76px;
	line-height: 1.02;
	letter-spacing: 0;
}

.motion-hero p,
.motion-page-hero p {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 250, 242, 0.9);
	font-size: 19px;
}

.motion-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.motion-button,
.button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce a.add_to_cart_button,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce button.single_add_to_cart_button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 20px;
	border: 0;
	border-radius: 999px;
	background: var(--carbon);
	background-color: var(--carbon);
	color: var(--paper);
	font-weight: 900;
	line-height: 1.1;
	box-shadow: 0 14px 28px rgba(23, 22, 21, 0.18);
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.motion-button:hover,
.motion-button:focus,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce a.add_to_cart_button:hover,
.woocommerce a.add_to_cart_button:focus,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce button.single_add_to_cart_button:hover,
.woocommerce button.single_add_to_cart_button:focus,
.woocommerce input.button:hover {
	background: var(--teal-dark);
	background-color: var(--teal-dark);
	color: var(--paper);
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(23, 22, 21, 0.22);
}

.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover {
	background: var(--teal-dark);
	background-color: var(--teal-dark);
	color: var(--paper);
	opacity: 0.65;
}

.motion-button--light {
	background: rgba(255, 250, 242, 0.12);
	color: var(--paper);
	box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.2);
}

.motion-hero__visual {
	position: relative;
	min-height: 520px;
	border: 1px solid rgba(255, 250, 242, 0.18);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 250, 242, 0.14), rgba(255, 250, 242, 0.04)),
		linear-gradient(180deg, rgba(20, 17, 15, 0.28), rgba(20, 17, 15, 0.72));
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.motion-mark {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 210px;
	transform: translate(-50%, -50%);
}

.motion-mark img {
	border-radius: 8px;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.motion-path {
	position: absolute;
	border: 1px solid rgba(52, 79, 74, 0.58);
	border-right: 0;
	border-bottom: 0;
}

.motion-path--one {
	left: 48px;
	top: 74px;
	width: 210px;
	height: 190px;
}

.motion-path--two {
	right: 58px;
	bottom: 86px;
	width: 190px;
	height: 210px;
	transform: rotate(180deg);
}

.motion-signal {
	position: absolute;
	left: 26px;
	top: 26px;
	width: 180px;
	padding: 14px;
	border: 1px solid rgba(255, 250, 242, 0.18);
	border-radius: 8px;
	background: rgba(20, 17, 15, 0.88);
}

.motion-signal strong,
.motion-method-grid span,
.motion-category span {
	display: block;
	color: var(--amber);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.motion-signal span {
	display: block;
	color: var(--paper);
	font-weight: 900;
	line-height: 1.25;
}

.motion-signal--right {
	left: auto;
	right: 26px;
	top: 164px;
}

.motion-signal--bottom {
	left: 88px;
	top: auto;
	bottom: 34px;
}

.motion-section {
	padding: 88px 0;
}

.motion-section--dark {
	background: var(--ink);
	color: var(--paper);
}

.motion-section--products {
	background: rgba(255, 250, 242, 0.6);
}

.motion-section__heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.motion-section__heading--split {
	display: flex;
	gap: 24px;
	align-items: end;
	justify-content: space-between;
	max-width: none;
}

.motion-section h2,
.motion-story h2,
.motion-copy-block h2 {
	margin: 10px 0 12px;
	font-size: 44px;
	line-height: 1.05;
	letter-spacing: 0;
}

.motion-section p,
.motion-copy-block p,
.motion-story p {
	color: var(--muted);
}

.motion-section--dark p {
	color: rgba(255, 250, 242, 0.72);
}

.motion-text-link {
	color: var(--teal-dark);
	font-weight: 900;
}

.motion-method-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.motion-method-grid article,
.motion-category,
.motion-product,
.motion-post-card,
.motion-contact-card {
	border: 1px solid rgba(255, 250, 242, 0.14);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.06);
	box-shadow: var(--soft-shadow);
}

.motion-method-grid article {
	padding: 24px;
}

.motion-method-grid h3,
.motion-category h3,
.motion-product h3,
.motion-contact-card strong {
	margin: 8px 0;
	font-size: 22px;
	line-height: 1.15;
	letter-spacing: 0;
}

.motion-method-grid--light article {
	border-color: var(--line);
	background: var(--paper);
}

.motion-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.motion-category {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	padding: 22px;
	background: var(--paper);
	border-color: var(--line);
	color: var(--ink);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.motion-category::after {
	content: ">";
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(20, 17, 15, 0.18);
	border-radius: 8px;
	color: var(--teal-dark);
	font-weight: 900;
}

.motion-category:hover,
.motion-product:hover,
.motion-post-card:hover,
.motion-contact-card:hover {
	border-color: rgba(52, 79, 74, 0.38);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.motion-category b {
	position: absolute;
	left: 22px;
	bottom: 22px;
	color: var(--teal-dark);
}

.motion-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.motion-product {
	overflow: hidden;
	background: var(--paper);
	border-color: var(--line);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.motion-product__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 0.86;
	background: linear-gradient(180deg, #fffdf8, #ebe4da);
}

.motion-product__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 18px;
}

.motion-product__body {
	padding: 18px;
}

.motion-product__label {
	display: inline-flex;
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(52, 79, 74, 0.1);
	color: var(--teal-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.motion-product__price,
.price,
.woocommerce-Price-amount {
	color: var(--clay);
	font-weight: 900;
}

.motion-story {
	max-width: 760px;
}

.motion-page-hero {
	background:
		linear-gradient(135deg, rgba(20, 17, 15, 0.94), rgba(39, 34, 29, 0.88)),
		url("../../../../uploads/2021/06/sydney-rae-668606-unsplash-scaled.jpg") center/cover;
	color: var(--paper);
	padding: 92px 0 70px;
}

.motion-page-hero--shop {
	background: linear-gradient(135deg, rgba(20, 17, 15, 0.94), rgba(37, 60, 56, 0.76));
}

.motion-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 190px;
	gap: 32px;
	align-items: center;
}

.motion-page-hero__badge {
	padding: 18px;
	border: 1px solid rgba(255, 250, 242, 0.18);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.08);
}

.motion-content-section {
	padding: 64px 0;
}

.motion-content,
.motion-woo {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.86);
	box-shadow: var(--soft-shadow);
}

.motion-content h2,
.motion-content h3,
.motion-woo h2,
.motion-woo h3 {
	line-height: 1.15;
}

.motion-content p,
.motion-content li {
	color: var(--graphite);
}

.motion-featured-image {
	width: 100%;
	margin-bottom: 28px;
	border-radius: 8px;
}

.motion-about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
	gap: 36px;
	align-items: start;
}

.motion-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.motion-contact-card {
	padding: 24px;
	background: var(--paper);
	border-color: var(--line);
	color: var(--ink);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.motion-contact-card span {
	color: var(--teal-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.motion-listing {
	display: grid;
	gap: 18px;
}

.motion-post-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	padding: 18px;
	background: var(--paper);
	border-color: var(--line);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.motion-post-card__image img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 8px;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count {
	color: var(--muted);
}

.woocommerce .products ul,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	align-items: stretch;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	clear: none;
	width: 100% !important;
	max-width: none;
	min-width: 0;
	height: 100%;
	margin: 0 !important;
	padding: 0 0 18px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--paper);
	box-shadow: var(--soft-shadow);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(52, 79, 74, 0.38);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
	width: 100%;
	height: 260px;
	object-fit: contain;
	padding: 18px;
	margin: 0 0 14px;
	background: linear-gradient(180deg, #fffdf8, #ebe4da);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin-left: 18px;
	margin-right: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	min-height: 46px;
	margin-top: 0;
	margin-bottom: 8px;
	font-size: 17px;
	line-height: 1.18;
}

.woocommerce ul.products li.product .price {
	margin: auto 18px 16px;
	font-size: 14px;
	line-height: 1.2;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.add_to_cart_button {
	align-self: stretch;
	width: auto;
	min-height: 46px;
	margin: 0 18px;
	padding: 13px 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
}

.woocommerce section.related.products {
	margin-top: 58px;
	padding-top: 34px;
	border-top: 1px solid var(--line);
}

.woocommerce section.related.products > h2 {
	margin: 0 0 22px;
	font-size: 32px;
	line-height: 1.15;
}

.woocommerce section.related.products ul.products.columns-3 {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce section.related.products ul.products.columns-3 li.product {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 0 20px !important;
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--soft-shadow);
	overflow: hidden;
}

.woocommerce section.related.products ul.products.columns-3 li.product a.woocommerce-loop-product__link {
	display: grid;
	grid-template-rows: 260px auto auto;
	height: 100%;
	color: var(--ink);
}

.woocommerce section.related.products ul.products.columns-3 li.product a img {
	width: 100% !important;
	height: 260px !important;
	margin: 0 !important;
	padding: 22px !important;
	object-fit: contain;
	background: linear-gradient(180deg, #fffdf8, #ebe4da);
}

.woocommerce section.related.products ul.products.columns-3 li.product .woocommerce-loop-product__title {
	margin: 18px 18px 8px !important;
	padding: 0 !important;
	color: var(--ink);
	font-size: 18px !important;
	font-weight: 800;
	line-height: 1.25;
}

.woocommerce section.related.products ul.products.columns-3 li.product .price {
	margin: 0 18px 18px !important;
	color: var(--clay);
	font-size: 16px !important;
	font-weight: 900;
}

.woocommerce section.related.products ul.products.columns-3 li.product .button {
	align-self: flex-start;
	margin: auto 18px 0 !important;
	border-radius: 999px !important;
	min-height: 44px;
	padding: 12px 16px !important;
	background: var(--carbon) !important;
	color: var(--paper) !important;
	box-shadow: 0 14px 26px rgba(23, 22, 21, 0.16);
}

.woocommerce section.related.products ul.products.columns-3 li.product .button:hover,
.woocommerce section.related.products ul.products.columns-3 li.product .button:focus {
	background: var(--teal-dark) !important;
	color: var(--paper) !important;
}

.woocommerce span.onsale {
	min-height: auto;
	min-width: auto;
	padding: 7px 11px;
	border-radius: 999px;
	background: var(--amber);
	color: var(--ink);
	font-weight: 900;
	line-height: 1;
}

.woocommerce div.product div.images img,
.woocommerce div.product .summary,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce table.shop_table {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--paper);
	box-shadow: var(--soft-shadow);
}

.woocommerce div.product .summary {
	padding: 28px;
}

.woocommerce div.product div.images img {
	padding: 14px;
}

.woocommerce-cart .woocommerce-cart-form button[name="update_cart"]:disabled,
.woocommerce-cart .woocommerce-cart-form button[name="update_cart"]:disabled[disabled] {
	background: #d9d3ca !important;
	background-color: #d9d3ca !important;
	color: #4b4741 !important;
	opacity: 1 !important;
	box-shadow: none !important;
	cursor: not-allowed;
	transform: none;
}

.woocommerce-cart .woocommerce-cart-form button[name="update_cart"]:disabled:hover,
.woocommerce-cart .woocommerce-cart-form button[name="update_cart"]:disabled[disabled]:hover {
	background: #d9d3ca !important;
	background-color: #d9d3ca !important;
	color: #4b4741 !important;
	transform: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--paper);
	color: var(--ink);
	padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--teal);
	box-shadow: 0 0 0 3px rgba(52, 79, 74, 0.14);
	outline: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 8px;
	background: var(--paper);
	border-top-color: var(--teal);
	box-shadow: var(--soft-shadow);
}

.motion-footer {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(20, 17, 15, 0.98), rgba(20, 17, 15, 0.9) 58%, rgba(37, 60, 56, 0.78)),
		url("../../../../uploads/2021/06/sydney-rae-668606-unsplash-scaled.jpg") center/cover;
	color: rgba(255, 250, 242, 0.72);
	padding: 70px 0 26px;
}

.motion-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 250, 242, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 250, 242, 0.05) 1px, transparent 1px);
	background-size: 42px 42px;
	pointer-events: none;
}

.motion-footer__rail,
.motion-footer__panel,
.motion-footer__bar {
	position: relative;
	z-index: 1;
}

.motion-footer__rail {
	display: grid;
	grid-template-columns: 1.15fr 0.72fr 0.42fr;
	gap: 8px;
	height: 8px;
	margin-bottom: 16px;
}

.motion-footer__rail span {
	border-radius: 8px;
}

.motion-footer__rail span:nth-child(1) {
	background: var(--teal);
}

.motion-footer__rail span:nth-child(2) {
	background: var(--amber);
}

.motion-footer__rail span:nth-child(3) {
	background: var(--clay);
}

.motion-footer__panel {
	display: grid;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.55fr);
	gap: 44px;
	align-items: start;
	padding: 34px;
	border: 1px solid rgba(255, 250, 242, 0.14);
	border-radius: 8px;
	background: rgba(20, 17, 15, 0.9);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.motion-footer__brand-block p {
	max-width: 440px;
	margin: 20px 0;
	color: rgba(255, 250, 242, 0.74);
}

.motion-brand--footer {
	align-items: flex-start;
}

.motion-brand--footer img {
	border-color: rgba(255, 250, 242, 0.18);
}

.motion-brand--footer small {
	max-width: 300px;
	color: var(--teal);
	text-transform: uppercase;
}

.motion-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.motion-footer__badges span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid rgba(255, 250, 242, 0.2);
	border-radius: 8px;
	background: rgba(255, 250, 242, 0.1);
	color: var(--paper);
	font-family: var(--font-ui);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: none;
}

.motion-footer__columns {
	display: grid;
	grid-template-columns: 1fr 1fr minmax(210px, 1.15fr);
	gap: 30px;
}

.motion-footer__title {
	margin: 0 0 14px;
	color: var(--amber);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.motion-footer__links,
.motion-footer__stack {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.motion-footer__links a,
.motion-footer__stack a,
.motion-footer__phone,
.motion-footer__legal a {
	color: rgba(255, 250, 242, 0.78);
	font-weight: 800;
}

.motion-footer__links a,
.motion-footer__stack a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 2px 0;
}

.motion-footer__links a::before,
.motion-footer__stack a::before {
	content: "";
	width: 7px;
	height: 7px;
	border: 1px solid var(--teal);
	border-radius: 2px;
	transform: rotate(45deg);
	flex: 0 0 auto;
}

.motion-footer__links a:hover,
.motion-footer__links a:focus,
.motion-footer__stack a:hover,
.motion-footer__stack a:focus,
.motion-footer__phone:hover,
.motion-footer__phone:focus,
.motion-footer__legal a:hover,
.motion-footer__legal a:focus {
	color: var(--amber);
}

.motion-footer__mini {
	margin: 0 0 16px;
	color: rgba(255, 250, 242, 0.72);
}

.motion-footer__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 15px;
	border-radius: 999px;
	background: var(--paper);
	color: var(--ink);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.motion-footer__button:hover,
.motion-footer__button:focus {
	background: var(--amber);
	color: var(--ink);
}

.motion-footer__phone {
	display: inline-flex;
	margin-top: 14px;
}

.motion-footer__bar {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 250, 242, 0.1);
	font-size: 13px;
}

.motion-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 18px;
}

.motion-header,
.motion-main,
.motion-footer,
.woocommerce,
.woocommerce-page,
body .elementor-widget,
body .elementor-heading-title,
body .elementor-button {
	font-family: var(--font-ui) !important;
}

.motion-main h1,
.motion-main h2,
.motion-main h3,
.motion-main h4,
.motion-main h5,
.motion-main h6,
.motion-footer h2,
body .elementor-heading-title {
	font-family: var(--font-display) !important;
	text-shadow: none !important;
	letter-spacing: 0 !important;
}

body .elementor-heading-title {
	line-height: 1.18 !important;
}

.motion-main p,
.motion-main li,
.motion-main a,
.motion-footer,
.motion-footer a,
.woocommerce,
.woocommerce p,
body .elementor-widget-text-editor,
body .elementor-widget-container p,
body .elementor-button {
	text-shadow: none !important;
}

body .elementor-widget-text-editor,
body .elementor-widget-container p {
	line-height: 1.65 !important;
}

@media (max-width: 980px) {
	.motion-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.motion-brand {
		min-width: 0;
	}

	.motion-menu-toggle {
		position: relative;
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		justify-self: end;
	}

	.motion-menu-toggle span {
		width: 20px;
		transition: transform 160ms ease, opacity 160ms ease;
	}

	.motion-menu-toggle[aria-expanded="true"] span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.motion-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

	.motion-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.motion-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		width: 100%;
		display: none;
		padding: 12px 0 16px;
		background: rgba(20, 17, 15, 0.98);
		border-bottom: 1px solid rgba(255, 250, 242, 0.12);
		box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
	}

	.motion-nav-open .motion-nav {
		display: block;
	}

	.motion-nav__list,
	.motion-nav ul {
		display: grid;
		gap: 8px;
		width: min(520px, calc(100% - 28px));
		margin: 0 auto;
		padding: 0;
	}

	.motion-nav a {
		min-height: 46px;
		padding: 12px 16px;
		border-radius: 8px;
		background: rgba(255, 250, 242, 0.07);
	}

	.motion-cart {
		justify-self: end;
	}

	.motion-hero__grid,
	.motion-story,
	.motion-about-grid,
	.motion-page-hero__grid {
		grid-template-columns: 1fr;
	}

	.motion-hero__grid {
		min-height: auto;
		padding: 76px 0 96px;
	}

	.motion-hero h1,
	.motion-page-hero h1 {
		font-size: 54px;
	}

	.motion-hero__visual {
		min-height: 430px;
	}

	.motion-method-grid,
	.motion-category-grid,
	.motion-product-grid,
	.woocommerce .products ul,
	.woocommerce ul.products,
	.motion-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.motion-footer__panel {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 28px;
	}

	.motion-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce section.related.products ul.products.columns-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.motion-footer__column--cta,
	.motion-footer__bar {
		grid-template-columns: 1fr;
		display: grid;
	}

	.motion-footer__legal {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.motion-shell {
		width: min(100% - 28px, 1180px);
	}

	.motion-brand small,
	.motion-cart span {
		display: none;
	}

	.motion-header__inner {
		gap: 12px;
		min-height: 72px;
	}

	.motion-nav {
		top: 100%;
	}

	.motion-hero h1,
	.motion-page-hero h1 {
		font-size: 42px;
	}

	.motion-hero p,
	.motion-page-hero p {
		font-size: 16px;
	}

	.motion-section {
		padding: 58px 0;
	}

	.motion-section h2,
	.motion-story h2,
	.motion-copy-block h2 {
		font-size: 32px;
	}

	.motion-actions,
	.motion-section__heading--split {
		display: grid;
		align-items: start;
	}

	.motion-button,
	.button,
	button,
	input[type="submit"],
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button {
		width: 100%;
	}

	.motion-header .motion-menu-toggle {
		width: 44px;
	}

	.motion-hero__visual {
		min-height: 360px;
	}

	.motion-mark {
		width: 150px;
	}

	.motion-signal {
		width: 146px;
		padding: 10px;
	}

	.motion-signal--right {
		top: 122px;
	}

	.motion-signal--bottom {
		left: 30px;
	}

	.motion-method-grid,
	.motion-category-grid,
	.motion-product-grid,
	.woocommerce .products ul,
	.woocommerce ul.products,
	.motion-contact-grid,
	.motion-post-card {
		grid-template-columns: 1fr;
	}

	.motion-content,
	.motion-woo {
		padding: 18px;
	}

	.motion-footer {
		padding: 46px 0 22px;
	}

	.motion-footer__rail {
		grid-template-columns: 1fr 0.8fr 0.5fr;
		margin-bottom: 12px;
	}

	.motion-footer__panel {
		padding: 22px;
	}

	.motion-footer__columns {
		grid-template-columns: 1fr;
	}

	.motion-footer__button {
		width: 100%;
	}

	.woocommerce section.related.products ul.products.columns-3 {
		grid-template-columns: 1fr !important;
	}

	.woocommerce section.related.products ul.products.columns-3 li.product a.woocommerce-loop-product__link {
		grid-template-rows: 220px auto auto;
	}

	.woocommerce section.related.products ul.products.columns-3 li.product a img {
		height: 220px !important;
	}

	.motion-footer__bar,
	.motion-footer__legal {
		gap: 10px;
	}

	.woocommerce ul.products li.product a img {
		height: 220px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Final shop guard: keep WooCommerce defaults from shrinking cards or restoring bright buttons. */
.motion-woo .woocommerce ul.products,
.woocommerce-page .motion-woo ul.products {
	display: grid !important;
	gap: 22px !important;
	padding: 0 !important;
	list-style: none !important;
}

@media (min-width: 781px) {
	.motion-woo .woocommerce ul.products,
	.woocommerce-page .motion-woo ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 780px) and (min-width: 521px) {
	.motion-woo .woocommerce ul.products,
	.woocommerce-page .motion-woo ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 520px) {
	.motion-woo .woocommerce ul.products,
	.woocommerce-page .motion-woo ul.products {
		grid-template-columns: 1fr !important;
	}
}

.motion-woo .woocommerce ul.products li.product,
.woocommerce-page .motion-woo ul.products li.product {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	border-color: var(--line) !important;
	background: var(--paper) !important;
	box-shadow: var(--soft-shadow) !important;
}

.motion-woo .woocommerce ul.products li.product:hover,
.woocommerce-page .motion-woo ul.products li.product:hover {
	border-color: rgba(52, 79, 74, 0.38) !important;
	box-shadow: var(--shadow) !important;
}

.motion-woo .woocommerce ul.products li.product a img,
.woocommerce-page .motion-woo ul.products li.product a img {
	width: 100% !important;
	height: 260px !important;
	object-fit: contain !important;
	padding: 18px !important;
	background: linear-gradient(180deg, #fffdf8, #ebe4da) !important;
}

.motion-woo .woocommerce ul.products li.product a.button,
.motion-woo .woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce-page .motion-woo ul.products li.product a.button,
.woocommerce-page .motion-woo ul.products li.product a.add_to_cart_button {
	width: auto !important;
	min-height: 46px !important;
	margin: 0 18px !important;
	border-radius: 8px !important;
	background: var(--carbon) !important;
	background-color: var(--carbon) !important;
	color: var(--paper) !important;
	box-shadow: 0 14px 26px rgba(23, 22, 21, 0.16) !important;
	white-space: nowrap !important;
}

.motion-woo .woocommerce ul.products li.product a.button:hover,
.motion-woo .woocommerce ul.products li.product a.add_to_cart_button:hover,
.woocommerce-page .motion-woo ul.products li.product a.button:hover,
.woocommerce-page .motion-woo ul.products li.product a.add_to_cart_button:hover {
	background: var(--teal-dark) !important;
	background-color: var(--teal-dark) !important;
	color: var(--paper) !important;
}
