/**
 * WMP Kitchen Equipment — theme styles.
 * Ported from the wmp-mockups reference (github.com/kentrubio/wmp-mockups),
 * translated from the mockup's inline-style + !important approach into a
 * real stylesheet. Mobile breakpoint (860px) matches the mockup exactly.
 */

:root {
	--wmp-primary: #1B4F8A;
	--wmp-primary-dark: #0D2E52;
	--wmp-primary-light: #4A90D9;
	--wmp-steel-silver: #E8ECEF;
	--wmp-charcoal: #2C3E50;
	--wmp-warm-gray: #6C7A89;
	--wmp-off-white: #F7F9FB;
	--wmp-white: #FFFFFF;
	--wmp-amber: #E8A317;
	--wmp-hairline: #D5D8DC;
	--wmp-muted-on-dark: #A0AEC0;
}

/* Base */
body {
	font-family: 'Inter', sans-serif;
	color: var(--wmp-charcoal);
	background: var(--wmp-off-white);
}
a {
	color: var(--wmp-primary);
	text-decoration: none;
}
a:hover {
	color: var(--wmp-primary-light);
}
.wmp-icon {
	vertical-align: middle;
	flex-shrink: 0;
}

/* Top utility bar */
.wmp-top-bar {
	background: var(--wmp-primary-dark);
	color: var(--wmp-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	height: 36px;
	display: flex;
	align-items: center;
}
.wmp-top-bar__row {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px 16px;
}
.wmp-top-bar__contact {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.wmp-top-bar__contact span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.wmp-top-bar__icons {
	display: flex;
	gap: 14px;
	align-items: center;
	white-space: nowrap;
	font-size: 14px;
}
.wmp-top-bar__icons a {
	color: var(--wmp-white);
	display: inline-flex;
}

/* Main nav */
.wmp-main-nav {
	background: var(--wmp-white);
	position: sticky;
	top: 0;
	z-index: 10;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.wmp-main-nav__row {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.wmp-main-nav__logo {
	display: block;
}
.wmp-main-nav__logo img {
	height: 40px;
	width: auto;
	display: block;
}
.wmp-main-nav__links ul {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
}
.wmp-main-nav__links a {
	color: var(--wmp-charcoal);
	display: inline-block;
}
.wmp-main-nav__links .current-menu-item > a,
.wmp-main-nav__links .current_page_item > a {
	color: var(--wmp-primary);
	border-bottom: 2px solid var(--wmp-primary);
	padding-bottom: 21px;
}
.wmp-main-nav__actions {
	display: flex;
	gap: 20px;
	align-items: center;
	font-size: 18px;
}
.wmp-main-nav__search-toggle,
.wmp-main-nav__hamburger {
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	color: var(--wmp-charcoal);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}
.wmp-main-nav__hamburger {
	display: none;
}

/* Mobile menu popup */
.wmp-mobile-menu {
	display: none;
	position: fixed;
	top: 100px; /* 36px top bar + 64px nav */
	left: 0;
	width: 100%;
	background: var(--wmp-white);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 9;
	padding: 12px 24px 16px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
}
.wmp-mobile-menu.is-open {
	display: block;
}
.wmp-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.wmp-mobile-menu a {
	color: var(--wmp-charcoal);
	display: block;
	padding: 10px 0;
}
.wmp-mobile-menu .current-menu-item > a,
.wmp-mobile-menu .current_page_item > a {
	color: var(--wmp-primary);
}

/* Footer */
.wmp-footer {
	background: var(--wmp-primary-dark);
	color: var(--wmp-white);
	padding: 96px 0 0;
}
.wmp-footer__columns {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 32px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
}
.wmp-footer__brand {
	font-weight: 800;
	font-size: 18px;
	margin-bottom: 16px;
}
.wmp-footer__about {
	font-size: 14px;
	line-height: 1.6;
	color: var(--wmp-muted-on-dark);
	margin: 0 0 16px;
}
.wmp-footer__social {
	display: flex;
	gap: 16px;
	font-size: 20px;
}
.wmp-footer__social a {
	color: var(--wmp-white);
	display: inline-flex;
}
.wmp-footer__heading {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 16px;
	color: var(--wmp-muted-on-dark);
}
.wmp-footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}
.wmp-footer__links a {
	color: var(--wmp-muted-on-dark);
}
.wmp-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
	color: var(--wmp-white);
}
.wmp-footer__bottom {
	border-top: 1px solid var(--wmp-primary);
	padding: 20px 24px;
	text-align: center;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: var(--wmp-muted-on-dark);
}

/* Channel Picker Modal */
.wmp-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1000;
}
.wmp-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.wmp-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}
.wmp-modal__panel {
	position: relative;
	background: var(--wmp-white);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(13, 46, 82, 0.16);
	max-width: 480px;
	width: 100%;
	padding: 32px;
}
.wmp-modal__close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: var(--wmp-warm-gray);
	cursor: pointer;
	padding: 0;
	display: inline-flex;
}
.wmp-modal__eyebrow {
	font-size: 14px;
	color: var(--wmp-warm-gray);
	margin-bottom: 4px;
}
.wmp-modal__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--wmp-charcoal);
	margin-bottom: 4px;
}
.wmp-modal__sku {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: var(--wmp-warm-gray);
	margin-bottom: 20px;
}
.wmp-modal__prompt {
	font-size: 14px;
	color: var(--wmp-warm-gray);
	margin-bottom: 16px;
}
.wmp-modal__channels {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.wmp-modal__channel {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 56px;
	padding: 0 16px;
	border: 1px solid var(--wmp-hairline);
	border-radius: 8px;
	color: var(--wmp-charcoal);
	font-size: 15px;
	font-weight: 500;
}
.wmp-modal__channel-label {
	flex: 1;
}
.wmp-modal__channel-arrow {
	color: var(--wmp-warm-gray);
	display: inline-flex;
}

/* Contact page — channel icons are accent blue here (unlike the
   modal-based channel lists, which inherit the charcoal text color),
   matching the mockup. */
.wmp-contact-channels .wmp-modal__channel-icon {
	color: var(--wmp-primary);
}
.wmp-modal__note {
	font-size: 13px;
	color: var(--wmp-warm-gray);
	margin-top: 20px;
}

/* Shared buttons */
.wmp-btn {
	display: inline-block;
	border: none;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
}
.wmp-btn:hover {
	color: inherit;
}
.wmp-btn--amber {
	background: var(--wmp-amber);
	color: var(--wmp-white);
	padding: 15px;
	border-radius: 4px;
	line-height: 1.2;
	margin-top: 4px;
}
.wmp-btn--amber:hover {
	color: var(--wmp-white);
	opacity: 0.92;
}
.wmp-btn--outline {
	border: 1px solid var(--wmp-primary);
	color: var(--wmp-primary);
	padding: 12px 28px;
	border-radius: 4px;
	background: none;
}
.wmp-btn--white {
	background: var(--wmp-white);
	color: var(--wmp-primary);
	padding: 0 32px;
	height: 52px;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.wmp-btn--white:hover {
	color: var(--wmp-primary);
	opacity: 0.92;
}

/* Hero banner */
.wmp-hero {
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}
.wmp-hero__row {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
	padding: 34px 24px;
	padding-top: 4em;
	min-height: 560px;
}
.wmp-hero__content {
	flex: 1 1 320px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-start;
}
.wmp-hero__logo {
	height: 96px;
	width: 182px;
	display: block;
}
.wmp-hero__title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--wmp-white);
	max-width: 630px;
}
.wmp-hero__subtitle {
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6;
	margin: 0;
	color: var(--wmp-white);
	max-width: 480px;
	font-style: italic;
}
.wmp-hero__partners {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 6px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 6px;
	padding: 8px 16px;
}
.wmp-hero__partner-logo {
	height: 32px;
	width: auto;
	display: block;
}
.wmp-hero__slider-wrap {
	flex: 1 1 260px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wmp-hero__slider {
	width: min(340px, 100%);
	aspect-ratio: 4 / 6;
	position: relative;
	overflow: hidden;
}
.wmp-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.wmp-hero__slide.is-active {
	opacity: 1;
}

/* Trust bar */
.wmp-trust-bar {
	background: var(--wmp-steel-silver);
}
.wmp-trust-bar__row {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.wmp-trust-bar__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--wmp-charcoal);
	flex: 1;
	min-width: 200px;
	padding: 32px 16px;
	background: none;
	border: none;
	cursor: pointer;
	transition: background 0.1s ease;
}
button.wmp-trust-bar__item:hover {
	background: #D5DBE0;
	color: var(--wmp-primary);
}
.wmp-trust-bar__item svg {
	color: var(--wmp-primary);
}

