/*
Theme Name: PendantForge
Theme URI: https://example.com/pendantforge
Author: Custom Build
Author URI: https://example.com
Description: A WooCommerce storefront for customizable metal pendants, photo medallions, and dog tags.
Requires at least: 6.7
Tested up to: 7.0
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: metaltag-studio
Tags: e-commerce, custom-logo, featured-images, full-width-template, one-column
*/

:root {
	--mts-bg: #f7f5f0;
	--mts-ink: #171717;
	--mts-muted: #68645e;
	--mts-line: #ded8cc;
	--mts-panel: #ffffff;
	--mts-dark: #101010;
	--mts-gold: #c99b43;
	--mts-gold-dark: #8c6724;
	--mts-silver: #d8dde1;
	--mts-rose: #b77a68;
	--mts-success: #0d7a4d;
	--mts-alert: #b52424;
	--mts-radius: 8px;
	--mts-shadow: 0 18px 50px rgba(18, 16, 12, 0.14);
	--mts-width: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mts-bg);
	color: var(--mts-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

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

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

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

.mts-topbar {
	background: var(--mts-dark);
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.02em;
}

.mts-topbar__inner,
.mts-header__inner,
.mts-section__inner {
	width: min(100% - 32px, var(--mts-width));
	margin: 0 auto;
}

.mts-topbar__inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
}

.mts-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 245, 240, 0.94);
	border-bottom: 1px solid var(--mts-line);
	backdrop-filter: blur(18px);
}

.mts-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: 76px;
}

.mts-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 20px;
	letter-spacing: 0.02em;
}

.mts-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 2px solid var(--mts-gold);
	border-radius: 50%;
	font-size: 14px;
}

.mts-brand__logo {
	width: 190px;
	max-width: 34vw;
	height: auto;
	display: block;
}

.mts-brand__text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mts-brand .custom-logo {
	max-width: 190px;
	max-height: 60px;
	width: auto;
	height: auto;
}

.mts-menu-toggle {
	display: none;
	position: relative;
	width: 40px;
	height: 40px;
	min-height: 40px;
	padding: 0;
	border: 1px solid rgba(21, 21, 21, 0.18);
	border-radius: 10px;
	background: rgba(255, 250, 240, 0.92);
	color: var(--mts-ink);
	box-shadow: 0 8px 22px rgba(18, 16, 12, 0.08);
}

.mts-menu-toggle__icon,
.mts-menu-toggle__icon::before,
.mts-menu-toggle__icon::after {
	display: block;
	position: absolute;
	left: 10px;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.mts-menu-toggle__icon {
	top: 19px;
}

.mts-menu-toggle__icon::before,
.mts-menu-toggle__icon::after {
	content: "";
	left: 0;
}

.mts-menu-toggle__icon::before {
	top: -7px;
	width: 14px;
}

.mts-menu-toggle__icon::after {
	top: 7px;
	width: 22px;
}

.mts-menu-toggle:hover,
.mts-menu-toggle:focus {
	border-color: var(--mts-gold);
	background: #fff;
	color: var(--mts-gold-dark);
}

.mts-header.is-menu-open .mts-menu-toggle__icon {
	transform: rotate(45deg);
}

.mts-header.is-menu-open .mts-menu-toggle__icon::before {
	opacity: 0;
}

.mts-header.is-menu-open .mts-menu-toggle__icon::after {
	top: 0;
	width: 18px;
	transform: rotate(-90deg);
}

.mts-nav ul,
.mts-actions ul {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mts-nav > ul {
	justify-content: center;
}

.mts-nav li {
	position: relative;
}

.mts-nav a,
.mts-actions a {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.mts-nav__item--has-menu > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-3px) rotate(45deg);
}

.mts-subnav {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	z-index: 80;
	display: grid !important;
	min-width: 218px;
	gap: 0 !important;
	padding: 8px !important;
	background: #fffaf0;
	border: 1px solid var(--mts-line);
	box-shadow: 0 18px 45px rgba(20, 20, 20, 0.12);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.mts-nav__item--has-menu::after {
	content: "";
	position: absolute;
	left: -18px;
	right: -18px;
	top: 100%;
	height: 14px;
}

.mts-subnav a {
	display: block;
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 12px;
	letter-spacing: 0.03em;
}

.mts-subnav a:hover,
.mts-subnav a:focus {
	background: rgba(185, 133, 43, 0.12);
}

.mts-nav__item--has-menu:hover .mts-subnav,
.mts-nav__item--has-menu:focus-within .mts-subnav {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.mts-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.mts-language {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--mts-line);
	border-radius: 50%;
	font-size: 12px;
}

.mts-quote-link {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--mts-ink);
	border-radius: 6px;
	background: var(--mts-ink);
	color: #fff;
}

.mts-button,
.button,
button,
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--mts-ink);
	border-radius: 6px;
	background: var(--mts-ink);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.mts-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	transform: translateY(-1px);
	background: var(--mts-gold-dark);
	border-color: var(--mts-gold-dark);
	color: #fff;
}

