/* =====================================================================
   MiniSun Pro — theme stylesheet
   Identity: the machine's light. Dark housing + UV tube glow; cool studio white for the catalog.
   Type: Karantina (HE display) · Big Shoulders Display (LA display) · IBM Plex Sans Hebrew (body) · IBM Plex Mono (data)
   ===================================================================== */

:root {
	--housing: #151A45;
	--housing-2: #1E245C;
	--uv: #8F7BFF;
	--uv-deep: #6F5BE8;
	--uv-soft: #BFB4FF;
	--tube: #EDE9FF;
	--studio: #F6F6FA;
	--white: #FFFFFF;
	--ink: #1C2040;
	--ink-2: #5A5F7E;
	--line: #DCDCEA;
	--line-2: #ECECF4;
	--amber: #F5A524;
	--ok: #2E9E6B;
	--err: #B3261E;

	--display-he: 'Karantina', 'Arial Narrow', sans-serif;
	--display-la: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
	--body: 'IBM Plex Sans Hebrew', 'Segoe UI', Arial, sans-serif;
	--mono: 'IBM Plex Mono', Consolas, monospace;

	--radius: 10px;
	--radius-lg: 16px;
	--wrap: 1180px;
	--gutter: 20px;
	--header-h: 76px;
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--studio); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.6; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--uv-deep); }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; text-wrap: balance; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--uv); outline-offset: 2px; }

.mspt-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.mspt-skip { position: absolute; inset-inline-start: 1rem; top: -100px; background: var(--housing); color: var(--tube); padding: .5rem 1rem; border-radius: 0 0 8px 8px; z-index: 100; }
.mspt-skip:focus { top: 0; }

/* Type scale */
.mspt-eyebrow { font-family: var(--mono); font-size: .78rem; letter-spacing: .08em; color: var(--uv-deep); margin-bottom: .5rem; }
.mspt-section__head h2, .mspt-page__head h1, .mspt-404 h1 { font-family: var(--display-he); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1; letter-spacing: .005em; }
.mspt-lede { color: var(--ink-2); max-width: 62ch; font-size: 1.05rem; }

