@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;850;900&family=Alfa+Slab+One&display=swap');

:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --surface-tint: #f1f6ff;
  --ink: #172033;
  --muted: #64748b;
  --quiet: #8390a4;
  --line: #d7dee9;
  --line-strong: #aebbd0;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #06b6d4;
  --green: #16a34a;
  --amber: #d97706;
  --shadow: 0 22px 70px rgba(27, 39, 65, 0.14);
  --shadow-soft: 0 12px 34px rgba(27, 39, 65, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  align-items: center;
  background: #050b14;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  isolation: isolate;
  justify-content: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  padding: 12px 0 20px;
  position: relative;
  transform: translateZ(0);
}

.creator-tag {
  position: fixed;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  z-index: 100;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.main-page-title {
  color: #ffffff;
  font-family: "Alfa Slab One", serif;
  text-rendering: optimizeLegibility;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.3;
  padding: 10px 0;
  margin-top: -40px;
  margin-bottom: 22px;
  transform: translateY(20px);
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 25%, #fbbf24 50%, #2dd4bf 75%, #3b82f6 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
  z-index: 1;
  animation: gradientFlow 4s ease-in-out infinite;
  will-change: background-position;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.title-accent {
  font-size: 1.18em;
  display: inline-block;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.9; }
}

body::before {
  background-image: url("assets/background.jpg");
  background-position: center 48%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: -20px;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  transform-origin: center;
  z-index: -1;
  animation: bgDrift 20s alternate ease-in-out infinite;
  will-change: transform;
}

@keyframes bgDrift {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.1) translate(-10px, 10px); }
}

@media (min-aspect-ratio: 19 / 10) {
  body::before {
    background-position: center 52%;
  }
}

@media (max-aspect-ratio: 4 / 3) {
  body::before {
    background-position: center center;
  }
}

button,
input {
  font: inherit;
}

button svg,
.file-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.app-shell {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255, 255, 255, 0.5);
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.2),
    0 12px 28px rgba(0, 0, 0, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  display: flex;
  flex-direction: column;
  height: min(760px, calc(100vh - 160px));
  max-width: 1220px;
  min-height: 0;
  overflow: visible;
  padding: 12px;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-box-reflect: below 12px linear-gradient(
    transparent 48%
  );
  will-change: transform, backdrop-filter;
  transform: translateZ(0);
  contain: layout;
  -webkit-tap-highlight-color: transparent;
}

.app-shell::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.92) 0%, rgba(6, 182, 212, 0.92) 25%, rgba(22, 163, 74, 0.92) 50%, rgba(6, 182, 212, 0.92) 75%, rgba(37, 99, 235, 0.92) 100%);
  background-size: 200% 200%;
  animation: gradientFlow 5.2s linear infinite;
  border-radius: inherit;
  content: "";
  position: absolute;
  inset: -2.5px;
  padding: 2.5px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.28));
  will-change: background-position;
}

.app-shell::after {
  background:
    radial-gradient(ellipse at center, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.06) 42%, transparent 72%),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, 0.32) 27px, transparent 28px);
  content: "";
  filter: blur(7px);
  height: 62px;
  left: 8%;
  opacity: 0.76;
  pointer-events: none;
  position: absolute;
  right: 8%;
  top: calc(100% + 6px);
  transform: perspective(520px) rotateX(58deg) scaleX(0.92);
  transform-origin: center top;
  z-index: -1;
}

.topbar {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(248, 251, 255, 0.1));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px 10px 0 0;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  flex: 0 0 auto;
  margin: -2px -2px 0;
  padding: 10px 16px 12px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  background: linear-gradient(145deg, #eaf2ff, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  width: 38px;
}

.brand-mark img {
  display: block;
  height: 100%;
  width: 100%;
}

.eyebrow,
h1,
h2,
p {
  margin-top: 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
}

h1 {
  color: #111827;
  font-size: clamp(1.28rem, 2vw, 1.82rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 0;
  text-shadow: none;
}

.status-pill {
  align-items: center;
  background: #eef6ff;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  color: #1e40af;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 8px;
  margin: 0;
  padding: 7px 11px;
}

.status-pill::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 8px;
  opacity: 0.75;
  width: 8px;
}