/* Shared section layout */
.wmp-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 128px 24px;
}
.wmp-section__heading {
	font-size: 28px;
	font-weight: 100;
	text-align: left;
	margin: 0 0 40px;
	color: var(--wmp-primary);
}
.wmp-section__footer-cta {
	text-align: center;
	margin-top: 32px;
}
.wmp-section--white {
	background: var(--wmp-white);
	padding: 128px 24px;
}
.wmp-section--white .wmp-section__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.wmp-section__head-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 32px;
}
.wmp-section__head-row .wmp-section__heading {
	margin: 0;
}
.wmp-section__head-row a {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
}

/* Category grid */
.wmp-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.wmp-category-card {
	background: var(--wmp-white);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(13, 46, 82, 0.08);
	overflow: hidden;
}
.wmp-category-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	min-width: 0;
	background: var(--wmp-steel-silver);
}
.wmp-category-card__image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.wmp-category-card__footer {
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.wmp-category-card__name {
	font-size: 16px;
	font-weight: 600;
	color: var(--wmp-charcoal);
}
.wmp-category-card__link {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--wmp-primary-light);
	white-space: nowrap;
}

/* Product grid */
.wmp-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.wmp-product-card {
	background: var(--wmp-white);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(13, 46, 82, 0.08);
	overflow: hidden;
	position: relative;
}
.wmp-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--wmp-amber);
	color: var(--wmp-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 9999px;
	z-index: 1;
}
.wmp-product-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	position: relative;
	min-width: 0;
	background: var(--wmp-steel-silver);
}
.wmp-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.wmp-product-card__image--placeholder {
	display: block;
}
.wmp-product-card__body {
	padding: 16px;
}
.wmp-product-card__category {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wmp-primary-light);
	margin-bottom: 6px;
}
.wmp-product-card__name {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--wmp-charcoal);
	margin-bottom: 6px;
	line-height: 1.3;
}
.wmp-product-card__spec {
	font-size: 13px;
	color: var(--wmp-warm-gray);
	margin-bottom: 14px;
}
.wmp-product-card__cta {
	width: 100%;
	background: linear-gradient(135deg, var(--wmp-primary), var(--wmp-primary-light));
	color: var(--wmp-white);
	border: none;
	padding: 16px 10px;
	border-radius: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
}

