/* GALADO Studio frontend, Brand v1.0 (pack/brand/tokens-v1).
   Light storefront surface: canvas grey, white cards, Ink text, one red
   commerce CTA per screen, pills only. Mobile-first (primary QA 390x844). */

.gstudio-root, .gd-sheet, .gd-tour, .gstudio-landing {
  --g-ink: #111111;
  --g-red: #E4002B;
  --g-canvas: #F5F5F3;
  --g-surface: #FFFFFF;
  --g-border: #ECECEA;
  --g-muted: #6B6B66;
  --g-faint: #9C9A93;
  --g-positive: #1E8E5A;
  --g-red-tint: #FFE9EC;
  --g-r-card: 20px;
  --g-r-inner: 16px;
  --g-r-small: 12px;
  --g-shadow: 0 4px 16px rgba(17, 17, 17, .06);
  --g-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --g-body: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  font-family: var(--g-body);
  color: var(--g-ink);
  background: var(--g-canvas);
  border-radius: var(--g-r-card);
  padding: clamp(16px, 4vw, 32px);
  max-width: 560px;
  margin: 0 auto;
  box-sizing: border-box;
}
.gstudio-root *, .gstudio-root *::before, .gstudio-root *::after { box-sizing: inherit; }

.gstudio-root h1, .gstudio-root h2 {
  font-family: var(--g-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 8px;
  text-wrap: balance;
}
.gstudio-root h1 { font-size: clamp(26px, 6vw, 34px); }
.gstudio-root h2 { font-size: clamp(19px, 4.5vw, 24px); }
.gstudio-sub { color: var(--g-muted); margin: 0 0 18px; font-size: 15px; line-height: 1.55; }
.gstudio-label {
  display: block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g-faint);
  margin: 18px 0 8px;
}

/* Buttons: pills. One red primary per screen; ink standard; ghost secondary. */
.gstudio-btn {
  display: inline-block;
  font: 600 16px/1 var(--g-body);
  border-radius: 999px;
  padding: 15px 28px;
  border: 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), opacity 200ms;
  width: 100%;
}
.gstudio-btn:hover { transform: translateY(-1px); }
.gstudio-btn:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }
.gstudio-btn[disabled] { opacity: .4; pointer-events: none; }
.gstudio-btn--red { background: var(--g-red); color: #fff; }
.gstudio-btn--ink { background: var(--g-ink); color: #fff; }
.gstudio-btn--ghost { background: transparent; color: var(--g-ink); border: 1.5px solid var(--g-ink); padding: 14px 27px; }

.gstudio-card {
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  border-radius: var(--g-r-inner);
  padding: 14px;
  box-shadow: var(--g-shadow);
}

/* Step dots */
.gstudio-steps { display: flex; gap: 6px; margin: 0 0 16px; }
.gstudio-steps i { height: 4px; flex: 1; border-radius: 999px; background: var(--g-border); }
.gstudio-steps i.on { background: var(--g-ink); }

/* Model picker */
.gstudio-models { display: grid; gap: 10px; max-height: 46vh; overflow-y: auto; padding: 2px; }
.gstudio-model {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; padding: 14px 16px; cursor: pointer;
  border: 1.5px solid var(--g-border); border-radius: var(--g-r-small);
  background: var(--g-surface); width: 100%; text-align: left; font-family: var(--g-body);
}
.gstudio-model:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }
.gstudio-model.sel { border-color: var(--g-ink); font-weight: 600; }
.gstudio-model.sel::after { content: "✓"; color: var(--g-positive); font-weight: 700; }

/* Style cards */
.gstudio-styles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 400px) { .gstudio-styles { grid-template-columns: 1fr; } }
.gstudio-style {
  padding: 0; overflow: hidden; cursor: pointer; text-align: left;
  border: 1.5px solid var(--g-border); border-radius: var(--g-r-inner);
  background: var(--g-surface); font-family: var(--g-body);
}
.gstudio-style:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }
.gstudio-style.sel { border-color: var(--g-ink); box-shadow: var(--g-shadow); }
.gstudio-style .art { height: 110px; background: var(--g-canvas); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.gstudio-style .pad { padding: 10px 12px 12px; }
.gstudio-style .name { font-weight: 700; font-size: 14.5px; margin: 0 0 2px; color: var(--g-ink); }
.gstudio-style .blurb { font-size: 12px; color: var(--g-muted); margin: 0; line-height: 1.45; }

/* Inputs */
.gstudio-upload {
  border: 1.5px dashed #C9C7C0; border-radius: var(--g-r-inner);
  background: #FBFBFA; text-align: center; padding: 22px 14px;
  cursor: pointer; color: var(--g-muted); font-size: 13.5px; width: 100%;
  font-family: var(--g-body);
}
.gstudio-upload strong { color: var(--g-ink); display: block; font-size: 15px; margin-bottom: 2px; }
.gstudio-upload.has-file { border-style: solid; border-color: var(--g-positive); }
.gstudio-upload img { max-height: 120px; border-radius: 8px; margin-bottom: 8px; }
.gstudio-input, .gstudio-select {
  width: 100%; border: 1px solid var(--g-border); background: var(--g-surface);
  border-radius: var(--g-r-small); padding: 13px 14px; font: 400 15px/1.4 var(--g-body);
  color: var(--g-ink);
}
.gstudio-input:focus, .gstudio-select:focus { outline: 2px solid var(--g-ink); outline-offset: 1px; border-color: var(--g-ink); }
.gstudio-check { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--g-muted); line-height: 1.5; margin: 14px 0 4px; }
.gstudio-check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--g-ink); flex: none; }
.gstudio-note { font-size: 11.5px; color: var(--g-faint); margin: 6px 0 0; }
.gstudio-colours { display: flex; gap: 10px; }
.gstudio-colour {
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 2px solid var(--g-border);
  padding: 0;
}
.gstudio-colour.sel { border-color: var(--g-ink); box-shadow: 0 0 0 2px #fff inset; }
.gstudio-colour:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }

