/* Jeansoem theme stylesheet — hand-written, no build step required.
 * Tokens roughly mirror the Tailwind palette used in the React site.
 */

/* --------------------------------------- *
 * Reset & base
 * --------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: #0f172a;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 {
	font-family: 'Outfit', 'Inter', system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0;
	color: #0f172a;
}
.js-app { display: flex; flex-direction: column; min-height: 100vh; }
.js-content { flex: 1 0 auto; }

.js-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
}
@media (max-width: 767px) {
	.js-container { padding: 0 20px; }
}

/* --------------------------------------- *
 * Promo + Topbar
 * --------------------------------------- */
.js-topbar {
	background: #0f172a;
	color: #cbd5e1;
	font-size: 11px;
	letter-spacing: .04em;
}
.js-topbar-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 10px 32px;
	min-height: 36px;
}
.js-topbar-left { display: flex; gap: 24px; justify-self: start; flex-wrap: wrap; }
.js-topbar-left span { white-space: nowrap; }
.js-topbar-center {
	justify-self: center;
	display: inline-flex; align-items: center; gap: 10px;
	font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: #f8fafc;
	white-space: nowrap;
}
.js-topbar-center span:first-child { color: #60a5fa; }
.js-topbar-right { justify-self: end; display: inline-flex; align-items: center; gap: 8px; }
.js-topbar-right a { color: #cbd5e1; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.js-topbar-right a:hover { color: #fff; }
.js-topbar-sep { opacity: .5; }

/* Hide the right column on narrower screens, keep contact + center */
@media (max-width: 1199px) {
	.js-topbar-inner { grid-template-columns: auto 1fr; padding: 10px 24px; }
	.js-topbar-right { display: none; }
}
/* Mobile: only show centered promo line */
@media (max-width: 767px) {
	.js-topbar-inner {
		grid-template-columns: 1fr;
		padding: 8px 16px;
	}
	.js-topbar-left { display: none; }
	.js-topbar-center {
		justify-self: center;
		font-size: 10px;
		letter-spacing: .12em;
	}
}

/* --------------------------------------- *
 * Header / nav
 * --------------------------------------- */
.js-header {
	position: sticky; top: 0; z-index: 50;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.js-header-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 32px;
	gap: 24px;
	min-height: 84px;
}
.js-logo img { max-height: 56px; width: auto; }
.js-logo-img,
.js-header .js-logo-img {
	display: block;
	height: 44px !important;
	width: auto !important;
	max-width: 240px !important;
	object-fit: contain;
}
@media (min-width: 768px)  { .js-logo-img, .js-header .js-logo-img { height: 52px !important; max-width: 280px !important; } }
@media (min-width: 1024px) { .js-logo-img, .js-header .js-logo-img { height: 60px !important; max-width: 320px !important; } }
.js-footer-logo .js-logo-img-light,
.js-footer .js-logo-img-light,
.js-logo-img-light {
	filter: invert(1) !important;
	height: 60px !important;
	max-width: 200px !important;
	width: auto !important;
}
.js-logo-text {
	font-family: 'Outfit'; font-weight: 900; font-size: 22px; letter-spacing: -0.02em; color: #0f172a;
}

.js-nav { flex: 1; display: none; justify-content: center; }
@media (min-width: 1024px) { .js-nav { display: flex; } }

.js-menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; align-items: center; gap: 4px;
}
.js-menu-item { position: relative; }
.js-menu-link {
	display: flex; align-items: center;
	padding: 10px 14px;
	font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
	color: #334155;
	border-radius: 999px;
}
.js-menu-link:hover { color: #2563eb; background: #f8fafc; }
.js-menu-item.is-active > .js-menu-link { color: #2563eb; }
.js-caret { margin-left: 4px; opacity: .55; }

.js-submenu {
	list-style: none; margin: 0; padding: 8px;
	position: absolute; top: 100%; left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(15,23,42,0.08);
	opacity: 0; visibility: hidden;
	transition: opacity .18s ease;
	z-index: 60;
}
.js-menu-item.has-submenu:hover > .js-submenu,
.js-menu-item.has-submenu:focus-within > .js-submenu {
	opacity: 1; visibility: visible;
}
.js-submenu .js-menu-link {
	width: 100%;
	padding: 10px 14px;
	border-radius: 8px;
}
.js-submenu .js-menu-link:hover { background: #f1f5f9; }

.js-header-actions { display: flex; align-items: center; gap: 12px; }
.js-search-toggle {
	width: 40px; height: 40px;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #0f172a;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: border-color .15s ease, color .15s ease;
}
.js-search-toggle:hover { border-color: #0f172a; color: #2563eb; }
.js-search-overlay {
	position: fixed; left: 0; right: 0; top: 0;
	background: rgba(15, 23, 42, 0.92);
	z-index: 80;
	padding: 24vh 24px 32px;
	min-height: 100vh;
	display: flex; align-items: flex-start; justify-content: center;
}
.js-search-overlay[hidden] { display: none !important; }
.js-mobile-menu[hidden] { display: none !important; }
.js-search-form {
	width: 100%; max-width: 720px;
	display: flex; align-items: center; gap: 8px;
	background: #fff;
	border-radius: 999px;
	padding: 6px 6px 6px 22px;
	box-shadow: 0 24px 48px rgba(0,0,0,0.25);
}
.js-search-form input[type=search] {
	flex: 1;
	border: 0; outline: none;
	background: transparent;
	font-size: 16px;
	padding: 12px 0;
}
.js-search-form button[type=submit],
.js-search-form .js-search-close {
	width: 44px; height: 44px;
	border-radius: 999px;
	border: 0;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
}
.js-search-form button[type=submit] { background: #0f172a; color: #fff; }
.js-search-form button[type=submit]:hover { background: #2563eb; }
.js-search-form .js-search-close { background: #f1f5f9; color: #475569; font-size: 22px; }
.js-search-form .js-search-close:hover { background: #e2e8f0; color: #0f172a; }
.js-icon-btn {
	position: relative;
	width: 40px; height: 40px;
	border-radius: 999px;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #0f172a;
	display: inline-flex; align-items: center; justify-content: center;
	transition: border-color .15s ease, color .15s ease;
}
.js-icon-btn:hover { border-color: #0f172a; color: #2563eb; }
.js-cart-icon { position: relative; }
.js-cart-count {
	position: absolute; top: -4px; right: -4px;
	background: #2563eb; color: #fff;
	min-width: 18px; height: 18px; padding: 0 5px;
	border-radius: 999px;
	font-size: 10px; font-weight: 800;
	display: flex; align-items: center; justify-content: center;
}
.js-cta {
	display: inline-flex; align-items: center; justify-content: center;
	background: #2563eb; color: #fff;
	font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	padding: 11px 20px; border-radius: 999px;
	box-shadow: 0 4px 12px rgba(37,99,235,0.2);
	transition: background-color .15s ease;
}
.js-cta:hover { background: #1d4ed8; }
.js-cta-block { display: block; margin: 16px 16px 0; text-align: center; }

.js-burger {
	display: inline-flex; flex-direction: column; gap: 4px;
	width: 36px; height: 36px; padding: 8px;
	border: 0; background: transparent;
}
@media (min-width: 1024px) { .js-burger { display: none; } }
.js-burger span { display: block; height: 2px; background: #0f172a; border-radius: 2px; }

.js-mobile-menu {
	border-top: 1px solid #e5e7eb;
	background: #fff;
	padding: 8px 24px 16px;
}
.js-menu-mobile { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.js-menu-mobile li { border-bottom: 1px solid #f1f5f9; }
.js-menu-mobile a {
	display: block;
	padding: 14px 4px;
	font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
	color: #334155;
}
.js-menu-mobile .sub-menu {
	list-style: none; padding-left: 16px; margin: 0 0 8px;
}
.js-menu-mobile .sub-menu a { padding: 10px 4px; color: #475569; }

/* --------------------------------------- *
 * Hero
 * --------------------------------------- */
.js-eyebrow-blue {
	font-size: 10px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase;
	color: #2563eb; margin: 0 0 8px;
}
.js-eyebrow-blue-light {
	color: #93c5fd;
}
.js-eyebrow-light {
	font-size: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
	color: rgba(255,255,255,0.78); margin: 0 0 6px;
}
.js-eyebrow-muted {
	font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: #64748b; margin: 0 0 4px;
}

.js-hero { background: #f1f5f9; }
.js-hero-grid {
	display: grid; gap: 48px; align-items: center;
	padding: 64px 24px;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
	.js-hero-grid { grid-template-columns: 1fr 1fr; padding: 96px 24px; }
}

.js-hero-title {
	font-size: clamp(36px, 6vw, 76px);
	line-height: 0.95;
	letter-spacing: -0.025em;
	font-weight: 900;
	text-transform: uppercase;
	margin: 0 0 24px;
	color: #0f172a;
}
.js-hero-title span { color: #2563eb; }
.js-hero-desc {
	color: #475569; font-size: 17px; line-height: 1.6; max-width: 520px; margin: 0 0 32px;
}
.js-hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.js-hero-stats {
	display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 16px; margin-top: 40px; max-width: 460px;
}
.js-hero-stats div strong {
	display: block; font-family: 'Outfit'; font-weight: 800; font-size: 28px; color: #0f172a; line-height: 1;
}
.js-hero-stats div span {
	display: block; margin-top: 6px; font-size: 10px; font-weight: 700; letter-spacing: .18em;
	text-transform: uppercase; color: #64748b;
}

.js-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 26px; border-radius: 12px;
	font-family: 'Outfit'; font-weight: 800; font-size: 12px;
	letter-spacing: .14em; text-transform: uppercase;
	border: 1px solid transparent;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.js-btn-dark { background: #0f172a; color: #fff; }
.js-btn-dark:hover { background: #2563eb; }
.js-btn-ghost { border-color: #cbd5e1; color: #0f172a; }
.js-btn-ghost:hover { border-color: #0f172a; }
.js-btn-light { background: #fff; color: #0f172a; }
.js-btn-light:hover { background: #2563eb; color: #fff; }
.js-btn-outline-light { border-color: rgba(255,255,255,0.3); color: #fff; }
.js-btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.js-btn-whatsapp { background: #25D366; color: #fff; }
.js-btn-whatsapp:hover { background: #128C7E; }

.js-hero-collage {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(6, 60px);
	gap: 12px;
	height: 460px;
}
@media (min-width: 1024px) {
	.js-hero-collage { grid-template-rows: repeat(6, 90px); height: 600px; }
}
.js-hero-tile, .js-hero-offer {
	position: relative; overflow: hidden; border-radius: 16px;
	box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}
.js-hero-tile img { width: 100%; height: 100%; object-fit: cover; }
.js-hero-tile-1 { grid-column: 1 / span 4; grid-row: 1 / span 4; }
.js-hero-tile-2 { grid-column: 5 / span 2; grid-row: 1 / span 3; }
.js-hero-tile-3 { grid-column: 5 / span 2; grid-row: 4 / span 3; }
.js-hero-offer  { grid-column: 1 / span 4; grid-row: 5 / span 2; background: #0f172a; color: #fff; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.js-hero-tile-caption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 18px;
	background: linear-gradient(to top, rgba(15,23,42,0.85), rgba(15,23,42,0));
	color: #fff;
}
.js-hero-tile-title {
	font-family: 'Outfit'; font-weight: 800; font-size: 20px; text-transform: uppercase;
	letter-spacing: -0.01em; margin: 0;
}
.js-hero-offer-title {
	font-family: 'Outfit'; font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: 1.1; margin: 0;
}
.js-hero-offer a { color: #93c5fd; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.js-hero-offer a:hover { color: #fff; }

/* --------------------------------------- *
 * Sections
 * --------------------------------------- */
.js-section { padding: 56px 0; }
@media (min-width: 768px) { .js-section { padding: 80px 0; } }
.js-bg-white { background: #fff; }
.js-bg-slate-50 { background: #f8fafc; }
.js-bg-cream { background: #f5f0e8; }
.js-bg-dark { background: #0f172a; color: #fff; }
.js-bg-blue { background: #2563eb; color: #fff; }
.js-divider-top { border-top: 1px solid #f1f5f9; }
.js-divider-y { border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }

/* Home rows specifically: 5 columns at desktop, 2 rows × 5 = 10 default */
.js-row .js-product-grid {
	grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 640px)  { .js-row .js-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; } }
@media (min-width: 1024px) { .js-row .js-product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; } }
@media (min-width: 1280px) { .js-row .js-product-grid { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 22px; } }

.js-row-light { background: #f8fafc; }
.js-row-cream { background: #f5f0e8; }
.js-row-dark { background: #0f172a; color: #fff; }
.js-row-dark .js-section-title, .js-row-dark .js-section-desc { color: #fff; }
.js-row-dark .js-eyebrow-blue { color: #93c5fd; }
.js-row-dark .js-card { background: #1e293b; border-color: rgba(255,255,255,0.08); }
.js-row-dark .js-card-title { color: #fff; }
.js-row-dark .js-card-meta .js-price { color: #fff; }
.js-row-dark .js-card-foot { color: rgba(255,255,255,0.6); }

.js-section-head {
	display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
	gap: 16px; margin-bottom: 32px;
}
.js-section-head-text { max-width: 640px; }
.js-section-head-center {
	flex-direction: column; align-items: center; text-align: center; gap: 4px;
}
.js-section-title {
	font-size: 28px;
	font-family: 'Outfit'; font-weight: 800; text-transform: uppercase;
	letter-spacing: -0.01em;
}
@media (min-width: 768px) { .js-section-title { font-size: 32px; } }
.js-section-desc { color: #475569; margin: 12px 0 0; max-width: 640px; }
.js-row-dark .js-section-desc { color: #cbd5e1; }
.js-section-cta {
	font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	color: #0f172a;
}
.js-section-cta:hover { color: #2563eb; }
.js-row-dark .js-section-cta { color: #93c5fd; }
.js-row-dark .js-section-cta:hover { color: #fff; }

/* --------------------------------------- *
 * Category strip
 * --------------------------------------- */
.js-cat-grid {
	display: grid; gap: 16px;
	grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 768px) { .js-cat-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .js-cat-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }

.js-cat-tile {
	position: relative; aspect-ratio: 4 / 5;
	border-radius: 16px; overflow: hidden; background: #e2e8f0;
	box-shadow: 0 6px 16px rgba(15,23,42,0.05);
	transition: box-shadow .25s ease;
}
.js-cat-tile:hover { box-shadow: 0 14px 32px rgba(15,23,42,0.12); }
.js-cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.js-cat-tile:hover img { transform: scale(1.08); }
.js-cat-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.05) 50%, rgba(15,23,42,0) 100%);
}
.js-cat-text {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; color: #fff;
}
.js-cat-caption {
	font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
	margin: 0; opacity: .85;
}
.js-cat-label {
	font-family: 'Outfit'; font-weight: 800; font-size: 18px; text-transform: uppercase; margin: 4px 0 0;
}

/* --------------------------------------- *
 * Product cards & rows
 * --------------------------------------- */
.js-product-grid {
	display: grid; gap: 16px;
	grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 768px) { .js-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; } }
@media (min-width: 1024px) { .js-product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; } }
@media (min-width: 1440px) { .js-product-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }

.js-card {
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	overflow: hidden;
	transition: box-shadow .25s ease, transform .25s ease;
	display: flex; flex-direction: column;
}
.js-card:hover { box-shadow: 0 18px 36px rgba(15,23,42,0.10); }
.js-card-image {
	position: relative;
	background: #e2e8f0;
	overflow: hidden;
	aspect-ratio: 3 / 4;
}
.js-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.js-card:hover .js-card-image img { transform: scale(1.05); }

.js-card-badges {
	position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.js-pill {
	background: rgba(255,255,255,0.95);
	color: #0f172a;
	font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	padding: 4px 10px; border-radius: 999px;
	box-shadow: 0 2px 4px rgba(15,23,42,0.06);
}
.js-pill-blue { background: #2563eb; color: #fff; }

.js-card-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.js-eyebrow {
	font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
	color: #2563eb; margin: 0 0 4px;
}
.js-card-title {
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	font-family: 'Outfit'; font-weight: 800; font-size: 13px; text-transform: uppercase;
	color: #0f172a; line-height: 1.3;
	letter-spacing: -0.01em;
}
.js-card-title:hover { color: #2563eb; }
.js-card-meta {
	margin-top: 16px; display: flex; align-items: end; justify-content: space-between;
}
.js-price-label { font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #94a3b8; margin: 0; }
.js-price { font-family: 'Outfit'; font-weight: 800; font-size: 18px; color: #0f172a; margin: 0; line-height: 1.1; }
.js-price-suffix { font-size: 10px; color: #94a3b8; margin-left: 4px; font-family: 'Inter'; font-weight: 700; }
.js-card-meta .price, .js-card-meta .woocommerce-Price-amount { font-family: 'Outfit'; }
.js-add-btn {
	background: #0f172a; color: #fff;
	width: 40px; height: 40px;
	padding: 0;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background-color .15s ease, transform .15s ease;
}
.js-add-btn:hover { background: #2563eb; transform: scale(1.05); }
.js-add-btn[disabled] { opacity: .85; cursor: progress; transform: none; }
.js-add-btn.is-success { background: #16a34a; }
.js-add-btn.is-error   { background: #ef4444; }
.js-add-btn.is-loading { background: #475569; }
.js-add-btn .js-quick-add-label {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.js-card-foot {
	margin-top: 12px;
	font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
	color: #94a3b8;
}
.aspect-3-4 { aspect-ratio: 3 / 4; }

/* --------------------------------------- *
 * Editorial split
 * --------------------------------------- */
.js-editorial-grid {
	display: grid; gap: 24px;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .js-editorial-grid { grid-template-columns: 1fr 1fr; } }
.js-editorial-tile {
	position: relative; height: 420px; border-radius: 18px; overflow: hidden;
}
@media (min-width: 768px) { .js-editorial-tile { height: 540px; } }
.js-editorial-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.js-editorial-tile:hover img { transform: scale(1.04); }
.js-editorial-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(15,23,42,0.85), rgba(15,23,42,0.1) 50%, transparent);
}
.js-editorial-text {
	position: absolute; left: 0; right: 0; bottom: 0; color: #fff; padding: 32px;
	display: flex; flex-direction: column; gap: 14px;
}
.js-editorial-text h3 {
	font-family: 'Outfit'; font-weight: 800; font-size: 32px; text-transform: uppercase; line-height: .95;
	max-width: 360px;
}
@media (min-width: 768px) { .js-editorial-text h3 { font-size: 38px; } }
.js-editorial-text p { color: rgba(255,255,255,0.85); max-width: 480px; }
.js-editorial-text span {
	font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}

/* --------------------------------------- *
 * Trust strip
 * --------------------------------------- */
.js-trust-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (min-width: 768px) { .js-trust-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.js-trust-card { display: flex; flex-direction: column; gap: 10px; }
.js-trust-icon {
	width: 44px; height: 44px; border-radius: 999px;
	background: #fff; border: 1px solid #e5e7eb;
	display: flex; align-items: center; justify-content: center;
	color: #2563eb; font-size: 18px;
}
.js-trust-card h3 {
	font-family: 'Outfit'; font-weight: 800; text-transform: uppercase; font-size: 14px; letter-spacing: -0.01em;
}
.js-trust-card p { font-size: 13px; color: #64748b; margin: 0; }

/* --------------------------------------- *
 * OEM lookbook
 * --------------------------------------- */
.js-oem-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .js-oem-grid { grid-template-columns: 0.9fr 1.1fr; } }
.js-oem-title {
	font-size: clamp(28px, 4vw, 56px);
	font-family: 'Outfit'; font-weight: 800;
	text-transform: uppercase;
	line-height: .95;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
	color: #fff;
}
.js-oem-desc { color: #cbd5e1; max-width: 540px; margin: 0 0 28px; }
.js-oem-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 420px; margin: 0 0 28px; }
.js-oem-stats div strong {
	display: block; font-family: 'Outfit'; font-weight: 800; font-size: 30px; color: #fff; line-height: 1;
}
.js-oem-stats div span {
	display: block; margin-top: 6px; font-size: 10px; letter-spacing: .18em; font-weight: 700;
	text-transform: uppercase; color: #94a3b8;
}
.js-oem-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.js-oem-collage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.js-oem-collage img.js-oem-img {
	width: 100%; height: 220px; object-fit: cover; border-radius: 16px;
}
@media (min-width: 768px) {
	.js-oem-collage img.js-oem-img { height: 280px; }
	.js-oem-collage img.js-oem-img:nth-child(2) { margin-top: 32px; }
	.js-oem-collage img.js-oem-img:nth-child(4) { margin-top: 32px; }
}

/* --------------------------------------- *
 * Steps
 * --------------------------------------- */
.js-steps-grid {
	display: grid; gap: 18px;
	grid-template-columns: 1fr;
	margin-top: 24px;
}
@media (min-width: 768px) { .js-steps-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.js-step {
	background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 16px; padding: 24px;
}
.js-step h3 { font-family: 'Outfit'; font-weight: 800; font-size: 16px; text-transform: uppercase; margin: 8px 0 8px; }
.js-step p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.55; }

/* --------------------------------------- *
 * CTA section
 * --------------------------------------- */
.js-cta-section { color: #fff; text-align: center; }
.js-cta-section h2 { color: #fff; font-size: clamp(28px, 4vw, 52px); margin: 0 0 16px; text-transform: uppercase; }
.js-cta-section p { color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 32px; font-size: 17px; }
.js-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.js-cta-inner { padding: 0 24px; }

/* --------------------------------------- *
 * Footer
 * --------------------------------------- */
.js-footer { background: #0f172a; color: #cbd5e1; padding: 56px 0 24px; }
.js-footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .js-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.js-footer-col h4 {
	color: #fff; font-family: 'Outfit'; font-size: 13px; text-transform: uppercase; letter-spacing: .14em;
	margin: 0 0 16px;
}
.js-footer-logo { font-family: 'Outfit'; font-weight: 900; font-size: 24px; color: #fff; margin-bottom: 12px; }
.js-footer-desc { color: #94a3b8; font-size: 14px; line-height: 1.6; }
.js-footer-contact p { color: #94a3b8; margin: 4px 0; font-size: 13px; }
.js-footer-menu { list-style: none; margin: 0; padding: 0; }
.js-footer-menu li { margin-bottom: 8px; }
.js-footer-menu a { color: #cbd5e1; font-size: 13px; }
.js-footer-menu a:hover { color: #fff; }
.js-footer-whatsapp {
	display: inline-flex; align-items: center; justify-content: center;
	background: #25D366; color: #fff;
	padding: 10px 18px; border-radius: 10px;
	font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.js-footer-whatsapp:hover { background: #128C7E; }
.js-footer-bottom {
	margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
	display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
	font-size: 12px; color: #64748b;
}
.js-footer-copy { margin: 0; }
.js-footer-pay {
	list-style: none; margin: 0; padding: 0;
	display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.js-footer-pay li {
	display: inline-flex; align-items: center;
	background: #1e293b;
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 6px;
	padding: 6px 8px;
	min-height: 28px;
	color: #f8fafc;
}
.js-footer-pay li svg { display: block; }
.js-footer-pay a {
	display: inline-flex; align-items: center; gap: 6px;
	color: #f8fafc; font-weight: 700; letter-spacing: .12em;
	text-transform: uppercase; font-size: 10px;
}
.js-footer-pay a:hover { color: #93c5fd; }
.js-pay-label { line-height: 1; }
@media (max-width: 640px) {
	.js-footer-bottom { justify-content: flex-start; }
	.js-footer-pay { gap: 10px; }
	.js-footer-pay li { padding: 4px 6px; }
	.js-pay-label { display: none; }
}

/* --------------------------------------- *
 * Generic page / article / archive
 * --------------------------------------- */
.js-page { padding: 56px 0; }
.js-page-content { display: flex; flex-direction: column; gap: 24px; }
.js-article-head h1 { font-size: 36px; text-transform: uppercase; letter-spacing: -0.01em; }
.js-article-body { line-height: 1.7; color: #334155; max-width: 760px; }
.js-article-body.js-article-body-wide { max-width: none; }
.js-article-body:has(.js-page-section), .js-article-body:has(.js-page-hero) { max-width: none; }
.js-article-body h2, .js-article-body h3 { margin-top: 28px; }
.js-article-body ul, .js-article-body ol { padding-left: 22px; }
.js-archive-head h1 { font-size: 32px; text-transform: uppercase; }
.js-archive-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .js-archive-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.js-archive-card { background: #f8fafc; border-radius: 12px; padding: 16px; }
.js-archive-card h2 { font-size: 18px; margin: 12px 0 8px; }
.js-archive-card p { color: #475569; }
.js-archive-card-img img { border-radius: 8px; }
.js-pagination { margin: 24px 0; }
.js-pagination .page-numbers { padding: 6px 12px; border-radius: 8px; }
.js-pagination .current { background: #0f172a; color: #fff; }

.js-404 { text-align: center; padding: 96px 0; }
.js-404 h1 { font-size: 96px; color: #2563eb; }
.js-404 p { font-size: 18px; color: #475569; margin-bottom: 24px; }

/* --------------------------------------- *
 * Single product
 * --------------------------------------- */
.js-product { background: #fff; }
.js-breadcrumbs { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #64748b; margin-bottom: 20px; }
.js-breadcrumbs a:hover { color: #0f172a; }
.js-product-grid-2 { display: grid; gap: 32px; }
@media (min-width: 1024px) { .js-product-grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; } }

.js-product-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.js-product-title {
	font-size: clamp(20px, 2.2vw, 28px);
	text-transform: uppercase;
	letter-spacing: -0.01em;
	line-height: 1.2;
	margin: 0 0 20px;
}

.js-product-price-card {
	background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 16px; padding: 24px; margin-bottom: 24px;
}
.js-product-price-row { display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.js-product-price { font-family: 'Outfit'; font-weight: 800; font-size: 36px; color: #0f172a; margin-top: 4px; line-height: 1; }
.js-product-price .price, .js-product-price .woocommerce-Price-amount { font-family: 'Outfit'; }
.js-product-price-note { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #64748b; margin: 16px 0 0; text-align: center; }
.js-product-moq { text-align: right; }
.js-product-moq-num { font-family: 'Outfit'; font-weight: 800; font-size: 18px; color: #0f172a; margin: 0; }

.js-product-short { color: #475569; line-height: 1.6; margin-bottom: 24px; }

.js-product-form .single_add_to_cart_button,
.js-product-form button[type=submit] {
	background: #0f172a; color: #fff;
	border: 0; border-radius: 12px;
	padding: 16px 28px;
	font-family: 'Outfit'; font-weight: 800; font-size: 13px;
	letter-spacing: .14em; text-transform: uppercase;
	cursor: pointer;
	transition: background-color .15s ease;
	width: 100%;
	margin-top: 12px;
}
.js-product-form .single_add_to_cart_button:hover,
.js-product-form button[type=submit]:hover { background: #2563eb; }
.js-product-form table.variations th, .js-product-form table.variations td { padding: 8px 4px; vertical-align: middle; }
.js-product-form table.variations select {
	border: 1px solid #cbd5e1; border-radius: 8px; padding: 8px 12px; min-width: 180px; background: #fff;
}
.js-product-form .reset_variations { font-size: 12px; color: #2563eb; margin-left: 12px; }
.js-product-form .quantity input.qty {
	border: 1px solid #cbd5e1; border-radius: 8px; padding: 10px; width: 80px; text-align: center;
	margin-right: 12px;
}

.js-product-specs {
	margin: 24px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 24px;
	border-top: 1px solid #e5e7eb; padding-top: 20px;
}
.js-product-specs > div { display: flex; flex-direction: column; }
.js-product-specs dt { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #94a3b8; }
.js-product-specs dd { margin: 4px 0 0; font-weight: 600; color: #0f172a; }

.js-product-description { margin-top: 56px; }
.js-product-description h2 { font-size: 24px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 16px; }
.js-product-description-body { color: #334155; line-height: 1.65; max-width: 760px; }
.js-product-description-body ul { padding-left: 22px; }

.js-related { margin-top: 64px; }

/* WooCommerce gallery tweaks */
.woocommerce-product-gallery__image { border-radius: 16px; overflow: hidden; }
.woocommerce div.product div.images { margin: 0; }
.woocommerce ul.products li.product .button { display: none; }

/* Gallery thumbnails: keep them as a horizontal strip on mobile too */
.woocommerce div.product div.images .flex-control-thumbs,
.js-product-gallery .flex-control-thumbs,
ol.flex-control-nav.flex-control-thumbs {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 100% !important;
	float: none !important;
}
.woocommerce div.product div.images .flex-control-thumbs li,
.js-product-gallery .flex-control-thumbs li,
ol.flex-control-thumbs li {
	width: calc((100% - 32px) / 5) !important;
	max-width: 96px !important;
	min-width: 56px !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
	display: block !important;
}
.woocommerce div.product div.images .flex-control-thumbs li img,
.js-product-gallery .flex-control-thumbs li img,
ol.flex-control-thumbs li img {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 3 / 4 !important;
	object-fit: cover !important;
	border-radius: 10px !important;
	border: 2px solid transparent !important;
	cursor: pointer !important;
	transition: border-color .15s ease;
	opacity: 0.7;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li:hover img,
ol.flex-control-thumbs li img.flex-active,
ol.flex-control-thumbs li:hover img {
	border-color: #0f172a !important;
	opacity: 1 !important;
}
@media (max-width: 600px) {
	.woocommerce div.product div.images .flex-control-thumbs li,
	ol.flex-control-thumbs li {
		width: calc((100% - 24px) / 4) !important;
	}
}
@media (max-width: 380px) {
	.woocommerce div.product div.images .flex-control-thumbs li,
	ol.flex-control-thumbs li {
		width: calc((100% - 16px) / 3) !important;
	}
}

/* Preview gallery thumbs (Flask preview) */
.preview-gallery-thumbs {
	display: flex !important;
	flex-wrap: wrap;
	gap: 8px;
}
.preview-gallery-thumb {
	flex: 0 0 calc((100% - 32px) / 5);
	max-width: 96px;
	min-width: 56px;
	width: auto !important;
	height: auto !important;
	aspect-ratio: 3 / 4;
}
@media (max-width: 480px) {
	.preview-gallery-thumb {
		flex: 0 0 calc((100% - 24px) / 4);
	}
}

/* Shop archive */
.js-shop { padding: 48px 0; }
.js-shop-head { margin-bottom: 24px; }
.js-shop-title { font-size: 32px; text-transform: uppercase; letter-spacing: -0.01em; }
.js-shop-desc { color: #475569; margin-top: 8px; }
.js-shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin: 12px 0 24px; gap: 16px; flex-wrap: wrap; }
.js-shop-toolbar .woocommerce-result-count { color: #64748b; font-size: 13px; }
.js-shop-toolbar select { padding: 8px 12px; border: 1px solid #cbd5e1; border-radius: 8px; }

/* Cart / Checkout (WooCommerce default) — minimal polish */
.woocommerce table.shop_table { border-radius: 12px; overflow: hidden; }
.woocommerce-cart .cart_totals h2 { text-transform: uppercase; }
.woocommerce-message, .woocommerce-info { border-top-color: #2563eb !important; }
.woocommerce-message::before, .woocommerce-info::before { color: #2563eb !important; }

/* Cart count animation */
@keyframes pop { 0% { transform: scale(0.6); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }
.js-cart-count.is-pop { animation: pop .3s ease-out; }

/* Responsive helpers */
@media (max-width: 767px) {
	.js-section-head { flex-direction: column; align-items: flex-start; }
	.js-hero-collage { display: none; }
}


/* --------------------------------------- *
 * Variation pills (single product)
 * --------------------------------------- */
.js-variations-form table.variations {
	position: absolute !important;
	left: -9999px !important;
	top: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	pointer-events: none !important;
	opacity: 0 !important;
}
.js-variation-groups { display: flex; flex-direction: column; gap: 18px; margin: 20px 0 8px; }
.js-variation-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.js-variation-label {
	font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800;
	color: #0f172a;
}
.js-variation-value { font-size: 13px; color: #475569; font-weight: 600; }
.js-variation-options { display: flex; flex-wrap: wrap; gap: 8px; }
.js-variation-pill {
	min-width: 56px;
	min-height: 48px;
	padding: 0 18px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #fff; color: #0f172a;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	font-family: 'Outfit'; font-weight: 700; font-size: 13px;
	letter-spacing: .04em; text-transform: uppercase;
	cursor: pointer;
	transition: all .15s ease;
}
.js-variation-pill:hover { border-color: #0f172a; background: #f8fafc; }
.js-variation-pill.is-active {
	background: #0f172a; color: #fff; border-color: #0f172a; transform: scale(1.04);
	box-shadow: 0 6px 14px rgba(15,23,42,0.18);
}
.js-variation-pill.is-active:hover { background: #2563eb; border-color: #2563eb; }
.js-variation-pill[disabled] {
	opacity: .35;
	cursor: not-allowed;
	text-decoration: line-through;
	background: #f1f5f9;
	border-color: #e2e8f0;
}
.js-variation-pill[disabled]:hover {
	border-color: #e2e8f0;
	background: #f1f5f9;
}
.js-variations-form .reset_variations,
.js-variations-form .js-reset-variations {
	display: inline-block;
	margin: 8px 0 0;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #64748b;
	font-weight: 700;
}
.js-variations-form .reset_variations:hover,
.js-variations-form .js-reset-variations:hover { color: #2563eb; }

.js-variations-form .single_variation_wrap {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid #e5e7eb;
}
.js-variations-form .single_variation .price {
	font-family: 'Outfit'; font-weight: 800; font-size: 22px; color: #0f172a; margin: 0 0 8px;
}
.js-variations-form .stock { font-size: 12px; color: #475569; }

/* Buy bar (qty stepper + Add to Cart) */
.js-buy-bar {
	display: flex; align-items: stretch; gap: 12px;
	margin-top: 4px;
	flex-wrap: nowrap;
}
.js-qty-stepper {
	display: inline-flex; align-items: stretch;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	height: 56px;
	flex-shrink: 0;
}
.js-qty-stepper .js-qty-btn {
	width: 44px;
	background: #f8fafc;
	color: #0f172a;
	border: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color .15s ease;
}
.js-qty-stepper .js-qty-btn:hover { background: #e2e8f0; }
.js-qty-stepper .js-qty-input {
	width: 64px;
	height: 100%;
	border: 0;
	border-left: 1px solid #e5e7eb;
	border-right: 1px solid #e5e7eb;
	text-align: center;
	font-family: 'Outfit'; font-weight: 700; font-size: 16px;
	color: #0f172a;
	background: #fff;
	-moz-appearance: textfield;
}
.js-qty-stepper .js-qty-input::-webkit-outer-spin-button,
.js-qty-stepper .js-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.js-add-cart-btn,
.js-variations-form .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 0;
	background: #0f172a !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 14px !important;
	padding: 0 20px !important;
	height: 56px;
	font-family: 'Outfit' !important; font-weight: 800 !important;
	font-size: 13px !important; letter-spacing: .14em !important; text-transform: uppercase !important;
	cursor: pointer;
	display: inline-flex !important; align-items: center; justify-content: center; gap: 8px;
	box-shadow: 0 10px 24px rgba(15,23,42,0.18);
	transition: background-color .15s ease, transform .1s ease, box-shadow .15s ease;
	white-space: nowrap;
}
.js-add-cart-btn:hover,
.js-variations-form .single_add_to_cart_button:hover {
	background: #2563eb !important;
	box-shadow: 0 16px 32px rgba(37,99,235,0.28);
	transform: translateY(-1px);
}
.js-add-cart-btn:active,
.js-variations-form .single_add_to_cart_button:active { transform: translateY(0); }
.js-add-cart-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.js-buy-meta {
	display: flex; align-items: center; justify-content: space-between;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px dashed #e5e7eb;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #64748b; font-weight: 700;
	gap: 12px; flex-wrap: wrap;
}
.js-buy-whatsapp {
	display: inline-flex; align-items: center; gap: 8px;
	color: #128C7E;
	font-weight: 800;
}
.js-buy-whatsapp:hover { color: #0f5d50; }

/* Tablet & narrow desktop: shorten the button label spacing */
@media (max-width: 1024px) {
	.js-add-cart-btn,
	.js-variations-form .single_add_to_cart_button {
		font-size: 12px !important;
		letter-spacing: .12em !important;
		padding: 0 16px !important;
	}
}

/* Mobile: stack stepper above button so neither feels squeezed */
@media (max-width: 540px) {
	.js-buy-bar { flex-direction: column; gap: 10px; }
	.js-qty-stepper {
		width: 100%;
		justify-content: space-between;
		height: 52px;
	}
	.js-qty-stepper .js-qty-btn { flex: 1; }
	.js-qty-stepper .js-qty-input { flex: 0 0 96px; width: 96px; }
	.js-add-cart-btn,
	.js-variations-form .single_add_to_cart_button {
		width: 100%;
		height: 52px;
		min-width: 0 !important;
	}
}

/* --------------------------------------- *
 * Cart page
 * --------------------------------------- */
.woocommerce-cart .js-page,
.woocommerce-checkout .js-page { padding: 40px 0 80px; }

.js-cart-form { display: block; }
.js-cart-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.js-cart-item {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 16px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	transition: box-shadow .15s ease;
}
.js-cart-item:hover { box-shadow: 0 8px 18px rgba(15,23,42,0.05); }
.js-cart-item-image img {
	width: 96px; height: 120px; object-fit: cover; border-radius: 10px;
}
.js-cart-item-main {
	display: flex; flex-direction: column; gap: 12px;
}
.js-cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.js-cart-item-name {
	font-family: 'Outfit'; font-weight: 800; font-size: 15px;
	color: #0f172a; text-transform: uppercase; letter-spacing: -0.01em;
}
.js-cart-item-name:hover { color: #2563eb; }
.js-cart-sku {
	display: inline-block;
	margin-right: 8px;
	color: #2563eb;
	font-family: 'Inter'; font-weight: 800; font-size: 10px;
	letter-spacing: .18em; text-transform: uppercase;
}
.js-cart-item-info .variation { font-size: 12px; color: #64748b; margin: 4px 0 0; }
.js-cart-item-info .variation dt { display: inline; font-weight: 700; color: #475569; }
.js-cart-item-info .variation dd { display: inline; margin: 0 8px 0 4px; }

.js-cart-item-controls {
	display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.js-cart-qty .quantity { display: inline-flex; align-items: center; }
.js-cart-qty input.qty {
	width: 70px; padding: 8px; text-align: center;
	border: 1px solid #cbd5e1; border-radius: 8px;
}
.js-cart-line-price {
	font-family: 'Outfit'; font-weight: 800; font-size: 16px; color: #0f172a;
}
.js-cart-remove .js-cart-remove-btn {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #94a3b8; font-weight: 700;
}
.js-cart-remove .js-cart-remove-btn:hover { color: #ef4444; }

.js-cart-actions {
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
	padding: 20px;
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	margin-bottom: 24px;
}
.js-cart-actions .coupon { display: flex; gap: 8px; flex: 1; min-width: 240px; }
.js-cart-actions input[type=text] {
	padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 10px;
	flex: 1; min-width: 0;
}
.js-cart-actions button,
.js-cart-actions .button {
	background: #0f172a; color: #fff;
	border: 0; border-radius: 10px;
	padding: 12px 20px;
	font-family: 'Outfit'; font-weight: 700; font-size: 12px;
	letter-spacing: .12em; text-transform: uppercase;
	cursor: pointer;
	transition: background-color .15s ease;
}
.js-cart-actions button:hover { background: #2563eb; }
.js-cart-update {
	background: #fff !important; color: #0f172a !important; border: 1px solid #cbd5e1 !important;
}
.js-cart-update:hover { border-color: #0f172a !important; }

.js-cart-collaterals { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .js-cart-collaterals { grid-template-columns: 2fr 1fr; } }

.js-cart-totals {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 6px 18px rgba(15,23,42,0.04);
	grid-column: 1 / -1;
}
@media (min-width: 1024px) { .js-cart-totals { grid-column: 2 / 3; } }
.js-cart-totals h2 {
	font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 16px;
}
.js-cart-summary { display: flex; flex-direction: column; gap: 8px; margin: 0 0 16px; }
.js-cart-summary > div {
	display: flex; justify-content: space-between; align-items: baseline;
	padding: 8px 0;
	border-bottom: 1px dashed #e5e7eb;
}
.js-cart-summary > div:last-child { border-bottom: 0; }
.js-cart-summary dt { color: #475569; font-size: 13px; }
.js-cart-summary dd { margin: 0; font-weight: 700; color: #0f172a; font-family: 'Outfit'; }
.js-cart-summary-total dt { color: #0f172a !important; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px !important; }
.js-cart-summary-total dd { font-size: 22px !important; }

.js-cart-totals .checkout-button,
.js-cart-totals .wc-proceed-to-checkout .button {
	display: block !important;
	background: #2563eb !important;
	color: #fff !important;
	padding: 16px !important;
	border-radius: 12px !important;
	font-family: 'Outfit' !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	font-size: 13px !important;
	text-align: center;
	margin-top: 16px !important;
	width: 100% !important;
	box-shadow: 0 6px 18px rgba(37,99,235,0.22) !important;
	transition: background-color .15s ease !important;
}
.js-cart-totals .checkout-button:hover,
.js-cart-totals .wc-proceed-to-checkout .button:hover {
	background: #1d4ed8 !important;
}
.js-cart-totals .shipping-calculator-button {
	display: inline-block; font-size: 12px; color: #2563eb; margin-top: 8px;
}
.js-cart-trust {
	margin-top: 18px; padding-top: 16px; border-top: 1px solid #e5e7eb;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #64748b; text-align: center;
}

.js-cart-empty {
	text-align: center; padding: 64px 24px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
}
.js-cart-empty-icon { font-size: 56px; margin-bottom: 16px; }
.js-cart-empty h2 { font-size: 26px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 12px; }
.js-cart-empty p { color: #64748b; margin: 0 0 24px; }

/* Cross-sells */
.cross-sells { grid-column: 1 / -1; margin-top: 24px; }
.cross-sells h2 {
	font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 16px;
}
.cross-sells ul.products {
	display: grid !important; gap: 16px !important;
	grid-template-columns: repeat(2, 1fr);
	list-style: none; padding: 0; margin: 0;
}
@media (min-width: 768px) { .cross-sells ul.products { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------- *
 * Checkout
 * --------------------------------------- */
.js-checkout-grid {
	display: grid; gap: 32px;
	grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .js-checkout-grid { grid-template-columns: 1.5fr 1fr; } }

.js-checkout-section {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	margin-bottom: 24px;
}
.js-checkout-section-title {
	font-size: 18px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 18px;
}
.js-checkout-grid-2 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .js-checkout-grid-2 { grid-template-columns: 1fr 1fr; } }

.js-checkout .form-row {
	margin-bottom: 14px;
}
.js-checkout .form-row label {
	display: block;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800;
	color: #475569; margin-bottom: 6px;
}
.js-checkout .form-row input.input-text,
.js-checkout .form-row textarea,
.js-checkout .form-row select,
.js-checkout .form-row .select2-selection {
	width: 100% !important;
	padding: 12px 14px !important;
	font-size: 14px !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #0f172a !important;
	transition: border-color .15s ease, box-shadow .15s ease !important;
	height: auto !important;
	box-sizing: border-box !important;
}
.js-checkout .form-row input.input-text:focus,
.js-checkout .form-row textarea:focus,
.js-checkout .form-row select:focus {
	outline: none !important;
	border-color: #2563eb !important;
	box-shadow: 0 0 0 3px rgba(37,99,235,0.15) !important;
}
.js-checkout .form-row textarea { min-height: 120px; }
.js-checkout .select2-container .select2-selection--single {
	height: 46px !important;
}
.js-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	line-height: 22px !important;
	padding: 12px 14px !important;
}
.js-checkout .select2-container .select2-selection--single .select2-selection__arrow { top: 12px !important; right: 12px !important; }
.js-checkout abbr.required { color: #ef4444; text-decoration: none; }

.js-checkout-summary {
	position: sticky; top: 100px;
}
.js-checkout-summary table.shop_table {
	border: none !important;
	width: 100%;
	border-collapse: collapse;
}
.js-checkout-summary table.shop_table th,
.js-checkout-summary table.shop_table td {
	padding: 12px 8px !important;
	border-bottom: 1px dashed #e5e7eb !important;
	background: transparent !important;
	font-size: 14px;
	vertical-align: top;
}
.js-checkout-summary table.shop_table tfoot th { font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.js-checkout-summary .product-name { color: #0f172a; }
.js-checkout-summary .product-quantity {
	display: inline-block; margin-left: 4px; color: #64748b; font-weight: 700;
}
.js-checkout-summary .order-total td,
.js-checkout-summary .order-total th { font-size: 18px !important; }

.js-checkout #payment {
	background: transparent;
	border-radius: 0;
}
.js-checkout #payment ul.payment_methods {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 16px;
	margin: 0 0 16px;
	list-style: none;
}
.js-checkout #payment ul.payment_methods li {
	padding: 10px 12px;
	border-bottom: 1px solid #e5e7eb;
}
.js-checkout #payment ul.payment_methods li:last-child { border-bottom: 0; }
.js-checkout #payment ul.payment_methods li label {
	font-weight: 700; color: #0f172a;
	display: inline; text-transform: none; letter-spacing: 0; font-size: 14px; margin-left: 4px;
}
.js-checkout #payment ul.payment_methods .payment_box {
	background: #fff;
	border-radius: 8px;
	padding: 12px 14px;
	margin: 8px 0 0;
	font-size: 13px; color: #475569;
}
.js-checkout #place_order,
.js-checkout button.alt {
	background: #2563eb !important;
	color: #fff !important;
	width: 100% !important;
	padding: 16px !important;
	border-radius: 12px !important;
	font-family: 'Outfit' !important;
	font-weight: 800 !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	font-size: 13px !important;
	border: 0 !important;
	box-shadow: 0 6px 18px rgba(37,99,235,0.22) !important;
	transition: background-color .15s ease !important;
}
.js-checkout #place_order:hover { background: #1d4ed8 !important; }

.js-checkout-trust {
	margin-top: 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 16px 20px;
	display: flex; flex-direction: column; gap: 8px;
}
.js-checkout-trust p {
	margin: 0;
	font-size: 12px;
	color: #475569;
	letter-spacing: .04em;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	background: #f8fafc !important;
	border-radius: 12px !important;
	padding: 16px 20px !important;
	border: 1px solid #e5e7eb !important;
	margin-bottom: 16px !important;
}
.woocommerce-message { border-left: 4px solid #2563eb !important; }
.woocommerce-error { border-left: 4px solid #ef4444 !important; }

/* My Account & general WC tweaks */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	padding: 8px 14px; border-radius: 999px; background: #f1f5f9; font-size: 12px;
	letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: #334155;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	background: #0f172a; color: #fff;
}


/* --------------------------------------- *
 * Payment / bank transfer page
 * --------------------------------------- */
.js-payment-info { margin: 24px 0 56px; }
.js-payment-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(15,23,42,0.06);
	padding: 32px;
}
@media (min-width: 768px) { .js-payment-card { padding: 48px; } }
.js-payment-head { margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #e5e7eb; }
.js-payment-head h2 {
	font-family: 'Outfit'; font-weight: 800; font-size: 28px;
	text-transform: uppercase; letter-spacing: -0.01em; margin: 6px 0 8px;
}
.js-payment-sub { color: #475569; font-size: 14px; margin: 0; }

.js-payment-grid {
	display: grid; gap: 18px 32px; margin: 0;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.js-payment-grid { grid-template-columns: 1fr 1fr; }
}
.js-payment-grid > div { display: flex; flex-direction: column; gap: 4px; }
.js-payment-grid dt {
	font-family: 'Inter'; font-weight: 800; font-size: 10px;
	letter-spacing: .22em; text-transform: uppercase;
	color: #64748b;
}
.js-payment-grid dd {
	margin: 0;
	font-family: 'Outfit'; font-weight: 700; font-size: 16px;
	color: #0f172a;
	line-height: 1.45;
	word-break: break-word;
}
.js-payment-grid dd small {
	display: block; margin-top: 4px;
	font-family: 'Inter'; font-weight: 500; font-size: 12px; color: #64748b;
	letter-spacing: 0; text-transform: none;
}
.js-payment-grid-full { grid-column: 1 / -1; }
.js-payment-grid-full dd {
	background: #f8fafc;
	padding: 14px 16px;
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	font-size: 14px; font-weight: 600;
	font-family: 'Inter';
	color: #0f172a;
	line-height: 1.55;
}

.js-payment-foot {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px dashed #e5e7eb;
	color: #475569;
	font-size: 14px;
	line-height: 1.6;
}
.js-payment-foot a {
	color: #2563eb;
	font-weight: 700;
	border-bottom: 1px dashed currentColor;
}
.js-payment-foot a:hover { color: #1d4ed8; }


/* --------------------------------------- *
 * Resources / blog
 * --------------------------------------- */
.js-resources { padding: 48px 0 80px; }
.js-blog-grid {
	display: grid; gap: 24px;
	grid-template-columns: 1fr;
	margin-top: 24px;
}
@media (min-width: 640px)  { .js-blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .js-blog-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; } }

.js-blog-card {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: 16px;
	overflow: hidden;
	transition: box-shadow .25s ease, transform .25s ease;
}
.js-blog-card:hover { box-shadow: 0 18px 36px rgba(15,23,42,0.10); transform: translateY(-2px); }
.js-blog-card-image {
	display: block;
	aspect-ratio: 16 / 10;
	background: #e2e8f0;
	overflow: hidden;
}
.js-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.js-blog-card:hover .js-blog-card-image img { transform: scale(1.05); }
.js-blog-card-placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: #94a3b8;
	background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.js-blog-card-body {
	padding: 20px 22px 22px;
	display: flex; flex-direction: column; gap: 10px;
}
.js-blog-card-title {
	font-family: 'Outfit'; font-weight: 800; font-size: 18px;
	color: #0f172a; line-height: 1.3; letter-spacing: -0.01em;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	text-transform: none;
}
.js-blog-card-title:hover { color: #2563eb; }
.js-blog-card-excerpt {
	color: #64748b; font-size: 13px; line-height: 1.55; margin: 0;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.js-blog-card-meta {
	display: flex; align-items: center; justify-content: space-between;
	margin: 8px 0 0;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #94a3b8; font-weight: 700;
}
.js-blog-card-link { color: #2563eb; }
.js-blog-card:hover .js-blog-card-link { color: #1d4ed8; }
.js-blog-empty {
	background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 16px;
	padding: 48px 32px; text-align: center;
}
.js-blog-empty h2 { font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em; margin: 0 0 8px; }
.js-blog-empty p { color: #64748b; margin: 0; }

/* Single post */
.js-blog-single { padding: 32px 0 80px; }
.js-blog-single .js-breadcrumbs { font-size: 11px; color: #64748b; margin-bottom: 24px; }
.js-blog-single-head { max-width: 820px; margin: 0 auto 32px; }
.js-blog-single-head h1 {
	font-family: 'Outfit'; font-weight: 800; font-size: clamp(28px, 4vw, 44px);
	letter-spacing: -0.02em; line-height: 1.15; margin: 8px 0 14px; text-transform: none;
}
.js-blog-single-meta {
	color: #64748b; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0;
}
.js-blog-single-cover { max-width: 1100px; margin: 0 auto 36px; border-radius: 18px; overflow: hidden; }
.js-blog-single-cover img { width: 100%; display: block; }
.js-blog-single-body {
	max-width: 760px; margin: 0 auto; line-height: 1.75; color: #1e293b;
}
.js-blog-single-body h2 { font-size: 24px; margin: 28px 0 12px; text-transform: none; letter-spacing: -0.01em; }
.js-blog-single-body h3 { font-size: 19px; margin: 24px 0 10px; text-transform: none; letter-spacing: -0.005em; }
.js-blog-single-body p { margin: 0 0 18px; }
.js-blog-single-body ul, .js-blog-single-body ol { padding-left: 22px; margin: 0 0 18px; }
.js-blog-single-body img { max-width: 100%; border-radius: 12px; margin: 18px 0; }
.js-blog-single-body blockquote {
	border-left: 4px solid #2563eb;
	padding: 4px 0 4px 18px;
	color: #334155; font-style: italic;
	margin: 22px 0;
}
.js-blog-tags {
	max-width: 760px; margin: 28px auto 0;
	display: flex; gap: 8px; flex-wrap: wrap;
	font-size: 12px;
}
.js-blog-tags a {
	background: #f1f5f9; color: #475569;
	padding: 4px 12px; border-radius: 999px;
	font-weight: 700;
}
.js-blog-tags a:hover { background: #e2e8f0; color: #0f172a; }
.js-blog-nav {
	max-width: 1100px; margin: 48px auto 0;
	display: grid; gap: 16px;
	grid-template-columns: 1fr;
	border-top: 1px solid #e5e7eb; padding-top: 32px;
}
@media (min-width: 768px) { .js-blog-nav { grid-template-columns: 1fr 1fr; } }
.js-blog-nav-link {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px 22px;
	transition: border-color .2s ease, background-color .2s ease;
}
.js-blog-nav-link:hover { border-color: #0f172a; background: #fff; }
.js-blog-nav-link-next { text-align: right; }
.js-blog-nav-label { display: block; font-size: 11px; color: #64748b; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.js-blog-nav-title { display: block; margin-top: 6px; font-family: 'Outfit'; font-weight: 700; color: #0f172a; }
.js-blog-nav-link:hover .js-blog-nav-title { color: #2563eb; }

/* --------------------------------------- *
 * Footer mobile compact (Company + Categories side by side)
 * --------------------------------------- */
@media (max-width: 767px) {
	.js-footer { padding: 36px 0 18px; }
	.js-footer-grid {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 24px 20px;
	}
	/* Brand block (1) and Stay-in-touch block (4) span full width.
	 * Company (2) + Categories (3) sit side by side. */
	.js-footer-grid > .js-footer-col:nth-child(1),
	.js-footer-grid > .js-footer-col:nth-child(4) {
		grid-column: 1 / -1;
	}
	.js-footer-col h4 { margin-bottom: 10px; font-size: 12px; }
	.js-footer-menu li { margin-bottom: 6px; }
	.js-footer-menu a { font-size: 12px; }

	/* Tighter brand block */
	.js-footer-logo { margin-bottom: 8px; }
	.js-logo-img-light,
	.js-footer .js-logo-img-light { height: 48px !important; max-width: 180px !important; }
	.js-footer-desc { font-size: 13px; line-height: 1.55; }
	.js-footer-contact p { font-size: 12px; margin: 2px 0; }

	/* Two WhatsApp buttons side by side */
	.js-footer-grid > .js-footer-col:nth-child(4) {
		display: grid;
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.js-footer-grid > .js-footer-col:nth-child(4) h4,
	.js-footer-grid > .js-footer-col:nth-child(4) p { grid-column: 1 / -1; }
	.js-footer-grid > .js-footer-col:nth-child(4) {
		grid-template-columns: 1fr 1fr;
	}
	.js-footer-grid > .js-footer-col:nth-child(4) .js-footer-whatsapp {
		margin-top: 0 !important;
		text-align: center;
		padding: 10px 8px;
		font-size: 11px;
	}

	.js-footer-bottom {
		gap: 12px; padding-top: 14px; margin-top: 24px;
		flex-direction: column; align-items: flex-start;
	}
	.js-footer-pay { width: 100%; gap: 8px; }
}


/* --------------------------------------- *
 * Marketing page sections (About / OEM / How to Order / Quality / Contact)
 * --------------------------------------- */
.js-article-body .js-page-hero {
	background: linear-gradient(135deg, #0f172a, #1e293b);
	color: #fff;
	padding: 56px 32px;
	border-radius: 18px;
	margin: 8px 0 40px;
}
.js-article-body .js-page-hero h2,
.js-article-body .js-page-hero-title {
	color: #fff;
	font-family: 'Outfit'; font-weight: 800;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.1; letter-spacing: -0.01em;
	margin: 8px 0 14px; text-transform: none;
}
.js-article-body .js-page-hero-sub {
	color: rgba(255,255,255,0.78);
	font-size: 16px;
	max-width: 760px;
	margin: 0;
}
.js-article-body .js-page-hero .js-eyebrow-blue { color: #93c5fd; }

.js-article-body .js-page-section {
	margin: 32px 0;
	padding: 32px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid #f1f5f9;
}
.js-article-body .js-page-section.js-bg-slate-50 { background: #f8fafc; }
.js-article-body .js-page-section.js-bg-dark {
	background: #0f172a; color: #cbd5e1; border-color: rgba(255,255,255,0.08);
}
.js-article-body .js-page-section.js-bg-blue {
	background: #2563eb; color: #fff; border: 0;
}
.js-article-body .js-page-section.js-bg-blue h3 { color: #fff; }
.js-article-body .js-page-section.js-bg-blue p,
.js-article-body .js-page-section.js-bg-blue li { color: rgba(255,255,255,0.9); }

.js-article-body .js-page-section .js-section-title {
	font-family: 'Outfit'; font-weight: 800;
	font-size: 26px; letter-spacing: -0.01em;
	margin: 6px 0 16px; text-transform: none;
}
.js-article-body .js-page-section .js-section-title-light { color: #fff; }
.js-article-body .js-page-section h3 { text-transform: none; }

.js-article-body .js-page-section p { line-height: 1.7; margin: 0 0 14px; }

/* Grid layouts */
.js-article-body .js-grid-2,
.js-article-body .js-grid-3,
.js-article-body .js-grid-4,
.js-article-body .js-grid-5 {
	display: grid; gap: 18px; margin: 18px 0 0;
}
.js-article-body .js-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .js-article-body .js-grid-2 { grid-template-columns: 1fr 1fr; gap: 28px; } }
.js-article-body .js-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .js-article-body .js-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .js-article-body .js-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.js-article-body .js-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .js-article-body .js-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .js-article-body .js-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.js-article-body .js-grid-5 { grid-template-columns: 1fr; }
@media (min-width: 640px)  { .js-article-body .js-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .js-article-body .js-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .js-article-body .js-grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* Feature cards */
.js-article-body .js-feature-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 22px;
	transition: box-shadow .2s ease, transform .2s ease;
}
.js-article-body .js-feature-card:hover {
	box-shadow: 0 12px 28px rgba(15,23,42,0.06);
	transform: translateY(-2px);
}
.js-article-body .js-feature-card h3,
.js-article-body .js-feature-card h4 {
	font-family: 'Outfit'; font-weight: 800;
	font-size: 17px; letter-spacing: -0.005em;
	margin: 0 0 8px; text-transform: none;
}
.js-article-body .js-feature-card p { font-size: 14px; color: #475569; }
.js-article-body .js-feature-card ul { padding-left: 18px; margin: 8px 0 0; }
.js-article-body .js-feature-card li { font-size: 14px; color: #475569; margin-bottom: 4px; }
.js-article-body .js-feature-card-dark {
	background: #1e293b;
	border-color: rgba(255,255,255,0.08);
	color: #cbd5e1;
}
.js-article-body .js-feature-card-dark h3,
.js-article-body .js-feature-card-dark h4 { color: #fff; }
.js-article-body .js-feature-card-dark p,
.js-article-body .js-feature-card-dark li { color: #94a3b8; }

/* Steps / detail cards */
.js-article-body .js-step {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px 20px;
}
.js-article-body .js-step-num {
	font-family: 'Outfit'; font-weight: 900;
	font-size: 28px; color: #2563eb;
	margin: 0 0 4px;
	letter-spacing: -0.02em;
}
.js-article-body .js-step h4 {
	font-family: 'Outfit'; font-weight: 800; font-size: 15px; margin: 0 0 6px;
	text-transform: none; letter-spacing: -0.005em;
}
.js-article-body .js-step p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.6; }

.js-article-body .js-detail-card {
	background: #1e293b;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 18px;
	color: #cbd5e1;
	display: flex; flex-direction: column; gap: 4px;
}
.js-article-body .js-detail-card .js-detail-label {
	font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 800;
	color: #94a3b8;
}
.js-article-body .js-detail-card strong {
	font-family: 'Outfit'; font-weight: 800; font-size: 22px; color: #fff;
}
.js-article-body .js-detail-card small { color: #94a3b8; font-size: 12px; }

/* Stat list (About hero) */
.js-article-body .js-stat-grid {
	list-style: none; padding: 0; margin: 24px 0 0;
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.js-article-body .js-stat-grid li {
	display: flex; flex-direction: column; gap: 4px;
}
.js-article-body .js-stat-grid strong {
	font-family: 'Outfit'; font-weight: 800; font-size: 26px;
	color: #0f172a; letter-spacing: -0.01em;
}
.js-article-body .js-stat-grid span {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #64748b; font-weight: 700;
}

.js-article-body .js-image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.js-article-body .js-image-stack img {
	width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px;
}
.js-article-body .js-image-stack img:nth-child(2) { margin-top: 28px; }

/* Check list */
.js-article-body .js-check-list {
	list-style: none; padding: 0; margin: 18px 0 0;
	display: flex; flex-direction: column; gap: 12px;
}
.js-article-body .js-check-list li {
	display: flex; flex-direction: column; gap: 4px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}
.js-article-body .js-check-list li::before {
	content: '✓';
	color: #2563eb; font-weight: 800; font-size: 14px;
	margin-bottom: 4px;
}
.js-article-body .js-check-list li strong {
	font-family: 'Outfit'; font-weight: 800; font-size: 14px; color: #0f172a;
}
.js-article-body .js-check-list li span {
	font-size: 13px; color: #64748b; line-height: 1.55;
}

/* Cert badges */
.js-article-body .js-cert-badges {
	display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px;
}
.js-article-body .js-cert-badges span {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
	color: #475569;
}

/* CTA section helpers */
.js-article-body .js-cta-section { text-align: center; }
.js-article-body .js-cta-section h3 {
	font-size: clamp(22px, 3vw, 30px);
	margin: 0 0 12px;
}
.js-article-body .js-cta-section p {
	max-width: 560px; margin: 0 auto 18px; font-size: 16px;
}
.js-article-body .js-cta-section a + a { margin-left: 8px; }

/* Inline buttons inside article body */
.js-article-body .js-btn { margin-top: 8px; margin-right: 8px; }

/* FAQ <details> */
.js-article-body .js-faq { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.js-article-body .js-faq details {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 14px 18px;
}
.js-article-body .js-faq summary {
	cursor: pointer;
	font-family: 'Outfit'; font-weight: 800; font-size: 15px;
	color: #0f172a;
	list-style: none;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.js-article-body .js-faq summary::-webkit-details-marker { display: none; }
.js-article-body .js-faq summary::after {
	content: '+'; color: #2563eb; font-weight: 700; font-size: 22px; line-height: 1;
}
.js-article-body .js-faq details[open] summary::after { content: '–'; }
.js-article-body .js-faq details p {
	margin: 12px 0 0; padding-top: 12px;
	border-top: 1px dashed #e5e7eb;
	color: #475569; font-size: 14px;
}

/* Shipping note inside dark section */
.js-article-body .js-shipping-note {
	margin-top: 18px; padding: 16px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	font-size: 13px;
}

/* Contact list */
.js-article-body .js-contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.js-article-body .js-contact-list li {
	display: flex; flex-direction: column; gap: 4px;
	padding: 14px 0;
	border-bottom: 1px dashed #e5e7eb;
}
.js-article-body .js-contact-list li:last-child { border-bottom: 0; }
.js-article-body .js-contact-list .js-contact-label {
	font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 800; color: #64748b;
}
.js-article-body .js-contact-list strong {
	font-family: 'Outfit'; font-weight: 800; font-size: 17px; color: #0f172a;
}
.js-article-body .js-contact-list a strong { color: #0f172a; }
.js-article-body .js-contact-list a:hover strong { color: #2563eb; }


/* --------------------------------------- *
 * About page (rich layout)
 * --------------------------------------- */

/* Hero */
.js-article-body .js-about-hero {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	min-height: 360px;
	display: flex; align-items: center;
	margin: 8px 0 40px;
	background: #0f172a;
}
@media (min-width: 768px) { .js-article-body .js-about-hero { min-height: 420px; } }
.js-article-body .js-about-hero-bg {
	position: absolute; inset: 0;
	opacity: 0.35;
}
.js-article-body .js-about-hero-bg img {
	width: 100%; height: 100%; object-fit: cover;
	filter: grayscale(0.2);
}
.js-article-body .js-about-hero::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 50%, rgba(15,23,42,0.4) 100%);
}
.js-article-body .js-about-hero-text {
	position: relative; z-index: 1;
	padding: 48px 32px;
	max-width: 720px;
	color: #fff;
}
.js-article-body .js-about-hero-text h2 {
	color: #fff;
	font-family: 'Outfit'; font-weight: 800;
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05; letter-spacing: -0.015em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.js-article-body .js-about-hero-text p {
	color: rgba(255,255,255,0.85);
	font-size: clamp(16px, 1.4vw, 19px);
	font-weight: 300;
	line-height: 1.55;
	margin: 0;
}

/* Divider */
.js-article-body .js-divider {
	width: 64px; height: 4px; background: #2563eb; margin: 16px 0 24px;
}
.js-article-body .js-divider-light { background: #60a5fa; margin-left: auto; margin-right: auto; }

/* Section head */
.js-article-body .js-section-head-center {
	text-align: center; margin-bottom: 40px;
}
.js-article-body .js-section-head-center .js-section-title { margin: 6px 0 0; }
.js-article-body .js-section-head-center .js-divider { margin: 18px auto 0; }

/* Profile section */
.js-article-body .js-profile-grid { gap: 56px; align-items: center; }
.js-article-body .js-profile-text .js-lede { font-size: 18px; color: #475569; }
.js-article-body .js-profile-text > p { color: #475569; font-size: 15px; line-height: 1.7; }
.js-article-body .js-profile-stats {
	list-style: none; padding: 0; margin: 28px 0 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.js-article-body .js-profile-stats li { display: flex; flex-direction: column; gap: 4px; }
.js-article-body .js-profile-stats strong {
	font-family: 'Outfit'; font-weight: 800; font-size: 30px;
	color: #0f172a; letter-spacing: -0.02em;
}
.js-article-body .js-profile-stats span {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #64748b; font-weight: 700;
}

.js-article-body .js-profile-images { position: relative; }
.js-article-body .js-profile-images img {
	width: 100%; aspect-ratio: 4/5; object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 14px 30px rgba(15,23,42,0.10);
}
.js-article-body .js-profile-img-1,
.js-article-body .js-profile-img-2 {
	display: inline-block; width: calc(50% - 8px);
	vertical-align: top;
}
.js-article-body .js-profile-img-1 { margin-right: 12px; }
.js-article-body .js-profile-img-2 { margin-top: 36px; }

/* Stacked 16:9 profile imagery */
.js-article-body .js-profile-images-stacked {
	display: flex; flex-direction: column; gap: 20px;
}
.js-article-body .js-profile-images-stacked figure {
	margin: 0; position: relative; overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(15,23,42,0.10);
}
.js-article-body .js-profile-images-stacked figure img {
	width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover;
	display: block; border-radius: 0; box-shadow: none;
	transition: transform .8s ease;
}
.js-article-body .js-profile-images-stacked figure:hover img { transform: scale(1.04); }
.js-article-body .js-profile-images-stacked figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 14px 18px;
	background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
	color: #fff;
	font-family: 'Outfit'; font-weight: 800; font-size: 13px;
	letter-spacing: .14em; text-transform: uppercase;
}
.js-article-body .js-profile-badge {
	position: absolute;
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	background: #fff;
	padding: 18px 22px;
	border-radius: 14px;
	box-shadow: 0 18px 40px rgba(15,23,42,0.18);
	border: 1px solid #e5e7eb;
	text-align: center;
	width: 180px;
	display: none;
}
@media (min-width: 768px) { .js-article-body .js-profile-badge { display: block; } }
.js-article-body .js-profile-badge-icon {
	width: 44px; height: 44px;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 22px; font-weight: 800;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 10px;
}
.js-article-body .js-profile-badge p {
	font-family: 'Outfit'; font-weight: 800; font-size: 13px;
	color: #0f172a; letter-spacing: .04em; text-transform: uppercase;
	margin: 0;
}

/* Capabilities (dark) */
.js-article-body .js-capabilities .js-cap-card {
	background: #1e293b;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 28px;
	transition: border-color .2s ease, transform .2s ease;
}
.js-article-body .js-capabilities .js-cap-card:hover {
	border-color: #2563eb;
	transform: translateY(-3px);
}
.js-article-body .js-capabilities .js-cap-icon {
	width: 56px; height: 56px;
	border-radius: 999px;
	background: #334155;
	color: #60a5fa;
	font-size: 24px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 22px;
}
.js-article-body .js-capabilities h4 {
	font-family: 'Outfit'; font-weight: 800;
	font-size: 18px; text-transform: uppercase; letter-spacing: .02em;
	color: #fff; margin: 0 0 10px;
}
.js-article-body .js-capabilities p {
	color: #94a3b8; font-size: 14px; line-height: 1.6; margin: 0;
}

/* Trust + cert */
.js-article-body .js-trust-grid {
	display: grid; gap: 40px; align-items: start;
}
@media (min-width: 1024px) { .js-article-body .js-trust-grid { grid-template-columns: 1fr 1fr; } }

/* On tablet & mobile force the trust block into a single column so text
 * sits above the certs at full width, instead of being squeezed. */
@media (max-width: 1023px) {
	.js-article-body .js-trust-grid { grid-template-columns: 1fr !important; gap: 28px; }
	.js-article-body .js-cert-card-wide { max-width: 100%; align-self: stretch; }
}
@media (max-width: 767px) {
	.js-article-body .js-trust-list { grid-template-columns: 1fr !important; }
	.js-article-body .js-cert-row { grid-template-columns: 1fr !important; gap: 12px; }
}
.js-article-body .js-trust-list {
	list-style: none; padding: 0; margin: 18px 0 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 640px) { .js-article-body .js-trust-list { grid-template-columns: 1fr; } }
.js-article-body .js-trust-list li {
	display: flex; flex-direction: column; gap: 4px;
	padding: 14px 16px;
	background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
}
.js-article-body .js-trust-list li::before {
	content: '✓'; color: #2563eb; font-weight: 800; margin-bottom: 4px;
}
.js-article-body .js-trust-list strong {
	font-family: 'Outfit'; font-weight: 800; font-size: 13px;
	color: #0f172a; text-transform: uppercase; letter-spacing: .04em;
}
.js-article-body .js-trust-list span { font-size: 12px; color: #64748b; line-height: 1.5; }

.js-article-body .js-cert-stack { display: flex; flex-direction: column; gap: 18px; }
.js-article-body .js-cert-row {
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.js-article-body .js-cert-card {
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
	color: inherit;
}
.js-article-body .js-cert-card:hover {
	box-shadow: 0 14px 30px rgba(15,23,42,0.10);
	transform: translateY(-2px);
}
.js-article-body .js-cert-card-wide { max-width: 480px; align-self: center; width: 100%; }
.js-article-body .js-cert-frame {
	position: relative;
	aspect-ratio: 4/3;
	background: #f8fafc;
	display: flex; align-items: center; justify-content: center;
	padding: 14px;
}
.js-article-body .js-cert-card-wide .js-cert-frame { aspect-ratio: 16/9; }
.js-article-body .js-cert-frame img {
	max-width: 100%; max-height: 100%; object-fit: contain;
}
.js-article-body .js-cert-pdf {
	position: absolute; top: 10px; right: 10px;
	background: #2563eb; color: #fff;
	font-size: 9px; font-weight: 800; letter-spacing: .14em;
	padding: 4px 8px; border-radius: 999px;
}
.js-article-body .js-cert-card figcaption {
	padding: 12px 14px;
	border-top: 1px solid #f1f5f9;
	font-family: 'Outfit'; font-weight: 800; font-size: 12px;
	letter-spacing: .12em; text-transform: uppercase;
	color: #0f172a; text-align: center;
}
.js-article-body .js-cert-card figcaption small {
	display: block;
	font-family: 'Inter'; font-weight: 600; font-size: 10px;
	letter-spacing: 0; text-transform: none;
	color: #64748b;
	margin-top: 4px;
}

/* Factory tour mosaic */
.js-article-body .js-tour-grid {
	display: grid; gap: 16px;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.js-article-body .js-tour-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 280px;
	}
	.js-article-body .js-tour-cell-wide { grid-column: span 2; }
}
.js-article-body .js-tour-cell {
	position: relative; overflow: hidden; border-radius: 14px;
	background: #e2e8f0;
	margin: 0;
	height: 240px;
}
@media (min-width: 768px) { .js-article-body .js-tour-cell { height: auto; } }
.js-article-body .js-tour-cell img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s ease;
}
.js-article-body .js-tour-cell:hover img { transform: scale(1.08); }
.js-article-body .js-tour-cell::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(15,23,42,0.85), transparent 60%);
	opacity: 0; transition: opacity .3s ease;
}
.js-article-body .js-tour-cell:hover::after { opacity: 1; }
.js-article-body .js-tour-cell figcaption {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 22px 24px;
	color: #fff;
	font-family: 'Outfit'; font-weight: 800; font-size: 15px;
	letter-spacing: .02em; text-transform: uppercase;
	transform: translateY(8px);
	opacity: 0; transition: opacity .3s ease, transform .3s ease;
	z-index: 1;
}
.js-article-body .js-tour-cell:hover figcaption { opacity: 1; transform: none; }

/* Partnerships grid */
.js-article-body .js-partnerships-head {
	display: flex; flex-wrap: wrap; align-items: end;
	justify-content: space-between; gap: 24px; margin-bottom: 32px;
}
.js-article-body .js-partnerships-quote {
	color: #64748b; font-style: italic; font-size: 14px; max-width: 360px; margin: 0;
}
.js-article-body .js-client-grid {
	display: grid; gap: 16px;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px)  { .js-article-body .js-client-grid { grid-template-columns: repeat(4, 1fr); } }
.js-article-body .js-client-tile {
	position: relative; aspect-ratio: 3/4; overflow: hidden;
	border-radius: 14px;
	background: #fff;
	margin: 0;
	box-shadow: 0 6px 16px rgba(15,23,42,0.06);
}
.js-article-body .js-client-tile img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .8s ease;
	transform: scale(1.05);
}
.js-article-body .js-client-tile:hover img { transform: scale(1.15); }
.js-article-body .js-client-tile figcaption {
	position: absolute; inset: 0;
	background: rgba(15,23,42,0.55);
	color: #fff;
	font-family: 'Outfit'; font-weight: 800; font-size: 11px;
	letter-spacing: .14em; text-transform: uppercase;
	display: flex; align-items: center; justify-content: center;
	padding: 12px;
	text-align: center;
	opacity: 0; transition: opacity .3s ease;
}
.js-article-body .js-client-tile:hover figcaption { opacity: 1; }

/* Brand grid */
.js-article-body .js-brands { padding-top: 40px; padding-bottom: 40px; }
.js-article-body .js-brand-grid {
	display: grid; gap: 28px;
	grid-template-columns: repeat(2, 1fr);
	align-items: center; justify-items: center;
	margin-top: 32px;
}
@media (min-width: 640px)  { .js-article-body .js-brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .js-article-body .js-brand-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.js-article-body .js-brand-tile {
	width: 100%;
	display: flex; align-items: center; justify-content: center;
	opacity: 0.55;
	filter: grayscale(1);
	transition: opacity .25s ease, filter .25s ease;
}
.js-article-body .js-brand-tile:hover { opacity: 1; filter: none; }
.js-article-body .js-brand-tile img {
	max-width: 220px; height: auto; object-fit: contain;
}

/* Core values */
.js-article-body .js-value-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 32px 24px;
	text-align: center;
	transition: border-color .2s ease, transform .2s ease;
}
.js-article-body .js-value-card:hover {
	border-color: #2563eb;
	transform: translateY(-3px);
}
.js-article-body .js-value-icon {
	font-size: 36px;
	color: #2563eb;
	margin-bottom: 18px;
}
.js-article-body .js-value-card h4 {
	font-family: 'Outfit'; font-weight: 800;
	font-size: 16px; text-transform: uppercase; letter-spacing: .04em;
	margin: 0 0 12px;
}
.js-article-body .js-value-card p {
	color: #64748b; font-size: 14px; line-height: 1.6; margin: 0;
}

.js-article-body .js-eyebrow-muted {
	font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
	font-weight: 800; color: #94a3b8; margin: 0 0 8px;
}


/* --------------------------------------- *
 * My Account page (WooCommerce)
 * --------------------------------------- */
.woocommerce-account .js-page { padding: 48px 0 80px; }
.woocommerce-account .js-page .js-article-head { margin-bottom: 24px; }

.woocommerce-account .woocommerce {
	display: grid; gap: 32px;
	grid-template-columns: 1fr;
	grid-template-areas:
		"notices"
		"nav"
		"content";
}
@media (min-width: 1024px) {
	.woocommerce-account .woocommerce {
		grid-template-columns: 260px 1fr;
		grid-template-areas:
			"notices notices"
			"nav     content";
		align-items: flex-start;
	}
}
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper { grid-area: notices; }
.woocommerce-account .woocommerce > .woocommerce-MyAccount-navigation { grid-area: nav; }
.woocommerce-account .woocommerce > .woocommerce-MyAccount-content { grid-area: content; }
/* Hide the wrapper entirely when it has no children to remove the dead gap. */
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper:empty { display: none; }

.woocommerce-account .woocommerce-MyAccount-navigation {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 4px;
}
@media (max-width: 1023px) {
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: row; flex-wrap: wrap; gap: 8px;
	}
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
	display: flex; align-items: center;
	padding: 12px 14px;
	border-radius: 10px;
	background: #f8fafc;
	font-family: 'Outfit'; font-weight: 700; font-size: 12px;
	letter-spacing: .12em; text-transform: uppercase;
	color: #334155;
	transition: background-color .15s ease, color .15s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
	background: #e2e8f0; color: #0f172a;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
	background: #0f172a; color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: 'Outfit'; font-weight: 800;
	letter-spacing: -0.005em;
	margin: 0 0 14px;
	text-transform: none;
}
.woocommerce-account .woocommerce-MyAccount-content p { line-height: 1.6; }
.woocommerce-account .woocommerce-MyAccount-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.woocommerce-account .woocommerce-MyAccount-content table th,
.woocommerce-account .woocommerce-MyAccount-content table td {
	padding: 12px 10px;
	border-bottom: 1px solid #e5e7eb;
	text-align: left;
}
.woocommerce-account .woocommerce-MyAccount-content table th {
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #64748b; font-weight: 800;
}
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"] {
	display: inline-flex; align-items: center; gap: 8px;
	background: #0f172a !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 10px !important;
	padding: 12px 22px !important;
	font-family: 'Outfit' !important; font-weight: 800 !important;
	font-size: 12px !important;
	letter-spacing: .14em !important; text-transform: uppercase !important;
	cursor: pointer;
	transition: background-color .15s ease;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover {
	background: #2563eb !important;
}

/* Login form (when logged out) */
.woocommerce-account .u-columns,
.woocommerce-account .col2-set {
	display: grid; gap: 24px;
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.woocommerce-account .u-columns,
	.woocommerce-account .col2-set { grid-template-columns: 1fr 1fr; }
}
.woocommerce-account .u-columns .col-1,
.woocommerce-account .u-columns .col-2,
.woocommerce-account .col2-set .col-1,
.woocommerce-account .col2-set .col-2 {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 6px 18px rgba(15,23,42,0.04);
	width: 100% !important;
	float: none !important;
}
.woocommerce-account .u-columns h2,
.woocommerce-account .col2-set h2 {
	font-family: 'Outfit'; font-weight: 800; font-size: 22px;
	margin: 0 0 18px; text-transform: none;
}
.woocommerce-account form .form-row,
.woocommerce-account .form-row {
	margin-bottom: 14px;
}
.woocommerce-account form .form-row label,
.woocommerce-account .form-row label {
	display: block;
	font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
	color: #475569; font-weight: 800;
	margin-bottom: 6px;
}
.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row select,
.woocommerce-account .form-row input.input-text,
.woocommerce-account .form-row select {
	width: 100% !important;
	padding: 12px 14px !important;
	font-size: 14px !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 10px !important;
	background: #fff !important;
	color: #0f172a !important;
	transition: border-color .15s ease, box-shadow .15s ease !important;
	box-sizing: border-box !important;
}
.woocommerce-account form .form-row input.input-text:focus,
.woocommerce-account form .form-row select:focus,
.woocommerce-account .form-row input.input-text:focus,
.woocommerce-account .form-row select:focus {
	outline: none !important;
	border-color: #2563eb !important;
	box-shadow: 0 0 0 3px rgba(37,99,235,0.15) !important;
}
.woocommerce-account form .lost_password { margin-top: 12px; font-size: 12px; }
.woocommerce-account form .lost_password a { color: #2563eb; font-weight: 700; }