/* Services / value props */
.wmp-services {
	background: var(--wmp-off-white);
	padding: 128px 0;
}
.wmp-services__grid {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
}
.wmp-services__item img {
	display: block;
	width: 100%;
	border-radius: 8px;
	margin-bottom: 16px;
}
.wmp-services__title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--wmp-charcoal);
}
.wmp-services__desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--wmp-warm-gray);
}

/* Client logos */
.wmp-clients {
	background: var(--wmp-white);
	padding: 112px 24px;
}
.wmp-clients__inner {
	max-width: 1200px;
	margin: 0 auto;
}
.wmp-clients__heading {
	font-size: 22px;
	font-weight: 100;
	text-align: left;
	margin: 0 0 32px;
	color: var(--wmp-primary);
}
.wmp-clients__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 24px;
	align-items: center;
}
.wmp-clients__logo {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: contain;
	opacity: 0.85;
}

/* CTA consult banner */
.wmp-cta {
	padding: 128px 24px;
	background-color: var(--wmp-primary-light);
}
.wmp-cta__inner {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}
.wmp-cta__heading {
	font-size: 32px;
	font-weight: 100;
	margin: 0 0 12px;
	color: var(--wmp-white);
}
.wmp-cta__text {
	font-size: 16px;
	margin: 0 0 28px;
	color: var(--wmp-white);
	opacity: 0.9;
}
.wmp-cta--gradient {
	background: linear-gradient(135deg, var(--wmp-primary), var(--wmp-primary-dark));
}
.wmp-cta__heading--bold {
	font-weight: 700;
}