/* Buttons */
.mspt-btn, .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: 1rem; line-height: 1.2;
	text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
	background: var(--housing); color: var(--tube);
}
.mspt-btn:hover, .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--housing-2); color: var(--tube); transform: translateY(-1px); }
.mspt-btn--uv, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt { background: var(--uv); color: var(--housing); box-shadow: 0 0 0 0 rgba(143,123,255,0); }
.mspt-btn--uv:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--uv-soft); color: var(--housing); box-shadow: 0 8px 28px -8px var(--uv); }
.mspt-btn--ghost { background: transparent; border-color: rgba(191,180,255,.5); color: var(--tube); }
.mspt-btn--ghost:hover { background: rgba(237,233,255,.08); color: var(--tube); }
.mspt-btn--ghost-dark { background: transparent; border-color: var(--line); color: var(--ink); }
.mspt-btn--ghost-dark:hover { background: var(--white); color: var(--ink); }
.mspt-btn--dark { background: var(--housing); color: var(--tube); }
.mspt-btn--sm { padding: .5rem 1rem; font-size: .9rem; }
.mspt-link { color: inherit; text-decoration: none; font-weight: 500; }
.mspt-link:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.mspt-header { position: sticky; top: 0; z-index: 50; background: var(--housing); color: var(--tube); border-bottom: 1px solid rgba(237,233,255,.08); }
.mspt-header--over { position: fixed; inset-inline: 0; background: transparent; border-bottom-color: transparent; transition: background .2s ease, border-color .2s ease; }
.mspt-header--over.is-solid { background: rgba(21,26,69,.92); backdrop-filter: blur(10px); border-bottom-color: rgba(237,233,255,.08); }
.mspt-header__in { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.mspt-logo img { width: 190px; height: auto; }
.mspt-nav { margin-inline-start: auto; }
.mspt-nav__list { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.mspt-nav__list a { color: var(--uv-soft); text-decoration: none; font-weight: 500; font-size: .98rem; }
.mspt-nav__list a:hover, .mspt-nav__list .current-menu-item > a { color: var(--tube); }
.mspt-header__actions { display: flex; align-items: center; gap: 1rem; }
.mspt-header__actions .mspt-link { color: var(--uv-soft); }
.msp-rl-link { color: var(--tube); text-decoration: none; font-weight: 500; font-size: .95rem; }
.msp-rl-count { background: var(--uv); color: var(--housing); }
.mspt-burger { display: none; width: 40px; height: 40px; border: 0; background: transparent; padding: 8px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.mspt-burger span { display: block; height: 2px; background: var(--tube); border-radius: 2px; }
@media (max-width: 900px) {
	.mspt-nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--housing); padding: 1.5rem var(--gutter); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease; }
	.mspt-nav-open .mspt-nav { opacity: 1; transform: none; pointer-events: auto; }
	.mspt-nav__list { flex-direction: column; gap: 1.1rem; font-size: 1.2rem; }
	.mspt-burger { display: flex; }
	.mspt-header__actions .mspt-btn, .mspt-header__actions .mspt-link { display: none; }
	.mspt-header__actions { margin-inline-start: auto; }
	.mspt-logo img { width: 150px; }
}

/* ---------- The canopy (signature) ---------- */
.mspt-canopy { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mspt-tube { position: absolute; inset-inline: 6%; height: 5px; border-radius: 999px;
	background: linear-gradient(90deg, rgba(237,233,255,.1), var(--tube) 16%, var(--tube) 84%, rgba(237,233,255,.1));
	box-shadow: 0 0 10px var(--uv-soft), 0 0 34px var(--uv), 0 0 90px rgba(143,123,255,.45);
	animation: mspt-warmup 1.6s ease-out both; }
.mspt-tube:nth-child(1) { top: calc(var(--header-h) + 36px); inset-inline: 4%; }
.mspt-tube:nth-child(2) { top: calc(var(--header-h) + 70px); inset-inline: 9%; animation-delay: .18s; }
.mspt-tube:nth-child(3) { top: calc(var(--header-h) + 104px); inset-inline: 14%; animation-delay: .36s; opacity: .85; }
.mspt-tube:nth-child(4) { top: calc(var(--header-h) + 138px); inset-inline: 19%; animation-delay: .54s; opacity: .7; }
.mspt-tube:nth-child(5) { top: calc(var(--header-h) + 172px); inset-inline: 24%; animation-delay: .72s; opacity: .5; }
.mspt-canopy::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21,26,69,0) 0%, rgba(21,26,69,.35) 45%, var(--housing) 80%); }
@keyframes mspt-warmup { 0% { opacity: .05; } 35% { opacity: .55; } 50% { opacity: .2; } 70% { opacity: .9; } 100% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .mspt-tube { animation: none; } }