.mts-button--light {
	background: #fff;
	color: var(--mts-ink);
	border-color: #fff;
}

.mts-button--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

.mts-button--outline {
	background: transparent;
	color: var(--mts-ink);
}

.mts-customize-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: auto;
	text-align: center;
	line-height: 1.1;
}

.woocommerce ul.products li.product .button.mts-customize-button,
.woocommerce ul.products li.product a.button.mts-customize-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: auto;
	padding: 0 18px;
	text-align: center;
	white-space: nowrap;
}

.mts-hero {
	min-height: min(720px, calc(100vh - 122px));
	display: grid;
	align-items: end;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.66) 35%, rgba(0, 0, 0, 0.12) 72%),
		url("assets/images/hero-custom-metal-pendants.png") center / cover no-repeat;
	color: #fff;
}

.mts-hero__inner {
	width: min(100% - 32px, var(--mts-width));
	margin: 0 auto;
	padding: 74px 0 84px;
}

.mts-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: #ead8ae;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.mts-kicker::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
}

.mts-kicker--dark {
	color: var(--mts-gold-dark);
}

.mts-hero h1 {
	max-width: 640px;
	margin: 0;
	font-size: clamp(24px, 3.1vw, 39px);
	line-height: 1.08;
	text-transform: uppercase;
}

.mts-hero p {
	max-width: 520px;
	margin: 22px 0 32px;
	color: rgba(255, 255, 255, 0.84);
	font-size: 18px;
}

.mts-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mts-trust {
	background: var(--mts-panel);
	border-bottom: 1px solid var(--mts-line);
}

.mts-trust__grid {
	width: min(100% - 32px, var(--mts-width));
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--mts-line);
}

.mts-trust__item {
	background: var(--mts-panel);
	padding: 20px;
}

.mts-trust__item strong {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mts-trust__item span {
	display: block;
	margin-top: 4px;
	color: var(--mts-muted);
	font-size: 14px;
}

.mts-section {
	padding: 76px 0;
}

.mts-section--compact {
	padding-top: 30px;
}

.mts-section--dark {
	background: var(--mts-dark);
	color: #fff;
}

.mts-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.mts-section__head h2 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.18;
	text-transform: uppercase;
}

.mts-section__head p {
	max-width: 420px;
	margin: 0;
	color: var(--mts-muted);
}

.mts-section-action {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.mts-section--dark .mts-section__head p {
	color: rgba(255, 255, 255, 0.68);
}

.mts-category-grid,
.mts-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.mts-category {
	min-height: 290px;
	padding: 26px;
	background: var(--mts-panel);
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	box-shadow: var(--mts-shadow);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	position: relative;
}

.mts-category::after {
	content: "";
	position: absolute;
	right: -46px;
	bottom: -56px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 155, 67, 0.42), rgba(201, 155, 67, 0));
	pointer-events: none;
}

