@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../recursos/Font/Inter/Inter-VariableFont_opsz,wght.ttf")
    format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("../recursos/Font/Inter/Inter-Italic-VariableFont_opsz,wght.ttf")
    format("truetype");
}

* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --black: #020202;
  --panel: #030303;
  --panel-active: #444;
  --line: #9a9a9a;
  --line-soft: rgba(255, 255, 255, 0.28);
  --text: #f7f7f7;
  --muted: rgba(255, 255, 255, 0.76);
}

html,
body,
#root {
  width: 100%;
  min-width: 320px;
  height: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: var(--black);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  text-rendering: optimizeLegibility;
  user-select: none;
}

img,
video {
  -webkit-user-drag: none;
  user-select: none;
}

button {
  appearance: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

noscript {
  display: block;
  padding: 24px;
}

.idle-screen,
.intro-screen,
.instructions-screen,
.language-screen,
.design-screen,
.confirmation-screen,
.config-screen {
  width: 100vw;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #050505;
}

.idle-screen,
.intro-screen,
.instructions-screen,
.language-screen,
.design-screen,
.confirmation-screen {
  position: relative;
}

.idle-video,
.intro-image,
.instructions-image,
.confirmation-image,
.stage-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idle-video,
.intro-image,
.instructions-image,
.confirmation-image {
  position: absolute;
  inset: 0;
}

.idle-shade,
.intro-shade,
.instructions-shade,
.confirmation-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.idle-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 54%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.22));
}

.intro-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 52%);
}

.instructions-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.6) 52%, rgba(0, 0, 0, 0.9)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38));
}

.confirmation-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 56%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.72));
}

.idle-logo,
.intro-logo,
.config-logo {
  position: absolute;
  z-index: 3;
  top: clamp(34px, 5.5vw, 72px);
  width: clamp(230px, 15.8vw, 430px);
}

.idle-logo {
  left: 50%;
  width: clamp(260px, 14.5vw, 360px);
  transform: translateX(-50%);
}

.intro-logo,
.config-logo {
  left: clamp(34px, 5.5vw, 112px);
}

.idle-logo img,
.intro-logo img,
.config-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.language-button {
  position: absolute;
  z-index: 5;
  top: clamp(24px, calc(5.5vw - 8px), 66px);
  right: clamp(22px, 5vw, 96px);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  opacity: 0.9;
  transition: none;
}

.language-button:hover,
.language-button:active {
  opacity: 0.9;
  transform: none;
}

.language-button.with-close {
  right: 64px;
}

.panel-language-button {
  top: 14px;
}

.language-button img {
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(1);
}

.idle-copy {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 50%;
  width: min(1120px, calc(100vw - 48px));
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.idle-copy h1 {
  margin: 0;
  font-size: clamp(2.45rem, 3.7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
}

.idle-copy p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1vw, 1.22rem);
  line-height: 1.3;
}

.tap-start {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  margin-top: 38px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(0.95rem, 1vw, 1.22rem);
  letter-spacing: 0;
  line-height: 1;
}

.tap-icon {
  flex: 0 0 clamp(22px, 1.8vw, 30px);
  width: clamp(22px, 1.8vw, 30px);
  height: clamp(25px, 2.02vw, 34px);
  object-fit: contain;
}

.intro-copy {
  position: absolute;
  z-index: 3;
  top: 51.5%;
  left: clamp(34px, 14vw, 270px);
  width: min(720px, 42vw);
  padding-left: 36px;
  transform: translateY(-50%);
}

.intro-copy::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 48px;
  left: 0;
  width: 2px;
  background: #fff;
}

.intro-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3.1vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.intro-copy p {
  max-width: 34rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 0.92vw, 1.08rem);
  line-height: 1.34;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.intro-button {
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.intro-button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.82);
}

.info-mark {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78em;
  line-height: 1;
  text-transform: none;
}

.instructions-image {
  object-position: 63% center;
}

