:root {
  --bg: #f5fbff;
  --bg-soft: #edf7ff;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --line: rgba(126, 174, 214, 0.2);
  --line-strong: rgba(100, 156, 205, 0.4);
  --text: #23425f;
  --text-soft: #6787a7;
  --primary: #7bc8ff;
  --primary-strong: #49b2ff;
  --accent: #ffb7ce;
  --hot: #ff8fb5;
  --success: #5fb8a3;
  --danger: #ff7f7f;
  --shadow: 0 20px 40px rgba(112, 164, 205, 0.12);
  --shadow-soft: 0 10px 24px rgba(112, 164, 205, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --page-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "M PLUS Rounded 1c", "Hiragino Sans GB", "Yu Gothic", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(126, 200, 255, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 183, 206, 0.18), transparent 22%),
    linear-gradient(180deg, #fafdff 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(123, 200, 255, 0.14) 1px, transparent 1px),
    radial-gradient(rgba(255, 183, 206, 0.1) 1px, transparent 1px);
  background-position: 0 0, 18px 18px;
  background-size: 36px 36px;
  opacity: 0.6;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(var(--page-width), calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.hero-card,
.panel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  margin-bottom: 18px;
}

.hero-card::after,
.panel-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  pointer-events: none;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 200, 255, 0.18), transparent 70%);
}

.hero-copy {
  display: grid;
  gap: 8px;
}

.hero-copy h1,
.section-heading h2,
.section-heading h3 {
  margin: 0;
  letter-spacing: 0.02em;
}