/* ---------- Hero ---------- */
.mspt-hero { position: relative; background: var(--housing); color: var(--tube); overflow: hidden; }
.mspt-hero__in { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 2rem; align-items: end; padding-top: calc(var(--header-h) + 210px); padding-bottom: 72px; }
.mspt-hero__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--mono); font-size: .8rem; letter-spacing: .06em; color: var(--uv-soft); margin-bottom: 1.1rem; padding: .35rem .9rem; border: 1px solid rgba(191,180,255,.35); border-radius: 999px; }
.mspt-hero__eyebrow::before { content: ""; width: 18px; height: 4px; border-radius: 999px; background: var(--tube); box-shadow: 0 0 8px var(--uv-soft), 0 0 18px var(--uv); }
.mspt-hero__title { font-family: var(--display-he); font-weight: 700; font-size: clamp(3.4rem, 8vw, 7rem); line-height: .92; color: var(--white); }
.mspt-hero__title em { font-style: normal; color: var(--uv-soft); }
.mspt-hero__lede { font-size: 1.12rem; max-width: 54ch; color: #CFCBEF; margin: 1.3rem 0 1.6rem; }
.mspt-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.mspt-hero__fine { font-size: .85rem; color: #A7A9C9; margin: 1rem 0 0; }
.mspt-hero__spec { font-family: var(--mono); font-size: .84rem; color: #A7A9C9; border-inline-start: 2px solid var(--uv); padding-inline-start: 1rem; display: grid; gap: .4rem; direction: ltr; text-align: left; }
.mspt-hero__spec b { color: var(--tube); font-weight: 500; }
@media (max-width: 900px) {
	.mspt-hero__in { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 190px); padding-bottom: 56px; }
	.mspt-hero__spec { display: none; }
}

/* ---------- Sections ---------- */
.mspt-section { padding-block: 72px; }
.mspt-section__head { margin-bottom: 2rem; }
.mspt-section__head h2 { color: var(--ink); }
@media (max-width: 700px) { .mspt-section { padding-block: 52px; } }

/* Categories */
.mspt-cats { background: var(--studio); }
.mspt-cats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.mspt-cat { display: grid; grid-template-rows: 150px auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.mspt-cat:hover { transform: translateY(-3px); border-color: var(--uv-soft); box-shadow: 0 18px 40px -24px rgba(21,26,69,.5); }
.mspt-cat__art { position: relative; background: var(--housing); display: grid; place-items: center; overflow: hidden; }
.mspt-cat__art::before { content: ""; position: absolute; }
.mspt-cat--lamps .mspt-cat__art::before { inset-inline: 14%; top: 50%; height: 6px; border-radius: 999px; background: var(--tube); box-shadow: 0 0 12px var(--uv-soft), 0 0 36px var(--uv); }
.mspt-cat--parts .mspt-cat__art::before { width: 78px; height: 52px; border-radius: 8px; background: var(--tube); box-shadow: inset 0 0 0 6px var(--housing), inset 0 0 0 8px var(--uv); }
.mspt-cat--lotions .mspt-cat__art::before { width: 52px; height: 84px; border-radius: 10px 10px 14px 14px; background: linear-gradient(180deg, #7A5A3A, #3E2A1A); border-top: 14px solid var(--uv-soft); }
.mspt-cat--accessories .mspt-cat__art::before { width: 92px; height: 34px; border-radius: 999px; border: 5px solid var(--tube); box-shadow: 0 0 20px rgba(143,123,255,.5); }
/* Luxura: a sunbed seen from the side — open canopy over a base, glowing seam */
.mspt-cat--luxura .mspt-cat__art::before { width: 120px; height: 26px; border-radius: 14px 14px 6px 6px; background: var(--tube); box-shadow: 0 34px 0 0 var(--tube), 0 17px 22px -6px var(--uv), 0 0 40px rgba(143,123,255,.35); transform: translateY(-16px); }
/* Spray: a spray gun nozzle — cone of mist */
.mspt-cat--spray-machines .mspt-cat__art::before { width: 0; height: 0; border-inline-end: 96px solid rgba(191,180,255,.55); border-top: 28px solid transparent; border-bottom: 28px solid transparent; filter: blur(1.5px); box-shadow: none; }
.mspt-cat--spray-machines .mspt-cat__art::after { content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--tube); box-shadow: 0 0 16px var(--uv); inset-inline-end: calc(50% + 40px); top: calc(50% - 11px); }
.mspt-cat__body { padding: 1rem 1.1rem 1.2rem; display: grid; gap: .3rem; }
.mspt-cat__title { font-family: var(--display-he); font-weight: 700; font-size: 1.9rem; line-height: 1; }
.mspt-cat__blurb { color: var(--ink-2); font-size: .92rem; }
.mspt-cat__count { font-family: var(--mono); font-size: .75rem; color: var(--uv-deep); margin-top: .3rem; }
@media (max-width: 900px) { .mspt-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .mspt-cats__grid { grid-template-columns: 1fr; } .mspt-cat { grid-template-rows: 110px auto; } }

/* Steps (real sequence → numbered) */
.mspt-how { background: var(--white); border-block: 1px solid var(--line-2); }
.mspt-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; counter-reset: step; }
.mspt-steps li { border-top: 2px solid var(--line); padding-top: .9rem; }
.mspt-steps li::before { counter-increment: step; content: counter(step); display: block; font-family: var(--display-la); font-weight: 800; font-size: 2.2rem; line-height: 1; color: var(--uv); margin-bottom: .4rem; }
.mspt-steps b { display: block; font-weight: 600; margin-bottom: .2rem; font-size: 1.05rem; }
.mspt-steps p { margin: 0; color: var(--ink-2); font-size: .95rem; }
@media (max-width: 900px) { .mspt-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .mspt-steps { grid-template-columns: 1fr; } }

/* Why */
.mspt-why__in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: start; }
.mspt-why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.mspt-why__list li { display: grid; gap: .15rem; padding: 1rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); border-inline-start: 3px solid var(--uv); }
.mspt-why__list b { font-weight: 600; }
.mspt-why__list span { color: var(--ink-2); font-size: .95rem; }
@media (max-width: 900px) { .mspt-why__in { grid-template-columns: 1fr; gap: 1.5rem; } }

/* Final CTA */
.mspt-cta { position: relative; background: var(--housing); color: var(--tube); overflow: hidden; padding-block: 96px; }
.mspt-cta .mspt-tube:nth-child(1) { top: 28px; } .mspt-cta .mspt-tube:nth-child(2) { top: 60px; } .mspt-cta .mspt-tube:nth-child(3) { top: 92px; }
.mspt-cta__in { position: relative; z-index: 1; text-align: center; display: grid; gap: .8rem; justify-items: center; padding-top: 40px; }
.mspt-cta h2 { font-family: var(--display-he); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; color: var(--white); }
.mspt-cta p { color: #CFCBEF; max-width: 56ch; margin: 0 0 .6rem; }

/* ---------- Footer ---------- */
.mspt-footer { background: var(--housing); color: #CFCBEF; border-top: 1px solid rgba(237,233,255,.08); }
.mspt-footer__in { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; padding-block: 56px 40px; }
.mspt-footer__brand p { font-size: .95rem; margin: 1rem 0 0; max-width: 40ch; }
.mspt-logo--footer img { width: 170px; }
.mspt-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.mspt-footer__list a { color: var(--uv-soft); text-decoration: none; }
.mspt-footer__list a:hover { color: var(--tube); }
.mspt-footer__label { font-family: var(--mono); font-size: .75rem; letter-spacing: .08em; color: var(--uv-soft); margin-bottom: .5rem; }
.mspt-footer__contact a { color: var(--tube); text-decoration: none; }
.mspt-footer__hours { font-size: .9rem; margin-top: .4rem; color: #A7A9C9; }
.mspt-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; padding-block: 18px 28px; border-top: 1px solid rgba(237,233,255,.08); font-size: .82rem; color: #A7A9C9; }
@media (max-width: 800px) { .mspt-footer__in { grid-template-columns: 1fr; gap: 1.8rem; padding-block: 40px 28px; } }

/* ---------- Inner pages ---------- */
.mspt-inner .mspt-main { padding-top: 0; }
.mspt-page { padding-block: 48px 80px; }
.mspt-page__head { margin-bottom: 1.6rem; }
.mspt-article { max-width: 760px; }
.mspt-content { font-size: 1.02rem; }
.mspt-content h2, .mspt-content h3 { margin: 1.6em 0 .5em; font-weight: 600; }
.mspt-content h2 { font-size: 1.5rem; } .mspt-content h3 { font-size: 1.2rem; }
.mspt-posts { display: grid; gap: 1.2rem; max-width: 760px; }
.mspt-post { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.mspt-post h2 { font-size: 1.3rem; font-weight: 600; }
.mspt-post h2 a { color: inherit; text-decoration: none; }
.mspt-post__meta { font-family: var(--mono); font-size: .78rem; color: var(--ink-2); margin: .3rem 0 .6rem; }
.mspt-404 { text-align: center; display: grid; justify-items: center; gap: .6rem; padding-block: 100px; }
.mspt-404 .mspt-hero__cta { justify-content: center; }

/* ---------- WooCommerce: catalog ---------- */
.mspt-crumbs { font-size: .85rem; color: var(--ink-2); margin-bottom: 1.2rem; }
.mspt-crumbs a { color: inherit; text-decoration: none; }
.mspt-crumbs a:hover { color: var(--uv-deep); }
.mspt-crumb-sep { margin-inline: .5rem; color: var(--line); }
.woocommerce-products-header__title.page-title, .woocommerce-page h1.page-title { font-family: var(--display-he); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1; margin-bottom: .6rem; }
.term-description { color: var(--ink-2); max-width: 62ch; margin-bottom: 1.5rem; }
.woocommerce-result-count { font-family: var(--mono); font-size: .8rem; color: var(--ink-2); margin: 0 0 1.2rem; }
.woocommerce-notices-wrapper { margin-bottom: 1rem; }

.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.woocommerce ul.products li.product:hover { transform: translateY(-3px); border-color: var(--uv-soft); box-shadow: 0 18px 40px -24px rgba(21,26,69,.5); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: block; text-decoration: none; color: inherit; }
.woocommerce ul.products li.product img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--housing); margin: 0 !important; }
.woocommerce ul.products li.product .mspt-card__eyebrow { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; color: var(--uv-deep); padding: .9rem 1rem 0; }
.woocommerce ul.products li.product .mspt-card__title { font-size: 1.05rem; font-weight: 600; line-height: 1.3; padding: .25rem 1rem 0; color: var(--ink); }
.woocommerce ul.products li.product .mspt-specs { padding: .5rem 1rem 0; }
.woocommerce ul.products li.product .msp-price-placeholder { display: block; padding: .6rem 1rem 0; }
.woocommerce ul.products li.product .msp-loop-btn, .woocommerce ul.products li.product .button { margin: .8rem 1rem 1rem !important; align-self: start; padding: .55rem 1rem; font-size: .9rem; background: var(--housing); color: var(--tube); }
@media (max-width: 900px) { .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .woocommerce ul.products { grid-template-columns: 1fr; } }

.mspt-specs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem .6rem; }
.mspt-sku { font-family: var(--mono); font-size: .82rem; color: var(--ink-2); letter-spacing: .01em; }
.mspt-chips { display: inline-flex; flex-wrap: wrap; gap: .3rem; }
.mspt-chip { font-size: .74rem; padding: .08rem .55rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2); background: var(--studio); }
.msp-price-placeholder { color: var(--ink-2); font-size: .92rem; }

.woocommerce-pagination ul.page-numbers { display: flex; gap: .4rem; list-style: none; padding: 0; margin: 0; border: 0 !important; justify-content: center; }
.woocommerce-pagination ul.page-numbers li { border: 0 !important; }
.woocommerce-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line) !important; text-decoration: none; color: var(--ink); background: var(--white); padding: 0 .8rem !important; }
.woocommerce-pagination .page-numbers.current { background: var(--housing) !important; color: var(--tube) !important; border-color: var(--housing) !important; }