/* Breadcrumb */
.wmp-breadcrumb {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: var(--wmp-warm-gray);
}
.wmp-breadcrumb a {
	color: var(--wmp-warm-gray);
}
.wmp-breadcrumb__current {
	color: var(--wmp-charcoal);
}

/* About: intro */
.wmp-about-intro {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 128px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 48px;
	align-items: center;
}
.wmp-about-intro__eyebrow {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wmp-primary-light);
	margin-bottom: 12px;
}
.wmp-about-intro__heading {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--wmp-charcoal);
}
.wmp-about-intro__text {
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
	color: var(--wmp-charcoal);
}
.wmp-placeholder-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	position: relative;
	border-radius: 8px;
	background: var(--wmp-steel-silver);
	overflow: hidden;
}
.wmp-placeholder-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* About: mini trust row (static, no modal) */
.wmp-trust-row {
	background: var(--wmp-steel-silver);
	padding: 32px 0;
}
.wmp-trust-row__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}
.wmp-trust-row__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--wmp-charcoal);
}
.wmp-trust-row__item svg {
	color: var(--wmp-primary);
}

/* About: value props */
.wmp-value-props {
	max-width: 1200px;
	margin: 0 auto;
	padding: 128px 24px;
}
.wmp-value-props__heading {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
	color: var(--wmp-charcoal);
}
.wmp-value-props__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
}
.wmp-value-props__icon {
	display: block;
	color: var(--wmp-primary);
	margin-bottom: 16px;
}
.wmp-value-props__title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--wmp-charcoal);
}
.wmp-value-props__desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--wmp-warm-gray);
}

