/* ------------------------------------------------*/
/* Card Studio: design and preview a Wyre product */
/* ------------------------------------------------*/
.studio {
  --studio-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --studio-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
  margin: 1rem 0 6rem;
  font-family: var(--_font-default);
  color: var(--t-bright);
}

/* ---------- Controls ---------- */
.studio__eyebrow {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-muted);
}
.studio__title {
  margin: 0;
  font-size: clamp(2.8rem, 3.4vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--t-bright);
}
.studio__lead {
  margin: 1.2rem 0 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--t-medium);
}
.studio__group,
.studio__fields {
  margin-top: 2.6rem;
}
.studio__fields {
  display: grid;
  gap: 1.4rem;
}
.studio__label {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--t-medium);
}
.studio__label em {
  font-style: normal;
  font-weight: 500;
  color: var(--t-muted);
}

.studio__products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.studio__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.2rem 0.6rem;
  border: 1px solid var(--stroke-elements);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--t-medium);
  font: 600 1.25rem/1.2 var(--_font-default);
  cursor: pointer;
  transition: transform 0.35s var(--studio-spring), background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.studio__chip svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s var(--studio-spring);
}
.studio__chip:hover {
  transform: translateY(-2px);
  color: var(--t-bright);
}
.studio__chip:active {
  transform: scale(0.95);
}
.studio__chip.is-active {
  background: var(--t-bright);
  border-color: var(--t-bright);
  color: var(--base);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.6);
}
.studio__chip.is-active svg {
  transform: scale(1.12) rotate(-4deg);
}

.studio__field input {
  width: 100%;
  height: 5.2rem;
  padding: 0 1.8rem;
  border: 1px solid var(--stroke-elements);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--t-bright);
  font: 500 1.6rem var(--_font-default);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.studio__field input::placeholder {
  color: var(--t-muted);
}
.studio__field input:focus {
  border-color: var(--t-bright);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.studio__uploads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.studio__upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
  padding: 1rem 1.2rem;
  border: 1px dashed var(--stroke-elements);
  border-radius: 1.4rem;
  color: var(--t-medium);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.3s var(--studio-spring);
}
.studio__upload:hover {
  border-color: var(--t-bright);
  background: rgba(255, 255, 255, 0.05);
}
.studio__upload:active {
  transform: scale(0.97);
}
.studio__upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.studio__upload-thumb {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
}
.studio__upload[data-kind="photo"] .studio__upload-thumb {
  border-radius: 50%;
}
.studio__upload-thumb svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.studio__upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio__upload[data-kind="logo"] .studio__upload-thumb img {
  object-fit: contain;
  padding: 3px;
  background: #fff;
}
.studio__upload-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.studio__upload.is-filled {
  border-style: solid;
  color: var(--t-bright);
}
.studio__upload.is-filled .studio__upload-thumb {
  animation: studio-pop 0.45s var(--studio-spring);
}