/* Single product */
.woocommerce div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; align-items: start; }
.woocommerce div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; margin: 0 !important; border-radius: var(--radius-lg); overflow: hidden; background: var(--housing); }
.woocommerce div.product .woocommerce-product-gallery img { background: var(--housing); }
.woocommerce div.product .summary { width: 100% !important; float: none !important; margin: 0 !important; }
.woocommerce div.product .product_title { font-family: var(--display-he); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; margin-bottom: .6rem; }
.woocommerce div.product .summary .mspt-specs { margin-bottom: 1rem; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--ink-2); }
.woocommerce div.product .product_meta { font-size: .85rem; color: var(--ink-2); margin-top: 1.2rem; display: grid; gap: .2rem; }
.woocommerce div.product .product_meta a { color: var(--uv-deep); text-decoration: none; }
.woocommerce div.product .woocommerce-tabs, .woocommerce div.product section.related, .woocommerce div.product section.upsells { grid-column: 1 / -1; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0 !important; margin: 0 0 1rem !important; display: flex; gap: .4rem; border-bottom: 1px solid var(--line); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent !important; border: 0 !important; border-radius: 0 !important; padding: 0 !important; margin: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { display: inline-block; padding: .7rem 1rem !important; color: var(--ink-2) !important; font-weight: 500 !important; border-bottom: 2px solid transparent; text-decoration: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ink) !important; border-bottom-color: var(--uv); }
.woocommerce div.product .woocommerce-tabs .panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: .6rem; }
.woocommerce table.shop_attributes { border: 0; }
.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td { border-bottom: 1px solid var(--line-2); padding: .55rem .4rem; background: transparent !important; }
.woocommerce table.shop_attributes th { color: var(--ink-2); font-weight: 500; width: 35%; }
.woocommerce div.product section.related > h2 { font-family: var(--display-he); font-weight: 700; font-size: 2rem; margin: 1.5rem 0 1rem; }
@media (max-width: 860px) { .woocommerce div.product { grid-template-columns: 1fr; gap: 1.5rem; } }

