.builder-studio-preview {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: #18231e;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
}
.builder-seo-intro {
  margin: 0 0 18px;
  max-width: 52rem;
}
.builder-seo-intro h1 {
  margin: 0;
  color: #151816;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.builder-seo-lead {
  margin: 10px 0 0;
  color: #5c645f;
  font-size: 14px;
  line-height: 1.55;
}

.builder-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .48fr) 1fr;
  min-height: 220px;
  margin: 0 0 18px;
  border: 1px solid #e2e5e1;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}
.builder-hero.is-text { grid-template-columns: 1fr; }
.builder-hero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px 20px;
  overflow: hidden;
  background:
    radial-gradient(130% 150% at -10% -10%, rgba(79, 99, 86, .10), transparent 55%),
    #fff;
}
.builder-hero__index {
  position: absolute;
  top: -6px;
  left: 14px;
  z-index: 0;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: #eef0ee;
  user-select: none;
  pointer-events: none;
}
.builder-hero__content { position: relative; z-index: 1; }
.builder-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #8a918b;
}
.builder-hero__crumb a { color: #8a918b; text-decoration: none; }
.builder-hero__crumb a:hover { color: #151816; }
.builder-hero__crumb .sep { color: #cfd4d0; }
.builder-hero__crumb .current { color: #29493a; font-weight: 700; }
.builder-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #29493a;
}
.builder-hero__eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #29493a;
}
.builder-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.025em;
  color: #151816;
}
.builder-hero .builder-seo-lead {
  margin: 0;
  max-width: 42rem;
  color: #5c645f;
  font-size: 13px;
  line-height: 1.55;
}
.builder-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  list-style: none;
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #e2e5e1;
}
.builder-hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.builder-hero__stats strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #151816;
}
.builder-hero__stats span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #8a918b;
}
.builder-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.builder-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}
.builder-hero:hover .builder-hero__media img { transform: scale(1.07); }
.builder-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 18%);
}
.builder-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10,14,12,.28), transparent 46%);
  pointer-events: none;
}
.builder-hero__mark {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.builder-hero__chip {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 7px 12px;
  background: rgba(23, 29, 25, .72);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.builder-hero__tag {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(23, 29, 25, .55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.builder-hero__tag svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 1000px) {
  .builder-hero { grid-template-columns: 1fr; min-height: 0; }
  .builder-hero__media { min-height: 0; height: 168px; order: -1; }
  .builder-hero__body { padding: 20px 20px 18px; }
  .builder-hero__index { font-size: 72px; }
}
@media (max-width: 560px) {
  .builder-hero__body { padding: 18px 16px 16px; }
  .builder-hero h1 { font-size: 22px; }
  .builder-hero .builder-seo-lead { font-size: 12.5px; }
  .builder-hero__stats { gap: 8px; }
  .builder-hero__stats strong { font-size: 14px; }
  .builder-hero__media { height: 140px; }
  .builder-hero__mark { top: 12px; left: 12px; font-size: 11px; }
  .builder-hero__chip { top: 10px; right: 10px; padding: 5px 9px; font-size: 9.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .builder-hero__media img { transition: none; }
}
.builder-seo-howto,
.builder-seo-faq,
.builder-seo-body {
  margin: 48px 0 0;
  padding-top: 28px;
  border-top: 1px solid #e2e5e1;
  color: #151816;
}
.builder-seo-howto h2,
.builder-seo-faq h2 {
  margin: 0 0 24px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.25;
}
.builder-seo-howto ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line, #e2e5e1);
  border-radius: var(--radius, 6px);
  background: #fafafa;
  overflow: hidden;
}
.builder-seo-howto li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 22px 18px;
  border: none;
  border-right: 1px solid var(--line, #e2e5e1);
  background: #fff;
  transition: background .3s ease, box-shadow .3s ease;
}
.builder-seo-howto li:last-child { border-right: 0; }
.builder-seo-howto li:first-child,
.builder-seo-howto li:hover {
  background: #f7f9f7;
  box-shadow: inset 0 -2px 0 var(--cta, #29493a);
}
.builder-howto-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid var(--line, #e2e5e1);
  border-radius: var(--radius, 6px);
  background: var(--gray-50, #f4f5f2);
  display: grid;
  place-items: center;
  color: var(--cta, #29493a);
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease;
}
.builder-howto-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.builder-seo-howto li:first-child .builder-howto-icon,
.builder-seo-howto li:hover .builder-howto-icon {
  background: var(--cta, #29493a);
  border-color: var(--cta, #29493a);
  color: #fff;
  transform: translateY(-2px);
}
.builder-howto-text { min-width: 0; padding-top: 1px; }
.builder-howto-text b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--anthracite, #151816);
  letter-spacing: .01em;
}
.builder-howto-text span {
  display: block;
  color: var(--muted, #6a726c);
  font-size: 12px;
  line-height: 1.45;
}
.builder-seo-faq {
  max-width: 42rem;
}
.builder-seo-faq details {
  border-bottom: 1px solid #eceeea;
}
.builder-seo-faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 15px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.builder-seo-faq summary::-webkit-details-marker { display: none; }
.builder-seo-faq summary::after {
  content: "+";
  flex: none;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #8a918b;
}
.builder-seo-faq details[open] summary::after { content: "\2013"; }
.builder-seo-faq details p {
  margin: 0 0 16px;
  max-width: 36rem;
  color: #5c645f;
  font-size: 14px;
  line-height: 1.65;
}
.builder-seo-offer {
  max-width: 42rem;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border: none;
  border-top: 1px solid #e2e5e1;
  background: transparent;
}
.builder-seo-usp { margin: 0 0 10px; font-size: 15px; line-height: 1.5; }
.builder-seo-offer ul { margin: 0; padding: 0 0 0 18px; color: #5c645f; font-size: 14px; line-height: 1.55; }
.builder-seo-ctas { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 0; }
.builder-seo-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: #151816;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.builder-seo-cta.ghost { background: #fff; color: #151816; border: 1px solid #151816; }
.builder-seo-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 40px;
}
.builder-seo-notes article,
.builder-seo-notes > div {
  min-width: 0;
}
.builder-seo-body h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -.02em;
}
.builder-seo-body p {
  margin: 0;
  color: #5c645f;
  font-size: 14px;
  line-height: 1.65;
}
.builder-seo-body a { color: #2f6f5e; }
.builder-seo-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 16px;
  font-size: 13px;
}
.builder-seo-table th,
.builder-seo-table td {
  border: 1px solid #e2e5e1;
  padding: 8px 10px;
  text-align: left;
}
.builder-seo-table th { background: #f4f5f3; font-weight: 650; }
@media (max-width: 1100px) {
  .builder-seo-howto ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .builder-seo-howto li:nth-child(2n) { border-right: 0; }
  .builder-seo-howto li:nth-child(-n+4) { border-bottom: 1px solid var(--line, #e2e5e1); }
  .builder-seo-howto li:nth-child(5) { grid-column: 1 / -1; border-right: 0; }
}
@media (max-width: 640px) {
  .builder-seo-howto ol { grid-template-columns: 1fr; }
  .builder-seo-howto li,
  .builder-seo-howto li:nth-child(2n),
  .builder-seo-howto li:nth-child(5) {
    border-right: 0;
    border-bottom: 1px solid var(--line, #e2e5e1);
    grid-column: auto;
  }
  .builder-seo-howto li:last-child { border-bottom: 0; }
}
@media (max-width: 900px) {
  .builder-seo-notes { grid-template-columns: 1fr; gap: 24px; }
}

#builderApp {
  --bg: #f6f6f4;
  --paper: #fff;
  --ink: #151816;
  --muted: #747b76;
  --line: #e2e5e1;
  --line2: #ccd2cd;
  --green: #29493a;
  --green2: #3f6654;
  --shadow: 19;
  --radius: 0px;
  --ui-scale: 1;
  --module-cols: 4;
}

#builderApp *,
#builderApp *::before,
#builderApp *::after { box-sizing: border-box; }

#builderApp [hidden] { display: none !important; }

#builderApp button,
#builderApp select,
#builderApp input { font: inherit; }

#builderApp button { cursor: pointer; }

#builderApp {
.builder {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(380px, .95fr);
  background: #fff;
  border: 1px solid var(--line);
  min-height: 0;
}
.builder-top {
  grid-column: 1 / -1;
  display: flex;
  align-items: stretch;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 40;
}
.left { min-width: 0; position: relative; }
.steps {
  flex: 1 1 0;
  min-width: 0;
  height: 72px;
  display: flex;
  align-items: stretch;
  padding: 0;
  position: relative;
  background: transparent;
  border: 0;
}
.step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  font-size: 10px;
  font-weight: 750;
  color: #253c31;
  position: relative;
  border: 0;
  background: transparent;
  padding: 0 16px;
  text-align: left;
  min-width: 0;
}
.step:hover { background: #f7f7f5; }
.step.open { background: #f3f4f1; }
.step:not(:last-child) { padding-right: 20px; }
.step:not(:last-child):after {
  content: '>';
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: #c5cac6;
  font-size: 18px;
  font-weight: 300;
  pointer-events: none;
}
.step-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.step-copy b {
  font-size: 10px;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-copy i {
  font-style: normal;
  font-size: 11px;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.step .n {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #c8cec9;
  display: grid;
  place-items: center;
  font-size: 9px;
  flex: 0 0 auto;
}
.step.done .n, .step.open .n {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.step-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 35;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 40px rgba(21, 24, 22, .12);
  padding: 14px 20px 16px;
  max-height: min(420px, 58vh);
  overflow: auto;
}
.step-panel h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 750;
}
.step-panel .placed-list { margin-top: 10px; }
.step-panel .colors {
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: 8px;
}
.step-panel .color {
  padding: 6px 8px 8px;
  font-size: 12px;
  line-height: 1.2;
  min-width: 0;
}
.step-panel .color span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-panel .color img {
  width: auto;
  max-width: 100%;
  height: 62px;
  aspect-ratio: auto;
  margin: 0 auto 6px;
}
.step-panel .series {
  grid-template-columns: repeat(2, minmax(0, 140px));
  gap: 8px;
}
.step-panel .series .frame-choice { min-height: 0; padding: 8px 6px; }
.step-panel .series .frame-choice .thumb { height: 72px; }
.step-panel .series .frame-choice img { height: 68px; }
.step-panel .frames {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.step-panel .frame-choice { min-height: 0; padding: 8px 6px; }
.step-panel .frame-choice .thumb { height: 52px; }
.step-panel .frame-choice img { height: 48px; }
.step-panel .mechanisms {
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
}
.step-panel .mechanism-choice {
  min-width: 0;
  line-height: 1.2;
}
.step-panel .mechanism-choice span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-panel .mechanism-choice img { height: 52px; }
.step-panel .walls {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 8px;
}
.step-panel .wall-choice {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 8px 8px;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  color: #3a403c;
  min-width: 0;
}
.step-panel .wall-choice img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  display: block;
  margin: 0 auto 6px;
  background: #f3f4f1;
}
.step-panel .wall-choice span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-panel .wall-choice:hover { border-color: #b7bfb9; }
.step-panel .wall-choice.active {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
  font-weight: 750;
  color: var(--ink);
}
.step-panel img[loading="lazy"],
.color img,
.frame-choice img,
.mechanism-choice img,
.wall-choice img,
.set-card-media img {
  background: #eceee9;
}
.stage-wrap { padding: 18px 22px; }
.stage {
  height: 650px;
  background: linear-gradient(145deg, #f8f8f6, #eeeeeb);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px solid #6e7571;
  border-radius: 4px;
}
.stage-reset {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
}
.assembly {
  position: relative;
  margin: 0;
  flex: 0 0 auto;
  line-height: 0;
  filter: none;
  transition: .2s;
}
.frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  object-fit: fill;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 calc(var(--shadow, 19) * 1.15px) calc(var(--shadow, 19) * .95px) rgba(0, 0, 0, .16));
}
.mech {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  border-radius: 0;
  overflow: visible;
  pointer-events: auto;
  cursor: pointer;
  line-height: 0;
}
.mech img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  max-height: none !important;
  display: block;
  object-fit: fill;
  transform-origin: center center;
  pointer-events: auto;
}
.mech .slot-ring {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  transform: none !important;
  z-index: 3;
  pointer-events: none;
  box-sizing: border-box;
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none;
  box-shadow: 0 0 0 1px #111, 0 0 0 4px #fff, 0 0 0 5px #111;
}
#hitLayer {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}
.hit {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 12;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(0, 0, 0, .001) !important;
  box-sizing: border-box;
  box-shadow: none;
  outline: none !important;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
  cursor: pointer;
  overflow: visible;
  line-height: 0;
  font-size: 0;
}
.slot-ring {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 13;
  pointer-events: none;
  box-sizing: border-box;
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none;
  box-shadow: 0 0 0 1px #111, 0 0 0 4px #fff, 0 0 0 5px #111;
}
.hit.empty:after {
  content: '+';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(41, 73, 58, .92);
  color: #fff;
  font-size: 20px;
  pointer-events: none;
  z-index: 2;
}
.hit > .slot-ring,
#builderApp .hit > .slot-ring {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  transform: none !important;
  z-index: 3;
  pointer-events: none;
  box-sizing: border-box;
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none;
  box-shadow: 0 0 0 1px #111, 0 0 0 4px #fff, 0 0 0 5px #111;
}
#builderApp .hit.is-on {
  box-shadow: 0 0 0 1px #111, 0 0 0 4px #fff, 0 0 0 5px #111 !important;
}
.stage-tools { display: none !important; }
.zoom {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
}
.zoom button, .zoom span {
  height: 38px;
  min-width: 46px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.zoom span { min-width: 70px; }
.zoom button:last-child { border-right: 0; }
.stage-tools .wallrow { display: none !important; }
.wall {
  width: 32px;
  height: 32px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #d0d4d1;
}
.wall.active { box-shadow: 0 0 0 2px var(--green); }
.right {
  display: flex;
  flex-direction: column;
  align-self: start;
  padding: 0;
  overflow: visible;
  background: #fbfbfa;
}
.right-kicker {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.right-title {
  margin: 0;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.text-btn {
  height: 42px;
  border: 1px solid var(--line2);
  background: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 750;
  color: var(--ink);
  text-decoration: none;
  display: inline-grid;
  place-items: center;
  white-space: nowrap;
}
.text-btn:hover {
  background: #f3f4f1;
  border-color: #b7beb8;
}
.right-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-shrink: 0;
  height: 72px;
  padding: 0 22px;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.right-body {
  flex: 0 1 auto;
  overflow: visible;
  padding: 18px 22px 22px;
}
.slot-line { font-size: 11px; color: var(--muted); margin: 0 0 10px; }
.set-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.builder-module-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
}
.builder-module-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-width: 0;
  min-height: 168px;
  overflow: hidden;
  background: #171b19;
  color: #fff;
}
.builder-module-banner > * {
  grid-area: 1 / 1;
}
.builder-module-banner[data-theme="dark"] {
  background: #f3f4f1;
  color: #151816;
}
.builder-module-banner picture {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
}
.builder-module-banner-media,
.builder-module-banner img,
.builder-module-banner video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  max-height: 220px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: top;
  pointer-events: none;
}
.builder-module-banner-embed {
  position: relative;
  width: 100%;
  min-height: 168px;
  max-height: 220px;
  height: 220px;
  padding: 0;
}
.builder-module-banner-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.builder-module-banner-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 32px;
  background: linear-gradient(90deg, rgba(23,27,25,.94) 0%, rgba(23,27,25,.72) 62%, rgba(23,27,25,0) 100%);
  pointer-events: none;
}
.builder-module-banner:not(:has(img)):not(:has(video)):not(:has(iframe)) .builder-module-banner-copy {
  max-width: none;
  background: transparent;
}
.builder-module-banner[data-has-copy="0"] {
  min-height: 140px;
}
.builder-module-banner[data-theme="dark"] .builder-module-banner-copy {
  background: linear-gradient(90deg, rgba(243,244,241,.96) 0%, rgba(243,244,241,.78) 62%, rgba(243,244,241,0) 100%);
}
.builder-module-banner[data-align="center"] .builder-module-banner-copy {
  max-width: none;
  align-items: center;
  text-align: center;
}
.builder-module-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  min-height: 1px;
  color: #bfcac2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.builder-module-banner-kicker::before {
  content: "";
  width: 20px;
  height: 1px;
  flex: none;
  background: #7f9486;
}
.builder-module-banner-title {
  margin: 0;
  max-width: 22ch;
  color: #fff;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.builder-module-banner-desc {
  max-width: 36ch;
  margin: 13px 0 0;
  color: rgba(255,255,255,.67);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.55;
}
.builder-module-banner-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 21px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.builder-module-banner[data-align="center"] .builder-module-banner-kicker { justify-content: center; }
.builder-module-banner[data-theme="dark"] .builder-module-banner-kicker { color: #5f6b64; }
.builder-module-banner[data-theme="dark"] .builder-module-banner-kicker::before { background: #7a847c; }
.builder-module-banner[data-theme="dark"] .builder-module-banner-title,
.builder-module-banner[data-theme="dark"] .builder-module-banner-cta {
  color: #151816;
}
.builder-module-banner[data-theme="dark"] .builder-module-banner-desc { color: rgba(21,24,22,.68); }
.builder-module-banner[data-theme="dark"] .builder-module-banner-cta {
  border-color: rgba(21,24,22,.28);
  background: transparent;
}
.builder-module-banner-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.set-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px 6px 6px;
  min-width: 0;
  min-height: 64px;
}
.set-card-media {
  width: 64px;
  height: 64px;
  background: #f3f4f1;
  display: grid;
  place-items: center;
  padding: 4px;
}
.set-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.set-card-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.set-card-kind-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin: 0;
}
.set-card-kind {
  margin: 0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.set-card-oos {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #c62828;
  white-space: nowrap;
}
.set-card-body h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.set-card-sku {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.set-card-note {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: #3d4741;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.set-card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
}
.set-card-aside .price {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.set-card-unit {
  font-size: 10px;
  color: var(--muted);
}
.set-card-qty {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid #d7ddd8;
  padding: 2px 6px;
  white-space: nowrap;
}
.set-empty {
  grid-column: 1 / -1;
  padding: 28px 8px;
  color: var(--muted);
  font-size: 13px;
}
.series { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.series .frame-choice { min-height: 140px; }
.series .frame-choice img { height: 88px; }
.selectbtn {
  height: 46px;
  border: 1px solid var(--line2);
  background: #fff;
  font-size: 14px;
  font-weight: 650;
}
.selectbtn:hover { border-color: #b7bfb9; }
.selectbtn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.selectbtn:disabled { opacity: .4; cursor: not-allowed; }
.colors { display: grid; grid-template-columns: repeat(var(--module-cols, 4), minmax(0, 1fr)); gap: 8px; }
.color {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 5px 8px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  color: #3a403c;
  line-height: 1.25;
}
.color img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f3f4f1;
  display: block;
  margin-bottom: 6px;
}
.color:hover { border-color: #b7bfb9; }
.color.active {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
  color: var(--ink);
  font-weight: 750;
}
.frames { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.frame-choice {
  min-height: 108px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}
.frame-choice .thumb {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frame-choice img {
  height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.frame-choice:hover { border-color: #b7bfb9; }
.frame-choice.active {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}
.frame-choice:disabled, .mechanism-choice:disabled { opacity: .4; cursor: not-allowed; }
.frame-choice.is-oos i,
.mechanism-choice.is-oos span {
  color: #8a4b4b;
  font-weight: 650;
}
.mechanisms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 8px;
}
.mechanism-choice {
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  min-width: 0;
  line-height: 1.25;
}
.mechanism-choice img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  background: #f4f5f2;
  display: block;
  margin-bottom: 6px;
}
.mechanism-choice:hover { border-color: #b7bfb9; }
.mechanism-choice.active {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}
.placed-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 16px;
}
.placed-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  cursor: pointer;
}
.placed-item:hover { border-color: #b7bfb9; }
.placed-item.active {
  border-color: var(--green);
  box-shadow: inset 0 0 0 1px var(--green);
}
.placed-item.empty .placed-name { color: var(--muted); font-weight: 500; }
.placed-slot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef0ed;
  color: #5d6560;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.placed-item.active .placed-slot {
  background: var(--green);
  color: #fff;
}
.placed-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  padding-top: 4px;
}
.foot-price span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-price strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  white-space: nowrap;
}
.add {
  min-width: 148px;
  height: 44px;
  padding: 0 18px;
  background: var(--green);
  border: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .02em;
}
.add:hover { background: #203c30; }
.add:disabled,
.add.is-busy {
  opacity: .55;
  cursor: wait;
}
.builder-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}
.builder-modal[hidden] { display: none; }
.builder-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 22, .45);
}
.builder-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #fff;
  border: 1px solid #e2e5e1;
  padding: 22px 22px 18px;
}
.builder-modal-card h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #151816;
}
.builder-modal-card p {
  margin: 8px 0 0;
  color: #5c645f;
  font-size: 13px;
  line-height: 1.5;
}
.builder-stock-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}
.builder-stock-card {
  border: 1px solid #e2e5e1;
  padding: 10px;
  min-width: 0;
  background: #f6f6f4;
}
.builder-stock-card.is-alt {
  background: #fff;
  border-color: #29493a;
}
.builder-stock-card img {
  display: block;
  width: 100%;
  height: 88px;
  object-fit: contain;
  background: #fff;
}
.builder-stock-card b {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #151816;
}
.builder-stock-card small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #6b736e;
}
.builder-stock-arrow {
  font-size: 18px;
  font-weight: 800;
  color: #29493a;
}
.builder-stock-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.builder-stock-list li {
  font-size: 12px;
  color: #3f6654;
  line-height: 1.4;
}
.builder-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}
.builder-modal-ghost,
.builder-modal-ok {
  height: 40px;
  padding: 0 14px;
  border: 0;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.builder-modal-ghost {
  background: #ecebe7;
  color: #151816;
}
.builder-modal-ok {
  background: var(--green, #29493a);
  color: #fff;
}
.builder-modal-ok:disabled {
  opacity: .5;
  cursor: not-allowed;
}
@media (max-width: 560px) {
  .builder-stock-row { grid-template-columns: 1fr; }
  .builder-stock-arrow { display: none; }
}
.empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #233d31;
  color: #fff;
  padding: 12px 15px;
  font-size: 10px;
  opacity: 0;
  transition: .2s;
  z-index: 400;
  pointer-events: none;
}
.toast.show { opacity: 1; }
@media (max-width: 767px) {
  .bn-has-device:not(.bn-device-mobile) { display: none !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
  .bn-has-device:not(.bn-device-tablet) { display: none !important; }
}
@media (min-width: 992px) {
  .bn-has-device:not(.bn-device-desktop) { display: none !important; }
}
@media (max-width: 1200px) {
  .builder { grid-template-columns: 1fr; }
  .right { border-top: 1px solid var(--line); }
  .left { border-right: 0; }
  .stage { height: 560px; }
  .colors { grid-template-columns: repeat(3, 1fr); }
  .stage-wrap { padding: 12px; }
  .right-buy { flex-wrap: wrap; }
  .right-buy .add { min-width: 0; flex: 1; }
}
@media (max-width: 700px) {
  .builder-top { height: auto; }
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .step {
    flex: none;
    justify-content: flex-start;
    padding: 12px 14px;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
  }
  .step:nth-child(odd) { border-right: 1px solid var(--line); }
  .step:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .step:not(:last-child) { padding-right: 14px; }
  .step:after { display: none; }
  .right-buy { height: auto; padding: 10px 16px; }
  .step-panel { top: 100%; }
  .stage-wrap { padding: 12px; }
  .stage { height: 390px; }
  .frames { grid-template-columns: 1fr 1fr; }
  .set-card { grid-template-columns: 56px 1fr; }
  .set-card-media { width: 56px; height: 56px; }
  .set-card-aside {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .builder-module-banner-copy {
    width: 100%;
    max-width: none;
    padding: 22px 18px 26px;
    background: linear-gradient(180deg, rgba(23,27,25,.92) 0%, rgba(23,27,25,.55) 70%, rgba(23,27,25,.18) 100%);
  }
  .builder-module-banner[data-theme="dark"] .builder-module-banner-copy {
    background: linear-gradient(180deg, rgba(243,244,241,.96) 0%, rgba(243,244,241,.7) 70%, rgba(243,244,241,.2) 100%);
  }
  .builder-module-banner-title { max-width: none; font-size: 22px; }
  .builder-module-banner-desc { max-width: none; }
}
}

#builderApp #hitLayer {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}
#builderApp .mech {
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
}
#builderApp .hit {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 12;
  padding: 0 !important;
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(0, 0, 0, .001) !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
  cursor: pointer;
  overflow: visible;
  line-height: 0;
  font-size: 0;
}
#builderApp .hit.is-on,
#builderApp .hit > .slot-ring {
  box-shadow: 0 0 0 1px #111, 0 0 0 4px #fff, 0 0 0 5px #111 !important;
}
#builderApp .hit > .slot-ring {
  position: absolute;
  inset: 0;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  transform: none !important;
  pointer-events: none;
}
#builderApp .slot-ring {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 13;
  pointer-events: none;
  box-sizing: border-box;
  background: transparent;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none;
  box-shadow: 0 0 0 1px #111, 0 0 0 4px #fff, 0 0 0 5px #111;
}
#builderApp .mech .slot-ring {
  inset: 0;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  transform: none !important;
  z-index: 3;
}