.studio__finishes {
  display: flex;
  gap: 1.2rem;
}
.studio__swatch {
  position: relative;
  width: 3.8rem;
  height: 3.8rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 4px 10px -4px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s var(--studio-spring);
}
.studio__swatch::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: border-color 0.2s ease, transform 0.35s var(--studio-spring);
  transform: scale(0.85);
}
.studio__swatch:hover {
  transform: translateY(-2px);
}
.studio__swatch.is-active::after {
  border-color: var(--t-bright);
  transform: scale(1);
}
.studio__swatch[data-finish="navy"] { background: linear-gradient(135deg, #0b4f96, #003366 55%, #001c3a); }
.studio__swatch[data-finish="black"] { background: linear-gradient(135deg, #3a3d44, #0d0e10); }
.studio__swatch[data-finish="silver"] { background: linear-gradient(135deg, #f4f6f8, #b9bfc8 50%, #e6e9ee); }
.studio__swatch[data-finish="white"] { background: linear-gradient(135deg, #ffffff, #e3e8ef); }

.studio__buy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  height: 5.8rem;
  overflow: hidden;
  border-radius: 99px;
  background: var(--t-bright);
  color: var(--base) !important;
  font: 700 1.7rem var(--_font-default);
  text-decoration: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 14px 30px -16px rgba(0, 0, 0, 0.7);
  transition: transform 0.35s var(--studio-spring), box-shadow 0.25s ease, background 0.35s ease, color 0.35s ease;
}
.studio__buy svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: currentColor;
  transition: transform 0.4s var(--studio-spring);
}
.studio__buy::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(125, 170, 220, 0.28), transparent);
  transform: translateX(-150%) skewX(-20deg);
  animation: studio-shine 4.2s ease-in-out 1.5s infinite;
}
.studio__buy:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 18px 34px -16px rgba(0, 0, 0, 0.8);
}
.studio__buy:hover svg {
  transform: rotate(-10deg) scale(1.1);
}
/* Pressed: turns WhatsApp green */
.studio__buy:active,
.studio__buy.is-pressed {
  background: linear-gradient(180deg, #2fe07a, #1eb85c);
  color: #fff !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 14px 30px -14px rgba(30, 184, 92, 0.9);
}
.studio__buy:active {
  transform: scale(0.97);
}
.studio__note {
  margin: 1.2rem 0 0;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
  color: var(--t-muted);
}

/* ---------- Stage ---------- */
.studio__stage {
  position: sticky;
  top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52rem;
  padding: 4rem 2rem 3rem;
  overflow: hidden;
  border-radius: 3.2rem;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.studio__glow {
  position: absolute;
  top: 12%;
  left: 50%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.35), transparent 65%);
  filter: blur(20px);
  transform: translateX(-50%);
  pointer-events: none;
  animation: studio-breathe 6s ease-in-out infinite;
}

.studio__scene {
  --w: 34rem;
  --h: 21.4rem;
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 30%;
  position: relative;
  display: block;
  width: var(--w);
  max-width: 100%;
  height: var(--h);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--_font-default);
  perspective: 1400px;
  animation: studio-float 6s ease-in-out infinite;
  transition: width 0.5s var(--studio-ease), height 0.5s var(--studio-ease);
  -webkit-tap-highlight-color: transparent;
}
.studio__scene:focus-visible {
  outline: 2px solid var(--t-bright);
  outline-offset: 12px;
  border-radius: 2rem;
}
.studio__scene[data-product="stand"] { --w: 24rem; --h: 34rem; }
.studio__scene[data-product="tag"] { --w: 25rem; --h: 25rem; }
.studio__scene[data-product="band"] { --w: 36rem; --h: 12rem; }

.studio__tilt {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.6s var(--studio-ease), opacity 0.3s ease;
}
.studio__scene.is-tracking .studio__tilt {
  transition: transform 0.12s linear, opacity 0.3s ease;
}
.studio__scene.is-swapping .studio__tilt {
  opacity: 0;
  transform: rotateX(var(--rx)) rotateY(calc(var(--ry) - 50deg)) scale(0.82);
  transition: transform 0.25s ease-in, opacity 0.2s ease-in;
}

.studio__flip {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  transition: transform 0.9s var(--studio-spring);
}
.studio__scene.is-flipped .studio__flip {
  transform: rotateY(180deg);
}

.studio__shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -4.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.45), transparent);
  filter: blur(6px);
  animation: studio-shadow 6s ease-in-out infinite;
  pointer-events: none;
}
.studio__scene[data-product="stand"] .studio__shadow {
  bottom: -5.4rem;
}