/* Generating */
.gstudio-spin {
  width: 46px; height: 46px; border-radius: 50%; margin: 34px auto 18px;
  border: 4px solid var(--g-border); border-top-color: var(--g-red);
  animation: gstudio-rot 1s linear infinite;
}
@keyframes gstudio-rot { to { transform: rotate(360deg); } }
.gstudio-center { text-align: center; }

/* Results */
.gstudio-renders { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gstudio-render { position: relative; cursor: pointer; border: 2px solid transparent; border-radius: var(--g-r-inner); overflow: hidden; padding: 0; background: var(--g-surface); }
.gstudio-render img { width: 100%; display: block; }
.gstudio-render.sel { border-color: var(--g-ink); }
.gstudio-render:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }
.gstudio-render .flag {
  position: absolute; left: 8px; bottom: 8px; background: rgba(17,17,17,.78); color: #fff;
  font-size: 10px; font-weight: 600; padding: 5px 9px; border-radius: 999px;
}
.gstudio-blockedcard {
  display: flex; align-items: center; justify-content: center; text-align: center;
  aspect-ratio: 2 / 3; color: var(--g-muted); font-size: 12px; padding: 12px;
  background: var(--g-canvas); border-radius: var(--g-r-inner); border: 1px solid var(--g-border);
}
.gstudio-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gstudio-chip {
  font: 600 13px/1 var(--g-body); border: 1.5px solid var(--g-ink); color: var(--g-ink);
  border-radius: 999px; padding: 10px 14px; background: transparent; cursor: pointer;
}
.gstudio-chip:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }
.gstudio-chip[disabled] { opacity: .35; pointer-events: none; }

/* Case preview (fallback CSS case; a real mock frame replaces it when
   public/mocks/<model>.png exists) */