.mts-category h3,
.mts-process h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.2;
}

.mts-category p,
.mts-process p {
	margin: 14px 0 0;
	color: var(--mts-muted);
}

.mts-section--dark .mts-process p {
	color: rgba(255, 255, 255, 0.7);
}

.mts-category__meta {
	display: inline-flex;
	width: fit-content;
	margin-top: 20px;
	padding: 7px 10px;
	border: 1px solid var(--mts-line);
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mts-process {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--mts-radius);
	background: rgba(255, 255, 255, 0.06);
}

.mts-process__number {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin-bottom: 28px;
	border-radius: 50%;
	background: var(--mts-gold);
	color: #111;
	font-weight: 900;
}

.mts-page-hero {
	min-height: 460px;
	display: grid;
	align-items: end;
	padding: 96px 0 74px;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.16) 100%),
		url("assets/images/hero-custom-metal-pendants.png") center / cover no-repeat;
	border-bottom: 1px solid var(--mts-line);
	color: #fff;
}

.mts-page-hero--custom-pendants {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.16) 100%),
		url("assets/images/hero-custom-pendants-factory.png");
}

.mts-page-hero--factory {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.2) 100%),
		url("assets/images/hero-factory-workshop.png");
}

.mts-page-hero--materials-finishes {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.16) 100%),
		url("assets/images/hero-materials-finishes.png");
}

.mts-page-hero--wholesale-oem {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.6) 44%, rgba(0, 0, 0, 0.18) 100%),
		url("assets/images/hero-wholesale-oem.png");
}

.mts-page-hero--request-quote {
	background-image:
		linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.18) 100%),
		url("assets/images/hero-request-quote.png");
}

.mts-page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-size: clamp(24px, 2.75vw, 36px);
	line-height: 1.12;
	text-transform: uppercase;
}

.mts-page-hero p {
	max-width: 720px;
	margin: 22px 0 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 18px;
}

.mts-page-hero .mts-kicker--dark {
	color: #ead8ae;
}

.mts-page-hero .mts-button--outline {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.68);
}

.mts-split {
	display: grid;
	grid-template-columns: 0.94fr 1.06fr;
	gap: 42px;
	align-items: center;
}

.mts-split--top {
	align-items: start;
}

.mts-visual-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 38px;
	align-items: center;
}

.mts-visual-copy {
	display: grid;
	gap: 16px;
}

.mts-visual-copy .mts-kicker {
	margin-bottom: 0;
}

.mts-visual-copy h2 {
	margin: 0;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.18;
	text-transform: uppercase;
}

.mts-visual-copy p {
	margin: 0;
	color: var(--mts-muted);
}

.mts-visual-media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: var(--mts-shadow);
}

.mts-visual-media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.mts-visual-list {
	display: grid;
	gap: 12px;
	margin: 6px 0 0;
	padding: 0;
	list-style: none;
}

.mts-visual-list li {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 14px;
	padding: 13px 0;
	border-top: 1px solid var(--mts-line);
}