.hero-copy p,
.section-note,
.submit-hint,
.form-message,
.result-summary p,
.field-group span,
.switch-card small {
  color: var(--text-soft);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(123, 200, 255, 0.15);
  color: var(--primary-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: grid;
  gap: 12px;
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-button.is-active {
  border-color: rgba(73, 178, 255, 0.5);
  background: rgba(227, 244, 255, 0.98);
  color: var(--primary-strong);
}

.hero-stat {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(235, 247, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.hero-stat strong {
  font-size: 1.7rem;
  color: var(--primary-strong);
}

.secondary-link,
.ghost-button,
.upload-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(73, 178, 255, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.compact-heading {
  margin-bottom: 14px;
}

.panel-card {
  padding: 18px;
}

.access-shell {
  padding-top: 28px;
}

.hot-strip,
.sku-grid,
.admin-sku-grid {
  display: grid;
  gap: 14px;
}

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

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

.selection-panel {
  display: grid;
  gap: 18px;
}

.selection-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(123, 200, 255, 0.16);
  color: var(--primary-strong);
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.selection-frame {
  padding: 14px;
  border-radius: calc(var(--radius-xl) - 6px);
  border: 1px solid rgba(123, 200, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(228, 245, 255, 0.68)),
    linear-gradient(180deg, rgba(123, 200, 255, 0.04), rgba(255, 183, 206, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
}

.selection-slot {
  display: block;
  width: 100%;
  position: relative;
  aspect-ratio: 1 / 1;
  appearance: none;
  -webkit-appearance: none;
  min-height: 0;
  height: auto;
  padding: 0;
  border: 1px dashed rgba(103, 135, 167, 0.35);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  overflow: hidden;
  isolation: isolate;
}

.selection-slot:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 178, 255, 0.4);
}

.selection-slot.filled {
  border-style: solid;
  border-color: rgba(73, 178, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(234, 247, 255, 0.18));
  animation: slot-pop 320ms ease;
}

.selection-slot.empty {
  color: rgba(103, 135, 167, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(236, 247, 255, 0.9)),
    rgba(255, 255, 255, 0.46);
}

.slot-index {
  position: absolute;
  inset: 8px auto auto 8px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(103, 135, 167, 0.7);
}

.slot-remove {
  position: absolute;
  inset: 8px 8px auto auto;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 143, 181, 0.14);
  color: var(--hot);
  font-weight: 800;
}

.slot-content {
  position: absolute;
  inset: 0;
  display: block;
}

.slot-content img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.slot-content span {
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.3;
}

.selection-slot.empty .slot-content {
  display: grid;
  place-items: center;
  padding: 16px;
}

.selection-slot.empty .slot-content span {
  max-width: 88%;
  color: rgba(103, 135, 167, 0.88);
}

.selection-slot.filled .slot-name {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 26px 10px 8px;
  background: linear-gradient(180deg, rgba(35, 66, 95, 0), rgba(35, 66, 95, 0.78));
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-form,
.admin-form,
.settings-form {
  display: grid;
  gap: 16px;
}

.order-fields,
.settings-form {
  display: grid;
  gap: 12px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group span {
  font-size: 0.9rem;
  font-weight: 700;
}

.field-group input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(123, 200, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field-group input:focus {
  outline: none;
  border-color: rgba(73, 178, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(123, 200, 255, 0.12);
}

.submit-row {
  display: grid;
  gap: 12px;
}

.form-message {
  min-height: 1.3em;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-message.is-error {
  color: var(--danger);
}

.form-message.is-success {
  color: var(--success);
}

.result-card {
  padding: 16px;
  border-radius: calc(var(--radius-xl) - 8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 255, 0.9));
  border: 1px solid rgba(123, 200, 255, 0.18);
}

.result-layout {
  display: grid;
  gap: 14px;
}

.result-preview {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(123, 200, 255, 0.2);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.result-summary {
  display: grid;
  gap: 8px;
}

.result-summary h4,
.result-summary p,
.result-summary ul {
  margin: 0;
}

.result-summary ul {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  color: var(--text-soft);
}

.sku-card,
.admin-sku-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(123, 200, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.9));
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sku-card {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(123, 200, 255, 0.18);
}

.sku-card:hover,
.secondary-link:hover,
.ghost-button:hover,
.upload-button:hover,
.admin-sku-card:hover {
  transform: translateY(-2px);
}

.sku-card:hover,
.admin-sku-card:hover {
  border-color: rgba(73, 178, 255, 0.34);
  box-shadow: 0 16px 28px rgba(112, 164, 205, 0.14);
}

.sku-card.is-selected {
  border-color: rgba(73, 178, 255, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(227, 244, 255, 0.98));
}

.sku-card[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
}

.sku-card-media,
.admin-sku-media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(235, 246, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.sku-card-media img,
.admin-sku-media img,
.image-preview-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sku-card-body,
.admin-sku-body {
  display: grid;
  gap: 8px;
}

.sku-card-name,
.admin-sku-name {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.35;
}

.sku-card-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(123, 200, 255, 0.15);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
}

.tag.hot {
  background: rgba(255, 143, 181, 0.16);
  color: var(--hot);
}

.tag.active {
  background: rgba(95, 184, 163, 0.14);
  color: var(--success);
}

.tag.inactive {
  background: rgba(103, 135, 167, 0.14);
}

.sku-count-badge {
  position: absolute;
  inset: 10px 10px auto auto;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--hot));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(255, 143, 181, 0.22);
}

.empty-state {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(123, 200, 255, 0.24);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.admin-layout {
  align-items: start;
}

.admin-form-layout {
  display: grid;
  gap: 16px;
}

.image-uploader-card {
  display: grid;
  gap: 12px;
}

.image-preview-shell {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(123, 200, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 246, 255, 0.92));
}

.upload-button {
  position: relative;
}

.upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-fields {
  display: grid;
  gap: 14px;
}

.switch-row {
  display: grid;
  gap: 12px;
}

.switch-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(123, 200, 255, 0.2);
  background: rgba(255, 255, 255, 0.88);
}

.switch-card input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-strong);
}

.switch-card span {
  display: grid;
  gap: 2px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-sku-card {
  gap: 14px;
}

.orders-grid {
  display: grid;
  gap: 14px;
}

.order-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(123, 200, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.order-card-layout {
  display: grid;
  gap: 14px;
}

.order-card-media {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(123, 200, 255, 0.2);
  background: linear-gradient(180deg, rgba(235, 246, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.order-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-card-body,
.order-card-meta {
  display: grid;
  gap: 8px;
}

.order-card-title,
.order-card-meta p,
.order-card-list {
  margin: 0;
}

.order-card-list {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  color: var(--text-soft);
}

.admin-sku-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(123, 200, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.card-button.danger {
  border-color: rgba(255, 127, 127, 0.26);
  color: var(--danger);
}

@keyframes slot-pop {
  0% {
    transform: scale(0.94);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 720px) {
  .page-shell {
    width: min(var(--page-width), calc(100% - 40px));
    padding-top: 24px;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1.5fr) auto;
    align-items: center;
    padding: 26px;
  }

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

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

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

  .order-fields,
  .settings-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .submit-row,
  .result-layout,
  .admin-form-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

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

  .order-card-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-shell {
    padding-bottom: 56px;
  }

  .content-stack {
    gap: 22px;
  }

  .panel-card {
    padding: 22px;
  }

  .hot-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sku-grid,
  .admin-sku-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

body[data-page="shop"] {
  color: #71566a;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 212, 228, 0.72), transparent 22%),
    radial-gradient(circle at 86% 10%, rgba(223, 240, 255, 0.54), transparent 20%),
    linear-gradient(180deg, #fff0f5 0%, #ffffff 100%);
}

body[data-page="shop"]::before {
  background-image:
    radial-gradient(rgba(255, 193, 216, 0.2) 1.2px, transparent 1.2px),
    radial-gradient(rgba(214, 232, 255, 0.18) 1.2px, transparent 1.2px),
    radial-gradient(rgba(255, 255, 255, 0.8) 2px, transparent 2px);
  background-position: 0 0, 22px 22px, 10px 10px;
  background-size: 44px 44px, 44px 44px, 84px 84px;
  opacity: 0.92;
}

body[data-page="shop"]::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.75), transparent 16%),
    radial-gradient(circle at 78% 32%, rgba(255, 239, 246, 0.88), transparent 14%),
    radial-gradient(circle at 82% 78%, rgba(232, 243, 255, 0.74), transparent 18%);
  opacity: 0.8;
}

body[data-page="shop"] .page-shell {
  padding-top: 26px;
  padding-bottom: 64px;
}

body[data-page="shop"] .content-stack {
  gap: 20px;
}

body[data-page="shop"] .hero-card,
body[data-page="shop"] .panel-card,
body[data-page="shop"] .result-card {
  border: 1px solid rgba(255, 201, 221, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 252, 0.95));
  box-shadow:
    0 26px 50px rgba(233, 164, 193, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

body[data-page="shop"] .hero-card::after,
body[data-page="shop"] .panel-card::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 205, 225, 0.34), transparent 72%);
}

body[data-page="shop"] .hero-card::after {
  inset: auto -46px -58px auto;
  background: radial-gradient(circle, rgba(198, 224, 255, 0.24), transparent 72%);
}

body[data-page="shop"] .hero-card {
  display: block;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 52px 24px 46px;
  text-align: center;
}

body[data-page="shop"] .hero-card::before {
  content: "";
  position: absolute;
  inset: -42px auto auto -36px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 214, 0.22), transparent 72%);
  pointer-events: none;
}

body[data-page="shop"] .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

body[data-page="shop"] .hero-content * {
  text-align: center;
}

body[data-page="shop"] .brand-subtitle {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #c39aad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

body[data-page="shop"] .brand-name {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Comfortaa", "M PLUS Rounded 1c", "Hiragino Sans GB", "Yu Gothic", sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ff7fa5, #ffb6c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(255, 182, 193, 0.18);
}

body[data-page="shop"] .hero-title {
  position: relative;
  z-index: 1;
  max-width: 18ch;
  margin-top: 10px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  line-height: 1.16;
  color: #6f5267;
}

body[data-page="shop"] .hero-description {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 18px auto 0;
  margin-left: auto;
  margin-right: auto;
  color: #6f7f96;
  font-size: 15px;
  line-height: 1.8;
  opacity: 1;
}

body[data-page="shop"] .hero-actions {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  display: block;
  margin: 18px auto 0;
  gap: 12px;
  text-align: center;
}

body[data-page="shop"] .hero-meta-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 26px rgba(231, 192, 208, 0.12);
  backdrop-filter: blur(8px);
}

body[data-page="shop"] .hero-admin {
  display: block;
  width: 100%;
  margin-top: 10px;
}

body[data-page="shop"] .hero-stat {
  width: auto;
  min-width: 124px;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255, 245, 249, 0.96), rgba(244, 249, 255, 0.96));
  box-shadow: 0 10px 20px rgba(236, 174, 201, 0.12);
}

body[data-page="shop"] .progress-box {
  margin: 0;
  display: inline-flex;
  transform: none;
  opacity: 0.72;
}

body[data-page="shop"] .progress-box,
body[data-page="shop"] .language-switch,
body[data-page="shop"] .hero-content .secondary-link {
  margin-left: auto;
  margin-right: auto;
}

body[data-page="shop"] .hero-content .cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  max-width: none;
  margin: 18px auto 0;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b81, #ff9bb0);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  font-family: inherit;
  line-height: 1;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 12px 28px rgba(255, 107, 129, 0.35);
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  background-clip: padding-box;
  white-space: nowrap;
  transition: all 0.2s ease;
}

body[data-page="shop"] .hero-content .cta-main:hover {
  transform: translateY(-1px) scale(1.03);
}

body[data-page="shop"] .hero-stat-label,
body[data-page="shop"] .hero-description,
body[data-page="shop"] .submit-hint,
body[data-page="shop"] .form-message,
body[data-page="shop"] .result-summary p,
body[data-page="shop"] .field-group span,
body[data-page="shop"] .empty-state,
body[data-page="shop"] .section-note {
  color: #967a8d;
}

body[data-page="shop"] .hero-stat strong {
  color: #ff6f9f;
}

body[data-page="shop"] .eyebrow,
body[data-page="shop"] .section-kicker {
  background: linear-gradient(135deg, rgba(255, 239, 246, 0.98), rgba(246, 241, 255, 0.96));
  color: #ff709f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body[data-page="shop"] .section-heading h2,
body[data-page="shop"] .section-heading h3 {
  color: #6d5468;
}

body[data-page="shop"] .lang-switch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

body[data-page="shop"] .language-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

body[data-page="shop"] .lang-button {
  min-width: 82px;
  opacity: 0.68;
  font-size: 12px;
  padding: 10px 14px;
}

body[data-page="shop"] .secondary-link,
body[data-page="shop"] .ghost-button {
  border-color: rgba(255, 188, 211, 0.96);
  background: rgba(255, 255, 255, 0.97);
  color: #866377;
  box-shadow: 0 12px 24px rgba(237, 180, 205, 0.14);
}

body[data-page="shop"] .secondary-link:hover,
body[data-page="shop"] .ghost-button:hover {
  transform: translateY(-2px) scale(1.015);
  border-color: rgba(255, 134, 180, 0.96);
  box-shadow: 0 18px 30px rgba(238, 173, 201, 0.2);
}

body[data-page="shop"] .lang-button.is-active {
  border-color: rgba(255, 132, 179, 0.98);
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.98), rgba(255, 251, 253, 0.98));
  color: #ff6c9d;
  box-shadow: 0 12px 22px rgba(243, 180, 205, 0.2);
}