.gstudio-case {
  width: min(62%, 220px); aspect-ratio: 83 / 169; margin: 6px auto;
  border-radius: 26px; overflow: hidden; position: relative;
  box-shadow: 0 10px 24px rgba(17,17,17,.22), 0 0 0 3px #DEDCD5;
  background: #EDEBE6;
}
.gstudio-case img.design { width: 100%; height: 100%; object-fit: contain; display: block; }
.gstudio-case .cam {
  position: absolute; top: 4.5%; left: 6%; width: 38%; aspect-ratio: 1 / 1.05;
  background: rgba(17,17,17,.92); border-radius: 22%;
  display: grid; grid-template-columns: 1fr 1fr; padding: 8%; gap: 16%;
}
.gstudio-case .cam i { border: 3px solid #3d3d39; border-radius: 50%; display: block; }
.gstudio-case .lettername { position: absolute; left: 0; right: 0; bottom: 7%; text-align: center; font-size: 24px; line-height: 1; }
.gstudio-mockframe { width: min(88%, 330px); margin: 0 auto; display: block; border-radius: var(--g-r-inner); }

/* Size slider (Cosy to Full) */
.gstudio-sizer { display: flex; align-items: center; gap: 12px; margin: 10px auto 4px; max-width: 320px; }
.gstudio-range { flex: 1; accent-color: var(--g-ink); height: 28px; }
.gstudio-range:focus-visible { outline: 2px solid var(--g-ink); outline-offset: 2px; }
.gstudio-sizable { transform-origin: center center; transition: transform 120ms ease-out; }
@media (prefers-reduced-motion: reduce) { .gstudio-sizable { transition: none; } }

.gstudio-price { font-family: var(--g-display); font-weight: 800; font-size: 24px; letter-spacing: -0.01em; }
.gstudio-perks { font-size: 12px; color: var(--g-muted); margin: 2px 0 0; }

.gstudio-ok {
  width: 48px; height: 48px; border-radius: 50%; background: var(--g-positive); color: #fff;
  font-size: 24px; line-height: 48px; text-align: center; margin: 26px auto 14px;
}

.gstudio-stack { display: grid; gap: 12px; }
.gstudio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gstudio-error {
  background: var(--g-red-tint); border-radius: var(--g-r-small);
  color: var(--g-ink); font-size: 13.5px; line-height: 1.5; padding: 12px 14px; margin: 0 0 12px;
}
.gstudio-back {
  background: none; border: 0; color: var(--g-muted); font: 500 13px var(--g-body);
  cursor: pointer; padding: 6px 0; text-decoration: underline;
}
.gstudio-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .gstudio-btn, .gstudio-btn:hover { transition: none; transform: none; }
  .gstudio-spin { animation-duration: 2.5s; }
}

/* Page furniture on /studio/ (this stylesheet only loads there):
   breathe above and below the designer, and hide the white payments band
   like every GALADO collection landing (dark nav + copyright stay). */
.gstudio-root { margin-top: clamp(32px, 6vw, 64px); margin-bottom: clamp(40px, 7vw, 80px); }
#footer .footer-widgets.footer-1 { display: none !important; }

