:root {
    --ink: #2b2b2c;
    --ink-soft: #6b6b6d;
    --line: #e6e6e6;
    --bg: #f6f6f4;
    --white: #ffffff;
    --accent: #2b2b2c;
    --ok: #1f7a4d;
    --warn: #9a6b00;
    --err: #b3261e;
    --radius: 10px;
}

.showroom-samplebox {
    position: relative;
    z-index: 3;
    width: min(500px, 100%);
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: .85rem;
    padding: .5rem .58rem;
    border: 1px solid #cfe4d7;
    border-radius: 999px;
    background: #eef8f2;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    backdrop-filter: blur(10px);
}
.showroom-samplebox__visual {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    grid-template-columns: repeat(2, 10px);
    grid-auto-rows: 10px;
    place-content: center;
    gap: 2px;
    border-radius: 50%;
    background: #f8f8f6;
    border: 1px solid #e1e1de;
}
.showroom-samplebox__swatch {
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(43, 43, 44, .1);
    border-radius: 50%;
}
.showroom-samplebox__swatch--dark {
    background: #252528;
}
.showroom-samplebox__swatch--warm {
    background: #d7c4a6;
}
.showroom-samplebox__swatch--light {
    background: #f7f2ea;
}
.showroom-samplebox__plus {
    display: grid;
    place-content: center;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eef8f2;
    color: #1f7a4d;
    font-size: .56rem;
    font-weight: 850;
    line-height: 1;
}
.showroom-samplebox__body {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .18rem .4rem;
    min-width: 0;
}
.showroom-samplebox__body strong {
    color: #1f7a4d;
    font-size: .8rem;
    font-weight: 780;
    line-height: 1.2;
}
.showroom-samplebox__body span {
    color: #4f6c5c;
    font-size: .78rem;
    font-weight: 680;
    line-height: 1.28;
}
.showroom-samplebox__arrow {
    display: grid;
    place-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    margin-left: auto;
    border-radius: 50%;
    background: rgba(31, 122, 77, .1);
    color: #1f7a4d;
    font-weight: 850;
}
.showroom-samplebox:hover {
    border-color: #1f7a4d;
    background: #1f7a4d;
}
.showroom-samplebox:hover .showroom-samplebox__body strong,
.showroom-samplebox:hover .showroom-samplebox__body span {
    color: #fff;
}
.showroom-samplebox:hover .showroom-samplebox__arrow {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}
.showroom-samplebox-row {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: .05rem 0 0;
}
.showroom-samplebox--stories {
    width: auto;
    max-width: min(100%, 520px);
    margin-top: 0;
    background: #eef8f2;
}
.samplebox-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.samplebox-modal.is-open {
    display: flex;
}
.samplebox-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(31, 31, 33, .36);
}
.samplebox-modal__box {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    border: 1px solid #e2e2df;
    border-radius: 8px;
    background: #fbfbfa;
    box-shadow: 0 24px 80px rgba(31, 31, 33, .18);
    padding: 1.25rem;
}
.samplebox-modal__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 34px;
    height: 34px;
    border: 1px solid #e2e2df;
    border-radius: 50%;
    background: #fff;
    color: #4f4f51;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}
.samplebox-modal__intro {
    padding-right: 2.6rem;
}
.samplebox-modal__intro h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.05;
}
.samplebox-modal__intro p:not(.showroom-eyebrow) {
    margin: .7rem 0 0;
    color: #6f6f70;
}
.samplebox-form {
    display: grid;
    gap: .85rem;
    margin-top: 1.1rem;
}
.samplebox-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem .8rem;
}
.samplebox-form label {
    display: block;
    margin: 0 0 .25rem;
    color: var(--ink);
    font-size: .8rem;
    font-weight: 750;
}
.samplebox-form input,
.samplebox-form select,
.samplebox-form textarea {
    width: 100%;
    border: 1px solid #dededb;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: .92rem;
    padding: .62rem .7rem;
}
.samplebox-form textarea {
    resize: vertical;
}
.samplebox-form__check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
}
.samplebox-choice {
    position: relative;
    display: flex;
    align-items: center;
    gap: .62rem;
    min-height: 46px;
    margin: 0;
    padding: .62rem .72rem;
    border: 1px solid #dededb;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 780;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.samplebox-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.samplebox-choice__box {
    display: grid;
    place-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    border: 1.5px solid #d8d8d5;
    border-radius: 50%;
    background: #f8f8f6;
}
.samplebox-choice__box::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
}
.samplebox-choice:hover {
    border-color: #cfded4;
    background: #fbfdfb;
}
.samplebox-choice:has(input:checked) {
    border-color: #b9ddc8;
    background: #eef8f2;
    box-shadow: inset 0 0 0 1px #d6eddf;
}
.samplebox-choice:has(input:checked) .samplebox-choice__box {
    border-color: #1f7a4d;
    background: #1f7a4d;
}
.samplebox-choice:has(input:checked) .samplebox-choice__box::after {
    width: 10px;
    height: 6px;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    border-radius: 0;
    background: transparent;
    transform: translateY(-1px) rotate(-45deg);
}
@media (max-width: 620px) {
    .showroom-samplebox {
        width: 100%;
        align-items: center;
        padding: .68rem;
    }
    .samplebox-form__grid,
    .samplebox-form__check-grid {
        grid-template-columns: 1fr;
    }
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.45;
}

a { color: var(--ink); }