/* About: showroom split section */
.wmp-showroom {
	background: var(--wmp-white);
	padding: 128px 24px;
}
.wmp-showroom__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 48px;
	align-items: center;
}
.wmp-showroom__heading {
	font-size: 26px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--wmp-charcoal);
}
.wmp-showroom__text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--wmp-charcoal);
	margin: 0 0 20px;
}
.wmp-showroom__facts {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
	color: var(--wmp-charcoal);
}
.wmp-showroom__fact {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.wmp-showroom__fact svg {
	color: var(--wmp-primary);
	margin-top: 3px;
	flex-shrink: 0;
}

/* Info Modal (extends .wmp-modal) */
.wmp-info-modal .wmp-modal__panel {
	padding: 0;
	max-height: 90vh;
	overflow-y: auto;
}
.wmp-info-modal__image-wrap {
	position: relative;
}
.wmp-info-modal__image-wrap img {
	display: block;
	width: 100%;
	height: auto;
}
.wmp-info-modal__close--on-image {
	color: var(--wmp-white);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.wmp-info-modal__body {
	padding: 32px;
}
.js-wmp-info-modal-close-plain[hidden] {
	display: none;
}

/* Contact page */
.wmp-contact-header {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 24px;
}
.wmp-contact-header__title {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 8px;
	color: var(--wmp-charcoal);
}
.wmp-contact-header__subtitle {
	font-size: 15px;
	color: var(--wmp-warm-gray);
	margin: 0;
	max-width: 560px;
}
.wmp-contact-cards {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 128px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}
.wmp-contact-card {
	background: var(--wmp-white);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(13, 46, 82, 0.08);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.wmp-contact-card__icon {
	color: var(--wmp-primary);
	display: block;
}
.wmp-contact-card__title {
	font-size: 16px;
	font-weight: 600;
	color: var(--wmp-charcoal);
}
.wmp-contact-card__detail {
	font-size: 14px;
	line-height: 1.6;
	color: var(--wmp-warm-gray);
}
.wmp-contact-channels {
	background: var(--wmp-white);
	padding: 128px 24px;
}
.wmp-contact-channels__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 48px;
}
.wmp-contact-channels__heading {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 8px;
	color: var(--wmp-charcoal);
}
.wmp-contact-channels__text {
	font-size: 14px;
	color: var(--wmp-warm-gray);
	margin: 0 0 20px;
}

/* FAQ chat widget ("Connect Now" — simulated demo, no real backend) */
.wmp-faq-chat-wrap {
	max-width: 720px;
	margin: 24px auto 64px;
	padding: 0 24px;
}
.wmp-faq-chat {
	background: var(--wmp-white);
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(13, 46, 82, 0.12);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 600px;
}
.wmp-faq-chat__header {
	background: var(--wmp-primary);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--wmp-white);
}
.wmp-faq-chat__avatar {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background: var(--wmp-primary-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.wmp-faq-chat__name {
	font-size: 15px;
	font-weight: 700;
}
.wmp-faq-chat__status {
	font-size: 12px;
	color: #C9D6E3;
	display: flex;
	align-items: center;
	gap: 6px;
}
.wmp-faq-chat__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 9999px;
	background: #27AE60;
	display: inline-block;
}
.wmp-faq-chat__messages {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: var(--wmp-off-white);
}
.wmp-faq-chat__row {
	display: flex;
}
.wmp-faq-chat__row--bot {
	justify-content: flex-start;
}
.wmp-faq-chat__row--user {
	justify-content: flex-end;
}
.wmp-faq-chat__bubble {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 12px;
	font-size: 14px;
	line-height: 1.5;
}
.wmp-faq-chat__bubble--bot,
.wmp-faq-chat__bubble--typing {
	background: var(--wmp-steel-silver);
	color: var(--wmp-charcoal);
}
.wmp-faq-chat__bubble--typing {
	color: var(--wmp-warm-gray);
}
.wmp-faq-chat__bubble--user {
	background: var(--wmp-primary);
	color: var(--wmp-white);
}
.wmp-faq-chat__quick-replies {
	padding: 12px 20px;
	border-top: 1px solid var(--wmp-hairline);
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.wmp-faq-chat__quick-reply {
	background: var(--wmp-steel-silver);
	color: var(--wmp-primary);
	border: none;
	padding: 8px 14px;
	border-radius: 9999px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}
.wmp-faq-chat__input-row {
	padding: 16px 20px;
	border-top: 1px solid var(--wmp-hairline);
	display: flex;
	gap: 10px;
}
.wmp-faq-chat__input {
	flex: 1;
	border: 1px solid var(--wmp-hairline);
	border-radius: 8px;
	padding: 12px 14px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	color: var(--wmp-charcoal);
}
.wmp-faq-chat__send {
	background: var(--wmp-primary);
	color: var(--wmp-white);
	border: none;
	width: 48px;
	border-radius: 8px;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Shop archive */
.wmp-shop-categories {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 128px;
}
.wmp-shop-empty {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 24px 128px;
	font-size: 15px;
	color: var(--wmp-warm-gray);
}
.wmp-shop-empty a {
	font-weight: 600;
}
.woocommerce-pagination {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 128px;
}

/* Single Product page */
.wmp-pd-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 24px 128px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.wmp-pd-gallery__main {
	width: 100%;
	aspect-ratio: 1 / 1;
	position: relative;
	background: var(--wmp-white);
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(13, 46, 82, 0.08);
	overflow: hidden;
}
.wmp-pd-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
	box-sizing: border-box;
}
.wmp-pd-gallery__placeholder {
	position: absolute;
	inset: 0;
	background: var(--wmp-steel-silver);
}
.wmp-pd-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 9999px;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 8px rgba(13, 46, 82, 0.16);
	color: var(--wmp-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.wmp-pd-gallery__arrow:hover {
	background: var(--wmp-white);
}
.wmp-pd-gallery__arrow--prev {
	left: 12px;
}
.wmp-pd-gallery__arrow--prev svg {
	transform: rotate(180deg);
}
.wmp-pd-gallery__arrow--next {
	right: 12px;
}
.wmp-pd-gallery__thumbs {
	display: flex;
	gap: 12px;
	margin-top: 12px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
}
.wmp-pd-gallery__thumbs::-webkit-scrollbar {
	height: 5px;
}
.wmp-pd-gallery__thumbs::-webkit-scrollbar-thumb {
	background: var(--wmp-hairline);
	border-radius: 9999px;
}
.wmp-pd-gallery__thumb {
	flex: 0 0 calc((100% - 3 * 12px) / 4);
	aspect-ratio: 1 / 1;
	position: relative;
	background: var(--wmp-white);
	border-radius: 8px;
	border: 2px solid var(--wmp-hairline);
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	scroll-snap-align: start;
}
.wmp-pd-gallery__thumb.is-active {
	border-color: var(--wmp-primary);
}
.wmp-pd-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	box-sizing: border-box;
}
.wmp-pd-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
}
.wmp-pd-category {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--wmp-primary-light);
}
.wmp-pd-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0;
	color: var(--wmp-charcoal);
}
.wmp-pd-sku {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	color: var(--wmp-warm-gray);
}
.wmp-pd-stock {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
}
.wmp-pd-stock--in {
	color: #27AE60;
}
.wmp-pd-stock--out {
	color: var(--wmp-warm-gray);
}
.wmp-pd-summary {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	color: var(--wmp-charcoal);
}
.wmp-pd-get-price {
	width: 100%;
	background: linear-gradient(135deg, var(--wmp-primary), var(--wmp-primary-light));
	color: var(--wmp-white);
	border: none;
	padding: 22px 16px;
	border-radius: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	cursor: pointer;
}
.wmp-pd-trust-row {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px solid var(--wmp-hairline);
	width: 100%;
}
.wmp-pd-trust-row__item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: var(--wmp-warm-gray);
}
.wmp-pd-trust-row__item svg {
	color: var(--wmp-primary);
}
.wmp-pd-details {
	background: var(--wmp-white);
	padding: 96px 24px;
}
.wmp-pd-details__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
.wmp-pd-details__heading {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
	color: var(--wmp-charcoal);
}
.wmp-pd-description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--wmp-charcoal);
}
.wmp-pd-description p {
	margin: 0 0 1em;
}
.wmp-pd-description p:last-child {
	margin-bottom: 0;
}
.wmp-pd-specs {
	border: 1px solid var(--wmp-hairline);
	border-radius: 8px;
	overflow: hidden;
}
.wmp-pd-specs__row {
	display: flex;
	justify-content: space-between;
	padding: 12px 16px;
	font-size: 14px;
	border-bottom: 1px solid var(--wmp-hairline);
	background: var(--wmp-white);
}
.wmp-pd-specs__row:nth-child(even) {
	background: var(--wmp-off-white);
}
.wmp-pd-specs__row:last-child {
	border-bottom: none;
}
.wmp-pd-specs__label {
	color: var(--wmp-warm-gray);
}
.wmp-pd-specs__value {
	color: var(--wmp-charcoal);
	font-weight: 600;
}
.wmp-pd-related {
	max-width: 1200px;
	margin: 0 auto;
	padding: 128px 24px;
}
.wmp-pd-related__heading {
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px;
	color: var(--wmp-charcoal);
}