body[data-page="shop"] #shopAdminLink {
  margin-top: 4px;
  padding-inline: 18px;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.9);
}

body[data-page="shop"] .primary-button {
  background: linear-gradient(135deg, #ffa2c3 0%, #ff7cac 52%, #ffb7cd 100%);
  box-shadow: 0 18px 32px rgba(245, 136, 174, 0.28);
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
}

body[data-page="shop"] .primary-button:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 22px 36px rgba(245, 136, 174, 0.32);
}

body[data-page="shop"] .primary-button.is-full-selection:not(:disabled) {
  background: linear-gradient(135deg, #ff8dad 0%, #ff6f93 54%, #ffb1c8 100%);
  box-shadow:
    0 22px 38px rgba(245, 118, 159, 0.34),
    0 0 0 5px rgba(255, 228, 237, 0.72);
  filter: saturate(1.06);
}

body[data-page="shop"] .primary-button.is-ready-to-submit {
  animation: ready-submit-pulse 1.6s ease-in-out infinite;
}

body[data-page="shop"] .status-pill {
  background: linear-gradient(135deg, rgba(255, 236, 244, 0.98), rgba(248, 243, 255, 0.98));
  color: #ff6f9f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body[data-page="shop"] .status-pill.is-urgent {
  background: linear-gradient(135deg, rgba(255, 214, 229, 0.98), rgba(255, 235, 243, 0.98));
  color: #ff4d87;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 20px rgba(245, 136, 174, 0.18);
  transform: translateY(-1px);
}

body[data-page="shop"] .status-pill.is-complete {
  background: linear-gradient(135deg, rgba(255, 227, 238, 0.98), rgba(255, 240, 246, 0.98));
  color: #ff5a92;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 22px rgba(245, 136, 174, 0.16);
}

body[data-page="shop"] .order-fields {
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, margin 180ms ease;
}

body[data-page="shop"] #orderFieldsBlock:not(.is-revealed) {
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  margin: 0;
  pointer-events: none;
}