.instructions-copy {
  position: absolute;
  z-index: 3;
  top: 52%;
  left: 50%;
  width: min(660px, calc(100vw - 64px));
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.instructions-copy h1 {
  margin: 0 0 42px;
  font-size: clamp(2rem, 2.35vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.instruction-list {
  display: grid;
}

.instruction-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
}

.instruction-number {
  color: #fff;
  font-size: clamp(1rem, 1.05vw, 1.35rem);
  font-weight: 600;
  text-align: center;
}

.instruction-text {
  font-size: clamp(1rem, 1.05vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
}

.instructions-button {
  min-height: 48px;
  margin-top: 42px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: transparent;
  color: #fff;
  font-size: clamp(0.86rem, 0.9vw, 1.1rem);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.design-screen {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(360px, 0.78fr);
  gap: clamp(54px, 6vw, 132px);
  align-items: center;
  padding: clamp(130px, 14vh, 190px) clamp(42px, 5vw, 130px)
    clamp(60px, 8vh, 128px);
  background: #000;
}

.design-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1.64 / 1;
  object-fit: cover;
}

.design-form-panel {
  display: grid;
  align-content: center;
  max-width: 630px;
  color: #fff;
}

.design-form-panel h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.design-form-panel > p {
  max-width: 31rem;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(0.84rem, 0.86vw, 1.05rem);
  line-height: 1.35;
}

.design-form {
  display: grid;
  gap: 26px;
}

.design-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.76rem, 0.72vw, 0.9rem);
  font-weight: 600;
  line-height: 1;
}

.design-form input[type="text"],
.design-form input[type="email"] {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  background: #4a4a4a;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  user-select: text;
}

.design-form input:focus {
  outline: 1px solid #fff;
  outline-offset: 0;
}

.consent-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 16px !important;
  margin: 0 0 22px;
  font-size: clamp(0.76rem, 0.75vw, 0.92rem) !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
}

.consent-row input {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  margin: 0;
  accent-color: #fff;
}

.send-design-button,
.finish-design-button {
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #fff;
  font-size: clamp(0.76rem, 0.78vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.send-design-button:hover,
.finish-design-button:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}

.finish-design-button {
  width: 100%;
  margin-top: clamp(2px, 0.7vh, 12px);
}

.design-close {
  z-index: 5;
  top: clamp(22px, 4.8vw, 74px);
  right: clamp(22px, 5vw, 96px);
}

.confirmation-copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  width: min(920px, calc(100vw - 64px));
  transform: translate(-50%, -45%);
  color: #fff;
  text-align: center;
}

.confirmation-copy h1 {
  margin: 0;
  font-size: clamp(1.95rem, 2vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.confirmation-copy > p {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.88rem, 0.9vw, 1.08rem);
  line-height: 1.35;
}

.confirmation-copy .social-line {
  max-width: 720px;
  margin-top: 64px;
}

.confirmation-copy strong {
  color: #fff;
  font-weight: 800;
}

.winner-line {
  font-size: clamp(0.74rem, 0.78vw, 0.92rem) !important;
}

.qr-card {
  display: grid;
  justify-items: center;
  width: min(352px, 82vw);
  margin-top: 60px;
  padding: 34px 34px 36px;
  background: #fff;
  color: #111;
}

.qr-card img {
  display: block;
  width: 80px;
  height: 80px;
  image-rendering: pixelated;
}

.qr-card p {
  max-width: 15rem;
  margin: 28px 0 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
}

.language-copy {
  position: absolute;
  z-index: 3;
  top: 51%;
  left: 50%;
  width: min(520px, calc(100vw - 48px));
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.language-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 2.55vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.language-copy p {
  max-width: 26rem;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(0.84rem, 0.9vw, 1.05rem);
  line-height: 1.35;
}

.language-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(34px, 4.8vh, 58px);
}

.language-option {
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 0.92vw, 1.08rem);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.language-option:hover,
.language-option.is-active {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.intro-close {
  z-index: 4;
  top: clamp(22px, 4.8vw, 74px);
  right: clamp(22px, 5vw, 96px);
}

.config-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(430px, 25vw, 720px);
}

.config-stage {
  position: relative;
  min-width: 0;
  height: 100svh;
  overflow: hidden;
  background: #111;
}

.config-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56), transparent 32%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 24%);
}