.mts-visual-list strong {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-visual-list span {
	color: var(--mts-muted);
}

.mts-feature-panel {
	padding: 34px;
	background: var(--mts-panel);
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	box-shadow: var(--mts-shadow);
}

.mts-feature-panel h2 {
	margin: 0;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.18;
	text-transform: uppercase;
}

.mts-feature-panel p {
	color: var(--mts-muted);
}

.mts-capability-board,
.mts-factory-panel {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.mts-capability-board div,
.mts-factory-panel div {
	min-height: 138px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-capability-board strong {
	font-size: 15px;
	line-height: 1.2;
}

.mts-capability-board span {
	color: var(--mts-muted);
}

.mts-factory-panel div {
	min-height: 118px;
	background: linear-gradient(135deg, #111, #2b2a26);
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mts-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.mts-info-card {
	padding: 26px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-info-card span {
	display: inline-flex;
	margin-bottom: 20px;
	color: var(--mts-gold-dark);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mts-info-card h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.22;
}

.mts-info-card p {
	margin: 14px 0 0;
	color: var(--mts-muted);
}

.mts-info-grid--dark .mts-info-card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: none;
}

.mts-info-grid--dark .mts-info-card p {
	color: rgba(255, 255, 255, 0.7);
}

.mts-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.mts-photo-card {
	overflow: hidden;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-photo-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #f4f1ea;
}

.mts-photo-card h3,
.mts-photo-card p {
	margin-right: 18px;
	margin-left: 18px;
}

.mts-photo-card h3 {
	margin-top: 18px;
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 1.22;
	text-transform: uppercase;
}

.mts-photo-card p {
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--mts-muted);
}

.mts-faq-list {
	display: grid;
	gap: 12px;
}

.mts-faq-list details {
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-faq-list summary {
	cursor: pointer;
	padding: 18px 20px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mts-faq-list p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--mts-muted);
}

.mts-case-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.mts-case-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-case-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #f4f1ea;
}

.mts-case-card__body {
	flex: 1;
	display: grid;
	gap: 10px;
	padding: 18px;
}

.mts-case-card span {
	color: var(--mts-gold-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mts-case-card h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.22;
	text-transform: uppercase;
}

.mts-case-card p {
	margin: 0;
	color: var(--mts-muted);
	font-size: 14px;
	line-height: 1.5;
}

.mts-case-card p strong {
	color: var(--mts-ink);
}

.mts-case-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 4px;
}

.mts-case-card__actions a {
	width: fit-content;
	color: var(--mts-gold-dark);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mts-save-idea {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--mts-line);
	border-radius: 999px;
	background: #fffaf0;
	color: var(--mts-ink);
	cursor: pointer;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mts-save-idea:hover,
.mts-save-idea:focus,
.mts-save-idea.is-saved {
	border-color: var(--mts-gold);
	background: rgba(185, 133, 43, 0.14);
}

.mts-save-idea__icon {
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.mts-save-idea.is-saved .mts-save-idea__icon {
	background: var(--mts-gold);
	border-color: var(--mts-gold);
	box-shadow: inset 0 0 0 3px #fffaf0;
}

.mts-saved-ideas {
	position: sticky;
	bottom: 16px;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 28px auto 0;
	padding: 14px 16px;
	border: 1px solid rgba(185, 133, 43, 0.42);
	border-radius: 8px;
	background: rgba(21, 21, 21, 0.94);
	color: #fffaf0;
	box-shadow: 0 18px 48px rgba(18, 16, 12, 0.22);
}

.mts-saved-ideas[hidden] {
	display: none;
}

.mts-saved-ideas div {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.mts-saved-ideas strong {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-saved-ideas span {
	overflow: hidden;
	color: rgba(255, 250, 240, 0.72);
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mts-saved-ideas .mts-button {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 0 18px;
}

.mts-saved-ideas button {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: rgba(255, 250, 240, 0.72);
	cursor: pointer;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.mts-cta-band h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.18;
	text-transform: uppercase;
}

.mts-cta-band p {
	max-width: 660px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.7);
}

.mts-spec-list {
	display: grid;
	gap: 12px;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}

.mts-spec-list li {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--mts-line);
}

.mts-metal-stack {
	display: grid;
	gap: 14px;
}

.mts-metal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px;
	border-radius: var(--mts-radius);
	background: linear-gradient(135deg, #fff, #ece7da);
	border: 1px solid var(--mts-line);
}

.mts-metal:nth-child(2) {
	background: linear-gradient(135deg, #fff, var(--mts-silver));
}

.mts-metal:nth-child(3) {
	background: linear-gradient(135deg, #fff, #efd0c6);
}

.mts-metal strong {
	font-size: 18px;
}

.mts-metal span {
	color: var(--mts-muted);
}

.site-main {
	width: min(100% - 32px, var(--mts-width));
	margin: 48px auto 72px;
}

.site-main h1,
.woocommerce-products-header__title,
.woocommerce div.product .product_title {
	font-size: clamp(24px, 2.75vw, 36px);
	line-height: 1.12;
}

.site-main h2 {
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.18;
}

.site-main h3 {
	font-size: 16px;
	line-height: 1.22;
}

.mts-shop-layout {
	width: min(100% - 32px, var(--mts-width));
	margin: 48px auto 72px;
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 34px;
	align-items: start;
}

.mts-shop-layout .site-main {
	width: auto;
	margin: 0;
}

.mts-shop-intro {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin: 0 0 24px;
	padding: 18px 20px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-shop-intro p {
	max-width: 760px;
	margin: 0;
	color: var(--mts-muted);
}

.mts-shop-main {
	order: 2;
}

.mts-shop-sidebar {
	order: 1;
	position: sticky;
	top: 98px;
	display: grid;
	gap: 18px;
}

.mts-shop-widget {
	padding: 20px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.mts-shop-widget__title,
.mts-shop-widget .widgettitle {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-shop-widget ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mts-shop-widget li {
	color: var(--mts-muted);
	font-size: 14px;
}

.mts-shop-widget a {
	color: var(--mts-ink);
	font-weight: 700;
}

.mts-shop-widget input[type="search"],
.mts-shop-widget input[type="text"],
.mts-shop-widget input[type="number"] {
	width: 100%;
	min-height: 42px;
	padding: 9px 11px;
	border: 1px solid #cfc8bb;
	border-radius: 6px;
	background: #fff;
	color: var(--mts-ink);
	font: inherit;
}

.mts-shop-widget .woocommerce-product-search {
	display: grid;
	gap: 10px;
}

.mts-shop-widget .price_slider_wrapper .ui-widget-content {
	background: #e6ded0;
}

.mts-shop-widget .ui-slider .ui-slider-range,
.mts-shop-widget .ui-slider .ui-slider-handle {
	background: var(--mts-gold);
}

.mts-product-strip {
	min-height: 120px;
}

.mts-quote-shell {
	padding: 28px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: var(--mts-shadow);
}

.mts-quote-form {
	display: grid;
	gap: 16px;
}

.mts-field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.mts-quote-form label {
	display: grid;
	gap: 7px;
	color: var(--mts-ink);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-quote-form input,
.mts-quote-form select,
.mts-quote-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #cfc8bb;
	border-radius: 6px;
	background: #fff;
	color: var(--mts-ink);
	font: inherit;
	text-transform: none;
	letter-spacing: 0;
}

.mts-quote-form small {
	color: var(--mts-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
}

.mts-quote-form .mts-consent {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	font-weight: 800;
	line-height: 1.45;
	text-transform: none;
	letter-spacing: 0;
}

.mts-quote-form .mts-consent input {
	width: auto;
	min-height: 0;
	margin-top: 4px;
}

.mts-quote-form .mts-consent a {
	text-decoration: underline;
}

.mts-notice {
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: 6px;
	font-weight: 800;
}

.mts-notice--success {
	background: #e8f5ee;
	color: var(--mts-success);
}

.mts-notice--error {
	background: #f7e7e7;
	color: var(--mts-alert);
}

.mts-footer {
	background: #0d0d0d;
	color: #fff;
}

.mts-footer__inner {
	width: min(100% - 32px, var(--mts-width));
	margin: 0 auto;
	padding: 54px 0;
	display: grid;
	grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.mts-footer h2,
.mts-footer h3 {
	margin: 0 0 16px;
	font-size: 13px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-footer p,
.mts-footer a {
	color: rgba(255, 255, 255, 0.72);
}

.mts-footer ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mts-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 18px 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	display: flex;
	flex-direction: column;
	float: none;
	width: auto;
	margin: 0;
	padding: 14px;
	background: var(--mts-panel);
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	box-shadow: 0 10px 28px rgba(18, 16, 12, 0.08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--mts-ink);
	font-size: 16px;
	font-weight: 800;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--mts-gold-dark);
	font-weight: 900;
}

.woocommerce ul.products li.product .button {
	margin-top: auto;
}

.woocommerce span.onsale {
	min-height: 0;
	min-width: 0;
	padding: 7px 10px;
	border-radius: 999px;
	background: var(--mts-alert);
	line-height: 1;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 42px;
}

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

.woocommerce div.product div.images img {
	border-radius: var(--mts-radius);
	background: #fff;
	box-shadow: var(--mts-shadow);
}

.woocommerce div.product form.cart {
	padding: 22px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #fff;
}

.mts-customizer {
	display: grid;
	gap: 16px;
	margin: 0 0 22px;
	padding: 18px;
	border: 1px solid var(--mts-line);
	border-radius: var(--mts-radius);
	background: #faf8f3;
}

.mts-customizer h3 {
	margin: 0;
	font-size: 18px;
	text-transform: uppercase;
}

.mts-field {
	display: grid;
	gap: 7px;
}

.mts-field label {
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mts-field input,
.mts-field select,
.mts-field textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #cfc8bb;
	border-radius: 6px;
	background: #fff;
	color: var(--mts-ink);
	font: inherit;
}

.mts-field small {
	color: var(--mts-muted);
}

.mts-bulk-quote {
	display: grid;
	gap: 8px;
	margin: 16px 0 0;
}

.mts-bulk-quote .mts-button {
	width: 100%;
}

.mts-bulk-quote span {
	color: var(--mts-muted);
	font-size: 13px;
	line-height: 1.45;
}

.mts-field--inline {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mts-option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border: 1px solid var(--mts-line);
	border-radius: 6px;
	background: #fff;
	font-weight: 700;
}

.mts-option input {
	width: auto;
	min-height: 0;
}

.mts-cart-meta {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--mts-muted);
	font-size: 13px;
}

@media (max-width: 980px) {
	.mts-header__inner {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 16px 0;
	}

	.mts-nav ul,
	.mts-actions ul {
		flex-wrap: wrap;
		gap: 14px;
	}

	.mts-nav > ul {
		justify-content: flex-start;
	}

	.mts-subnav {
		position: static;
		display: flex !important;
		flex-wrap: wrap;
		min-width: 0;
		padding: 0 !important;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.mts-nav__item--has-menu::after {
		display: none;
	}

	.mts-subnav a {
		padding: 0;
		font-size: 11px;
		color: var(--mts-muted);
	}

	.mts-trust__grid,
	.mts-category-grid,
	.mts-process-grid,
	.mts-photo-grid,
	.mts-case-grid,
	.mts-footer__inner,
	.woocommerce ul.products,
	.woocommerce div.product,
	.mts-split,
	.mts-visual-split,
	.mts-info-grid,
	.mts-shop-layout {
		grid-template-columns: 1fr 1fr;
	}

	.mts-shop-sidebar {
		position: static;
	}

	.mts-cta-band {
		display: grid;
	}

	.mts-shop-intro {
		display: grid;
	}
}

@media (max-width: 680px) {
	.mts-topbar__inner,
	.mts-section__head,
	.mts-hero__actions {
		display: grid;
	}

	.mts-hero {
		min-height: 620px;
		background-position: 64% center;
	}

	.mts-case-card__actions,
	.mts-saved-ideas {
		align-items: stretch;
		flex-direction: column;
	}

	.mts-case-card__actions a,
	.mts-save-idea,
	.mts-saved-ideas .mts-button,
	.mts-saved-ideas button {
		justify-content: center;
		width: 100%;
	}

	.mts-trust__grid,
	.mts-category-grid,
	.mts-process-grid,
	.mts-photo-grid,
	.mts-case-grid,
	.mts-footer__inner,
	.woocommerce ul.products,
	.woocommerce div.product,
	.mts-split,
	.mts-visual-split,
	.mts-field--inline,
	.mts-info-grid,
	.mts-capability-board,
	.mts-factory-panel,
	.mts-field-grid,
	.mts-shop-layout {
		grid-template-columns: 1fr;
	}

	.mts-shop-main,
	.mts-shop-sidebar {
		order: initial;
	}

	.mts-section {
		padding: 54px 0;
	}

	.mts-visual-list li {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.mts-page-hero {
		padding: 58px 0 46px;
	}

	.mts-quote-shell,
	.mts-feature-panel {
		padding: 22px;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 15px;
	}

	.mts-topbar {
		font-size: 11px;
	}

	.mts-topbar__inner,
	.mts-header__inner,
	.mts-section__inner,
	.site-main,
	.mts-shop-layout {
		width: min(100% - 24px, var(--mts-width));
	}

	.mts-topbar__inner {
		gap: 4px;
		padding: 7px 0;
	}

	.mts-topbar__inner span:last-child {
		display: none;
	}

	.mts-header {
		position: sticky;
	}

	.mts-header__inner {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 10px 12px;
		min-height: 0;
		padding: 8px 0;
	}

	.mts-brand__logo {
		width: min(172px, 62vw);
		max-width: none;
	}

	.mts-menu-toggle {
		display: inline-grid;
		place-items: center;
		justify-self: end;
	}

	.mts-nav {
		display: none;
		grid-column: 1 / -1;
		overflow: visible;
		padding: 8px 0 0;
		border-top: 1px solid var(--mts-line);
	}

	.mts-nav > ul {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		min-width: 0;
		gap: 0;
	}

	.mts-nav li {
		border-bottom: 1px solid rgba(33, 33, 33, 0.08);
	}

	.mts-nav li:last-child {
		border-bottom: 0;
	}

	.mts-nav a,
	.mts-actions a {
		font-size: 12px;
		letter-spacing: 0.03em;
	}

	.mts-nav a {
		display: block;
		padding: 10px 0;
	}

	.mts-nav__item--has-menu > a::after {
		display: none;
	}

	.mts-subnav {
		display: none !important;
	}

	.mts-actions {
		display: none;
		grid-column: 1 / -1;
		justify-content: space-between;
		gap: 10px;
		width: 100%;
	}

	.mts-header.is-menu-open .mts-nav,
	.mts-header.is-menu-open .mts-actions {
		display: flex;
	}

	.mts-header.is-menu-open .mts-nav {
		display: block;
	}

	.mts-actions a {
		min-height: 38px;
	}

	.mts-cart-link,
	.mts-quote-link {
		justify-content: center;
		flex: 1 1 0;
		text-align: center;
	}

	.mts-hero {
		min-height: 520px;
		padding: 28px 0;
		background-position: 58% center;
	}

	.mts-hero__inner {
		padding: 0 12px 28px;
	}

	.mts-hero h1,
	.mts-page-hero h1,
	.site-main h1,
	.woocommerce-products-header__title,
	.woocommerce div.product .product_title {
		font-size: 24px;
		line-height: 1.14;
	}

	.mts-hero p,
	.mts-page-hero p {
		font-size: 15px;
		line-height: 1.55;
	}

	.mts-hero__actions,
	.mts-page-hero__actions,
	.mts-section__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.mts-button,
	.button,
	button,
	input[type="submit"],
	.wp-element-button,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit {
		width: 100%;
		min-height: 44px;
		padding-right: 14px;
		padding-left: 14px;
		text-align: center;
	}

	.mts-menu-toggle {
		width: 40px;
		min-width: 40px;
		min-height: 40px;
	}

	.mts-section {
		padding: 44px 0;
	}

	.mts-section__head {
		gap: 10px;
	}

	.mts-section__head h2,
	.site-main h2,
	.mts-feature-panel h2 {
		font-size: 21px;
		line-height: 1.18;
	}

	.mts-page-hero {
		padding: 46px 0 38px;
		background-position: center;
	}

	.mts-visual-split,
	.mts-split,
	.mts-shop-layout,
	.woocommerce div.product {
		gap: 22px;
	}

	.woocommerce div.product form.cart {
		display: grid;
		gap: 14px;
		padding: 16px;
	}

	.woocommerce div.product form.cart .quantity {
		float: none;
		margin: 0;
	}

	.woocommerce div.product form.cart .button,
	.woocommerce div.product form.cart button.button {
		float: none;
		width: 100%;
		margin: 0;
	}

	.mts-bulk-quote {
		display: grid;
		width: 100%;
		gap: 10px;
		margin: 4px 0 0;
	}

	.mts-bulk-quote .mts-button {
		display: inline-flex;
		width: 100%;
		min-height: 46px;
		white-space: normal;
	}

	.mts-bulk-quote span {
		display: block;
		width: 100%;
		font-size: 12px;
		line-height: 1.45;
	}

	.mts-visual-card,
	.mts-info-card,
	.mts-case-card,
	.mts-photo-card,
	.mts-shop-widget,
	.mts-quote-shell,
	.mts-feature-panel {
		border-radius: 6px;
	}

	.mts-case-card__body,
	.mts-info-card,
	.mts-shop-widget,
	.mts-quote-shell,
	.mts-feature-panel {
		padding: 18px;
	}

	.mts-shop-layout {
		margin-top: 34px;
		margin-bottom: 52px;
	}

	.mts-shop-intro {
		padding: 16px;
	}

	.woocommerce ul.products {
		gap: 16px;
	}

	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
		width: 100% !important;
		padding: 12px;
	}

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

	.mts-field-grid,
	.mts-field--inline {
		gap: 12px;
	}

	.mts-quote-form textarea {
		min-height: 150px;
	}

	.mts-footer__inner {
		gap: 22px;
	}

	.mts-footer {
		padding-top: 42px;
	}

	.mts-saved-ideas {
		left: 12px;
		right: 12px;
		bottom: 10px;
		margin-top: 20px;
	}
}

@media (max-width: 420px) {
	.mts-topbar__inner,
	.mts-header__inner,
	.mts-section__inner,
	.site-main,
	.mts-shop-layout {
		width: min(100% - 18px, var(--mts-width));
	}

	.mts-brand__logo {
		width: min(158px, 70vw);
	}

	.mts-nav > ul {
		gap: 10px;
	}

	.mts-actions {
		grid-template-columns: 1fr 1fr;
	}

	.mts-header.is-menu-open .mts-actions {
		display: grid;
	}

	.mts-hero {
		min-height: 480px;
	}

	.mts-hero h1,
	.mts-page-hero h1,
	.site-main h1,
	.woocommerce-products-header__title,
	.woocommerce div.product .product_title {
		font-size: 22px;
	}

	.mts-trust-item,
	.mts-capability-board div,
	.mts-factory-panel div,
	.mts-info-card,
	.mts-case-card__body,
	.mts-shop-widget,
	.mts-quote-shell,
	.mts-feature-panel {
		padding: 16px;
	}

	.mts-page-hero {
		padding: 40px 0 34px;
	}

	.woocommerce div.product form.cart {
		padding: 14px;
	}

	.woocommerce div.product form.cart .quantity,
	.woocommerce div.product form.cart .quantity input,
	.woocommerce div.product form.cart .button,
	.mts-bulk-quote,
	.mts-bulk-quote .mts-button {
		width: 100%;
	}
}