.app { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.sidebar {
    background: var(--white);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem;
    position: sticky;
    top: 0;
    height: 100vh;
}
.sidebar__brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; letter-spacing: .04em; padding: .25rem .5rem 1.25rem; }
.brand-word { color: var(--ink); }
.brand-a { color: inherit; font-style: italic; }
.sidebar__brand-sub { font-weight: 400; color: var(--ink-soft); }
.sidebar__nav { display: flex; flex-direction: column; gap: .15rem; }
.sidebar__nav a { display: flex; align-items: center; gap: .7rem; padding: .6rem .7rem; border-radius: 9px; text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .92rem; }
.sidebar__nav a:hover { background: var(--bg); color: var(--ink); }
.sidebar__nav a.is-active { background: var(--ink); color: #fff; }
.sidebar__nav svg { width: 18px; height: 18px; flex: 0 0 auto; }
.sidebar__spacer { flex: 1; }

.user-card { display: flex; align-items: center; gap: .35rem; border-top: 1px solid var(--line); padding-top: .9rem; margin-top: .9rem; }
.user-card__main { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex: 1; min-width: 0; padding: .35rem; border-radius: 9px; }
.user-card__main:hover { background: var(--bg); }
.user-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-content: center; font-weight: 700; font-size: .78rem; flex: 0 0 auto; }
.user-card__text { display: flex; flex-direction: column; min-width: 0; }
.user-card__name { font-weight: 600; font-size: .86rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-card__role { color: var(--ink-soft); font-size: .76rem; }
.user-card__logout { display: grid; place-content: center; width: 34px; height: 34px; border-radius: 8px; color: var(--ink-soft); flex: 0 0 auto; }
.user-card__logout svg { width: 18px; height: 18px; }
.user-card__logout:hover { background: #fbeae9; color: var(--err); }

.app__main { min-width: 0; }

.page { max-width: 760px; margin: 2rem auto; padding: 0 1.5rem; }
.page__title { margin: 0 0 1.25rem; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; }
.panel label { font-size: .82rem; font-weight: 600; margin-top: .5rem; }
.panel input:not([type=checkbox]), .panel select, .panel textarea { padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 8px; font-size: .95rem; font-family: inherit; width: 100%; }
.panel .btn { margin-top: 25px; }

.flash {
    max-width: 1100px;
    margin: 1rem auto 0;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    font-size: .92rem;
}
.flash--success { background: #e7f4ec; color: var(--ok); }
.flash--error, .flash--danger { background: #fbeae9; color: var(--err); }
.flash--warning { background: #fdf3e1; color: var(--warn); }

.impersonation-bar {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .55rem 1rem;
    background: #fdf3e1;
    border-bottom: 1px solid #f1dfb8;
    color: var(--warn);
    font-size: .9rem;
    font-weight: 600;
}
.impersonation-bar a { color: var(--ink); }

.loader-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(255, 255, 255, .5); }
body.is-loading .loader-overlay { display: flex; }
body.is-loading .app { filter: blur(2px); pointer-events: none; user-select: none; }
.loader-box { display: flex; flex-direction: column; align-items: center; gap: .9rem; color: var(--ink); font-weight: 600; }
.loader-spin { width: 44px; height: 44px; border: 4px solid var(--line); border-top-color: var(--ink); border-radius: 50%; animation: loader-rot .7s linear infinite; }
@keyframes loader-rot { to { transform: rotate(360deg); } }

.tariff-stat { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tariff-stat__label { color: var(--ink-soft); font-weight: 600; }
.tariff-stat__value { font-size: 1.8rem; font-weight: 700; }
.tariff-note { color: var(--ink-soft); font-size: .86rem; margin: .5rem 0 0; }

.orderline { display: flex; align-items: center; gap: .6rem; }
.orderline__thumb { width: 38px; height: 38px; border-radius: 6px; border: 1px solid var(--line); object-fit: cover; flex: 0 0 auto; }

.btn {
    display: inline-block;
    border: 0;
    border-radius: var(--radius);
    padding: .7rem 1.2rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:disabled { background: #bcbcbd; cursor: not-allowed; }
.btn--ghost { background: var(--bg); color: var(--ink); }
.btn--ghost:hover { background: #ececea; }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(43, 43, 44, .45); }
.modal__box { position: relative; background: var(--white); border-radius: 16px; padding: 1.75rem; max-width: 430px; width: 100%; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 50px rgba(0, 0, 0, .2); }
.modal__title { margin: 0 0 .5rem; font-size: 1.2rem; }
.modal__text { color: var(--ink-soft); font-size: .92rem; margin: 0 0 1.25rem; }
.modal__text strong { color: var(--ink); }
.modal__actions { display: flex; gap: .6rem; justify-content: flex-end; }

.auth { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.auth__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 2rem; width: 100%; max-width: 420px; }
.auth__card--wide { max-width: 640px; }
.auth__logo { display: block; margin: 0 auto 1rem; }
.auth__title { text-align: center; margin: 0 0 .25rem; }
.auth__lead, .auth__alt { text-align: center; color: var(--ink-soft); font-size: .9rem; }
.auth__showroom-link {
    display: flex;
    justify-content: center;
    margin: .55rem 0 1rem;
}
.auth__showroom-link a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    min-height: 28px;
    padding: .28rem .65rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fbfbfa;
    color: var(--ink-soft);
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.auth__showroom-link svg {
    width: 14px;
    height: 14px;
}
.auth__showroom-link a:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}
.auth form { display: flex; flex-direction: column; gap: .35rem; margin-top: 1rem; }
.auth label { font-size: .82rem; font-weight: 600; margin-top: .5rem; }
.auth input:not([type=checkbox]), .auth select {
    padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 8px; font-size: .95rem;
}
.auth__remember { display: flex; align-items: center; gap: .4rem; font-weight: 400; }
.auth .btn { margin-top: 1rem; }

.showroom {
    min-height: 100vh;
    background: #f7f7f5;
    color: var(--ink);
}
.showroom-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.1rem clamp(1rem, 3vw, 2.5rem) 1.3rem;
    background: #f0f0ed;
}
.showroom-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(246, 246, 244, .62);
    pointer-events: none;
}
.showroom-nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(1180px, 100%);
    margin: 0 auto;
}
.showroom-brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .03em;
}
.showroom-brand span span:last-child,
.showroom-nav__links a {
    color: var(--ink);
}
.showroom-nav__links {
    display: flex;
    align-items: center;
    gap: .45rem;
}
.showroom-nav__links a {
    padding: .48rem .7rem;
    border-radius: 7px;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
}
.showroom-nav__sample {
    appearance: none;
    border: 1px solid #cfe4d7;
    border-radius: 999px;
    background: #eef8f2;
    color: #1f7a4d;
    cursor: pointer;
    font: inherit;
    font-size: .78rem;
    font-weight: 780;
    padding: .48rem .78rem;
}
.showroom-nav__sample:hover {
    border-color: #1f7a4d;
    background: #1f7a4d;
    color: #fff;
}
.showroom-nav__links a:hover {
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
}
.showroom-nav__links .showroom-nav__login {
    background: var(--ink);
    color: #fff;
}
.showroom-nav__links .showroom-nav__login:hover {
    background: #111;
    color: #fff;
}
.showroom-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.showroom-hero__photo {
    position: absolute;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(43, 43, 44, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(43, 43, 44, .08);
}
.showroom-hero__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}
.showroom-hero__photo--1 { width: 28vw; height: 50vh; right: 7vw; top: 14vh; }
.showroom-hero__photo--2 { width: 18vw; height: 32vh; right: 35vw; top: 10vh; }
.showroom-hero__photo--3 { width: 16vw; height: 27vh; right: 25vw; bottom: 9vh; }
.showroom-hero__photo--4 { width: 13vw; height: 23vh; left: 6vw; bottom: 11vh; }
.showroom-hero__photo--5 { width: 12vw; height: 21vh; left: 19vw; top: 16vh; }
.showroom-hero__photo--6 { width: 10vw; height: 18vh; right: 3vw; bottom: 10vh; }
.showroom-hero__photo--fallback {
    width: 20vw;
    height: 34vh;
    right: 10vw;
    top: 20vh;
    display: grid;
    place-content: center;
}
.showroom-hero__photo--fallback img {
    width: 84px;
    height: auto;
    opacity: .14;
    filter: grayscale(1);
}
.showroom-hero__content {
    position: relative;
    z-index: 2;
    width: min(690px, 100%);
    margin: auto auto auto max(0px, calc((100vw - 1180px) / 2));
    padding: 6rem 0 5rem;
}
.showroom-eyebrow {
    margin: 0 0 .8rem;
    color: var(--ok);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.showroom-hero h1,
.showroom-section h2,
.showroom-cta h2 {
    margin: 0;
    letter-spacing: 0;
    color: var(--ink);
}
.showroom-hero h1 {
    max-width: 680px;
    font-size: clamp(2.4rem, 5.8vw, 5.4rem);
    line-height: .96;
}
.showroom-hero__text {
    max-width: 560px;
    margin: 1.05rem 0 0;
    color: #555558;
    font-size: clamp(1rem, 1.45vw, 1.22rem);
}
.showroom-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.35rem;
}
.showroom-actions--center {
    justify-content: center;
}
.showroom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 42px;
    padding: .7rem .95rem;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: .92rem;
    font-weight: 800;
}
.showroom-btn svg {
    width: 17px;
    height: 17px;
}
.showroom-btn--primary {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}
.showroom-btn--primary:hover {
    background: #111;
    color: #fff;
}
.showroom-btn--ghost:hover {
    border-color: var(--ink);
    background: #fff;
}
.showroom-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    width: min(1180px, 100%);
    margin: 0 auto;
    border: 1px solid rgba(43, 43, 44, .11);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(43, 43, 44, .09);
}
.showroom-strip span {
    display: grid;
    place-content: center;
    min-height: 48px;
    padding: .75rem;
    background: rgba(255, 255, 255, .82);
    color: var(--ink);
    font-size: .86rem;
    font-weight: 800;
    text-align: center;
}
.showroom-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4.4rem 0 0;
}
.showroom-section--tight {
    padding-top: 3rem;
}
.showroom-section__head {
    display: grid;
    grid-template-columns: minmax(180px, .45fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.2rem;
}
.showroom-section__head h2,
.showroom-cta h2 {
    max-width: 760px;
    font-size: clamp(1.55rem, 3vw, 2.65rem);
    line-height: 1.05;
}
.showroom-usps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.showroom-usps article {
    min-height: 168px;
    padding: 1.1rem 1rem;
    border-right: 1px solid var(--line);
}
.showroom-usps article:last-child {
    border-right: 0;
}
.showroom-icon {
    display: inline-grid;
    place-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: .7rem;
    border-radius: 50%;
    background: #e4f2ea;
    color: var(--ok);
    font-weight: 900;
}
.showroom-usps h3,
.showroom-product strong,
.showroom-collection strong {
    margin: 0;
    color: var(--ink);
    line-height: 1.15;
}
.showroom-usps h3 {
    font-size: 1rem;
}
.showroom-usps p {
    margin: .45rem 0 0;
    color: var(--ink-soft);
    font-size: .9rem;
}
.showroom-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}
.showroom-product,
.showroom-collection {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.showroom-product__image {
    display: block;
    aspect-ratio: 4 / 5;
    background: #f2f2f0;
}
.showroom-product__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center bottom;
}
.showroom-product__fallback {
    padding: 32%;
    opacity: .13;
    filter: grayscale(1);
}
.showroom-product__meta {
    display: flex;
    flex-direction: column;
    gap: .22rem;
    padding: .8rem;
}
.showroom-product__meta span,
.showroom-collection__body span,
.showroom-collection__body em {
    color: var(--ink-soft);
    font-size: .82rem;
    font-style: normal;
}
.showroom-collections {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}
.showroom-collection {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: stretch;
}
.showroom-collection__image {
    min-height: 126px;
    background: #f2f2f0;
}
.showroom-collection__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}
.showroom-collection__body {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: .95rem;
}
.showroom-collection__body em {
    margin-top: auto;
    font-weight: 800;
}
.showroom-cta {
    width: min(900px, calc(100% - 2rem));
    margin: 4.5rem auto 0;
    padding: 3rem 0 4.5rem;
    text-align: center;
    border-top: 1px solid var(--line);
}