.stage-image {
  background: #111;
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

.stage-image.is-loading {
  opacity: 0.48;
  transform: scale(1.01);
}

.view-switcher {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(30px, 4.8vh, 70px);
  display: flex;
  gap: 16px;
  transform: translateX(-50%);
}

.view-thumb {
  width: clamp(92px, 5.4vw, 150px);
  height: clamp(62px, 4.4vw, 108px);
  padding: 5px;
  border: 2px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 520ms cubic-bezier(0.42, 0, 0.22, 1),
    border-color 240ms ease,
    outline-color 240ms ease,
    opacity 240ms ease;
}

.view-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-thumb.is-active {
  border-color: #fff;
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.config-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100svh;
  min-height: 600px;
  padding: clamp(56px, 6vh, 88px) clamp(28px, 3vw, 74px)
    clamp(38px, 5vh, 74px);
  overflow: hidden;
  background: #000;
}

.panel-content {
  display: grid;
  align-self: center;
  width: 100%;
  max-width: 560px;
  gap: clamp(22px, 3vh, 34px);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.language-close {
  z-index: 4;
  top: clamp(22px, 4.8vw, 74px);
  right: clamp(22px, 5vw, 96px);
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 7px;
  width: 28px;
  height: 2px;
  background: #fff;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.panel-header {
  display: grid;
  gap: 12px;
  padding-right: clamp(32px, 4vw, 76px);
}

.panel-header h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.22rem, 1.1vw, 1.66rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.panel-header p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.74rem, 0.7vw, 0.92rem);
  line-height: 1.28;
}

.control-group {
  display: grid;
  gap: clamp(11px, 1.35vh, 17px);
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.control-group legend {
  margin: 0 0 clamp(10px, 1.35vh, 18px);
  padding: 0;
  color: #fff;
  font-size: clamp(0.78rem, 0.73vw, 0.96rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.kitchen-list {
  display: grid;
  gap: clamp(8px, 1.15vh, 14px);
}

.option {
  min-width: 0;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    opacity 160ms ease;
}

.option:hover {
  color: #fff;
}

.option.is-active {
  border-color: var(--line);
  background: var(--panel-active);
  color: #fff;
}

.kitchen-option {
  display: grid;
  grid-template-columns: clamp(78px, 4.7vw, 118px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.45vw, 22px);
  min-height: clamp(56px, 3.55vw, 76px);
  padding: 6px clamp(8px, 1vw, 14px);
}

.kitchen-option img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  opacity: 0.46;
}

.kitchen-option.is-active img,
.kitchen-option:hover img {
  opacity: 1;
}

.kitchen-option span {
  overflow-wrap: anywhere;
  color: inherit;
  font-size: clamp(0.8rem, 0.74vw, 0.95rem);
  line-height: 1.12;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vh, 16px) clamp(22px, 2.1vw, 42px);
}

.tone-option,
.finish-option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 6px 8px;
}