/* The plugin's request form on the product page */
.msp-add, .msp-cta { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; }
.msp-add__btn { background: var(--uv) !important; color: var(--housing) !important; }
.msp-cta--guest .button { background: var(--uv); color: var(--housing); }

/* ---------- WooCommerce: forms, notices, account ---------- */
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .woocommerce-page form .form-row input.input-text, .msp-field input:not([type="checkbox"]):not([type="file"]), .msp-field select, .msp-field textarea, .msp-add__field input, .msp-add__field select, .msp-rl__message textarea, .msp-quote__reject textarea {
	width: 100%; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); font: inherit; }
.woocommerce form .form-row input.input-text:focus, .msp-field input:focus, .msp-field select:focus, .msp-field textarea:focus { border-color: var(--uv); outline: 2px solid var(--uv); outline-offset: 1px; }
.woocommerce form .form-row label { font-weight: 500; }
.woocommerce form.login, .woocommerce form.register, .woocommerce form.lost_reset_password { border: 1px solid var(--line) !important; border-radius: var(--radius-lg) !important; background: var(--white); padding: 1.5rem !important; max-width: 520px; }
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit { width: 100%; }
.msp-register-cta { margin-top: 1.2rem; color: var(--ink-2); }
.msp-register-cta a { color: var(--uv-deep); font-weight: 600; }