body[data-page="shop"] #orderFieldsBlock.is-revealed {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

body[data-page="shop"] #orderFieldsBlock.needs-attention {
  border-radius: 20px;
  box-shadow:
    0 0 0 3px rgba(255, 221, 232, 0.92),
    0 12px 26px rgba(245, 145, 182, 0.14);
}

body[data-page="shop"] .selection-frame {
  padding: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 194, 215, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 251, 0.96)),
    linear-gradient(135deg, rgba(255, 240, 246, 0.2), rgba(228, 243, 255, 0.16));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 32px rgba(240, 186, 207, 0.16);
}

body[data-page="shop"] .selection-grid {
  gap: 12px;
}

body[data-page="shop"] .selection-slot {
  border-width: 1.5px;
  border-style: dashed;
  border-color: rgba(255, 183, 208, 0.98);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 251, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 18px rgba(241, 191, 210, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="shop"] .selection-slot:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(255, 133, 179, 0.98);
  box-shadow: 0 20px 30px rgba(240, 166, 198, 0.18);
}

body[data-page="shop"] .selection-slot.filled {
  border-style: solid;
  border-color: rgba(255, 123, 168, 0.98);
  background: linear-gradient(180deg, rgba(255, 244, 248, 0.72), rgba(255, 250, 252, 0.82));
  box-shadow:
    0 18px 28px rgba(241, 158, 193, 0.22),
    0 0 0 4px rgba(255, 233, 242, 0.65);
}