/* Mobile (<=860px) — matches the mockup's established breakpoint */
@media (max-width: 860px) {
	.wmp-top-bar {
		position: sticky;
		top: 0;
		z-index: 11;
	}
	.wmp-top-bar__row {
		justify-content: center;
	}
	.wmp-top-bar__icons {
		display: none;
	}
	.wmp-main-nav {
		top: 36px;
	}
	.wmp-main-nav__links {
		display: none;
	}
	.wmp-main-nav__hamburger {
		display: inline-flex;
	}
	.wmp-hero__content {
		width: 100%;
		text-align: center;
		align-items: center;
	}
	.wmp-hero__title,
	.wmp-hero__subtitle {
		text-align: center;
	}
	.wmp-hero__logo {
		display: none;
	}
	.wmp-hero__slider {
		width: min(221px, 100%);
	}
	.wmp-trust-bar__row {
		flex-wrap: nowrap;
		gap: 8px;
	}
	.wmp-trust-bar__item {
		flex-direction: column;
		min-width: 0;
		flex: 1 1 0;
		padding: 16px 4px;
		gap: 6px;
		text-align: center;
	}
	.wmp-category-card__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.wmp-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.wmp-pd-layout,
	.wmp-pd-details__inner {
		grid-template-columns: 1fr;
	}
}

/* Mobile (<=640px) — matches the mockup's "isPhone" breakpoint */
@media (max-width: 640px) {
	.wmp-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