.form-section + .form-section { margin-top: 1.75rem; }
.form-section__title { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem 1rem; }
.form-grid__full { grid-column: 1 / -1; }
.form-grid > div { display: flex; flex-direction: column; }
.form-grid > div.address-row { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem 1rem; }
.form-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.address-row > div,
.address-row__pair > div { display: flex; flex-direction: column; min-width: 0; }
.address-row > .address-row__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border: 1.5px solid var(--line);
    border-radius: 5px;
    background: var(--white);
    display: inline-grid;
    place-content: center;
    flex: 0 0 auto;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
input[type="checkbox"]::before {
    content: "";
    width: 11px;
    height: 11px;
    transform: scale(0);
    transition: transform .12s ease-in-out;
    background: var(--white);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}
input[type="checkbox"]:checked::before {
    transform: scale(1);
}
input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.catalog {
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: start;
}
.catalog__list { padding: 1.5rem 2rem; min-width: 0; }
.catalog__title { margin: 0; }
.catalog__lead { color: var(--ink-soft); margin: .25rem 0 1rem; }
.catalog-discount {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .45rem .65rem;
    margin: 0 0 1rem;
    padding: .65rem .75rem;
    border: 1px solid #cfe7d8;
    border-radius: 8px;
    background: #eef8f2;
    color: var(--ok);
    font-size: .88rem;
    font-weight: 600;
}
.catalog-discount__tag {
    padding: .12rem .45rem;
    border-radius: 6px;
    background: var(--ok);
    color: #fff;
    font-size: .74rem;
    text-transform: uppercase;
}
.catalog__filter { display: flex; gap: .75rem; margin: 0 0 .65rem; flex-wrap: wrap; }
.catalog__search { flex: 1 1 220px; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 8px; font-size: .95rem; font-family: inherit; }
.catalog__export { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .4rem; padding: .6rem .9rem; border: 1px solid var(--line); border-radius: 8px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); text-decoration: none; background: #fff; transition: background .15s, color .15s; }
.catalog__export svg { width: 17px; height: 17px; flex: 0 0 auto; }
.catalog__export:hover { background: var(--ink); color: #fff; }
.catalog__chips { display: flex; gap: .4rem; flex-wrap: wrap; margin: 0 0 1.25rem; }
.catalog-chip { display: inline-flex; align-items: center; min-height: 24px; padding: .2rem .46rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-soft); font: inherit; font-size: .7rem; font-weight: 700; line-height: 1; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.catalog-chip:hover { border-color: var(--ink); color: var(--ink); }
.catalog-chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.catalog-view-toggle { flex: 0 0 auto; width: 39px; height: 39px; display: inline-grid; place-content: center; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink-soft); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.catalog-view-toggle svg { width: 18px; height: 18px; }
.catalog-view-toggle:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.switch-control { display: inline-flex; align-items: center; gap: .5rem; min-height: 39px; font-size: .86rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; user-select: none; }
.switch-control__input { position: absolute; opacity: 0; pointer-events: none; }
.switch-control__slider { position: relative; width: 42px; height: 24px; border-radius: 999px; background: #d7d7d5; transition: background .18s; }
.switch-control__slider::before { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .18s; }
.switch-control__input:checked + .switch-control__slider { background: var(--ink); }
.switch-control__input:checked + .switch-control__slider::before { transform: translateX(18px); }
.switch-control__input:focus-visible + .switch-control__slider { outline: 2px solid var(--ink); outline-offset: 2px; }
.catalog__empty { color: var(--ink-soft); }

.product { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.2rem; margin-bottom: 1rem; }
@media (min-width: 1600px) {
    .catalog__products { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
    .catalog__products .product { margin-bottom: 0; }
}
.product__head { display: flex; gap: 1rem; align-items: center; position: relative; margin-bottom: .75rem; padding: 0 2.4rem .9rem 0; border-bottom: 1px solid var(--line); }
.product__thumb { width: 64px; height: 64px; flex: 0 0 64px; border-radius: 10px; overflow: hidden; background: var(--bg); }
.product__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product__info { display: flex; flex-direction: column; }
.product__name { margin: 0; font-size: 1.1rem; }
.product__availability-chip { position: relative; display: inline-flex; align-items: center; gap: .22rem; padding: .12rem .42rem; border: 1px solid var(--line); border-radius: 6px; color: var(--ink-soft); background: var(--bg); font-size: .72rem; font-weight: 700; letter-spacing: 0; line-height: 1.25; vertical-align: middle; cursor: help; }
.product__availability-chip--nos,
.product__availability-chip--oos { border-color: #cfe2ff; color: #0a58ca; background: #e7f1ff; }
.product__availability-info { display: inline-grid; place-content: center; width: 12px; height: 12px; border-radius: 50%; background: rgba(10, 88, 202, .13); color: #0a58ca; font-size: .52rem; font-weight: 900; line-height: 1; }
.product__availability-chip::after { content: attr(data-tooltip); position: absolute; left: 50%; bottom: calc(100% + 7px); z-index: 20; transform: translateX(-50%) translateY(2px); width: max-content; max-width: 180px; padding: .32rem .45rem; border-radius: 5px; background: var(--ink); color: #fff; font-size: .68rem; font-weight: 700; line-height: 1.15; box-shadow: 0 8px 20px rgba(0, 0, 0, .18); opacity: 0; pointer-events: none; transition: opacity .12s, transform .12s; }
.product__availability-chip::before { content: ''; position: absolute; left: 50%; bottom: calc(100% + 3px); z-index: 21; transform: translateX(-50%) translateY(2px); border: 4px solid transparent; border-top-color: var(--ink); opacity: 0; pointer-events: none; transition: opacity .12s, transform .12s; }
.product__availability-chip:hover::after,
.product__availability-chip:hover::before,
.product__availability-chip:focus-visible::after,
.product__availability-chip:focus-visible::before { opacity: 1; transform: translateX(-50%) translateY(0); }
.product__art { display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .8rem; }
.product__download { display: inline-flex; align-items: center; gap: .22rem; padding: .12rem .42rem; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); color: var(--ink); font-size: .72rem; font-weight: 700; line-height: 1.25; text-decoration: none; }
.product__download svg { width: 12px; height: 12px; flex: 0 0 auto; }
.product__download:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.product__price { display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; margin-top: .4rem; }
.product__price-lines { display: flex; flex-direction: column; gap: .05rem; }
.product__price-tags { display: flex; gap: .35rem; flex-wrap: wrap; align-items: center; }
.product__wsp,
.product__rrp { color: var(--ink); font-size: .9rem; font-weight: 500; font-variant-numeric: tabular-nums; line-height: 1.25; }
.product__wsp--discounted { display: inline-flex; align-items: center; gap: .35rem; flex-wrap: wrap; }
.product__wsp-original { color: var(--ink-soft); font-size: .82rem; line-height: 1.2; text-decoration: line-through; }
.product__wsp-net { color: var(--ok); font-weight: 700; }
.product__discount { display: inline-flex; align-items: center; align-self: center; font-size: .75rem; font-weight: 700; line-height: 1.15; color: var(--ok); background: #e7f4ec; border: 1px solid #cfe7d8; border-radius: 6px; padding: .1rem .45rem; }
.product__unit { display: inline-flex; align-items: center; padding: .12rem .42rem; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); color: var(--ink-soft); font-size: .72rem; font-weight: 700; line-height: 1.25; }
body.hide-wsp .catalog-discount,
body.hide-wsp .product__wsp,
body.hide-wsp .product__discount,
body.hide-wsp .size-row__price,
body.hide-wsp .cart__subline-amount,
body.hide-wsp .cart__totals,
body.hide-wsp .cart__discount-hint,
body.hide-wsp .color-panel__summary { display: none; }
.product__comp { color: var(--ink-soft); font-size: .8rem; margin-top: .35rem; }
.product__desc { color: var(--ink-soft); font-size: .82rem; margin: .25rem 0 0; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product__info-btn { position: absolute; top: 0; right: 0; width: 28px; height: 28px; border: 1px solid var(--line); background: var(--white); border-radius: 50%; color: var(--ink-soft); cursor: pointer; display: grid; place-content: center; }
.product__info-btn:hover { background: var(--bg); color: var(--ink); }
.product__info-btn svg { width: 15px; height: 15px; }
.modal__close { position: absolute; top: .7rem; right: .9rem; width: 30px; height: 30px; border: 0; background: none; font-size: 1.6rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.modal__close:hover { color: var(--ink); }
.product-info__desc { color: var(--ink); font-size: .92rem; line-height: 1.55; }
.product-info__material { margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--line); font-size: .9rem; color: var(--ink-soft); }
.product-info__downloads:not(:empty) { margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--line); }
.product-info__download { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem .9rem; border-radius: 8px; background: var(--ink); color: #fff; font-size: .88rem; font-weight: 600; text-decoration: none; }
.product-info__download:hover { opacity: .88; }
.material-list { margin: .45rem 0 0; padding: 0; list-style: none; }
.material-list li { padding: .3rem 0; border-bottom: 1px solid var(--line); }
.material-list li:last-child { border-bottom: 0; }

.color-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .6rem; margin-top: .75rem; }
.color-grid:has(.color-tile--inline) { grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); }
.color-tile { container-type: inline-size; position: relative; display: flex; flex-direction: column; align-items: center; gap: .4rem; padding: .5rem .4rem; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; font-family: inherit; }
.color-tile:hover { border-color: var(--ink-soft); }
.color-tile.is-selected { border-color: #cfcfcc; background: #f2f2f0; }
.color-tile__img { position: relative; width: 100%; aspect-ratio: 3 / 4; border-radius: 8px; overflow: hidden; background: var(--bg); display: grid; place-content: center; flex: 0 0 auto; }
.color-tile__img--has-media { margin-bottom: .08rem; box-shadow: inset 0 -1px 0 var(--line); }
.color-tile__img > img,
.color-tile__img > video { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.color-tile__ph { width: 100%; height: 100%; display: grid; place-content: center; }
.color-tile__ph img { width: clamp(22px, 38%, 42px); height: auto; place-self: center; opacity: .12; filter: grayscale(1); }
.color-tile__zoom { position: absolute; top: 6px; right: 6px; z-index: 2; width: 28px; height: 28px; border: 1px solid rgba(43, 43, 44, .12); border-radius: 999px; background: rgba(255, 255, 255, .9); color: var(--ink); display: grid; place-content: center; cursor: zoom-in; opacity: 0; transform: translateY(-2px); transition: opacity .15s, transform .15s, background .15s; }
.color-tile__zoom svg { width: 15px; height: 15px; }
.color-tile:hover .color-tile__zoom,
.color-tile__zoom:focus-visible { opacity: 1; transform: translateY(0); }
.color-tile__zoom:hover { background: #fff; }
.color-tile__name { font-size: .8rem; font-weight: 600; line-height: 1.25; text-align: center; color: var(--ink); }
.color-tile__number { margin-top: -.3rem; font-size: .72rem; font-weight: 600; line-height: 1.2; text-align: center; color: var(--ink-soft); }
.color-tile__status { font-size: .72rem; color: var(--ink-soft); line-height: 1.2; text-align: center; }
.color-tile.is-selected .color-tile__status { color: var(--ink); font-weight: 600; }
.color-tile__quick { display: flex; flex-direction: column; gap: .42rem; width: 100%; margin-top: .1rem; }
.color-tile__quick-size { display: flex; flex-direction: column; align-items: flex-start; gap: .18rem; width: 100%; min-width: 0; }
.color-tile__quick-size--out { opacity: .5; }
.color-tile__size { min-width: 3.25rem; padding: .24rem .35rem; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); color: var(--ink); font-size: .68rem; font-weight: 800; line-height: 1; text-align: center; white-space: nowrap; }
.color-tile__stepper { position: relative; display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 7px; overflow: visible; background: #fff; }
.color-tile__qty-btn { width: 24px; flex: 0 0 24px; font-size: .92rem; }
.color-tile__qty { width: 34px; flex: 0 0 34px; min-width: 34px; padding: .28rem 0; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-radius: 0; text-align: center; font: inherit; font-size: .78rem; font-weight: 700; color: var(--ink); background: #fff; -moz-appearance: textfield; appearance: textfield; transition: background .15s, color .15s, box-shadow .15s; }
.color-tile__qty.is-filled { background: #e7f4ec; color: var(--ok); box-shadow: inset 0 0 0 1px #cfe7d8; }
.color-tile__qty::-webkit-outer-spin-button,
.color-tile__qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
body.catalog-compact .catalog__products { display: flex; flex-direction: column; gap: .5rem; }
body.catalog-compact .catalog__products .product { margin-bottom: 0; }
body.catalog-compact .product { display: grid; grid-template-columns: minmax(220px, 285px) minmax(0, 1fr); gap: .65rem; align-items: stretch; padding: .55rem .65rem; border-radius: 8px; }
body.catalog-compact .product__head { align-items: flex-start; gap: .55rem; margin-bottom: 0; padding: 0 .65rem 0 0; border-right: 1px solid var(--line); border-bottom: 0; }
body.catalog-compact .product__info { gap: .12rem; min-width: 0; }
body.catalog-compact .product__name { font-size: .94rem; line-height: 1.15; }
body.catalog-compact .product__art { font-size: .72rem; gap: .3rem; }
body.catalog-compact .product__download,
body.catalog-compact .product__availability-chip { font-size: .66rem; padding: .08rem .32rem; }
body.catalog-compact .product__availability-info { width: 10px; height: 10px; font-size: .46rem; }
body.catalog-compact .product__price { gap: .38rem; margin-top: .12rem; }
body.catalog-compact .product__wsp,
body.catalog-compact .product__rrp { font-size: .78rem; }
body.catalog-compact .product__discount,
body.catalog-compact .product__unit { font-size: .68rem; padding: .06rem .34rem; border-radius: 5px; }
body.catalog-compact .product__desc,
body.catalog-compact .product__more,
body.catalog-compact .product__comp,
body.catalog-compact .product__info-btn { display: none; }
body.catalog-compact .color-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .34rem; margin-top: 0; align-content: start; }
body.catalog-compact .color-grid:has(.color-tile--inline) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.catalog-compact .color-tile { display: grid; grid-template-columns: 34px minmax(0, 1fr); grid-template-areas: "img name" "img number" "img status"; align-items: center; gap: .02rem .38rem; min-height: 44px; padding: .28rem .38rem; border-radius: 7px; }
body.catalog-compact .color-tile--inline { min-width: 0; grid-template-columns: 34px minmax(0, 1fr); grid-template-areas: "img name" "img number" "quick quick"; align-items: start; gap: .12rem .42rem; overflow: hidden; }
body.catalog-compact .color-tile--inline:has(.qty-snap-notice.is-visible) { overflow: visible; z-index: 6; }
body.catalog-compact .color-tile__img { grid-area: img; width: 34px; height: 34px; aspect-ratio: auto; border-radius: 5px; }
body.catalog-compact .color-tile__img--has-media { margin-bottom: 0; }
body.catalog-compact .color-tile__zoom { top: 3px; right: 3px; width: 22px; height: 22px; }
body.catalog-compact .color-tile__zoom svg { width: 12px; height: 12px; }
body.catalog-compact .color-tile__ph img { width: 18px; }
body.catalog-compact .color-tile__name { grid-area: name; font-size: .72rem; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.catalog-compact .color-tile__number { grid-area: number; margin-top: 0; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.catalog-compact .color-tile__status { grid-area: status; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.catalog-compact .color-tile__number,
body.catalog-compact .color-tile__status { font-size: .65rem; }
body.catalog-compact .color-tile__quick { grid-area: quick; width: 100%; margin-top: .14rem; }
body.catalog-compact .color-tile__quick-size { gap: .16rem; }
body.catalog-compact .color-tile__size { min-width: 2.9rem; font-size: .62rem; }
body.catalog-compact .color-tile__qty-btn { width: 24px; flex-basis: 24px; }
body.catalog-compact .color-tile__qty { width: 34px; flex-basis: 34px; min-width: 34px; font-size: .74rem; }
@container (min-width: 260px) {
    body.catalog-compact .color-tile--inline .color-tile__quick {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(122px, max-content));
        justify-content: start;
        gap: .34rem .55rem;
    }
    body.catalog-compact .color-tile--inline .color-tile__quick-size {
        flex-direction: row;
        justify-content: flex-start;
        width: auto;
        gap: .22rem;
    }
    body.catalog-compact .color-tile--inline .color-tile__size {
        min-width: 2.8rem;
    }
}
@media (max-width: 760px) {
    body.catalog-compact .product { grid-template-columns: 1fr; gap: .45rem; }
    body.catalog-compact .product__head { padding: 0 0 .45rem; border-right: 0; border-bottom: 1px solid var(--line); }
    body.catalog-compact .color-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    body.catalog-compact .color-grid:has(.color-tile--inline) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
#color-modal .modal__box { max-width: 560px; }
.color-panel .color__sizes { margin-top: 0; }
.color-panel__footer {
    position: sticky;
    bottom: -1.75rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: .85rem -1.75rem -1.75rem;
    padding: .8rem 1.75rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
}
.color-panel__summary { flex: 1; min-width: 0; color: var(--ink-soft); font-size: .88rem; font-weight: 600; }
.color-panel__summary--discounted { color: var(--ok); }
.color-panel__summary-original { color: var(--ink-soft); font-size: .78rem; font-weight: 400; text-decoration: line-through; }
.color-panel__summary-net { color: var(--ok); }
.color-panel__done { flex: 0 0 auto; padding: .55rem .9rem; }
#product-info-modal .modal__box { max-width: 620px; }

.photo-preview { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.photo-preview.is-open { display: flex; }
.photo-preview__backdrop { position: absolute; inset: 0; border: 0; background: rgba(20, 20, 20, .78); cursor: zoom-out; }
.photo-preview__box { position: relative; z-index: 1; width: min(920px, 100%); max-height: calc(100vh - 2.5rem); display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: .75rem; justify-items: center; }
.photo-preview__media { min-width: 0; min-height: 0; display: grid; place-content: center; }
.photo-preview__media img,
.photo-preview__media video { display: block; max-width: min(920px, 94vw); max-height: calc(100vh - 7rem); border-radius: 10px; background: #fff; box-shadow: 0 24px 70px rgba(0, 0, 0, .32); object-fit: contain; }
.photo-preview__title { margin: 0; color: rgba(255, 255, 255, .84); font-size: .9rem; font-weight: 700; text-align: center; }
.photo-preview__close { position: absolute; top: -.45rem; right: -.45rem; z-index: 2; width: 34px; height: 34px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 999px; background: rgba(255, 255, 255, .92); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.photo-preview__close:hover { background: #fff; }
.product__more { align-self: flex-start; margin-top: .35rem; padding: 0; border: 0; background: none; color: var(--ink); font-weight: 600; font-size: .82rem; text-decoration: underline; cursor: pointer; }
.product__more:hover { color: var(--ink-soft); }

.color { border-top: 1px solid var(--line); padding: .6rem 0; }
.color__label { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; cursor: pointer; list-style: none; padding: .15rem 0; }
.color__label::-webkit-details-marker { display: none; }
.color__label::marker { content: ''; }
.color__count { margin-left: auto; color: var(--ink-soft); font-weight: 400; font-size: .82rem; }
.color__label::after { content: ''; width: 7px; height: 7px; border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft); transform: rotate(-45deg); transition: transform .15s; margin-left: .2rem; flex: 0 0 auto; }
details.color[open] > .color__label::after { transform: rotate(45deg); }
.color__thumb { width: 30px; height: 30px; border-radius: 6px; border: 1px solid var(--line); object-fit: cover; display: inline-block; }
.color__sizes { display: flex; flex-direction: column; gap: 0; margin-top: .5rem; }

.size-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem .75rem;
    min-height: 48px;
    padding: .45rem .6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color .12s ease, background .12s ease;
    margin-bottom: 5px;
}
.size-row.is-selected { border-color: #cfcfcc; background: #f2f2f0; }
.size-row:not(.size-row--out) { cursor: pointer; }
.size-row:not(.size-row--out):hover { border-color: #b7b7b7; background: #fafafa; }
.size-row.is-selected:hover { border-color: #cfcfcc; background: #f2f2f0; }
.size-row__pick { display: flex; align-items: center; gap: .6rem; flex: 1; cursor: pointer; }
.size-row__name { font-weight: 600; min-width: 60px; }
.size-row__pricecol { display: flex; flex-direction: column; }
.size-row__price { color: var(--ink-soft); font-size: .9rem; white-space: nowrap; }
.size-row__price--discounted { display: flex; align-items: baseline; gap: .35rem; flex-wrap: wrap; color: var(--ok); font-weight: 700; }
.size-row__price-original { color: var(--ink-soft); font-size: .78rem; font-weight: 400; text-decoration: line-through; }
.size-row__price-net { color: var(--ok); }
.size-row__avail { color: var(--ink-soft); font-size: .78rem; white-space: nowrap; }
.size-row__stock { color: var(--ink-soft); font-size: .78rem; white-space: nowrap; }
.size-row__stock--ok,
.size-row__stock--low,
.size-row__stock--backorder,
.size-row__stock--out { display: inline-flex; align-items: center; gap: .3rem; }
.stock-dot { display: inline-block; width: .55rem; height: .55rem; border-radius: 50%; background: #27ae60; flex: 0 0 auto; }
.stock-dot--red { background: #c0392b; }
.stock-dot--orange { background: #e67e22; }
.size-row__stock--out { color: #c0392b; font-weight: 600; }
.size-row--out { opacity: .55; }
.size-row__backorder-note { margin: .4rem 0 0; font-size: .78rem; color: #e67e22; }
.size-row__backorder-note[hidden] { display: none; }
.size-row .qty-group { display: none; margin-left: auto; }
.size-row.is-selected .qty-group { display: inline-flex; }
.qty-group { position: relative; display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 8px; overflow: visible; flex: 0 0 auto; }
.qty-btn { width: 30px; border: none; background: var(--bg); color: var(--ink); font-size: 1rem; line-height: 1; cursor: pointer; display: grid; place-content: center; }
.qty-btn:hover { background: #ececea; }
.color-tile .color-tile__stepper { display: grid; grid-template-columns: 24px 36px 24px; width: 84px; height: 30px; flex: 0 0 auto; align-items: stretch; }
.qty-snap-notice { position: absolute; left: 50%; bottom: calc(100% + 6px); z-index: 4; max-width: 190px; padding: .25rem .42rem; border: 1px solid #d8e8df; border-radius: 6px; background: #f2fbf6; color: var(--ok); font-size: .68rem; font-weight: 700; line-height: 1.15; text-align: center; white-space: nowrap; box-shadow: 0 8px 20px rgba(43, 43, 44, .08); opacity: 0; pointer-events: none; transform: translate(-50%, 3px); transition: opacity .12s ease, transform .12s ease; }
.qty-snap-notice.is-visible { opacity: 1; transform: translate(-50%, 0); }
.color-tile .color-tile__qty-btn { width: 24px; min-width: 24px; height: 30px; padding: 0; font-size: .92rem; }
.color-tile .color-tile__qty { display: block; width: 36px; min-width: 36px; height: 30px; padding: 0; text-align: center; font-size: .78rem; line-height: 30px; }
.qty-group .size-qty { width: 46px; text-align: center; padding: .35rem 0; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-radius: 0; background: #e7f4ec; color: var(--ok); font-weight: 700; box-shadow: inset 0 0 0 1px #cfe7d8; -moz-appearance: textfield; appearance: textfield; }
.qty-group .size-qty::-webkit-outer-spin-button, .qty-group .size-qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.size-comment { display: none; flex: 0 0 100%; width: 100%; height: 50px; resize: vertical; padding: .4rem .55rem; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: .88rem; }
.size-row.is-selected .size-comment { display: block; }

.cart {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    border-left: 1px solid var(--line);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.cart__title { margin: 0 0 .75rem; font-size: 1.05rem; }
.cart__lines { list-style: none; margin: 0 0 .75rem; padding: 0; flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.cart__empty { color: var(--ink-soft); font-size: .9rem; }
.cart__line { display: flex; align-items: center; gap: .55rem; font-size: .88rem; padding: .4rem 0; border-bottom: 1px dashed var(--line); }
.cart__line-thumb { width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--line); object-fit: cover; flex: 0 0 auto; }
.cart__line-name { flex: 1; min-width: 0; }
.cart__line-amount { flex: 0 0 auto; white-space: nowrap; font-weight: 600; }
.cart__line em { color: var(--ink-soft); font-style: normal; }
.cart__group { padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.cart__group-head { display: flex; align-items: center; gap: .55rem; font-size: .88rem; }
.cart__group-title { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.3; }
.cart__group-product { font-weight: 600; }
.cart__group-color { color: var(--ink-soft); font-size: .82rem; }
.cart__group-remove { flex: 0 0 auto; display: grid; place-content: center; width: 28px; height: 28px; border: 0; background: none; color: var(--ink-soft); cursor: pointer; border-radius: 7px; }
.cart__group-remove:hover { background: #fbeae9; color: var(--err); }
.cart__group-remove svg { width: 16px; height: 16px; }
.cart__group-lines { margin: .35rem 0 0 calc(34px + .55rem); display: flex; flex-direction: column; gap: .2rem; }
.cart__subline { display: flex; align-items: baseline; gap: .4rem; font-size: .84rem; color: var(--ink-soft); }
.cart__subline::before { content: "•"; flex: 0 0 auto; color: var(--ink-soft); }
.cart__subline-qty { flex: 0 0 26px; text-align: right; font-variant-numeric: tabular-nums; }
.cart__subline-size { flex: 0 0 50px; }
.cart__subline-amount { margin-left: auto; white-space: nowrap; font-variant-numeric: tabular-nums; }
.cart__subline-amount--discounted { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.15; color: var(--ok); }
.cart__subline-original { color: var(--ink-soft); font-size: .74rem; text-decoration: line-through; }
.cart__totals { border-top: 1px solid var(--line); padding-top: .6rem; }
.cart__row { display: flex; justify-content: space-between; font-size: .9rem; padding: .15rem 0; }
.cart__row--total { font-weight: 700; font-size: 1rem; margin-top: .25rem; }
.cart__row--discount { color: var(--ok); }
.cart__discount-hint { margin: .55rem 0 0; padding: .45rem .55rem; border-radius: 8px; background: #eef8f2; color: var(--ok); font-size: .82rem; font-weight: 600; line-height: 1.2; }
.cart__discount-hint strong { font-weight: 800; }
.cart__discount-hint[hidden] { display: none; }
.cart__hint-item { display: flex; align-items: center; gap: .38rem; min-width: 0; white-space: nowrap; }
.cart__hint-item + .cart__hint-item { margin-top: .25rem; }
.cart__hint-icon { display: inline-grid; place-content: center; width: 18px; height: 18px; border-radius: 50%; background: #d7efe1; color: var(--ok); font-size: .7rem; font-weight: 800; flex: 0 0 auto; }
.cart__comments { width: 100%; margin: .75rem 0; min-height: 100px; padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 8px; resize: vertical; font-family: inherit; font-size: .9rem; line-height: 1.4; }
.cart__submit { width: 100%; }

.page { max-width: 900px; margin: 1.5rem auto; padding: 0 1.5rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: .5rem .4rem; border-bottom: 1px solid var(--line); font-size: .9rem; }
.table td.num, .table th.num { text-align: right; }
.badge { display: inline-block; padding: .15rem .5rem; border-radius: 999px; font-size: .78rem; font-weight: 600; }
.badge--new { background: #fdf3e1; color: var(--warn); }
.badge--paid { background: #e7f4ec; color: var(--ok); }
.badge--shipped { background: #e7eefb; color: #1a4fb4; }
.badge--cancelled { background: #fbeae9; color: var(--err); }
.totals-box { margin-left: auto; max-width: 280px; margin-top: 1rem; }
.totals-box .cart__row--total { border-top: 1px solid var(--line); padding-top: .4rem; }
.pay-note { background: var(--bg); border-radius: 10px; padding: 1rem; margin-top: 1rem; font-size: .9rem; }

@media (max-width: 860px) {
    .showroom-hero {
        min-height: 88vh;
        padding: .8rem .85rem 1rem;
    }
    .showroom-nav {
        align-items: flex-start;
    }
    .showroom-nav__links {
        gap: .25rem;
    }
    .showroom-nav__links a:not(.showroom-nav__login) {
        display: none;
    }
    .showroom-nav__links .showroom-nav__login {
        display: inline-flex;
    }
    .showroom-hero::before {
        background: rgba(246, 246, 244, .78);
    }
    .showroom-hero__photo--1 { width: 48vw; height: 38vh; right: -4vw; top: 15vh; }
    .showroom-hero__photo--2 { width: 34vw; height: 25vh; right: 40vw; top: 10vh; }
    .showroom-hero__photo--3 { width: 34vw; height: 24vh; right: 5vw; bottom: 12vh; }
    .showroom-hero__photo--4,
    .showroom-hero__photo--5,
    .showroom-hero__photo--6 { display: none; }
    .showroom-hero__content {
        margin: auto 0;
        padding: 4rem 0 3.5rem;
    }
    .showroom-hero h1 {
        max-width: 94vw;
        font-size: clamp(2.35rem, 12vw, 4.1rem);
    }
    .showroom-hero__text {
        max-width: 92vw;
    }
    .showroom-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .showroom-section {
        width: calc(100% - 1.5rem);
        padding-top: 3rem;
    }
    .showroom-section__head {
        grid-template-columns: 1fr;
        gap: .45rem;
    }
    .showroom-usps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .showroom-usps article:nth-child(2n) {
        border-right: 0;
    }
    .showroom-usps article:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }
    .showroom-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .showroom-collections {
        grid-template-columns: 1fr;
    }
    .showroom-cta {
        margin-top: 3rem;
        padding-bottom: 3.4rem;
    }
    .catalog { grid-template-columns: 1fr; padding-bottom: 165px; }
    .color-tile__zoom { opacity: 1; transform: none; }
    .photo-preview { padding: .8rem; }
    .photo-preview__box { max-height: calc(100vh - 1.6rem); }
    .photo-preview__media img,
    .photo-preview__media video { max-width: 94vw; max-height: calc(100vh - 6rem); border-radius: 8px; }
    .photo-preview__close { top: .25rem; right: .25rem; }
    .catalog__chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .15rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .catalog__chips::-webkit-scrollbar { display: none; }
    .catalog-chip { flex: 0 0 auto; }
    input:not([type="checkbox"]):not([type="radio"]),
    select,
    textarea,
    .catalog__search,
    .size-qty,
    .color-tile__qty {
        font-size: 16px;
    }
    .cart {
        position: fixed;
        top: auto;
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
        z-index: 30;
        height: auto;
        max-height: 44vh;
        overflow-y: auto;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: 0 14px 38px rgba(0, 0, 0, .16);
        padding: .7rem;
    }
    .cart__title,
    .cart__lines,
    .cart__comments { display: none; }
    .cart__empty { font-size: .82rem; }
    .cart__group { padding: .35rem 0; }
    .cart__group-head { gap: .4rem; font-size: .78rem; }
    .cart__line-thumb { width: 28px; height: 28px; border-radius: 5px; }
    .cart__group-color,
    .cart__subline { font-size: .74rem; }
    .cart__group-lines { margin: .25rem 0 0 calc(28px + .4rem); gap: .12rem; }
    .cart__totals { border-top: 0; padding-top: 0; }
    .cart__row { display: none; font-size: .82rem; padding: .08rem 0; }
    .cart__row--discount,
    .cart__row--total { display: flex; }
    .cart__row--total { font-size: .98rem; margin-top: .12rem; }
    .cart__discount-hint { margin-top: .4rem; padding: .38rem .45rem; font-size: .76rem; }
    .cart__hint-item + .cart__hint-item { margin-top: .18rem; }
    .cart__submit { padding: .65rem .8rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid > div.address-row { grid-template-columns: 1fr; }
    .app { grid-template-columns: 1fr; }
    .sidebar {
        position: sticky;
        top: 0;
        z-index: 40;
        height: auto;
        flex-direction: row;
        align-items: center;
        gap: .5rem;
        padding: .55rem .65rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        overflow: hidden;
    }
    .sidebar__brand { flex: 0 0 auto; padding: 0 .25rem 0 0; letter-spacing: 0; }
    .sidebar__brand img { height: 22px; }
    .sidebar__brand span { font-size: .86rem; white-space: nowrap; }
    .sidebar__nav {
        flex: 1 1 auto;
        min-width: 0;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: .35rem;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar__nav::-webkit-scrollbar { display: none; }
    .sidebar__nav a { flex: 0 0 auto; gap: .35rem; padding: .42rem .55rem; border-radius: 8px; font-size: .78rem; white-space: nowrap; }
    .sidebar__nav svg { width: 15px; height: 15px; }
    .sidebar__spacer { display: none; }
    .user-card { flex: 0 0 auto; border-top: none; padding-top: 0; margin: 0; gap: .15rem; }
    .user-card__main { padding: .15rem; }
    .user-card__avatar { width: 30px; height: 30px; font-size: .68rem; }
    .user-card__text { display: none; }
    .user-card__logout { width: 30px; height: 30px; border-radius: 7px; }
    .user-card__logout svg { width: 16px; height: 16px; }
    .page { margin: 1.25rem auto; }
}

@media (max-width: 520px) {
    .showroom-brand span {
        font-size: .9rem;
    }
    .showroom-nav__links a {
        padding: .42rem .55rem;
    }
    .showroom-hero {
        min-height: 84vh;
    }
    .showroom-hero__photo--1 { width: 58vw; height: 31vh; right: -12vw; top: 15vh; }
    .showroom-hero__photo--2 { width: 42vw; height: 22vh; right: 45vw; top: 12vh; }
    .showroom-hero__photo--3 { width: 44vw; height: 22vh; right: 4vw; bottom: 8vh; }
    .showroom-actions,
    .showroom-actions--center {
        align-items: stretch;
        flex-direction: column;
    }
    .showroom-btn {
        width: 100%;
    }
    .showroom-strip {
        grid-template-columns: 1fr;
    }
    .showroom-strip span {
        min-height: 40px;
    }
    .showroom-usps,
    .showroom-products {
        grid-template-columns: 1fr;
    }
    .showroom-usps article {
        min-height: 0;
        border-right: 0;
        border-top: 1px solid var(--line);
    }
    .showroom-usps article:first-child {
        border-top: 0;
    }
    .showroom-collection {
        grid-template-columns: 86px minmax(0, 1fr);
    }
    .catalog { padding-bottom: 145px; }
    .cart { top: auto; left: .5rem; right: .5rem; bottom: .5rem; max-height: 40vh; padding: .6rem; }
    .cart__group-lines { display: none; }
    .cart__discount-hint { font-size: .72rem; }
    .sidebar { gap: .35rem; padding: .48rem .5rem; }
    .sidebar__brand span { display: none; }
    .sidebar__nav a { padding: .42rem; }
    .sidebar__nav a svg { margin: 0; }
}

/* Refined public B2B showroom */
.showroom {
    background: #fbfbfa;
}
.showroom-hero {
    width: min(1240px, calc(100% - 2rem));
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(320px, .64fr);
    gap: 2rem 3.5rem;
    margin: 0 auto;
    padding: 1rem 0 3.5rem;
    overflow: visible;
    background: transparent;
}
.showroom-hero::before {
    display: none;
}
.showroom-nav,
.showroom-stories-shell,
.showroom-samplebox-row,
.showroom-strip {
    grid-column: 1 / -1;
}
.showroom-nav {
    width: 100%;
    padding: .1rem 0 .75rem;
    border-bottom: 1px solid #ececea;
}
.showroom-brand {
    font-weight: 750;
    color: var(--ink);
}
.showroom-brand .brand-word,
.showroom-brand .brand-a,
.showroom-brand > span > span:last-child {
    color: var(--ink);
}
.showroom-nav__links a {
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 650;
}
.showroom-nav__sample {
    font-size: .76rem;
}
.showroom-nav__links .showroom-nav__login {
    padding-inline: .95rem;
}
.showroom-stories-shell {
    position: relative;
    min-width: 0;
}
.showroom-stories {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
    gap: .78rem;
    overflow-x: auto;
    overflow-y: visible;
    max-height: none;
    padding: .85rem 0 .45rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 58px), transparent 100%);
}
.showroom-stories::-webkit-scrollbar {
    display: none;
}
.showroom-stories__cue {
    position: absolute;
    right: .1rem;
    top: .85rem;
    z-index: 2;
    display: grid;
    place-content: center;
    width: 28px;
    height: 28px;
    transform: translateY(18px);
    border: 1px solid #e2e2df;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #616164;
    font-size: .95rem;
    font-weight: 760;
    pointer-events: none;
}
.showroom-story {
    flex: 0 0 auto;
    width: 92px;
    color: var(--ink);
    text-decoration: none;
    text-align: center;
}
.showroom-story__image {
    display: block;
    width: 64px;
    height: 64px;
    margin: 0 auto .38rem;
    padding: 2px;
    border: 1px solid #dededb;
    border-radius: 50%;
    background: #fff;
}
.showroom-story__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 50%;
}
.showroom-story__image--fallback img {
    object-fit: contain;
    padding: 18px;
    opacity: .16;
    filter: grayscale(1);
}
.showroom-story__label {
    display: block;
    color: #616164;
    font-size: .64rem;
    font-weight: 650;
    line-height: 1.12;
    overflow-wrap: anywhere;
}
.showroom-hero__content {
    align-self: center;
    width: min(590px, 100%);
    margin: 0;
    padding: 3.5rem 0 3rem;
}
.showroom-eyebrow {
    margin-bottom: .7rem;
    color: #77776f;
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .1em;
}
.showroom-hero h1 {
    max-width: 560px;
    font-size: clamp(2.15rem, 4.2vw, 4.35rem);
    font-weight: 760;
    line-height: 1.01;
}
.showroom-hero__text {
    max-width: 520px;
    color: #6f6f70;
    font-size: 1rem;
    line-height: 1.6;
}
.showroom-actions {
    gap: .55rem;
    margin-top: 1.15rem;
}
.showroom-btn {
    min-height: 39px;
    padding: .62rem .88rem;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 750;
}
.showroom-hero__media {
    position: relative;
    inset: auto;
    z-index: 1;
    align-self: stretch;
    min-height: 520px;
    overflow: hidden;
    border-radius: 0;
    background: #f1f1ef;
}
.showroom-hero__photo,
.showroom-hero__photo--1 {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 900ms ease, transform 4200ms ease;
}
.showroom-hero__photo.is-active,
.showroom-hero__photo--fallback {
    opacity: 1;
    transform: scale(1);
}
.showroom-hero__photo img {
    object-fit: cover;
    object-position: center bottom;
}
.showroom-strip {
    display: flex;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    margin: .15rem 0 .85rem;
    padding-bottom: .15rem;
    border: 0;
    border-radius: 0;
    overflow-x: auto;
    background: transparent;
    scrollbar-width: none;
}
.showroom-strip::-webkit-scrollbar {
    display: none;
}
.showroom-strip span {
    min-height: 0;
    padding: .5rem .78rem;
    border: 1px solid #e2e2df;
    border-radius: 999px;
    background: #fff;
    color: #5f5f61;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}
.showroom-section {
    width: min(1180px, calc(100% - 2rem));
    padding-top: 3.2rem;
}
.showroom-section--tight {
    padding-top: 2.4rem;
}
.showroom-section--collections {
    padding-top: 4.9rem;
}
.showroom-section__head {
    grid-template-columns: 220px minmax(0, 1fr);
    margin-bottom: 1rem;
}
.showroom-section__head--advisor {
    align-items: center;
    padding: .95rem 1rem;
    border: 1px solid #cfe5d7;
    border-radius: 8px;
    background: #edf8f1;
}
.showroom-section__head--advisor .showroom-eyebrow {
    color: #19744a;
}
.showroom-section__head h2,
.showroom-cta h2 {
    max-width: 670px;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    font-weight: 760;
    line-height: 1.08;
}
.showroom-products-title span {
    display: block;
}
.showroom-section__head--advisor h2 {
    max-width: 780px;
}
.showroom-usps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.15rem;
    overflow-x: auto;
    padding: .2rem 0 .55rem;
    border: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.showroom-usps::-webkit-scrollbar {
    display: none;
}
.showroom-usps article {
    position: relative;
    flex: 0 0 158px;
    box-sizing: border-box;
    height: 158px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.18rem;
    border: 1px solid #e5e5e2;
    border-right: 1px solid #e5e5e2;
    border-top: 1px solid #e5e5e2;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, .98), rgba(251, 251, 250, .94) 58%, #f5f5f3 100%);
    box-shadow: inset 0 0 0 8px #fbfbfa, 0 10px 30px rgba(43, 43, 44, .035);
    text-align: center;
}
.showroom-usps article::before {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid #ececea;
    border-radius: 50%;
    pointer-events: none;
}
.showroom-usps h3 {
    max-width: 104px;
    margin: 0 0 .32rem;
    color: #2f2f31;
    font-size: .8rem;
    font-weight: 760;
    line-height: 1.08;
}
.showroom-usps p {
    max-width: 112px;
    margin: 0;
    color: #717173;
    font-size: .62rem;
    line-height: 1.24;
}
.showroom-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .55rem;
}
.showroom-product,
.showroom-collection {
    border-color: #ececea;
    border-radius: 6px;
    background: #fff;
}
.showroom-product.is-hidden {
    display: none;
}
.showroom-product__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 6;
    overflow: hidden;
    background: #f4f4f2;
}
.showroom-product__badge {
    position: absolute;
    top: .5rem;
    left: .5rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: .22rem .45rem;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
    color: #4f4f51;
    font-size: .62rem;
    font-weight: 750;
    line-height: 1;
    backdrop-filter: blur(8px);
}
.showroom-product__image img {
    object-fit: cover;
    object-position: center bottom;
}
.showroom-product__meta {
    padding: .68rem .72rem .72rem;
}
.showroom-product__colors {
    display: flex;
    flex-wrap: wrap;
    gap: .24rem;
    margin-top: .12rem;
}
.showroom-product__color {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    max-width: 100%;
    min-height: 20px;
    padding: .18rem .38rem .18rem .26rem;
    border: 1px solid #e6e6e3;
    border-radius: 999px;
    background: #fff;
    color: #666668;
    font-size: .64rem;
    font-weight: 650;
    line-height: 1;
}
.showroom-product__color i {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border: 1px solid rgba(43, 43, 44, .16);
    border-radius: 50%;
    background: var(--swatch-color);
}
.showroom-product__color span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.showroom-product__color--more {
    padding-inline: .38rem;
}
.showroom-starter {
    padding-top: 3.4rem;
}
.showroom-starter__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 1.15rem;
    border-top: 1px solid #ececea;
    border-bottom: 1px solid #ececea;
    background: #ececea;
}
.showroom-starter__grid article {
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
    padding: 1rem;
    background: #fbfbfa;
}
.showroom-starter__grid strong {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--ink);
    font-size: .98rem;
    line-height: 1.15;
}
.showroom-starter__grid strong span {
    flex: 0 0 auto;
    display: inline-grid;
    place-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #dededb;
    border-radius: 50%;
    background: #fff;
    color: #5f5f61;
    font-size: .72rem;
    font-weight: 800;
}
.showroom-starter__grid span {
    color: #717173;
    font-size: .82rem;
    line-height: 1.42;
}
.showroom-advisor {
    padding-top: 3.1rem;
}
.showroom-advisor__shell {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    border-top: 0;
    border-bottom: 1px solid #ececea;
    padding: 0 0 1rem;
}
.showroom-advisor__types {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.showroom-advisor__types button {
    min-height: 40px;
    padding: .62rem .8rem;
    border: 1px solid #e2e2df;
    border-radius: 999px;
    background: #fff;
    color: #5f5f61;
    font: inherit;
    font-size: .82rem;
    font-weight: 740;
    text-align: left;
    cursor: pointer;
}
.showroom-advisor__types button:hover,
.showroom-advisor__types button.is-active {
    border-color: #cfe5d7;
    background: #edf8f1;
    color: #19744a;
}
.showroom-advisor__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(210px, .54fr);
    gap: 1rem;
    align-items: stretch;
    min-height: 220px;
    padding: 1.15rem;
    border: 1px solid #ececea;
    border-radius: 8px;
    background: #fff;
}
.showroom-advisor__panel h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    line-height: 1.05;
}
.showroom-advisor__panel p:not(.showroom-eyebrow) {
    max-width: 560px;
    margin: .72rem 0 0;
    color: #6f6f70;
    font-size: .95rem;
    line-height: 1.52;
}
.showroom-advisor__mix {
    display: grid;
    gap: .42rem;
    align-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.showroom-advisor__mix li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    min-height: 38px;
    padding: .48rem .62rem;
    border: 1px solid #ececea;
    border-radius: 999px;
    background: #fbfbfa;
}
.showroom-advisor__mix span {
    color: #5f5f61;
    font-size: .78rem;
    font-weight: 700;
}
.showroom-advisor__mix strong {
    color: #19744a;
    font-size: .86rem;
}
.showroom-advisor__note {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .85rem;
    border-top: 1px solid #ececea;
}
.showroom-advisor__note span {
    color: #717173;
    font-size: .82rem;
}
.showroom-advisor__actions {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    flex: 0 0 auto;
}
.showroom-advisor__actions button,
.showroom-advisor__note a {
    flex: 0 0 auto;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
}
.showroom-advisor__actions button {
    appearance: none;
    border: 1px solid #cfe4d7;
    border-radius: 999px;
    background: #eef8f2;
    color: #19744a;
    cursor: pointer;
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    padding: .46rem .72rem;
}
.showroom-advisor__actions button:hover {
    border-color: #19744a;
    background: #19744a;
    color: #fff;
}
.showroom-advisor__note a {
    color: #19744a;
}
.showroom-product strong,
.showroom-collection strong {
    font-size: .9rem;
    font-weight: 760;
}
.showroom-product__meta span,
.showroom-collection__body span,
.showroom-collection__body em {
    font-size: .76rem;
}
.showroom-collections {
    display: flex;
    flex-wrap: nowrap;
    gap: .75rem;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: .2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.showroom-collections::-webkit-scrollbar {
    display: none;
}
.showroom-collection {
    grid-template-columns: 92px minmax(0, 1fr);
    flex: 0 0 min(360px, calc((100% - 1.5rem) / 3));
}
.showroom-collection__image {
    min-height: 112px;
    overflow: hidden;
}
.showroom-collection__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}
.showroom-collection__body {
    padding: .75rem;
}
.showroom-cta {
    margin-top: 3.4rem;
    padding: 2.4rem 0 3.6rem;
    border-color: #ececea;
}
.showroom-preview {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.showroom-preview.is-open {
    display: flex;
}
.showroom-preview__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(31, 31, 33, .32);
}
.showroom-preview__box {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, .78fr);
    overflow: hidden;
    border: 1px solid #e2e2df;
    border-radius: 8px;
    background: #fbfbfa;
    box-shadow: 0 24px 80px rgba(31, 31, 33, .16);
}
.showroom-preview__close {
    position: absolute;
    top: .65rem;
    right: .65rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid #e2e2df;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: #4f4f51;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
}
.showroom-preview__image {
    min-height: 430px;
    display: block;
    overflow: hidden;
    background: #f1f1ef;
}
.showroom-preview__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center bottom;
}
.showroom-preview__content {
    align-self: center;
    padding: 2rem;
}
.showroom-preview__content h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.05;
}
.showroom-preview__content p:not(.showroom-eyebrow) {
    margin: .85rem 0 0;
    color: #6f6f70;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .showroom-hero {
        width: calc(100% - 1.5rem);
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-bottom: 2.5rem;
    }
    .showroom-nav {
        align-items: center;
    }
    .showroom-hero__content {
        padding: 1rem 0 .4rem;
    }
    .showroom-hero__media {
        min-height: 360px;
        order: 4;
    }
    .showroom-collection {
        flex-basis: min(330px, 82vw);
    }
    .showroom-strip {
        justify-content: flex-start;
    }
    .showroom-usps {
        justify-content: flex-start;
    }
    .showroom-section__head {
        grid-template-columns: 1fr;
    }
    .showroom-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .showroom-starter__grid {
        grid-template-columns: 1fr;
    }
    .showroom-starter__grid article {
        min-height: 0;
    }
    .showroom-advisor__shell,
    .showroom-advisor__panel {
        grid-template-columns: 1fr;
    }
    .showroom-advisor__types {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: .15rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
    }
    .showroom-advisor__types::-webkit-scrollbar {
        display: none;
    }
    .showroom-advisor__types button {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .showroom-preview__box {
        max-height: calc(100vh - 2rem);
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
    .showroom-preview__image {
        min-height: 320px;
    }
    .showroom-usps article,
    .showroom-usps article:nth-child(2n),
    .showroom-usps article:nth-child(n + 3) {
        border: 1px solid #ececea;
    }
}

@media (max-width: 520px) {
    .showroom-hero {
        width: calc(100% - 1rem);
        padding-top: .65rem;
    }
    .showroom-brand img {
        height: 24px;
    }
    .showroom-brand span {
        font-size: .84rem;
    }
    .showroom-nav__links .showroom-nav__login {
        display: inline-flex;
    }
    .showroom-stories {
        gap: .62rem;
        padding-top: .65rem;
        mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 44px), transparent 100%);
    }
    .showroom-stories__cue {
        top: .65rem;
        width: 26px;
        height: 26px;
        transform: translateY(16px);
    }
    .showroom-story {
        width: 78px;
    }
    .showroom-story__image {
        width: 58px;
        height: 58px;
    }
    .showroom-hero h1 {
        font-size: clamp(2rem, 11vw, 3.1rem);
    }
    .showroom-hero__text {
        font-size: .94rem;
    }
    .showroom-hero__media {
        min-height: 315px;
    }
    .showroom-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .5rem;
    }
    .showroom-product__meta {
        padding: .56rem .58rem .62rem;
    }
    .showroom-product strong {
        font-size: .78rem;
    }
    .showroom-product__meta span {
        font-size: .68rem;
        line-height: 1.25;
    }
    .showroom-product__badge {
        top: .38rem;
        left: .38rem;
        min-height: 19px;
        padding: .18rem .36rem;
        font-size: .56rem;
    }
    .showroom-product__colors {
        gap: .18rem;
    }
    .showroom-product__color {
        max-width: 100%;
        min-height: 18px;
        padding: .16rem .3rem .16rem .22rem;
        font-size: .58rem;
    }
    .showroom-product__color i {
        width: 8px;
        height: 8px;
    }
    .showroom-preview {
        padding: .65rem;
    }
    .showroom-preview__image {
        min-height: 260px;
    }
    .showroom-preview__content {
        padding: 1.15rem;
    }
    .showroom-advisor__panel {
        padding: .9rem;
    }
    .showroom-advisor__note {
        align-items: flex-start;
        flex-direction: column;
    }
    .showroom-usps article {
        box-sizing: border-box;
        flex-basis: 146px;
        width: 146px;
        height: 146px;
        aspect-ratio: 1 / 1;
        min-width: 146px;
        padding: 1rem;
        border: 1px solid #e5e5e2;
    }
    .showroom-usps article::before {
        inset: 9px;
    }
    .showroom-usps h3 {
        max-width: 96px;
        font-size: .74rem;
    }
    .showroom-usps p {
        max-width: 102px;
        font-size: .58rem;
    }
}