body[data-page="shop"] .selection-slot.empty {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 251, 0.98)),
    rgba(255, 255, 255, 0.7);
}

body[data-page="shop"] .selection-slot.empty:hover {
  background:
    linear-gradient(180deg, rgba(255, 248, 251, 0.98), rgba(255, 236, 243, 0.98)),
    rgba(255, 244, 248, 0.78);
}

body[data-page="shop"] .selection-slot.selection-slot-brand {
  display: none;
  cursor: default;
  pointer-events: none;
  border-style: dashed;
  border-color: rgba(255, 181, 207, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 244, 248, 0.96), rgba(255, 250, 252, 0.98)),
    rgba(255, 243, 248, 0.82);
  opacity: 0.88;
}

body[data-page="shop"] .brand-slot-content {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  text-align: center;
}

body[data-page="shop"] .brand-slot-mark {
  color: #ff8fb0;
  font-size: 1.4rem;
  line-height: 1;
}

body[data-page="shop"] .brand-slot-name {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ff7fa5, #ffb2c3);
  -webkit-background-clip: text;
  color: transparent;
}

body[data-page="shop"] .brand-slot-tagline {
  max-width: 10ch;
  color: #9b7f90;
  font-size: 0.72rem;
  line-height: 1.4;
}

body[data-page="shop"] .slot-index {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(235, 184, 205, 0.18);
  color: #b08199;
}

body[data-page="shop"] .slot-remove {
  width: 28px;
  height: 28px;
  background: rgba(255, 122, 168, 0.16);
  color: #ff709f;
  box-shadow: 0 8px 14px rgba(241, 167, 196, 0.2);
}

body[data-page="shop"] .selection-slot.empty .slot-content span {
  max-width: none;
}

body[data-page="shop"] .slot-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 245, 249, 0.98), rgba(242, 248, 255, 0.98));
  color: #f08bae;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 20px rgba(237, 186, 207, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