/* Faces */
.studio__face {
  --f-bg: linear-gradient(135deg, #0b4f96 0%, #003366 55%, #001c3a 100%);
  --f-ink: #ffffff;
  --f-sub: rgba(255, 255, 255, 0.72);
  --f-line: rgba(255, 255, 255, 0.18);
  --f-chip: linear-gradient(135deg, #f4dd98, #c9a24d 50%, #f0d68c);
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 1.8rem;
  background: var(--f-bg);
  color: var(--f-ink);
  text-align: left;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -2px 6px rgba(0, 0, 0, 0.18),
    0 30px 60px -28px rgba(0, 0, 0, 0.75),
    0 10px 20px -12px rgba(0, 0, 0, 0.4);
}
.studio__face--back {
  transform: rotateY(180deg);
}
/* Light sheen that follows the tilt */
.studio__face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at var(--mx) var(--my), rgba(255, 255, 255, 0.28), transparent 70%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.studio__flip[data-finish="black"] .studio__face {
  --f-bg: linear-gradient(135deg, #2c2f35 0%, #121316 60%, #0a0a0b 100%);
}
.studio__flip[data-finish="silver"] .studio__face {
  --f-bg: linear-gradient(125deg, #f5f7f9 0%, #c7ccd4 38%, #eef1f4 55%, #b1b8c2 100%);
  --f-ink: #0f2a47;
  --f-sub: rgba(15, 42, 71, 0.66);
  --f-line: rgba(15, 42, 71, 0.16);
}
.studio__flip[data-finish="white"] .studio__face {
  --f-bg: linear-gradient(135deg, #ffffff 0%, #f1f4f8 60%, #e4e9f0 100%);
  --f-ink: #003366;
  --f-sub: rgba(0, 51, 102, 0.62);
  --f-line: rgba(0, 51, 102, 0.14);
}
.studio__scene[data-product="tag"] .studio__face {
  border-radius: 50%;
}
.studio__scene[data-product="band"] .studio__face {
  border-radius: 99px;
}
.studio__scene[data-product="stand"] .studio__face {
  bottom: 5rem;
  border-radius: 1.4rem;
}

/* Stand base (stays put while the plate flips) */
.studio__base {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 5.4rem;
  border-radius: 1rem 1rem 1.6rem 1.6rem;
  background: linear-gradient(180deg, #e9edf2, #b8bfc9);
  box-shadow: inset 0 1px 1px #fff, inset 0 -4px 8px rgba(0, 0, 0, 0.18), 0 18px 30px -16px rgba(0, 0, 0, 0.7);
  transform: translateZ(-6px);
}
.studio__base::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 50%;
  width: 60%;
  height: 0.6rem;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}
.studio__base span {
  position: absolute;
  inset: auto 0 1.1rem;
  font: 700 1rem/1 var(--_font-default);
  letter-spacing: 0.3em;
  text-align: center;
  color: rgba(0, 51, 102, 0.55);
}

/* Shared face content */
.p-logo {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.p-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-photo {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--f-line), 0 8px 16px -8px rgba(0, 0, 0, 0.6);
}
.p-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-name {
  display: block;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-role {
  display: block;
  margin-top: 0.4rem;
  color: var(--f-sub);
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-nfc svg,
.p-tap svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.p-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--f-sub);
}
.p-brand img {
  width: 1.6rem;
  height: auto;
}
.p-qr {
  display: block;
  padding: 0.6rem;
  border-radius: 0.8rem;
  background: #fff;
}
.p-qr svg {
  display: block;
  width: 100%;
  height: 100%;
}
.p-tap {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--f-line);
}
.p-tap::before,
.p-tap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--f-sub);
  border-radius: 50%;
  animation: studio-ring 2.4s ease-out infinite;
}
.p-tap::after {
  animation-delay: 1.2s;
}

/* Card */
.pc-front .p-logo { position: absolute; top: 2rem; left: 2.2rem; width: 5rem; height: 3.6rem; justify-items: start; }
.pc-front .p-logo img { object-position: left center; }
.pc-front .p-nfc { position: absolute; top: 2.2rem; right: 2.2rem; color: var(--f-sub); }
.pc-front .p-nfc svg { width: 2.6rem; height: 2.6rem; transform: rotate(90deg); }
.pc-front .p-chip { position: absolute; top: 8rem; left: 2.2rem; width: 4.2rem; height: 3.2rem; border-radius: 0.6rem; background: var(--f-chip); box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12); }
.pc-front .p-photo { position: absolute; right: 2.2rem; bottom: 2rem; width: 5.6rem; height: 5.6rem; }
.pc-front .p-meta { position: absolute; left: 2.2rem; right: 9.4rem; bottom: 2rem; }
.pc-front.no-photo .p-meta { right: 2.2rem; }
.pc-front .p-name { font-size: 2.1rem; }
.pc-front .p-role { font-size: 1.25rem; }
.pc-back { display: flex; align-items: center; gap: 2.2rem; height: 100%; padding: 2.2rem 2.4rem; }
.pc-back .p-qr { width: 11rem; height: 11rem; flex: 0 0 auto; }
.pc-back .p-copy { display: flex; flex-direction: column; gap: 0.8rem; min-width: 0; }
.pc-back .p-tap { width: 4.4rem; height: 4.4rem; }
.pc-back .p-tap svg { width: 2.2rem; height: 2.2rem; }
.pc-back .p-headline { font-size: 1.8rem; font-weight: 700; line-height: 1.15; }
.pc-back .p-small { font-size: 1.15rem; color: var(--f-sub); line-height: 1.4; }

/* Table stand */
.ps-front,
.ps-back { display: flex; flex-direction: column; align-items: center; height: 100%; padding: 2.4rem 2rem 2rem; text-align: center; }
.ps-front .p-logo { width: 7rem; height: 4.4rem; }
.ps-front .p-photo { width: 7rem; height: 7rem; margin-top: 1.6rem; }
.ps-front .p-name { max-width: 100%; margin-top: 1.4rem; font-size: 2rem; }
.ps-front .p-role { max-width: 100%; font-size: 1.2rem; }
.ps-front .p-tap { width: 6rem; height: 6rem; margin-top: auto; }
.ps-front .p-tap svg { width: 2.8rem; height: 2.8rem; }
.ps-front .p-cta { margin-top: 1.2rem; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--f-sub); }
.ps-back { justify-content: center; gap: 1.6rem; }
.ps-back .p-qr { width: 14rem; height: 14rem; }
.ps-back .p-headline { font-size: 1.8rem; font-weight: 700; }