.status-pill.processing::before {
  animation: pulse-soft 1s infinite alternate;
}

.logo-strip {
  background: rgba(248, 251, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  flex: 0 0 auto;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 -12px;
  padding: 10px 14px;
}

.logo-strip div {
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: var(--ink);
  cursor: default;
  display: flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 12px;
  justify-content: center;
  padding: 10px 18px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s, box-shadow 0.3s;
}

/* Color variations for the four blocks */
.logo-strip div:nth-child(1) {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  color: #1e40af;
}
.logo-strip div:nth-child(2) {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  color: #166534;
}
.logo-strip div:nth-child(3) {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  color: #6b21a8;
}
.logo-strip div:nth-child(4) {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
  color: #9a3412;
}

.logo-strip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logo-strip img {
  display: block;
  flex: 0 0 22px;
  height: 22px;
  width: 22px;
}

.workspace {
  display: grid;
  flex: 1 1 auto;
  gap: 12px;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  margin-top: 10px;
  min-height: 0;
}

.toolbar {
  align-content: start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(246, 249, 254, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 12px;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 14px;
  contain: content;
  overflow-y: auto;
}

.notice-box {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 4px;
}

.notice-box p {
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.notice-box ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

input[type="text"],
input[type="email"] {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.85rem;
  padding: 8px 10px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
  background: rgba(255, 255, 255, 0.6);
}

input {
  -webkit-appearance: none;
  appearance: none;
}



.panel-title {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 3px;
  padding-bottom: 7px;
}

.panel-title span,
.range-scale,
.spec-strip span,
.card-heading span {
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-title strong {
  color: #111827;
  font-size: 0.94rem;
  text-shadow: none;
}

.file-picker {
  align-items: center;
  background: linear-gradient(135deg, rgba(247, 251, 255, 0.3), rgba(255, 255, 255, 0.3));
  border: 2px dashed var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 9px;
  min-height: 60px;
  overflow: hidden;
  padding: 9px;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.file-picker::after {
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  content: "";
  inset: 12px auto 12px 0;
  position: absolute;
  width: 3px;
}

.file-picker:hover,
.file-picker.is-dragging {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.file-picker input {
  display: none;
}

.file-picker strong {
  color: #111827;
  display: block;
  margin-bottom: 3px;
  position: relative;
}

.file-picker small {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  max-width: 15.5rem;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-icon {
  align-items: center;
  background: #eaf2ff;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  position: relative;
  width: 34px;
}

.file-icon svg {
  height: 20px;
  width: 20px;
}

.control-group {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 9px;
}

.control-group label {
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

output {
  background: #eef6ff;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  color: var(--blue-dark);
  font-weight: 850;
  min-width: 46px;
  padding: 3px 8px;
  text-align: center;
}

input[type="range"] {
  accent-color: var(--blue);
  width: 100%;
}

.range-scale {
  display: flex;
  justify-content: space-between;
}

.buttons {
  display: grid;
  gap: 7px;
}

button {
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  gap: 9px;
  justify-content: center;
  font-size: 0.9rem;
  min-height: 36px;
  padding: 0 12px;
  text-shadow: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

button svg {
  height: 16px;
  width: 16px;
}

button:disabled {
  cursor: not-allowed;
  color: #94a3b8;
  border-color: var(--line);
}

button:hover:not(:disabled) {
  border-color: #93c5fd;
}

.primary-button {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.primary-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 2.5s infinite;
}

.primary-button:hover:not(:disabled) {
  /* No hover feedback */
}

.primary-button:active:not(:disabled) {
  transform: scale(0.97);
}

#downloadButton:not(:disabled) {
  border-color: #bbf7d0;
  color: var(--green);
}

.spec-strip {
  border-top: 1px solid var(--line-strong);
  display: grid;
  gap: 6px;
  margin-top: 2px;
  padding-top: 8px;
}

.spec-strip div {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-width: 0;
}

.spec-strip strong {
  color: #1f2937;
  font-size: 0.82rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-panel {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  min-width: 0;
  overflow-y: auto;
}

.preview-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.preview-card::before {
  background: linear-gradient(90deg, var(--blue), transparent 46%);
  content: "";
  height: 3px;
  left: 14px;
  position: absolute;
  right: 14px;
  top: 0;
}

.preview-card.is-result::before {
  background: linear-gradient(90deg, var(--green), var(--cyan), transparent 52%);
}

.card-heading {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-width: 0;
  padding-top: 2px;
  position: relative;
}

.card-heading h2 {
  color: #111827;
  font-size: 0.9rem;
  margin-bottom: 0;
  text-shadow: none;
}

.preview-box {
  align-items: center;
  background-color: #f4f7fb;
  background-image: radial-gradient(rgba(148, 163, 184, 0.4) 1px, transparent 1px);
  background-size: 16px 16px;
  background-position: 0 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  height: auto;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  transition: transform 0.2s, border-color 0.2s;
}

.preview-box:hover {
  border-color: var(--line-strong);
}

.preview-box.has-image {
  background: #f8fafc;
  border-color: #64748b;
}

.preview-box::after {
  border: 1px solid rgba(71, 85, 105, 0.32);
  border-radius: 8px;
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.store-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 8px 0;
  justify-content: center;
}

.single-product-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex: 1;
}

.product-item {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 40px;
  position: relative;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  max-width: 340px;
}

.product-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-item.featured {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
  border-color: rgba(37, 99, 235, 0.4);
}

.product-tag {
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.product-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
}

.product-item h3 {
  font-size: 1.25rem;
  margin: 0 0 6px 0;
  color: var(--ink);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 16px 0;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 20px;
}

.buy-btn {
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  padding: 10px 24px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

.product-item:hover .buy-btn {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.buy-btn:active {
  transform: scale(0.96);
}

.product-item.featured {
  animation: pulse-soft 3s infinite ease-in-out;
}

.store-footer {
  margin-top: 14px;
  font-size: 0.7rem;
  color: var(--quiet);
  text-align: center;
  font-style: italic;
}

.preview-box img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.preview-box span {
  color: var(--muted);
  padding: 14px;
  position: relative;
  text-align: center;
  text-shadow: none;
  z-index: 1;
}


.preview-box.is-loading::after {
  animation: spin 0.9s linear infinite;
  border: 3px solid rgba(37, 99, 235, 0.16);
  border-radius: 50%;
  border-top-color: var(--blue);
  content: "";
  height: 38px;
  inset: auto;
  position: absolute;
  width: 38px;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toolbar {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    padding: 12px;
  }

  .panel-title,
  .buttons,
  .spec-strip {
    grid-column: 1 / -1;
  }

  .buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .preview-box {
    min-height: 190px;
  }
}

@media (max-width: 720px) {
  body {
    height: auto;
    min-height: 100dvh;
    overflow-y: auto;
    padding: 10px 10px 40px;
    justify-content: flex-start;
  }

  .main-page-title {
    font-size: 2rem;
    margin-bottom: 8px;
    padding: 15px 0 5px;
    -webkit-text-stroke: 1px #ffffff;
  }

  .app-shell {
    border-radius: 14px;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 12px;
    -webkit-box-reflect: none;
    margin-bottom: 0;
    backdrop-filter: blur(20px) saturate(200%);
  }

  .topbar {
    align-items: flex-start;
    display: grid;
  }

  .brand-mark {
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }

  .status-pill {
    width: fit-content;
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 -14px;
    padding: 12px 14px;
  }

  .toolbar,
  .buttons,
  .preview-panel {
    grid-template-columns: 1fr;
  }

  .preview-box {
    min-height: 240px;
  }

  .product-item {
    padding: 20px 15px;
  }

  .product-price {
    font-size: 1.8rem;
  }

  .logo-strip div {
    padding: 8px 10px;
    font-size: 0.8rem;
    gap: 8px;
  }
}

/* Mascots */
.mascot {
  position: absolute;
  pointer-events: none;
  z-index: 20;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  transform: translate3d(0, 0, 0.1px);
  object-fit: contain;
  object-position: center bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

.mascot-left {
  right: 100%;
  bottom: -12px;
  width: calc(50vw - 50%);
  height: 100%;
}

.mascot-right {
  left: 100%;
  bottom: -12px;
  width: calc(50vw - 50%);
  height: 100%;
}