body[data-page="shop"] .selection-slot.empty:hover .slot-placeholder {
  transform: scale(1.08);
  color: #ff6b98;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 16px 24px rgba(237, 186, 207, 0.22);
}

body[data-page="shop"] .selection-slot.filled .slot-name {
  padding: 34px 12px 10px;
  background: linear-gradient(180deg, rgba(122, 80, 102, 0), rgba(122, 80, 102, 0.82));
}

body[data-page="shop"] .selection-slot.just-added {
  animation: slot-collect 0.15s ease;
}

body[data-page="shop"] .field-group input {
  border-color: rgba(255, 198, 218, 0.96);
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(243, 200, 218, 0.08);
}

body[data-page="shop"] .field-group input:focus {
  border-color: rgba(255, 132, 179, 0.98);
  box-shadow: 0 0 0 4px rgba(255, 184, 210, 0.18);
}

body[data-page="shop"] .result-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 252, 0.97));
  border-color: rgba(255, 194, 216, 0.92);
  box-shadow: 0 18px 34px rgba(239, 181, 205, 0.18);
}

body[data-page="shop"] .result-preview {
  border-color: rgba(255, 194, 216, 0.92);
  box-shadow: 0 16px 28px rgba(239, 181, 205, 0.14);
}

body[data-page="shop"] .sku-card {
  gap: 14px;
  padding: 14px;
  cursor: pointer;
  border-color: rgba(255, 194, 216, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 251, 0.97));
  box-shadow: 0 18px 28px rgba(235, 182, 204, 0.14);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

body[data-page="shop"] .sku-card[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

body[data-page="shop"] .sku-card:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(255, 132, 179, 0.96);
  box-shadow: 0 24px 36px rgba(238, 170, 199, 0.2);
}

body[data-page="shop"] .sku-card.is-selected {
  border-color: rgba(255, 123, 168, 0.96);
  background: linear-gradient(180deg, rgba(255, 244, 248, 0.98), rgba(255, 250, 252, 0.98));
}

body[data-page="shop"] .sku-card.is-flashing {
  background: linear-gradient(180deg, rgba(255, 247, 251, 1), rgba(255, 238, 245, 0.98));
  border-color: rgba(255, 126, 173, 0.98);
  box-shadow:
    0 18px 28px rgba(242, 164, 195, 0.16),
    0 0 0 3px rgba(255, 231, 240, 0.68);
  animation: sku-tap-feedback 140ms ease;
}

body[data-page="shop"] .sku-card-media {
  pointer-events: none;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 241, 247, 0.98), rgba(244, 249, 255, 0.98));
  aspect-ratio: 1 / 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body[data-page="shop"] .sku-card-body {
  gap: 12px;
}

body[data-page="shop"] .sku-card-name {
  color: #6f566a;
  font-size: 1rem;
  line-height: 1.4;
}

body[data-page="shop"] .sku-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body[data-page="shop"] .sku-card-meta {
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="shop"] .tag {
  background: linear-gradient(135deg, rgba(255, 241, 247, 0.98), rgba(255, 249, 252, 0.98));
  color: #8c6a7c;
  border: 1px solid rgba(255, 213, 228, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body[data-page="shop"] .tag.hot {
  background: linear-gradient(135deg, rgba(255, 230, 239, 0.98), rgba(255, 245, 249, 0.98));
  color: #ff6d9c;
  border-color: rgba(255, 174, 203, 0.88);
}

body[data-page="shop"] .tag.active {
  background: linear-gradient(135deg, rgba(233, 245, 255, 0.98), rgba(245, 251, 255, 0.98));
  color: #5e8cb9;
  border-color: rgba(198, 224, 247, 0.9);
}

body[data-page="shop"] .sku-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-width: 108px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8fa3, #ff6b81);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 10px 18px rgba(245, 145, 182, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  cursor: pointer;
}

body[data-page="shop"] .sku-card-action:disabled {
  cursor: not-allowed;
}

body[data-page="shop"] .sku-card:active {
  transform: scale(0.97);
}

body[data-page="shop"] .sku-card-action:active {
  transform: scale(0.97);
}

body[data-page="shop"] .sku-card:hover .sku-card-action {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(245, 145, 182, 0.28);
  filter: saturate(1.04);
}

body[data-page="shop"] .sku-card-action.is-confirmed {
  background: linear-gradient(135deg, #ff7d9e, #ff5f83);
  box-shadow: 0 10px 18px rgba(245, 126, 167, 0.22);
  animation: sku-button-confirm 140ms ease;
}

body[data-page="shop"] .sku-count-badge {
  background: linear-gradient(135deg, #ffadc9, #ff7fad);
  box-shadow: 0 12px 20px rgba(243, 151, 186, 0.24);
}

body[data-page="shop"] .empty-state {
  border-color: rgba(255, 196, 217, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 251, 0.88));
  box-shadow: 0 14px 26px rgba(239, 186, 207, 0.12);
}

body[data-page="shop"] .empty-state--friendly {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px 18px;
  border-style: solid;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 250, 0.94)),
    linear-gradient(135deg, rgba(255, 235, 243, 0.28), rgba(233, 244, 255, 0.24));
}