#builderApp.no-wall [data-menu="design"] { display: none; }
#builderApp.no-summary .right-buy { display: none; }
#builderApp.no-prices .foot-price strong,
#builderApp.no-prices .set-card .price,
#builderApp.no-prices .set-card-unit { display: none; }

html.builder-stock-open { overflow: hidden; }
.builder-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  place-items: center;
  padding: 20px;
}
.builder-modal.is-open,
.builder-modal:not([hidden]) {
  display: grid;
}
.builder-modal[hidden] { display: none !important; }
.builder-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 24, 22, .45);
}
.builder-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #fff;
  border: 1px solid #e2e5e1;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 60px rgba(21, 24, 22, .28);
}
.builder-modal-card h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #151816;
}
.builder-modal-card p {
  margin: 8px 0 0;
  color: #5c645f;
  font-size: 13px;
  line-height: 1.5;
}
.builder-stock-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}
.builder-stock-card {
  border: 1px solid #e2e5e1;
  padding: 10px;
  min-width: 0;
  background: #f6f6f4;
}
.builder-stock-card.is-alt {
  background: #fff;
  border-color: #29493a;
}
.builder-stock-card img {
  display: block;
  width: 100%;
  height: 88px;
  object-fit: contain;
  background: #fff;
}
.builder-stock-card b {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  color: #151816;
}
.builder-stock-card small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #6b736e;
}
.builder-stock-arrow {
  font-size: 18px;
  font-weight: 800;
  color: #29493a;
}
.builder-stock-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.builder-stock-list li {
  font-size: 12px;
  color: #3f6654;
  line-height: 1.4;
}
.builder-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}
.builder-modal-ghost,
.builder-modal-ok {
  height: 40px;
  padding: 0 14px;
  border: 0;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.builder-modal-ghost {
  background: #ecebe7;
  color: #151816;
}
.builder-modal-ok {
  background: #29493a;
  color: #fff;
}
.builder-modal-ok:disabled {
  opacity: .5;
  cursor: not-allowed;
}
@media (max-width: 560px) {
  .builder-stock-row { grid-template-columns: 1fr; }
  .builder-stock-arrow { display: none; }
}