.tone-swatch,
.finish-swatch {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.tone-swatch.black {
  background: #090909;
}

.tone-swatch.white {
  background: #f2f2f0;
}

.finish-swatch.steel {
  background: linear-gradient(135deg, #8d8d8d, #f2f2f2 46%, #868686);
}

.finish-swatch.silver {
  background: linear-gradient(135deg, #c7c7c7, #fff 52%, #979797);
}

.finish-swatch.gold {
  background: linear-gradient(135deg, #b08f3f, #fff0bc 50%, #9b792f);
}

.finish-swatch.black-chrome {
  background: linear-gradient(135deg, #111, #777 50%, #060606);
}

.finish-swatch.copper {
  background: linear-gradient(135deg, #755746, #d3b29d 50%, #6e5144);
}

.finish-swatch.velvet {
  background: linear-gradient(135deg, #353535, #060606);
}

.tone-option span:last-child,
.finish-option span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  color: inherit;
  font-size: clamp(0.74rem, 0.7vw, 0.92rem);
  line-height: 1.1;
}

.finishes {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  body {
    overflow: auto;
  }

  .config-screen {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .config-stage {
    height: 60svh;
    min-height: 420px;
  }

  .config-panel {
    justify-content: start;
    height: auto;
    min-height: auto;
    padding: 34px 24px 28px;
    overflow-y: auto;
  }

  .design-screen {
    grid-template-columns: 1fr;
    gap: 34px;
    height: auto;
    min-height: 100svh;
    padding: 112px 24px 42px;
    overflow: auto;
  }

  .design-preview img {
    aspect-ratio: 1.4 / 1;
  }

  .design-form-panel {
    max-width: none;
  }

  .confirmation-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    min-height: 100svh;
    padding: 130px 24px 48px;
    transform: none;
  }

  .confirmation-copy .social-line {
    margin-top: 42px;
  }

  .qr-card {
    margin-top: 42px;
  }

  .panel-content {
    max-width: none;
  }

  .view-switcher {
    --mobile-thumb-width: clamp(96px, 27vw, 190px);
    --mobile-thumb-gap: clamp(12px, 3vw, 22px);
    left: 0;
    right: 0;
    display: block;
    height: clamp(68px, 19vw, 112px);
    transform: none;
  }

  .view-thumb {
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--mobile-thumb-width);
    transform: translateX(calc(-150% - var(--mobile-thumb-gap)));
  }

  .view-thumb.is-active {
    z-index: 2;
    transform: translateX(-50%);
  }

  .view-switcher.is-room-active .view-thumb[data-value="front"] {
    transform: translateX(calc(50% + var(--mobile-thumb-gap)));
  }

  .view-switcher.is-front-active .view-thumb[data-value="room"] {
    transform: translateX(calc(-150% - var(--mobile-thumb-gap)));
  }

  .intro-copy {
    width: min(680px, calc(100vw - 68px));
  }

  .instructions-copy {
    width: min(660px, calc(100vw - 48px));
  }
}

@media (max-width: 620px) {
  .idle-screen,
  .intro-screen,
  .instructions-screen,
  .language-screen,
  .design-screen,
  .confirmation-screen,
  .config-screen {
    min-height: 560px;
  }

  .intro-logo,
  .config-logo {
    top: 24px;
    left: 24px;
    width: min(230px, 58vw);
  }

  .idle-logo {
    top: 24px;
    width: min(230px, 58vw);
  }

  .language-button {
    top: 18px;
    right: 14px;
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .language-button.with-close {
    right: 58px;
  }

  .intro-copy {
    left: 24px;
    width: calc(100vw - 48px);
    padding-left: 24px;
  }

  .idle-copy p {
    margin-top: 22px;
    font-size: 0.9rem;
  }

  .tap-start {
    gap: 10px;
    min-height: 34px;
    margin-top: 30px;
    font-size: 0.9rem;
  }

  .tap-icon {
    flex-basis: 22px;
    width: 22px;
    height: 25px;
  }

  .intro-copy p {
    font-size: 0.82rem;
  }

  .language-copy {
    top: 53%;
    width: calc(100vw - 48px);
  }

  .language-list {
    gap: 10px;
    margin-top: 30px;
  }

  .language-option {
    min-height: 48px;
    font-size: 0.92rem;
  }

  .control-group legend {
    margin-bottom: 14px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-option {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .finish-design-button {
    margin-top: 4px;
  }

  .design-form-panel h1,
  .confirmation-copy h1 {
    font-size: 1.8rem;
  }

  .design-form-panel > p,
  .confirmation-copy > p {
    font-size: 0.86rem;
  }

  .design-form {
    gap: 22px;
  }

  .send-design-button {
    min-height: 46px;
  }

  .qr-card {
    width: min(330px, calc(100vw - 48px));
    padding: 30px 28px 32px;
  }

  .instruction-row {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 64px;
  }
}