body[data-page="shop"] .empty-state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.98), rgba(244, 249, 255, 0.98));
  color: #ff78a3;
  font-size: 1.4rem;
  box-shadow: 0 12px 20px rgba(241, 190, 210, 0.16);
}

body[data-page="shop"] .empty-state-text {
  line-height: 1.7;
}

.mobile-sticky-cta {
  display: none;
}

@keyframes slot-collect {
  0% {
    transform: scale(0.96);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes sku-tap-feedback {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sku-button-confirm {
  0% {
    transform: scale(1);
    opacity: 0.96;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes ready-submit-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 22px 38px rgba(245, 118, 159, 0.34),
      0 0 0 5px rgba(255, 228, 237, 0.72);
  }
  50% {
    transform: scale(1.035);
    box-shadow:
      0 26px 42px rgba(245, 118, 159, 0.4),
      0 0 0 8px rgba(255, 228, 237, 0.82);
  }
}

@media (min-width: 720px) {
  body[data-page="shop"] .hero-card {
    display: block;
    padding: 40px 20px;
  }

  body[data-page="shop"] .hero-copy {
    display: block;
    text-align: center;
  }

  body[data-page="shop"] .hero-actions {
    display: block;
  }

  body[data-page="shop"] .lang-switch {
    justify-content: center;
  }

  body[data-page="shop"] .hero-stat {
    max-width: 210px;
  }
}

@media (min-width: 1024px) {
  body[data-page="shop"] .page-shell {
    width: min(1200px, calc(100% - 48px));
  }

  body[data-page="shop"] .content-stack {
    gap: 24px;
  }

  body[data-page="shop"] .panel-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  body[data-page="shop"] .page-shell {
    width: min(100%, calc(100% - 18px));
    padding-top: 6px;
    padding-bottom: 108px;
  }

  body[data-page="shop"] .content-stack {
    gap: 10px;
  }

  body[data-page="shop"] .hero-card {
    max-width: none;
    margin-bottom: 8px;
    padding: 18px 14px 14px;
  }

  body[data-page="shop"] .hero-content {
    max-width: 100%;
  }

  body[data-page="shop"] .brand-name {
    font-size: 40px;
  }

  body[data-page="shop"] .brand-subtitle {
    margin-bottom: 6px;
  }

  body[data-page="shop"] .hero-title {
    max-width: 14ch;
    font-size: 20px;
    margin-top: 4px;
  }

  body[data-page="shop"] .hero-content .cta-main {
    margin-top: 10px;
    padding: 14px 26px;
    font-size: 16px;
  }

  body[data-page="shop"] .hero-description {
    max-width: 30ch;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.48;
  }

  body[data-page="shop"] .hero-actions {
    margin-top: 10px;
  }

  body[data-page="shop"] .hero-meta-row {
    gap: 8px;
    padding: 6px 8px;
  }

  body[data-page="shop"] .progress-box {
    transform: scale(0.8);
  }

  body[data-page="shop"] .hero-stat {
    min-width: 108px;
    padding: 7px 10px;
  }

  body[data-page="shop"] .hero-stat-label {
    font-size: 0.72rem;
  }

  body[data-page="shop"] .hero-stat strong {
    font-size: 1.25rem;
  }

  body[data-page="shop"] .language-switch {
    gap: 8px;
  }

  body[data-page="shop"] .lang-button {
    min-width: 70px;
    padding: 8px 10px;
    font-size: 11px;
  }

  body[data-page="shop"] #shopAdminLink {
    margin-top: 0;
    padding: 8px 14px;
    font-size: 0.76rem;
    opacity: 0.76;
    box-shadow: 0 8px 18px rgba(237, 180, 205, 0.1);
  }

  body[data-page="shop"] .panel-card {
    padding: 14px;
  }

  body[data-page="shop"] .section-heading {
    margin-bottom: 10px;
    gap: 10px;
  }

  body[data-page="shop"] .section-heading h2 {
    font-size: 1.18rem;
  }

  body[data-page="shop"] .section-note {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  body[data-page="shop"] .hot-strip .empty-state,
  body[data-page="shop"] #hotList .empty-state,
  body[data-page="shop"] #hotList .empty-state--friendly {
    min-height: 92px;
    padding: 14px 12px;
    border-radius: 22px;
  }

  body[data-page="shop"] #hotList .empty-state-icon {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  body[data-page="shop"] .selection-panel {
    gap: 12px;
  }

  body[data-page="shop"] .selection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  body[data-page="shop"] .selection-slot.selection-slot-brand {
    display: flex;
  }

  body[data-page="shop"] .selection-frame {
    padding: 12px;
  }

  body[data-page="shop"] .selection-slot {
    border-width: 1.8px;
  }

  body[data-page="shop"] .slot-placeholder {
    width: 58px;
    height: 58px;
    font-size: 2.1rem;
  }

  body[data-page="shop"] .sku-grid,
  body[data-page="shop"] .hot-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body[data-page="shop"] #skuList,
  body[data-page="shop"] #hotList {
    display: grid;
    visibility: visible;
    opacity: 1;
    min-height: 120px;
    align-content: start;
  }

  body[data-page="shop"] .sku-card {
    gap: 12px;
    padding: 14px;
    min-height: 100%;
    -webkit-tap-highlight-color: transparent;
  }

  body[data-page="shop"] .sku-card-media {
    aspect-ratio: 1 / 1;
    min-height: 124px;
  }

  body[data-page="shop"] .sku-card-name {
    font-size: 0.98rem;
  }

  body[data-page="shop"] .sku-card-footer {
    grid-template-columns: 1fr;
    display: grid;
    gap: 10px;
  }

  body[data-page="shop"] .sku-card-action {
    width: 100%;
    min-height: 46px;
    padding: 13px 16px;
    font-size: 0.86rem;
  }

  body[data-page="shop"] .sku-card:active {
    transform: scale(0.985);
    border-color: rgba(255, 118, 169, 0.98);
    box-shadow:
      0 14px 24px rgba(238, 170, 199, 0.18),
      0 0 0 4px rgba(255, 231, 240, 0.68);
  }

  body[data-page="shop"] .sku-card:active .sku-card-action {
    transform: scale(0.98);
    box-shadow: 0 10px 18px rgba(245, 145, 182, 0.24);
  }

  body[data-page="shop"] .order-form {
    gap: 14px;
  }

  body[data-page="shop"] .submit-row {
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="shop"] .submit-row .primary-button {
    width: 100%;
    min-height: 56px;
  }

  body[data-page="shop"] .submit-hint {
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: center;
  }

  body[data-page="shop"] .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 999;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 224, 235, 0.98), rgba(255, 240, 246, 0.98));
    color: #c7859d;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(222, 173, 196, 0.2);
    cursor: not-allowed;
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      background 180ms ease,
      color 180ms ease;
  }

  body[data-page="shop"] .mobile-sticky-cta.is-ready {
    background: linear-gradient(135deg, #ff8fa3 0%, #ff6b81 58%, #ffacc0 100%);
    color: #fff;
    box-shadow:
      0 20px 34px rgba(245, 118, 159, 0.34),
      0 0 0 4px rgba(255, 231, 240, 0.78);
    cursor: pointer;
  }

  body[data-page="shop"] .mobile-sticky-cta:disabled {
    opacity: 1;
  }
}
