.btn {
--btn-pad-y: var(--mp-space-3);
--btn-pad-x: var(--mp-space-6);
--btn-size: var(--mp-text-base);
--btn-border: 0px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--mp-space-2);
border: 0;
border-radius: var(--mp-radius-md);
padding: 0 var(--btn-pad-x);
min-height: calc(var(--btn-pad-y) * 2 + var(--btn-border) * 2 + var(--btn-size) * 1.2);
font-weight: var(--mp-weight-semibold);
font-size: var(--btn-size);
line-height: 1.2;
font-family: var(--mp-font-body);
cursor: pointer;
text-align: center;
transition:
transform var(--mp-dur-fast) var(--mp-ease),
box-shadow var(--mp-dur) var(--mp-ease),
background-color var(--mp-dur) var(--mp-ease),
border-color var(--mp-dur) var(--mp-ease);
}
.btn:active { transform: translateY(1px); }
.btn-sm { --btn-pad-y: var(--mp-space-2); --btn-pad-x: var(--mp-space-4); --btn-size: var(--mp-text-sm); }
.btn-lg { --btn-pad-y: var(--mp-space-4); --btn-pad-x: var(--mp-space-8); --btn-size: var(--mp-text-lg); }
.btn-primary {
background: var(--mp-wood-deep);
color: var(--mp-text-on-dark);
box-shadow: 0 6px 16px rgba(176, 125, 75, .4);
}
.btn-primary:hover { background: var(--mp-wood); box-shadow: 0 8px 22px rgba(176, 125, 75, .5); }
.btn-on-dark {
background: rgba(20, 34, 27, .34);
color: var(--mp-text-on-dark);
border: 1px solid rgba(255, 255, 255, .42);
box-shadow: none;
}
.btn-on-dark:hover { background: rgba(20, 34, 27, .46); }
.btn-on-dark:focus-visible { outline-color: var(--mp-white); }
.btn-ghost {
--btn-border: 1px;
background: transparent;
color: var(--mp-heading);
border: 1px solid var(--mp-border-strong);
}
.btn-ghost:hover { background: var(--mp-bg-subtle); border-color: var(--mp-sage); }
.btn[disabled] {
opacity: .5;
cursor: not-allowed;
box-shadow: none;
}
.btn[disabled]:active { transform: none; }
.btn[disabled]:hover { box-shadow: none; }
.btn[aria-busy="true"]::before {
content: "";
width: 1em;
height: 1em;
border: 2px solid currentColor;
border-top-color: transparent;
border-radius: var(--mp-radius-pill);
animation: mp-spin 900ms linear infinite;
}
@keyframes mp-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
.btn[aria-busy="true"]::before { animation-duration: 2400ms; }
}
.cart-error {
display: inline-block;
margin-left: var(--mp-space-3);
color: var(--mp-danger);
font-size: var(--mp-text-sm);
}
[x-cloak] { display: none !important; }
.skeleton {
background: linear-gradient(90deg, var(--mp-bg-subtle) 25%, rgba(91,111,98,0.12) 37%, var(--mp-bg-subtle) 63%);
background-size: 400% 100%;
border-radius: var(--mp-radius-md);
animation: mp-shimmer 1.4s ease infinite;
}
@keyframes mp-shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
@media (prefers-reduced-motion: reduce) {
.skeleton { animation: none; }
}
.skeleton-hero { height: 220px; margin: var(--mp-space-4) 0 var(--mp-space-5); border-radius: var(--mp-radius-lg); }
.skeleton-card { height: 240px; }
.skeleton-line { height: 1em; margin: var(--mp-space-2) 0; border-radius: var(--mp-radius-sm); }
.page-error {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: var(--mp-space-4);
margin: var(--mp-space-8) 0;
padding: var(--mp-space-5) var(--mp-space-6);
border-radius: var(--mp-radius-md);
background: var(--mp-danger-bg);
border-left: 3px solid var(--mp-danger);
color: var(--mp-danger);
font-size: var(--mp-text-base);
}
.hero {
position: relative;
overflow: hidden;
border-radius: var(--mp-radius-lg);
margin: var(--mp-space-4) 0 var(--mp-space-5);
background: linear-gradient(135deg, var(--mp-hero-from) 0%, var(--mp-sage-deep) 100%);
color: var(--mp-text-on-dark);
padding: var(--mp-space-8) var(--mp-space-6);
box-shadow: 0 10px 30px rgba(63, 78, 69, .22);
}
.hero::after {
content: "";
position: absolute;
right: -40px;
top: -40px;
width: 260px;
height: 260px;
border-radius: 50%;
background: radial-gradient(circle at 30% 30%, rgba(176, 125, 75, .55), transparent 65%);
pointer-events: none;
}
.hero > * { position: relative; z-index: var(--mp-z-base); }
.hero h1 { color: var(--mp-text-on-dark); max-width: 20ch; margin: 0; }
.hero .lead {
margin: var(--mp-space-3) 0 var(--mp-space-5);
max-width: 50ch;
color: #ffffff;
font-size: var(--mp-text-lg);
}
.hero .ctas { display: flex; gap: var(--mp-space-3); flex-wrap: wrap; align-items: center; }
.hero .bullets {
margin: var(--mp-space-5) 0 0;
padding: 0;
list-style: none;
font-size: var(--mp-text-sm);
color: #ffffff;
display: flex;
gap: var(--mp-space-2) var(--mp-space-5);
flex-wrap: wrap;
}
.hero .bullets li { color: #ffffff; }
.hero .bullets li::before { content: "✓ "; color: #d7e3d6; }
@media (max-width: 560px) {
.hero { padding: var(--mp-space-6) var(--mp-space-5); border-radius: var(--mp-radius-md); }
}
.chips {
display: flex;
gap: var(--mp-space-3);
overflow-x: auto;
padding: var(--mp-space-1) 0 var(--mp-space-3);
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
@media (min-width: 561px) {
.chips { flex-wrap: wrap; overflow-x: visible; }
}
.chip {
flex: 0 0 auto;
padding: var(--mp-space-2) var(--mp-space-4);
border-radius: var(--mp-radius-pill);
background: var(--mp-bg-raised);
color: var(--mp-heading);
font-size: var(--mp-text-sm);
font-weight: var(--mp-weight-medium);
box-shadow: var(--mp-elev-1);
border: 0;
transition:
box-shadow var(--mp-dur) var(--mp-ease-overshoot),
background-color var(--mp-dur) var(--mp-ease),
color var(--mp-dur) var(--mp-ease);
}
.chip:hover { box-shadow: var(--mp-elev-2); }
.chip[aria-pressed="true"],
.chip.active {
background: var(--mp-sage);
color: var(--mp-text-on-dark);
font-weight: var(--mp-weight-semibold);
box-shadow: var(--mp-elev-1), inset 0 0 0 2px var(--mp-sage-deep);
}
.chip[aria-pressed="true"]:hover,
.chip.active:hover { background: var(--mp-sage-deep); }
.chip[disabled], .chip[aria-disabled="true"] {
opacity: .45;
cursor: not-allowed;
box-shadow: none;
}
.sectionhead {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: var(--mp-space-4);
margin: 0 var(--mp-space-1) var(--mp-space-5);
}
.sectionhead h2 { margin: 0; }
.sectionhead .link {
color: var(--mp-sage);
font-size: var(--mp-text-sm);
font-weight: var(--mp-weight-semibold);
white-space: nowrap;
border-radius: var(--mp-radius-sm);
}
.sectionhead .link:hover { text-decoration: underline; text-underline-offset: 0.3rem; }
.card {
background: var(--mp-bg-raised);
border-radius: var(--mp-radius-md);
border: none;
box-shadow: var(--mp-elev-1);
overflow: hidden;
contain: content;
display: flex;
flex-direction: column;
transition: transform var(--mp-dur) var(--mp-ease), box-shadow var(--mp-dur) var(--mp-ease);
}
.card:hover {
transform: translateY(-2px);
box-shadow: var(--mp-elev-2);
}
.card:focus-within {
box-shadow: var(--mp-elev-2), var(--mp-focus-ring-inset);
}
.card .thumb {
position: relative;
aspect-ratio: 4 / 3;
background: var(--mp-cream);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .tag {
position: absolute;
top: var(--mp-space-3);
left: var(--mp-space-3);
background: rgba(255, 255, 255, .9);
color: var(--mp-heading);
font-size: var(--mp-text-2xs);
font-weight: var(--mp-weight-semibold);
padding: var(--mp-space-1) var(--mp-space-2);
border-radius: var(--mp-radius-sm);
}
.card .body {
padding: var(--mp-space-3) var(--mp-space-4) var(--mp-space-4);
display: flex;
flex-direction: column;
gap: var(--mp-space-1);
flex: 1;
}
.card .title {
font-weight: var(--mp-weight-semibold);
font-size: var(--mp-text-base);
color: var(--mp-text);
line-height: var(--mp-lh-snug);
}
.card .proof { color: var(--mp-text-muted); font-size: var(--mp-text-xs); margin-bottom: var(--mp-space-2); }
.card .row {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--mp-space-2);
flex-wrap: wrap;
margin-top: auto;
}
.card .price-slot { color: var(--mp-heading); font-weight: var(--mp-weight-bold); font-size: var(--mp-text-base); }
.card .card-cta { flex: 0 1 auto; min-width: 0; }
.card .card-cta .btn {
--btn-pad-y: var(--mp-space-2);
--btn-pad-x: var(--mp-space-4);
--btn-size: var(--mp-text-sm);
white-space: nowrap;
}
@media (max-width: 560px) {
.card .card-cta { flex: 1 0 100%; }
.card .card-cta .btn { width: 100%; }
}
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--mp-space-8); align-items: start; }
@media (max-width: 768px) { .pdp { grid-template-columns: 1fr; gap: var(--mp-space-5); } }
.pdp > * { min-width: 0; }
.gallery-main {
position: relative;
aspect-ratio: 1 / 1;
max-height: 46vh;    
border-radius: var(--mp-radius-lg);
background: var(--mp-bg-raised);
box-shadow: var(--mp-elev-1);
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-main .preview-3d { width: 100%; height: 100%; border: 0; display: block; }
.gallery-strip { display: flex; gap: var(--mp-space-2); margin-top: var(--mp-space-3); flex-wrap: wrap; }
.gallery-strip button {
width: 64px;
height: 64px;
border-radius: var(--mp-radius-sm);
border: 1px solid var(--mp-border-strong);
background: var(--mp-bg-raised);
cursor: pointer;
font-size: var(--mp-text-2xs);
color: var(--mp-text-muted);
padding: 2px;
transition: border-color var(--mp-dur) var(--mp-ease), box-shadow var(--mp-dur) var(--mp-ease);
}
.gallery-strip button:hover { border-color: var(--mp-sage); }
.gallery-strip button[aria-current="true"] {
border-color: var(--mp-sage);
box-shadow: inset 0 0 0 2px var(--mp-sage);
}
.gallery-strip .gallery-thumb { overflow: hidden; display: grid; place-items: center; }
.gallery-strip .gallery-thumb img {
width: 100%; height: 100%;
object-fit: cover;
display: block;
border-radius: var(--mp-radius-sm);
}
.gallery-thumb-3d { font-weight: var(--mp-weight-semibold); letter-spacing: var(--mp-tracking-wide); color: var(--mp-heading); }
.pinfo {
background: var(--mp-card-bg);
border-radius: var(--mp-radius-md);
box-shadow: var(--mp-elev-1);
padding: var(--mp-space-6);
}
@media (max-width: 560px) {
.pinfo { padding: var(--mp-space-5) var(--mp-space-4); }
}
.pinfo h1 { margin: 0; }
.price-slot { font-size: var(--mp-text-3xl); font-weight: var(--mp-weight-bold); color: var(--mp-heading); margin: var(--mp-space-3) 0 0; }
.price-note { color: var(--mp-text-muted); font-size: var(--mp-text-xs); margin: var(--mp-space-1) 0 var(--mp-space-4); }
.bullets { list-style: none; padding: 0; margin: var(--mp-space-4) 0; display: flex; flex-wrap: wrap; gap: var(--mp-space-2) var(--mp-space-4); }
.bullets li { font-size: var(--mp-text-sm); color: var(--mp-text-subtle); }
.bullets li::before { content: "✓ "; color: var(--mp-sage); }
.selector { margin: var(--mp-space-4) 0; }
.selector .selector-label {
display: block;
font-weight: var(--mp-weight-semibold);
margin-bottom: var(--mp-space-2);
font-size: var(--mp-text-sm);
color: var(--mp-heading);
}
.selector select,
.field-control {
width: 100%;
max-width: 22rem;
padding: var(--mp-space-3);
border-radius: var(--mp-radius-sm);
border: 1px solid var(--mp-border-strong);
background: var(--mp-bg-raised);
font-family: var(--mp-font-body);
font-size: var(--mp-text-base);
color: var(--mp-text);
transition: border-color var(--mp-dur) var(--mp-ease), box-shadow var(--mp-dur) var(--mp-ease);
}
.selector select:hover,
.field-control:hover { border-color: var(--mp-sage); }
.dropzone {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: var(--mp-space-2);
min-height: 132px;
max-width: 22rem;
padding: var(--mp-space-5);
text-align: center;
border: 1.5px dashed var(--mp-border-strong);
border-radius: var(--mp-radius-md);
background: var(--mp-bg-subtle);
color: var(--mp-text-muted);
font-size: var(--mp-text-sm);
cursor: pointer;
transition: border-color var(--mp-dur) var(--mp-ease), background-color var(--mp-dur) var(--mp-ease);
}
.dropzone:hover { border-color: var(--mp-sage); background: rgba(91, 111, 98, 0.09); }
.dropzone .dropzone-icon { width: 28px; height: 28px; color: var(--mp-sage); }
.dropzone .dropzone-primary { color: var(--mp-heading); font-weight: var(--mp-weight-semibold); font-size: var(--mp-text-base); }
.dropzone .dropzone-hint { font-size: var(--mp-text-xs); color: var(--mp-text-subtle); }
.dropzone input[type="file"] {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
opacity: 0;
cursor: pointer;
}
.dropzone:has(input[type="file"]:focus-visible) {
outline: var(--mp-focus-width) solid var(--mp-focus-color);
outline-offset: var(--mp-focus-offset);
}
.dropzone.has-file { border-style: solid; border-color: var(--mp-sage); background: var(--mp-bg-raised); }
.dropzone-preview {
width: 64px;
height: 64px;
object-fit: cover;
border-radius: var(--mp-radius-sm);
display: block;
box-shadow: var(--mp-elev-1);
}
.dropzone-progress {
width: 100%;
height: 4px;
border-radius: var(--mp-radius-pill);
background: var(--mp-border);
overflow: hidden;
}
.dropzone-progress span {
display: block;
height: 100%;
width: 40%;
border-radius: inherit;
background: var(--mp-sage);
animation: mp-indeterminate 1.1s var(--mp-ease-in-out) infinite;
}
@keyframes mp-indeterminate {
0% { transform: translateX(-100%); }
100% { transform: translateX(300%); }
}
@media (prefers-reduced-motion: reduce) {
.dropzone-progress span { animation: none; width: 100%; opacity: .6; }
}
.badges { display: flex; flex-wrap: wrap; gap: var(--mp-space-2); margin: var(--mp-space-4) 0; }
.badges .pill, .pill {
display: inline-flex;
align-items: center;
gap: var(--mp-space-1);
background: var(--mp-bg-subtle);
border: 1px solid var(--mp-border);
color: var(--mp-heading);
border-radius: var(--mp-radius-sm);
padding: var(--mp-space-1) var(--mp-space-3);
font-size: var(--mp-text-xs);
font-weight: var(--mp-weight-medium);
}
.pill-success { background: rgba(75, 115, 85, 0.1); border-color: rgba(75, 115, 85, 0.28); color: var(--mp-success); }
.pill-accent { background: rgba(176, 125, 75, 0.1); border-color: rgba(176, 125, 75, 0.3); color: var(--mp-wood); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--mp-space-4); }
.step {
background: var(--mp-bg-raised);
border-radius: var(--mp-radius-md);
box-shadow: var(--mp-elev-1);
padding: var(--mp-space-5);
transition: box-shadow var(--mp-dur) var(--mp-ease);
}
.step:hover { box-shadow: var(--mp-elev-2); }
.step .n {
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: var(--mp-radius-pill);
background: var(--mp-sage);
color: var(--mp-text-on-dark);
font-size: var(--mp-text-sm);
font-weight: var(--mp-weight-bold);
margin-bottom: var(--mp-space-2);
}
.step p { margin: 0; font-size: var(--mp-text-base); color: var(--mp-text-subtle); }
.unique {
background: rgba(176, 125, 75, .10);
border-left: 3px solid var(--mp-wood);
border-radius: var(--mp-radius-sm);
padding: var(--mp-space-3) var(--mp-space-4);
color: var(--mp-heading);
font-size: var(--mp-text-base);
margin: var(--mp-space-4) 0;
max-width: 54ch;
}
.lead { color: var(--mp-text-subtle); max-width: 60ch; font-size: var(--mp-text-lg); }
.specs, .spec-table {
width: 100%;
border-collapse: collapse;
margin: var(--mp-space-4) 0;
max-width: 34rem;
font-size: var(--mp-text-sm);
}
.specs td, .spec-table td {
padding: var(--mp-space-3) var(--mp-space-2);
border-bottom: 1px solid var(--mp-border);
vertical-align: top;
}
.specs tr:last-child td, .spec-table tr:last-child td { border-bottom: 0; }
.specs td:first-child, .spec-table td:first-child {
color: var(--mp-text-muted);
width: 42%;
}
.specs td:last-child, .spec-table td:last-child { color: var(--mp-text); font-weight: var(--mp-weight-medium); }
.legal-surfaces { font-size: var(--mp-text-xs); color: var(--mp-text-muted); }
.legal-surfaces a { color: var(--mp-sage); font-weight: var(--mp-weight-semibold); }
.legal-surfaces .legal-note { display: block; margin-top: var(--mp-space-1); }
[data-build-chrome] {
background: rgba(35, 35, 35, .86);
color: var(--mp-text-on-dark);
font-size: var(--mp-text-2xs);
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
padding: var(--mp-space-2) var(--mp-space-4);
line-height: var(--mp-lh-normal);
}
[data-build-chrome] code { color: #ffd9a0; }
.lang-switcher {
display: inline-flex;
gap: var(--mp-space-2);
align-items: center;
}
.lang-switcher a {
font-size: var(--mp-text-sm);
text-decoration: none;
color: inherit;
opacity: 0.7;
padding: var(--mp-space-1) var(--mp-space-2);
border-radius: var(--mp-radius-sm);
transition: opacity var(--mp-dur-fast) var(--mp-ease), background-color var(--mp-dur-fast) var(--mp-ease);
}
.lang-switcher a:hover { opacity: 1; background: rgba(255, 255, 255, 0.4); }
.lang-suggest {
display: flex;
gap: var(--mp-space-3);
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: var(--mp-space-3) var(--mp-space-4);
background: var(--mp-sage);
color: var(--mp-text-on-dark);
font-size: var(--mp-text-sm);
}
.lang-suggest-go {
color: var(--mp-text-on-dark);
font-weight: var(--mp-weight-semibold);
text-decoration: underline;
}
.lang-suggest-x {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.5);
color: var(--mp-text-on-dark);
border-radius: var(--mp-radius-sm);
padding: var(--mp-space-1) var(--mp-space-3);
cursor: pointer;
font-size: var(--mp-text-xs);
}
.lang-suggest-x:hover { background: rgba(255, 255, 255, 0.15); }
.lang-suggest :focus-visible { outline-color: var(--mp-white); }
.collection-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
gap: var(--mp-space-5);
}
.collection-tile {
display: flex;
flex-direction: column;
background: var(--mp-card-bg);
border-radius: var(--mp-radius-md);
overflow: hidden;
text-decoration: none;
color: var(--mp-text);
box-shadow: var(--mp-elev-1);
transition: transform var(--mp-dur) var(--mp-ease), box-shadow var(--mp-dur) var(--mp-ease);
}
.collection-tile:hover {
transform: translateY(-2px);
box-shadow: var(--mp-elev-2);
}
.collection-tile:focus-visible {
outline: none;
box-shadow: var(--mp-elev-2), var(--mp-focus-ring-inset);
}
.collection-tile { height: 100%; }
.collection-tile-img {
display: block;
width: 100%;
aspect-ratio: 4 / 3;
background: var(--mp-cream);
flex: none;
}
.collection-tile-label { margin-top: auto; }
.collection-tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-tile-label {
padding: var(--mp-space-3) var(--mp-space-4);
font-family: var(--mp-font-display);
font-size: var(--mp-text-lg);
color: var(--mp-heading);
}
.conversion-band {
display: grid;
grid-template-columns: 2fr 1fr;
gap: var(--mp-space-8);
align-items: center;
margin: var(--mp-space-8) 0;
padding: var(--mp-space-8);
background: var(--mp-cream);
border-radius: var(--mp-radius-md);
}
.conversion-ready {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
gap: var(--mp-space-4);
}
.conversion-ready-item {
display: flex;
flex-direction: column;
gap: var(--mp-space-2);
text-decoration: none;
color: var(--mp-text);
font-size: var(--mp-text-sm);
}
.conversion-ready-item img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: var(--mp-radius-sm);
display: block;
}
.conversion-switch h2 {
margin: 0 0 var(--mp-space-3);
font-family: var(--mp-font-display);
font-size: var(--mp-text-2xl);
}
.breadcrumb {
display: flex;
gap: var(--mp-space-2);
align-items: center;
font-size: var(--mp-text-sm);
color: var(--mp-text-muted);
margin-bottom: var(--mp-space-3);
}
.breadcrumb a { color: var(--mp-sage); text-decoration: none; border-radius: var(--mp-radius-sm); }
.breadcrumb a:hover { text-decoration: underline; text-underline-offset: 0.3rem; }
.more-collections { margin-top: var(--mp-space-8); }
.more-collections h2 { font-family: var(--mp-font-display); font-size: var(--mp-text-xl); margin: 0 0 var(--mp-space-3); }
@media (max-width: 768px) {
.conversion-band { grid-template-columns: 1fr; padding: var(--mp-space-6); }
.collection-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