/* ---- Designer mode (spec Addendum D) ---- */
.gd-stage { position: relative; margin: 12px auto 0; }
.gd-stage--plain { background: #F5F5F3; border-radius: 20px; }
.gd-mock { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.gd-plate { position: absolute; overflow: hidden; border-radius: 6px; }
.gd-plate canvas { touch-action: none; }
.gd-warn { min-height: 20px; margin: 8px 2px 0; font-size: 13px; color: #6B6B66; }
.gd-warn--hard { color: #E4002B; font-weight: 600; }
.gd-selbar { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; }
.gd-tool { border: 1.5px solid #111111; background: #fff; border-radius: 999px; padding: 7px 14px; font: 600 13px Inter, Arial, sans-serif; cursor: pointer; }
.gd-tool--danger { border-color: #E4002B; color: #E4002B; }
.gd-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.gd-toolbar .gd-add { flex: 1 1 44%; }
.gd-bgrow { display: flex; align-items: center; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.gd-swatch { width: 34px; height: 34px; min-width: 34px; min-height: 34px; max-width: 34px; max-height: 34px; flex: 0 0 34px; box-sizing: border-box; border-radius: 50%; border: 2px solid rgba(17,17,17,0.18); cursor: pointer; padding: 0; line-height: 0; appearance: none; -webkit-appearance: none; }
.gd-swatch.sel { border-color: #111111; box-shadow: 0 0 0 2.5px #fff inset; }
.gd-swatch--clear { background:
  linear-gradient(45deg, #eee 25%, transparent 25%, transparent 75%, #eee 75%),
  linear-gradient(45deg, #eee 25%, #fff 25%, #fff 75%, #eee 75%);
  background-size: 10px 10px; background-position: 0 0, 5px 5px; }
.gd-turnstile { margin-top: 12px; }
.gd-sheetwrap { position: fixed; inset: 0; background: rgba(17,17,17,0.45); z-index: 9999; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.gd-sheet { background: #fff; border-radius: 20px; padding: 18px 18px 22px; width: calc(100% - 24px); max-width: 430px; margin: 10vh auto 24px; box-shadow: 0 18px 50px rgba(17,17,17,0.25); }
.gd-sheethead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.gd-sheet h3 { margin: 0; font-family: Archivo, Arial, sans-serif; }
.gd-close { display: flex; align-items: center; justify-content: center; border: 0; background: #F5F5F3; border-radius: 50%; width: 36px; height: 36px; min-height: 0; min-width: 0; padding: 0; font-size: 15px; line-height: 1; cursor: pointer; flex: 0 0 36px; }
.gd-sheet .gstudio-btn { width: 100%; margin-top: 14px; }
.gd-sheet .gstudio-input { margin-top: 6px; width: 100%; box-sizing: border-box; }
.gd-sheet select.gstudio-input { height: auto; min-height: 0; padding: 13px 42px 13px 14px; font-size: 16px; line-height: 1.35; -webkit-appearance: none; appearance: none; background-color: #fff; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.gd-file { display: block; width: 100%; margin: 4px 0 10px; }
.gd-rights { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: #6B6B66; margin: 8px 0; }
.gd-scenedump { background: #F5F5F3; border-radius: 12px; padding: 12px; font-size: 11px; overflow-x: auto; text-align: left; max-height: 260px; }

.gd-fontpreview { margin-top: 10px; padding: 12px 14px; border-radius: 12px; background: #F5F5F3; font-size: 30px; line-height: 1.2; text-align: center; min-height: 44px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.gd-packlabel { margin: 12px 0 6px; font: 700 13px Inter, Arial, sans-serif; letter-spacing: .02em; }
.gd-stickergrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gd-sticker { border: 1.5px solid #ECECEA; border-radius: 12px; padding: 8px; background: #fff; cursor: pointer; min-height: 0; }
.gd-sticker img { width: 100%; height: auto; display: block; }
.gd-sticker:active { border-color: #111111; }
.gd-cropbox { position: relative; touch-action: none; user-select: none; -webkit-user-select: none; margin-top: 8px; }
.gd-cropbox img { display: block; width: 100%; height: auto; border-radius: 10px; pointer-events: none; }
.gd-croprect { position: absolute; border: 2.5px solid #E4002B; border-radius: 4px; cursor: move; box-shadow: 0 0 0 9999px rgba(17,17,17,0.45); }
.gd-crophd { position: absolute; width: 22px; height: 22px; margin: -11px; border-radius: 50%; background: #fff; border: 2.5px solid #E4002B; }
.gd-crophd.nw { left: 0; top: 0; } .gd-crophd.ne { left: 100%; top: 0; }
.gd-crophd.sw { left: 0; top: 100%; } .gd-crophd.se { left: 100%; top: 100%; }
.gd-toolbar .gd-add { white-space: nowrap; padding-left: 8px; padding-right: 8px; font-size: 14px; }
.gd-progresswrap { height: 6px; border-radius: 999px; background: #ECECEA; overflow: hidden; margin: 6px 2px 0; }
.gd-progressbar { height: 100%; width: 34%; border-radius: 999px; background: #111111; animation: gd-sweep 1.1s ease-in-out infinite; }
@keyframes gd-sweep { 0% { margin-left: -34%; } 100% { margin-left: 100%; } }
.gd-erasecanvas { display: block; width: 100%; height: auto; border-radius: 10px; margin-top: 4px;
  background: repeating-conic-gradient(#ECECEA 0% 25%, #FFFFFF 0% 50%) 0 0 / 18px 18px; cursor: crosshair; }
.gd-tool.sel { background: #111111; color: #fff; }
@media (prefers-reduced-motion: reduce) { .gd-progressbar { animation: none; width: 100%; opacity: .35; } }
.gd-multitoggle { display: block; margin: 10px auto 0; border: 1.5px dashed #9C9A93; background: transparent; color: #6B6B66; border-radius: 999px; padding: 9px 18px; font: 600 13px Inter, Arial, sans-serif; cursor: pointer; }
.gd-multitoggle.on { border-style: solid; border-color: #111111; color: #111111; background: #fff; }

.gd-eraseview { width: 100%; height: 320px; overflow: hidden; border-radius: 12px; background:
  repeating-conic-gradient(#E8E6E1 0% 25%, #F5F5F3 0% 50%) 0 0 / 20px 20px; position: relative; }
.gd-eraseview .gd-erasecanvas { position: absolute; left: 0; top: 0; max-width: none; }
.gd-sliderrow { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; align-items: center; margin-top: 10px; }
.gstudio-range { width: 100%; accent-color: #E4002B; height: 28px; }

.gd-confirmimg { display: block; width: 100%; max-width: 300px; margin: 0 auto 6px; border-radius: 14px;
  background: repeating-conic-gradient(#E8E6E1 0% 25%, #F5F5F3 0% 50%) 0 0 / 18px 18px; padding: 8px; box-sizing: border-box; }

.gd-pillrow { display: flex; gap: 8px; justify-content: center; }
.gd-tour { position: fixed; inset: 0; background: rgba(17,17,17,0.45); z-index: 99999;
  display: flex; align-items: center; justify-content: center; padding: 24px; }
.gd-tourcard { background: #FFFFFF; border-radius: 20px; padding: 22px; max-width: 340px; width: 100%;
  box-shadow: 0 12px 40px rgba(17,17,17,0.25); text-align: center; font-family: 'Inter', -apple-system, sans-serif; }
.gd-tourcard h3 { margin: 6px 0 8px; font-size: 19px; color: #111111; }
.gd-tourcard p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.55; color: #6B6B66; }
.gd-tourdots { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #9C9A93; }

/* Tour step animations: simple looped gesture illustrations. */
.gd-touranim { position: relative; height: 96px; margin: 10px auto 6px; width: 180px; }
.gd-touranim .sq { position: absolute; width: 44px; height: 44px; border-radius: 10px; background: #111111; }
.gd-touranim .sq.alt { background: #E4002B; }
.gd-touranim .finger { position: absolute; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(17,17,17,0.35); border: 2px solid #FFFFFF; box-shadow: 0 1px 4px rgba(17,17,17,0.3); }
.gd-touranim--1 .sq { left: 68px; top: 26px; animation: gdT1 3s ease-in-out infinite; }
.gd-touranim--1 .sq::after { content: ''; position: absolute; inset: -7px; border: 1.5px dashed #9C9A93; border-radius: 12px; }
@keyframes gdT1 {
  0%, 100% { transform: translateX(-26px) scale(1) rotate(0deg); }
  35% { transform: translateX(26px) scale(1) rotate(0deg); }
  60% { transform: translateX(0) scale(1.28) rotate(0deg); }
  85% { transform: translateX(0) scale(1) rotate(18deg); }
}
.gd-touranim--2 .sq.back { left: 58px; top: 34px; background: #9C9A93; }
.gd-touranim--2 .sq.front { left: 78px; top: 22px; animation: gdT2 2.8s ease-in-out infinite; }
.gd-touranim--2 .finger { left: 92px; top: 34px; animation: gdT2f 2.8s ease-in-out infinite; }
@keyframes gdT2 {
  0%, 20% { transform: translateY(0); z-index: 2; opacity: 1; }
  45%, 70% { transform: translateY(30px); z-index: 0; opacity: 0.55; }
  95%, 100% { transform: translateY(0); z-index: 2; opacity: 1; }
}
@keyframes gdT2f {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  12% { transform: translateY(0) scale(0.8); opacity: 1; }
  45%, 70% { transform: translateY(30px) scale(0.8); opacity: 1; }
  90%, 100% { transform: translateY(30px) scale(1); opacity: 0; }
}
.gd-touranim--3 .sq.one { left: 40px; top: 30px; animation: gdT3a 3s ease-in-out infinite; }
.gd-touranim--3 .sq.two { left: 96px; top: 30px; animation: gdT3b 3s ease-in-out infinite; }
@keyframes gdT3a {
  0%, 15% { box-shadow: none; transform: translateX(0); }
  30%, 55% { box-shadow: 0 0 0 4px rgba(228,0,43,0.55); transform: translateX(0); }
  75%, 90% { box-shadow: 0 0 0 4px rgba(228,0,43,0.55); transform: translateX(26px); }
  100% { box-shadow: none; transform: translateX(0); }
}
@keyframes gdT3b {
  0%, 25% { box-shadow: none; transform: translateX(0); }
  40%, 55% { box-shadow: 0 0 0 4px rgba(228,0,43,0.55); transform: translateX(0); }
  75%, 90% { box-shadow: 0 0 0 4px rgba(228,0,43,0.55); transform: translateX(26px); }
  100% { box-shadow: none; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) { .gd-touranim * { animation: none !important; } }

/* Launch landing (above the designer). Photography-led, generous air. */
.gstudio-landing { max-width: 560px; margin: 0 auto 20px; padding: clamp(16px, 4vw, 32px);
  font-family: var(--g-body); color: var(--g-ink); box-sizing: border-box; }
.gstudio-landing h1 { font-family: var(--g-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(28px, 7vw, 38px); line-height: 1.1; margin: 0 0 10px; text-wrap: balance; }
.gsl-sub { color: var(--g-muted); font-size: 15.5px; line-height: 1.6; margin: 0 0 18px; }
.gsl-shots { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 0 18px; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
.gsl-shots img { width: 78%; max-width: 320px; flex: 0 0 auto; border-radius: 18px;
  scroll-snap-align: center; box-shadow: var(--g-shadow); }
.gsl-cta { display: block; max-width: 340px; margin: 0 auto; }
.gsl-price { text-align: center; color: var(--g-muted); font-size: 13px; margin: 12px 0 0; }
.gsl-steps { display: grid; gap: 12px; margin: 26px 0 0; }
.gsl-step { background: var(--g-surface); border: 1px solid var(--g-border); border-radius: var(--g-r-inner);
  padding: 14px 16px; display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; }
.gsl-step span { grid-row: 1 / span 2; width: 34px; height: 34px; border-radius: 50%; background: var(--g-ink);
  color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.gsl-step strong { font-size: 15px; }
.gsl-step em { font-style: normal; color: var(--g-muted); font-size: 13px; line-height: 1.45; }
.gsl-library { margin: 26px 0 6px; text-align: center; }
.gsl-libline { font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--g-faint); margin: 0 0 10px; }
.gsl-thumbs { display: flex; gap: 10px; justify-content: flex-start; overflow-x: auto; padding: 4px 2px 8px; }
.gsl-thumbs img { width: 52px; height: 52px; object-fit: contain; background: var(--g-surface);
  border: 1px solid var(--g-border); border-radius: 12px; padding: 5px; flex: 0 0 auto; }
@media (min-width: 480px) { .gsl-shots img { width: 46%; } }

/* Designer mount: full-height so the site footer stays below the fold and
   the "Start designing" anchor lands cleanly (round 16). scroll-margin-top
   keeps a hair of breathing room above the target. */
#galado-studio { min-height: 100vh; scroll-margin-top: 10px; }
/* Short selection steps (brand / model / colour) sit centred in the space. */
.gd-screen { min-height: 74vh; display: flex; flex-direction: column; justify-content: center; }
.gd-screen .gstudio-models { max-height: none; }