.woocommerce-message, .woocommerce-info, .woocommerce-error, .msp-alert { border: 1px solid var(--line) !important; border-inline-start: 4px solid var(--uv) !important; background: var(--white) !important; color: var(--ink) !important; border-radius: var(--radius); padding: .9rem 1.1rem !important; margin-bottom: 1.2rem; }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { display: none !important; }
.woocommerce-error, .msp-alert--error { border-inline-start-color: var(--err) !important; }
.woocommerce-message, .msp-alert--success { border-inline-start-color: var(--ok) !important; }
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button { float: none !important; margin-inline-start: 1rem; }

/* My Account */
.woocommerce-account .woocommerce { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; }
.woocommerce-account .woocommerce > * { flex: 1 1 100%; min-width: 0; }
.woocommerce-account .woocommerce > .woocommerce-notices-wrapper:empty { display: none; }
.woocommerce-account .woocommerce-MyAccount-navigation { flex: 0 0 240px !important; width: 240px !important; float: none !important; }
.woocommerce-account .woocommerce > .woocommerce-MyAccount-content { flex: 1 1 0 !important; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: .6rem; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: .6rem .9rem; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 500; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--housing); color: var(--tube); }
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: var(--studio); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover { background: var(--housing); }
.woocommerce-account .woocommerce-MyAccount-content { width: auto !important; float: none !important; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem; }
.woocommerce-account .woocommerce-MyAccount-content h2, .woocommerce-account .woocommerce-MyAccount-content h3 { font-weight: 600; font-size: 1.2rem; margin-bottom: .8rem; }
@media (max-width: 860px) { .woocommerce-account .woocommerce-MyAccount-navigation { flex-basis: 100% !important; width: 100% !important; } .woocommerce-account .woocommerce-MyAccount-navigation ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.woocommerce table.shop_table { border: 1px solid var(--line) !important; border-radius: var(--radius) !important; border-collapse: separate !important; overflow: hidden; }
.woocommerce table.shop_table th { background: var(--studio); font-weight: 600; color: var(--ink-2); font-size: .9rem; }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { border-top: 1px solid var(--line-2) !important; padding: .8rem .9rem !important; }
.woocommerce table.shop_table thead th { border-top: 0 !important; }
.woocommerce-orders-table__cell-order-number a { font-family: var(--mono); font-weight: 500; color: var(--uv-deep); }
.woocommerce-orders-table .button { padding: .45rem .9rem; font-size: .85rem; margin-inline-end: .3rem; }
mark.order-number, mark.order-date, mark.order-status { background: transparent; color: inherit; font-weight: 600; }

/* Order view: quote panel & totals */
.msp-quote { background: var(--white); }
.woocommerce-order-details .woocommerce-order-details__title, .woocommerce-customer-details h2 { font-weight: 600; font-size: 1.15rem; }
.woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td { background: var(--studio); }
.woocommerce table.shop_table tfoot tr:last-child th, .woocommerce table.shop_table tfoot tr:last-child td { font-size: 1.05rem; }

/* Pay for order */
.woocommerce-checkout #order_review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; }
#payment { background: transparent !important; }
#payment ul.payment_methods { border-bottom: 1px solid var(--line) !important; padding: 0 0 1rem !important; }
#payment div.payment_box { background: var(--studio) !important; color: var(--ink) !important; border-radius: var(--radius); }
#payment div.payment_box::before { display: none; }
#payment .place-order .button { width: 100%; background: var(--uv); color: var(--housing); }

/* Registration form (plugin) sits on the page template */
.msp-register fieldset { background: var(--white); }
.msp-submit .button { background: var(--uv); color: var(--housing); }