/* Sticker tag */
.pt-front,
.pt-back { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; padding: 3rem; text-align: center; }
.pt-front .p-logo { width: 9rem; height: 6.4rem; }
.pt-front .p-photo { width: 9rem; height: 9rem; }
.pt-front .p-name { max-width: 16rem; margin-top: 1.2rem; font-size: 1.7rem; }
.pt-front .p-role { max-width: 15rem; font-size: 1.1rem; }
.pt-back .p-tap { width: 7.4rem; height: 7.4rem; }
.pt-back .p-tap svg { width: 3.4rem; height: 3.4rem; }
.pt-back .p-headline { margin-top: 1.6rem; font-size: 1.7rem; font-weight: 700; }
.pt-back .p-brand { margin-top: 0.8rem; }

/* Wristband */
.pb-front,
.pb-back { display: flex; align-items: center; gap: 1.4rem; height: 100%; padding: 0 3rem; }
.pb-front .p-logo { width: 4.6rem; height: 4.6rem; flex: 0 0 auto; }
.pb-front .p-photo { width: 5.4rem; height: 5.4rem; flex: 0 0 auto; }
.pb-front .p-meta { min-width: 0; flex: 1; }
.pb-front .p-name { font-size: 1.8rem; }
.pb-front .p-role { font-size: 1.1rem; }
.pb-back { justify-content: center; }
.pb-back .p-tap { width: 5rem; height: 5rem; flex: 0 0 auto; }
.pb-back .p-tap svg { width: 2.4rem; height: 2.4rem; }
.pb-back .p-headline { font-size: 1.7rem; font-weight: 700; }
.pb-front::before,
.pb-back::before {
  content: "";
  position: absolute;
  inset: 0.7rem 2.4rem;
  border: 1px dashed var(--f-line);
  border-radius: 99px;
  pointer-events: none;
}

/* Hint */
.studio__hint {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 7rem 0 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--t-muted);
}
.studio__hint-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: studio-pulse 2s ease-out infinite;
}

.studio__pop {
  animation: studio-pop 0.4s var(--studio-spring);
}

/* ---------- Motion ---------- */
@keyframes studio-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes studio-shadow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: 0.7; }
}
@keyframes studio-breathe {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
@keyframes studio-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}
@keyframes studio-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
}
@keyframes studio-pop {
  0% { transform: scale(0.6); }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
@keyframes studio-shine {
  0% { transform: translateX(-150%) skewX(-20deg); }
  55%, 100% { transform: translateX(420%) skewX(-20deg); }
}

@media (prefers-reduced-motion: reduce) {
  .studio__scene,
  .studio__shadow,
  .studio__glow,
  .studio__buy::after,
  .p-tap::before,
  .p-tap::after,
  .studio__hint-dot {
    animation: none;
  }
  .studio__flip,
  .studio__tilt {
    transition-duration: 0.01s;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .studio {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }
  .studio__stage {
    position: relative;
    top: 0;
    order: -1;
    min-height: 44rem;
    padding: 4rem 1.6rem 2.4rem;
  }
  .studio__hint {
    margin-top: 5.6rem;
  }
}
@media (max-width: 480px) {
  .studio__stage {
    border-radius: 2.4rem;
  }
  /* Scale the product down so it fits narrow phones */
  .studio__scene {
    zoom: 0.86;
  }
  .studio__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .studio__chip {
    flex-direction: row;
    justify-content: center;
    padding: 1.2rem;
  }
  .studio__uploads {
    grid-template-columns: minmax(0, 1fr);
  }
}
