:root {
  --bg: #f5f6f4;
  --panel: #ffffff;
  --ink: #1c211d;
  --muted: #6f756f;
  --line: #e2e5e1;
  --accent: #d95f36;
  --accent-dark: #b94723;
  --accent-soft: #fbeee8;
  --green: #2f7456;
  --preview-accent: #bb4f29;
  --preview-ink: #282019;
  --shadow: 0 18px 50px rgba(39, 42, 36, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 246px;
  flex-direction: column;
  border-right: 1px solid #dde1dd;
  background: #fff;
  padding: 25px 18px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  padding: 0 10px 28px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--accent);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 2px;
  color: #8a8d86;
  font-size: 10px;
}

.side-nav {
  display: grid;
  gap: 3px;
}

.nav-item {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  padding: 11px 13px;
  color: #6f746d;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: 160ms ease;
}

.nav-item:hover {
  color: var(--ink);
  background: #f4f5f2;
}

.nav-item.active {
  color: #202520;
  background: #f1f3ef;
  box-shadow: inset 3px 0 0 var(--accent);
}

.nav-icon,
.nav-item svg {
  width: 18px;
  height: 18px;
}

.nav-dot {
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--accent);
}

.sidebar-bottom {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.plan-card {
  margin-bottom: 4px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #f7f8f5;
  padding: 14px;
}

.plan-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}

.plan-badge {
  border-radius: 4px;
  background: #e2d4c0;
  padding: 3px 5px;
  color: #765d3e;
  font-size: 8px;
}

.plan-card p {
  margin: 9px 0 11px;
  color: #766d61;
  font-size: 10px;
  line-height: 1.6;
}

.plan-card button {
  width: 100%;
  border: 1px solid #dacbb5;
  border-radius: 7px;
  background: #fff;
  padding: 8px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.nav-item.muted {
  color: #858982;
  font-size: 11px;
}

.main {
  min-height: 100vh;
  margin-left: 246px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  padding: 13px 28px 13px 32px;
  backdrop-filter: blur(18px);
}

.store-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.store-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #dedfdc;
  border-radius: 9px;
  color: #555c56;
  background: #f8f9f7;
}

.store-symbol svg {
  width: 19px;
}

.store-heading-line {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topbar h1 {
  margin: 0;
  overflow: hidden;
  font-size: 18px;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-heading p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  color: #868b85;
  font-size: 9px;
}

.header-divider {
  width: 1px;
  height: 9px;
  background: #d6d9d4;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 100px;
  color: #367052;
  background: #eaf3ed;
  padding: 4px 7px;
  font-size: 8px;
  font-weight: 700;
}

.header-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4b926a;
}

.header-status.draft {
  color: #936324;
  background: #fff3db;
}

.header-status.draft i {
  background: #d28b2d;
}

.header-status.offline {
  color: #776f67;
  background: #efede8;
}

.header-status.offline i {
  background: #aaa49a;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.save-state {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 5px;
  color: #888c85;
  font-size: 10px;
}

.save-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #65a27f;
}

.save-state.has-draft .save-dot {
  background: #d28b2d;
}

.save-state.has-draft {
  color: #946629;
}

.btn {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
}

.btn svg {
  width: 15px;
  height: 15px;
}

.btn.secondary {
  border: 1px solid #dbdcd6;
  background: #fff;
}

.btn.secondary:hover {
  border-color: #c5c7bf;
  transform: translateY(-1px);
}

.btn.primary {
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  box-shadow: 0 5px 14px rgba(217, 95, 54, .16);
}

.btn.primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: 4px;
  place-items: center;
  border: 1px solid #dcded9;
  border-radius: 9px;
  color: #626862;
  background: #f8f9f7;
  cursor: pointer;
}

.avatar svg {
  width: 17px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(600px, 1fr) 430px;
  min-height: calc(100vh - 78px);
}

.content {
  padding: 30px 32px 60px;
}

.welcome-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  color: #2f704f;
  background: #e6f1ea;
  padding: 5px 9px;
  font-size: 9px;
  font-weight: 700;
}

.status-pill span,
.preview-live span,
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f9b70;
}

.domain {
  color: #979a94;
  font-size: 9px;
}

.welcome-row h2,
.section-head h2 {
  margin: 0;
  letter-spacing: -0.025em;
}

.welcome-row h2 {
  font-size: 22px;
}

.section-kicker {
  display: block;
  margin-bottom: 6px;
  color: #8b908a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.welcome-row p,
.section-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.undo-button {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  padding: 7px 9px;
  color: #777c75;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.undo-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.undo-button svg {
  width: 14px;
}

.undo-button:not(:disabled):hover {
  border-color: var(--line);
  background: #fff;
}

.site-health {
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) minmax(190px, .75fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 14px 16px;
}

.health-primary {
  display: flex;
  align-items: center;
  gap: 11px;
}

.health-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #377556;
  background: #e9f3ed;
}

.health-icon svg {
  width: 15px;
}

.site-health.has-draft {
  border-color: #f1d7ad;
  background: linear-gradient(135deg, #fffaf1 0%, #fff 54%);
}

.site-health.has-draft .health-icon {
  color: #9a6522;
  background: #fff0d8;
}

.site-health.is-offline {
  border-color: #e3e0da;
  background: #fbfaf7;
}

.site-health.is-offline .health-icon {
  color: #746f68;
  background: #efede8;
}

.health-primary strong,
.health-primary small,
.health-detail span,
.health-detail strong {
  display: block;
}

.health-primary strong {
  font-size: 10px;
}

.health-primary small,
.health-detail span {
  margin-top: 3px;
  color: #8b908a;
  font-size: 8px;
}

.health-detail {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.health-detail strong {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
}

.site-health > button {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #d9dcd7;
  border-radius: 6px;
  background: #fff;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.site-health > button:hover {
  background: #f5f6f3;
}

.site-health > button svg {
  width: 13px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.quick-action {
  display: grid;
  grid-template-columns: 40px 1fr 16px;
  min-height: 76px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  padding: 13px;
  text-align: left;
  cursor: pointer;
  transition: 180ms ease;
}

.quick-action:hover {
  border-color: #c9cdc7;
  box-shadow: 0 7px 18px rgba(40, 43, 37, .05);
  transform: translateY(-1px);
}

.quick-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #59615a;
  background: #f1f3ef;
}

.quick-icon svg {
  width: 18px;
  height: 18px;
}

.quick-action strong,
.quick-action small {
  display: block;
}

.quick-action strong {
  font-size: 10px;
}

.quick-action small {
  margin-top: 5px;
  color: #92968f;
  font-size: 8px;
}

.arrow {
  color: #aeb0ab;
}

.arrow svg {
  width: 13px;
}

.notice-card {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  border: 1px solid #e4e0da;
  border-radius: 9px;
  background: #faf9f6;
  padding: 15px 42px 15px 16px;
}

.notice-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #8a6740;
  background: #f1ebe2;
}

.notice-icon svg {
  width: 18px;
}

.notice-label {
  color: #a16c2c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.notice-card h3 {
  margin: 3px 0;
  font-size: 11px;
}

.notice-card p {
  margin: 0;
  color: #84786b;
  font-size: 9px;
}

.notice-card > button:not(.dismiss) {
  border: 1px solid #dac5a8;
  border-radius: 7px;
  background: #fff;
  padding: 8px 12px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.dismiss {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  color: #aa9e8e;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
}

.metrics-section,
.history-section {
  margin-top: 28px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 13px;
}

.section-head h2 {
  font-size: 15px;
}

.text-button {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  color: #737871;
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
}

.text-button svg {
  width: 11px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.metric {
  padding: 17px 18px;
}

.metric + .metric {
  border-left: 1px solid var(--line);
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b8079;
  font-size: 9px;
}

.metric-icon {
  color: #a2a59f;
}

.metric-icon svg {
  width: 15px;
}

.metric > strong {
  display: block;
  margin: 9px 0 7px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.metric > strong small {
  margin-left: 4px;
  font-size: 8px;
  font-weight: 500;
}

.trend {
  font-size: 8px;
  font-weight: 600;
}

.trend.up { color: #37805c; }
.trend.neutral { color: #92968f; }

.metric-chart {
  display: block;
  width: 100%;
  height: 90px;
  margin-top: 15px;
  overflow: visible;
}

.metric-chart.large {
  height: auto;
  min-height: 162px;
  margin-top: 20px;
}

.metric-chart-grid line {
  stroke: #e8ece5;
  stroke-dasharray: 2 4;
  stroke-width: 1;
}

.metric-chart-axis {
  fill: none;
  stroke: #cfd6cd;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.metric-chart-y-labels text,
.metric-chart-x-labels text {
  fill: #8a9288;
  font-size: 8px;
  font-weight: 700;
}

.metric-chart.large .metric-chart-y-labels text,
.metric-chart.large .metric-chart-x-labels text {
  font-size: 9px;
}

.metric-chart-area {
  fill: var(--chart-color);
  opacity: .1;
}

.metric-chart-line {
  fill: none;
  stroke: var(--chart-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.metric-chart circle {
  fill: #fff;
  stroke: var(--chart-color);
  stroke-width: 2;
}

.analytics-panel {
  overflow: hidden;
  border: 1px solid #e1e4dc;
  border-radius: 14px;
  background: #fff;
  padding: 16px;
}

.analytics-hero-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.analytics-hero-card span {
  color: #3e7859;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.analytics-hero-card h3 {
  margin: 5px 0 6px;
}

.analytics-hero-card p {
  max-width: 310px;
  margin: 0;
  color: #727970;
  font-size: 10px;
  line-height: 1.7;
}

.analytics-hero-card > strong {
  color: #253129;
  font-size: 25px;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.analytics-hero-card > strong small {
  margin-left: 3px;
  font-size: 9px;
  font-weight: 600;
}

.analytics-day-labels,
.analytics-axis-note {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  color: #8c928b;
  font-size: 8px;
  font-weight: 700;
}

.analytics-axis-note {
  margin-top: 7px;
  border-top: 1px solid #edf0e9;
  padding-top: 8px;
}

.analytics-detail-grid {
  display: grid;
  gap: 11px;
}

.analytics-detail-card {
  border: 1px solid #edf0e9;
  border-radius: 12px;
  background: #fbfcf8;
  padding: 13px;
}

.analytics-detail-head {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
}

.analytics-detail-head .metric-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #3e7859;
  background: #eef5ef;
}

.analytics-detail-head strong,
.analytics-detail-head small {
  display: block;
}

.analytics-detail-head strong {
  font-size: 11px;
}

.analytics-detail-head small {
  margin-top: 3px;
  color: #777e76;
  font-size: 8px;
}

.analytics-detail-head b {
  color: #253129;
  font-size: 14px;
}

.analytics-detail-card p {
  margin: 8px 0 0;
  color: #747b73;
  font-size: 9px;
  line-height: 1.65;
}

.analytics-next-actions {
  display: grid;
  gap: 10px;
}

.analytics-next-actions article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  border: 1px solid #edf0e9;
  border-radius: 11px;
  background: #fbfcf8;
  padding: 11px;
}

.analytics-next-actions b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #3e7859;
  font-size: 10px;
}

.analytics-next-actions strong,
.analytics-next-actions small {
  display: block;
}

.analytics-next-actions strong {
  font-size: 10px;
}

.analytics-next-actions small {
  margin-top: 3px;
  color: #747b73;
  font-size: 8px;
  line-height: 1.6;
}

.history-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.history-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
}

.history-item + .history-item {
  border-top: 1px solid var(--line);
}

.history-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #6f7770;
  background: #f0f1ed;
}

.history-icon svg { width: 15px; }
.history-item strong,
.history-item small { display: block; }
.history-item strong { font-size: 10px; }
.history-item small { margin-top: 4px; color: #9a9e97; font-size: 8px; }
.history-item button { border: 0; color: #7c817a; background: transparent; font-size: 8px; cursor: pointer; }

.preview-panel {
  position: sticky;
  top: 78px;
  display: flex;
  height: calc(100vh - 78px);
  min-height: 660px;
  flex-direction: column;
  border-left: 3px solid var(--accent);
  background: #ebece7;
  box-shadow: -12px 0 35px rgba(40, 43, 37, 0.07);
}

.preview-head,
.preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 21px;
}

.preview-head {
  min-height: 70px;
  border-bottom: 1px solid #e6ddd4;
  background: #fffaf6;
}

.preview-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-heading-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--accent);
}

.preview-heading-icon svg {
  width: 17px;
}

.preview-heading div {
  display: grid;
  gap: 3px;
}

.preview-label {
  font-size: 12px;
  font-weight: 700;
}

.preview-heading small {
  color: #868a83;
  font-size: 8px;
}

.preview-design {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid #dcddd6;
  background: #fff;
  padding: 13px 20px 12px;
}

.preview-design-head,
.preview-color-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-design-head > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.preview-design-head strong {
  font-size: 10px;
}

.preview-design-head span {
  border-radius: 100px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 3px 7px;
  font-size: 7px;
  font-weight: 700;
}

.preview-design-head button {
  border: 0;
  color: #737871;
  background: transparent;
  padding: 3px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.preview-theme-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-top: 8px;
}

.preview-theme {
  display: grid;
  gap: 5px;
  border: 1px solid #e0e1db;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  cursor: pointer;
  transition: 150ms ease;
}

.preview-theme:hover {
  border-color: #c5c8c0;
}

.preview-theme.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.preview-theme.locked,
.design-choice.locked,
.start-theme-grid button.locked,
.modal-theme-options button.locked {
  position: relative;
  border-color: #d7bc82;
  background:
    linear-gradient(135deg, rgba(255,248,232,.9), rgba(255,255,255,.96));
  opacity: .96;
}

.preview-theme.locked::after,
.start-theme-grid button.locked::after {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 100px;
  color: #2f2415;
  background: linear-gradient(135deg, #f2d999, #bf8f37);
  padding: 2px 4px;
  font-size: 5px;
  font-weight: 900;
  content: "PRO";
}

.start-theme-grid button.locked::after {
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  font-size: 8px;
}

.start-pro-design-note {
  margin: 0;
}

.preview-theme small {
  font-size: 7px;
  font-weight: 700;
}

.theme-thumbnail {
  position: relative;
  display: block;
  height: 25px;
  overflow: hidden;
  border-radius: 4px;
}

.theme-thumbnail.japanese {
  background: linear-gradient(90deg, #28221d 0 67%, #f2e8d8 67%);
}

.theme-thumbnail.izakaya {
  background: linear-gradient(155deg, #c83c25 0 55%, #24201d 55%);
}

.theme-thumbnail.simple {
  background: linear-gradient(90deg, #f6f6f2 0 67%, #365f70 67%);
}

.theme-thumbnail.cafe {
  background: linear-gradient(135deg, #e5cdaa 0 58%, #758762 58%);
}

.theme-thumbnail.natural {
  background: linear-gradient(90deg, #edf0df 0 66%, #768e67 66%);
}

.theme-thumbnail.bistro {
  background: linear-gradient(135deg, #f2e6d3 0 47%, #9f3d32 47% 55%, #273542 55%);
}

.theme-thumbnail.premium {
  background: linear-gradient(135deg, #171717 0 66%, #aa8d58 66%);
}

.theme-thumbnail.night {
  background: linear-gradient(135deg, #11182a 0 65%, #62518c 65%);
}

.theme-thumbnail i,
.theme-thumbnail b {
  position: absolute;
  display: block;
  background: rgba(255,255,255,.72);
  content: "";
}

.theme-thumbnail i {
  top: 6px;
  left: 7px;
  width: 38%;
  height: 3px;
}

.theme-thumbnail b {
  top: 12px;
  left: 7px;
  width: 25%;
  height: 2px;
  opacity: .65;
}

.theme-category-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.theme-category-tabs::-webkit-scrollbar {
  display: none;
}

.theme-category-tabs button {
  flex: 0 0 auto;
  border: 1px solid #dedfd9;
  border-radius: 100px;
  color: #777c75;
  background: #fff;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.theme-category-tabs button.selected {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.theme-category-tabs.compact {
  margin-top: 10px;
}

.theme-category-tabs.compact button {
  flex: 1;
  padding: 5px 6px;
  font-size: 7px;
}

.design-choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pro-design-note {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  border: 1px solid #e0c78d;
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 0, rgba(242,217,153,.32), transparent 34%),
    #fffaf0;
  padding: 12px 13px;
}

.pro-design-note strong {
  color: #4a3517;
  font-size: 11px;
}

.pro-design-note span {
  color: #766952;
  font-size: 9px;
  line-height: 1.65;
}

.design-choice {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid #e0e2dc;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  text-align: left;
  cursor: pointer;
}

.design-choice.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.theme-thumbnail.large {
  height: 58px;
  border-radius: 8px;
}

.design-choice strong,
.design-choice small {
  display: block;
}

.design-choice strong {
  font-size: 12px;
}

.design-choice small {
  margin-top: 4px;
  color: #777c75;
  font-size: 9px;
}

.design-choice em {
  border-radius: 100px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 5px 8px;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}
.preview-color-row {
  margin-top: 11px;
}

.preview-color-row > span {
  color: #737871;
  font-size: 8px;
  font-weight: 600;
}

.preview-swatches {
  display: flex;
  gap: 7px;
}

.preview-swatch {
  width: 19px;
  height: 19px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px #d5d7d0;
  cursor: pointer;
}

.preview-swatch.selected {
  box-shadow: 0 0 0 2px var(--ink);
}

.device-toggle {
  display: flex;
  border: 1px solid #dadbd4;
  border-radius: 7px;
  background: #eeeeea;
  padding: 2px;
}

.device-toggle button {
  display: grid;
  width: 27px;
  height: 25px;
  place-items: center;
  border: 0;
  border-radius: 5px;
  color: #8f938d;
  background: transparent;
  cursor: pointer;
}

.device-toggle button.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.device-toggle svg { width: 13px; }

.preview-stage {
  display: grid;
  min-height: 0;
  flex: 1;
  place-items: center;
  overflow: hidden;
  padding: 16px 20px;
}

.phone {
  width: 278px;
  height: min(535px, calc(100vh - 345px));
  min-height: 390px;
  overflow: hidden;
  border: 7px solid #20231f;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 26px 55px rgba(29, 33, 27, 0.2);
  transition: 240ms ease;
}

.phone.desktop-mode {
  width: 375px;
  height: min(500px, calc(100vh - 345px));
  min-height: 0;
  border-width: 5px;
  border-radius: 13px;
}

.phone-screen {
  height: 100%;
  overflow: auto;
  background: #f9f4ed;
  scrollbar-width: none;
}

.phone.theme-simple .phone-screen {
  background: #fff;
}

.phone.theme-simple .site-hero {
  height: 225px;
}

.phone.theme-simple .hero-copy h3,
.phone.theme-simple .site-intro h4,
.phone.theme-simple .site-hours strong {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.phone.theme-cafe .phone-screen {
  background: #fbf3e7;
}

.phone.theme-cafe .site-hero,
.phone.theme-cafe .hero-slide,
.phone.theme-cafe .hero-slide .smart-image-frame {
  border-radius: 0 0 45% 0;
}

.phone.theme-cafe .hero-copy h3,
.phone.theme-cafe .site-intro h4 {
  letter-spacing: .02em;
}

.phone.theme-premium .phone-screen {
  color: #eee6da;
  background: #171717;
}

.phone.theme-premium .site-body,
.phone.theme-premium .site-actions {
  background: #171717;
}

.phone.theme-premium .site-actions button {
  color: #eee6da;
  border-color: #38342e;
  background: #171717;
}

.phone.theme-premium .site-actions .site-main-action {
  color: #fff;
  background: var(--preview-accent);
}

.phone.theme-premium .site-intro h4,
.phone.theme-premium .site-hours strong {
  color: #f3ece1;
}

.phone.theme-premium .site-intro p,
.phone.theme-premium .site-hours span,
.phone.theme-premium .site-hours small {
  color: #aaa197;
}

.phone.theme-premium .site-news,
.phone.theme-premium .site-hours {
  border-color: #49423a;
}

.phone.theme-izakaya .phone-screen,
.preview-modal.theme-izakaya .modal-page {
  background: #f4e9d8;
}

.phone.theme-izakaya .site-hero,
.preview-modal.theme-izakaya .site-hero {
  height: 225px;
  border-bottom: 8px solid var(--preview-accent);
}

.phone.theme-izakaya .site-hero-overlay,
.preview-modal.theme-izakaya .site-hero-overlay {
  background: linear-gradient(120deg, rgba(25, 18, 13, .18), rgba(25, 18, 13, .84));
}

.phone.theme-izakaya .hero-copy,
.preview-modal.theme-izakaya .hero-copy {
  right: 20px;
  left: auto;
  text-align: right;
}

.phone.theme-izakaya .hero-copy h3,
.preview-modal.theme-izakaya .hero-copy h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: -.06em;
}

.phone.theme-izakaya .site-body,
.phone.theme-izakaya .site-menu,
.phone.theme-izakaya .site-gallery,
.phone.theme-izakaya .site-access,
.preview-modal.theme-izakaya .site-body,
.preview-modal.theme-izakaya .site-menu,
.preview-modal.theme-izakaya .site-gallery,
.preview-modal.theme-izakaya .site-access {
  background-image: repeating-linear-gradient(0deg, rgba(85, 56, 31, .025) 0 1px, transparent 1px 5px);
}

.phone.theme-izakaya .site-menu-grid article,
.preview-modal.theme-izakaya .site-menu-grid article {
  border: 2px solid #2c241e;
  border-radius: 2px;
  box-shadow: 5px 5px 0 var(--preview-accent);
}

.phone.theme-izakaya .site-section-heading h4,
.preview-modal.theme-izakaya .site-section-heading h4 {
  display: inline;
  color: #fff;
  background: #29211b;
  padding: 3px 8px;
}

.phone.theme-natural .phone-screen,
.preview-modal.theme-natural .modal-page {
  background: #f2f3e8;
}

.phone.theme-natural .site-hero,
.preview-modal.theme-natural .site-hero {
  height: 285px;
  margin: 10px;
  border-radius: 34px;
  box-shadow: 0 18px 38px rgba(62, 88, 71, .14);
}

.phone.theme-natural .site-nav,
.preview-modal.theme-natural .site-nav {
  inset: 18px 20px auto;
}

.phone.theme-natural .site-body,
.preview-modal.theme-natural .site-body {
  background: #f2f3e8;
}

.phone.theme-natural .site-intro,
.preview-modal.theme-natural .site-intro {
  text-align: center;
}

.phone.theme-natural .site-menu,
.preview-modal.theme-natural .site-menu {
  background: #e4ead8;
}

.phone.theme-natural .site-menu-grid article,
.phone.theme-natural .site-hours,
.phone.theme-natural .site-map,
.preview-modal.theme-natural .site-menu-grid article,
.preview-modal.theme-natural .site-hours,
.preview-modal.theme-natural .site-map {
  border: 0;
  border-radius: 22px 6px 22px 6px;
  box-shadow: none;
}

.phone.theme-natural .site-gallery-frame,
.preview-modal.theme-natural .site-gallery-frame {
  border-radius: 50% 50% 8px 8px;
}

.phone.theme-bistro .phone-screen,
.preview-modal.theme-bistro .modal-page {
  background: #f5ead9;
}

.phone.theme-bistro .site-hero,
.preview-modal.theme-bistro .site-hero {
  height: 235px;
  margin: 12px 12px 0;
}

.phone.theme-bistro .site-hero::after,
.preview-modal.theme-bistro .site-hero::after {
  position: absolute;
  inset: 8px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.72);
  content: "";
  pointer-events: none;
}

.phone.theme-bistro .hero-copy h3,
.phone.theme-bistro .site-section-heading h4,
.preview-modal.theme-bistro .hero-copy h3,
.preview-modal.theme-bistro .site-section-heading h4 {
  font-family: "Noto Serif JP", serif;
  font-style: italic;
}

.phone.theme-bistro .site-news,
.preview-modal.theme-bistro .site-news {
  border: 0;
  color: #fff;
  background: #263541;
  padding: 12px;
}

.phone.theme-bistro .site-menu-category-items,
.preview-modal.theme-bistro .site-menu-category-items {
  grid-template-columns: 1fr;
}

.phone.theme-bistro .site-menu-grid article,
.preview-modal.theme-bistro .site-menu-grid article {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 0 12px;
  border: 0;
  border-bottom: 1px solid #b8a78f;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone.theme-bistro .site-menu-grid article > img,
.preview-modal.theme-bistro .site-menu-grid article > img,
.phone.theme-bistro .site-menu-grid .site-menu-thumb,
.preview-modal.theme-bistro .site-menu-grid .site-menu-thumb {
  grid-row: span 3;
  height: 110px;
  border-radius: 50% 50% 4px 4px;
}

.phone.theme-night .phone-screen,
.phone.theme-night .site-body,
.phone.theme-night .site-menu,
.phone.theme-night .site-gallery,
.phone.theme-night .site-access,
.phone.theme-night .site-footer,
.preview-modal.theme-night .modal-page,
.preview-modal.theme-night .site-body,
.preview-modal.theme-night .site-menu,
.preview-modal.theme-night .site-gallery,
.preview-modal.theme-night .site-access,
.preview-modal.theme-night .site-footer {
  color: #e8eaf4;
  background: #101725;
}

.phone.theme-night .site-hero,
.preview-modal.theme-night .site-hero {
  height: 310px;
}

.phone.theme-night .site-hero-overlay,
.preview-modal.theme-night .site-hero-overlay {
  background: linear-gradient(180deg, rgba(16,23,37,.12), rgba(16,23,37,.92));
}

.phone.theme-night .hero-copy,
.preview-modal.theme-night .hero-copy {
  right: 0;
  bottom: 55px;
  left: 0;
  text-align: center;
}

.phone.theme-night .hero-copy h3,
.preview-modal.theme-night .hero-copy h3 {
  color: #fff;
  text-shadow: 0 0 24px var(--preview-accent);
}

.phone.theme-night .site-actions,
.preview-modal.theme-night .site-actions {
  border-color: #273149;
  background: #101725;
}

.phone.theme-night .site-actions button,
.preview-modal.theme-night .site-actions button {
  color: #e8eaf4;
  border-color: #273149;
  background: #101725;
}

.phone.theme-night .site-actions .site-main-action,
.preview-modal.theme-night .site-actions .site-main-action {
  color: #fff;
  background: var(--preview-accent);
}

.phone.theme-night .site-menu-grid article,
.phone.theme-night .site-hours,
.phone.theme-night .site-map,
.preview-modal.theme-night .site-menu-grid article,
.preview-modal.theme-night .site-hours,
.preview-modal.theme-night .site-map {
  border: 1px solid #2b3650;
  background: #151f31;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.phone.theme-night .site-section-heading h4,
.phone.theme-night .site-menu-grid strong,
.phone.theme-night .site-access dd,
.phone.theme-night .site-hours strong,
.preview-modal.theme-night .site-section-heading h4,
.preview-modal.theme-night .site-menu-grid strong,
.preview-modal.theme-night .site-access dd,
.preview-modal.theme-night .site-hours strong {
  color: #f3f4fb;
}

.phone.theme-night .site-intro p,
.phone.theme-night .site-hours span,
.phone.theme-night .site-hours small,
.preview-modal.theme-night .site-intro p,
.preview-modal.theme-night .site-hours span,
.preview-modal.theme-night .site-hours small {
  color: #9ea8bd;
}

.phone.theme-night .site-news,
.phone.theme-night .site-hours,
.phone.theme-night .site-access dl div,
.preview-modal.theme-night .site-news,
.preview-modal.theme-night .site-hours,
.preview-modal.theme-night .site-access dl div {
  border-color: #2b3650;
}

.phone-screen::-webkit-scrollbar { display: none; }

.site-hero {
  position: relative;
  height: 260px;
  overflow: hidden;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1200ms ease, transform 7.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-reveal {
  position: absolute;
  inset: -1px;
  z-index: 2;
  display: none;
  grid-template-columns: repeat(var(--tile-cols, 5), minmax(0, 1fr));
  grid-template-rows: repeat(var(--tile-rows, 1), minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.hero-slide-reveal i {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  margin: -.75px;
  opacity: 0;
  filter: blur(var(--tile-start-blur, 0));
  transform: translate3d(var(--tile-start-x, 0), var(--tile-start-y, 20px), 0) scale(var(--tile-start-scale, .94)) rotate(var(--tile-rotate, 0deg));
  transform-origin: center;
  backface-visibility: hidden;
  will-change: opacity, filter, transform;
}

.hero-slide-reveal img {
  position: absolute;
  top: var(--tile-top, 0);
  left: var(--tile-left, 0);
  width: var(--tile-image-width, 100%);
  height: var(--tile-image-height, 100%);
  object-fit: cover;
  object-position: center;
  filter: brightness(1.04) saturate(1.04) contrast(1.02);
  transform: var(--hero-tile-transform, none);
  transform-origin: center;
  backface-visibility: hidden;
  user-select: none;
  pointer-events: none;
}

.phone .hero-slide.with-pro-reveal.active .hero-slide-reveal,
.preview-modal .hero-slide.with-pro-reveal.active .hero-slide-reveal,
.published-store .hero-slide.with-pro-reveal.active .hero-slide-reveal {
  display: grid;
  animation: heroRevealShell var(--hero-reveal-duration, 2300ms) ease both;
}

.phone .hero-slide.with-pro-reveal.active .hero-slide-reveal i,
.preview-modal .hero-slide.with-pro-reveal.active .hero-slide-reveal i,
.published-store .hero-slide.with-pro-reveal.active .hero-slide-reveal i {
  animation: heroTileGather var(--hero-tile-duration, 2100ms) cubic-bezier(.18,.82,.16,1) both;
  animation-delay: var(--tile-delay, 0ms);
}

.phone .hero-slide.with-pro-reveal.active .photo-smart-frame-hero,
.preview-modal .hero-slide.with-pro-reveal.active .photo-smart-frame-hero,
.published-store .hero-slide.with-pro-reveal.active .photo-smart-frame-hero {
  animation: heroBaseReveal var(--hero-reveal-duration, 2300ms) ease both;
}

.pro-reveal-slices {
  --hero-reveal-duration: 2400ms;
  --hero-tile-duration: 2050ms;
}

.pro-reveal-panels {
  --hero-reveal-duration: 2550ms;
  --hero-tile-duration: 2200ms;
}

.pro-reveal-mosaic {
  --hero-reveal-duration: 2900ms;
  --hero-tile-duration: 2450ms;
}

.pro-reveal-constellation {
  --hero-reveal-duration: 4300ms;
  --hero-tile-duration: 3300ms;
}

.pro-reveal-mosaic i {
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.pro-reveal-panels i {
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}

.pro-reveal-constellation i {
  margin: -1px;
  box-shadow: none;
}

.hero-final-polish {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-final-polish img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.96) saturate(.96) contrast(1);
  transform: var(--hero-tile-transform, none) scale(1.018);
  transform-origin: center;
  user-select: none;
  pointer-events: none;
  will-change: transform, filter;
}

.hero-final-polish::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, transparent 0 52%, rgba(0,0,0,.2) 100%);
  opacity: 0;
  pointer-events: none;
}

.hero-final-polish::after {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    linear-gradient(118deg,
      transparent 0 41%,
      rgba(255,255,255,.05) 46%,
      rgba(255,255,255,.24) 50%,
      rgba(255,255,255,.05) 54%,
      transparent 60% 100%);
  filter: blur(16px);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translate3d(-28%, -22%, 0);
  will-change: opacity, transform;
}

.phone .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish,
.preview-modal .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish,
.published-store .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish {
  display: block;
  animation: heroFinalPolish 1800ms cubic-bezier(.2,.78,.18,1) 3720ms both;
}

.phone .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish img,
.preview-modal .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish img,
.published-store .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish img {
  animation: heroFinalImageSettle 1800ms cubic-bezier(.2,.78,.18,1) 3720ms both;
}

.phone .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish::before,
.preview-modal .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish::before,
.published-store .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish::before {
  animation: heroFinalDepth 1800ms ease-out 3720ms both;
}

.phone .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish::after,
.preview-modal .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish::after,
.published-store .hero-slide.with-pro-reveal.active .pro-reveal-constellation .hero-final-polish::after {
  animation: heroFinalGleam 1450ms cubic-bezier(.2,.74,.18,1) 3920ms both;
}

@keyframes heroRevealShell {
  0% {
    opacity: 0;
  }

  12%, 100% {
    opacity: 1;
  }
}

@keyframes heroTileGather {
  0% {
    opacity: 0;
    filter: blur(var(--tile-start-blur, 0));
    transform: translate3d(var(--tile-start-x, 0), var(--tile-start-y, 20px), 0) scale(var(--tile-start-scale, .94)) rotate(var(--tile-rotate, 0deg));
  }

  35% {
    opacity: .96;
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1.004) rotate(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

@keyframes heroFinalPolish {
  0% {
    opacity: 0;
  }

  48% {
    opacity: .96;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroFinalImageSettle {
  0% {
    transform: var(--hero-tile-transform, none) scale(1.022);
    filter: brightness(.92) saturate(.92) contrast(.98);
  }

  56% {
    transform: var(--hero-tile-transform, none) scale(1.006);
    filter: brightness(1.055) saturate(1.045) contrast(1.02);
  }

  100% {
    transform: var(--hero-tile-transform, none) scale(1);
    filter: brightness(1.015) saturate(1.015) contrast(1.01);
  }
}

@keyframes heroFinalDepth {
  0% {
    opacity: 0;
  }

  54% {
    opacity: .34;
  }

  100% {
    opacity: .18;
  }
}

@keyframes heroFinalGleam {
  0% {
    opacity: 0;
    transform: translate3d(-28%, -22%, 0);
  }

  42% {
    opacity: .28;
  }

  78% {
    opacity: .16;
    transform: translate3d(26%, 18%, 0);
  }

  100% {
    opacity: 0;
    transform: translate3d(48%, 32%, 0);
  }
}

@keyframes heroBaseReveal {
  0%, 58% {
    filter: brightness(.78) saturate(.9);
    transform: scale(1.018);
  }

  100% {
    filter: none;
    transform: scale(1);
  }
}

@keyframes heroSliceReveal {
  0% {
    opacity: 0;
    transform: translateY(var(--hero-reveal-y, 22px)) scale(.94);
  }

  34%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.smart-image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  isolation: isolate;
  background: #d9ddd6;
  --smart-blur: 28px;
  --smart-bg-scale: 1.16;
  --smart-fade: 24px;
  --smart-edge-fade: 40px;
  --smart-edge-blur: 16px;
  --smart-edge-opacity: .72;
  --smart-focus-x: 50%;
  --smart-focus-y: 50%;
  --smart-transform: translate(0, 0) scale(1);
}

.smart-image-backdrop {
  position: absolute;
  inset: calc(var(--smart-blur) * -2);
  z-index: 0;
  display: none;
  background-image: var(--smart-image-src);
  background-position: var(--smart-focus-x) var(--smart-focus-y);
  background-size: cover;
  filter: blur(var(--smart-blur)) saturate(1.08) contrast(.92) brightness(.95);
  opacity: .96;
  transform: scale(var(--smart-bg-scale));
  transform-origin: center;
}

.smart-image-frame.blur-fill-active .smart-image-backdrop {
  display: block;
}

.smart-image-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  transform: var(--smart-transform);
  transform-origin: center;
  will-change: transform;
}

.smart-image-frame img {
  grid-area: 1 / 1;
  display: block;
  margin: 0;
  pointer-events: none;
  user-select: none;
}

.smart-image-frame.fit-cover .smart-image-main,
.smart-image-frame.fit-cover .smart-image-edge {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.smart-image-frame.fit-contain .smart-image-main,
.smart-image-frame.fit-contain .smart-image-edge {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.smart-image-frame .smart-image-edge {
  z-index: 1;
  display: none;
  opacity: var(--smart-edge-opacity);
  filter: blur(var(--smart-edge-blur)) saturate(1.04) contrast(.95);
  transform: scale(1.06);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, rgba(0,0,0,.85) var(--smart-edge-fade), rgba(0,0,0,.85) calc(100% - var(--smart-edge-fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0,0,0,.85) var(--smart-edge-fade), rgba(0,0,0,.85) calc(100% - var(--smart-edge-fade)), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, rgba(0,0,0,.85) var(--smart-edge-fade), rgba(0,0,0,.85) calc(100% - var(--smart-edge-fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0,0,0,.85) var(--smart-edge-fade), rgba(0,0,0,.85) calc(100% - var(--smart-edge-fade)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.smart-image-frame.blur-fill-active .smart-image-edge {
  display: block;
}

.smart-image-frame .smart-image-main {
  z-index: 2;
  filter: saturate(1.02) contrast(1.01);
}

.smart-image-frame.blur-fill-active .smart-image-main {
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.smart-image-frame .smart-image-main,
.smart-image-frame .smart-image-edge {
  flex: none;
  border-radius: 0;
  max-width: none;
  max-height: none;
}

.smart-image-frame.fit-cover .smart-image-main,
.smart-image-frame.fit-cover .smart-image-edge {
  width: 100%;
  height: 100%;
}

.smart-image-frame.fit-contain .smart-image-main,
.smart-image-frame.fit-contain .smart-image-edge {
  max-width: 100%;
  max-height: 100%;
}

.smart-image-frame.fit-contain.has-contained-size .smart-image-main,
.smart-image-frame.fit-contain.has-contained-size .smart-image-edge {
  width: var(--smart-contain-width);
  height: var(--smart-contain-height);
  max-width: none;
  max-height: none;
}

.smart-image-frame.no-blur-fill .smart-image-backdrop {
  display: none;
}

.smart-image-frame.menu-sheet-frame.blur-fill-active .smart-image-main {
  filter: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, rgba(0,0,0,.22) 4px, rgba(0,0,0,.72) 8px, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), rgba(0,0,0,.72) calc(100% - 8px), rgba(0,0,0,.22) calc(100% - 4px), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0,0,0,.22) 4px, rgba(0,0,0,.72) 8px, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), rgba(0,0,0,.72) calc(100% - 8px), rgba(0,0,0,.22) calc(100% - 4px), transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, rgba(0,0,0,.22) 4px, rgba(0,0,0,.72) 8px, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), rgba(0,0,0,.72) calc(100% - 8px), rgba(0,0,0,.22) calc(100% - 4px), transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0,0,0,.22) 4px, rgba(0,0,0,.72) 8px, #000 var(--smart-fade), #000 calc(100% - var(--smart-fade)), rgba(0,0,0,.72) calc(100% - 8px), rgba(0,0,0,.22) calc(100% - 4px), transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.smart-image-frame.menu-sheet-frame.blur-fill-active .smart-image-edge {
  transform: scale(1.045);
}

.smart-image-frame.menu-sheet-frame .smart-image-backdrop {
  opacity: .76;
}

.hero-slide .smart-image-frame,
.photo-crop-preview .smart-image-frame,
.photo-gallery-preview .smart-image-frame,
.onboarding-crop-preview .smart-image-frame,
.onboarding-gallery-preview .smart-image-frame,
.preview-inline-photo-thumb .smart-image-frame,
.site-gallery-frame .smart-image-frame,
.photo-direct-preview .smart-image-frame {
  height: 100%;
  border-radius: inherit;
}

.hero-slide::after,
.site-gallery-frame::after,
.photo-crop-preview::after,
.photo-gallery-preview::after,
.preview-inline-photo-thumb::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 34px 13px rgba(20,22,18,.08);
  content: "";
}

.site-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,18,12,0.48) 0%, rgba(23,18,12,0.1) 45%, rgba(23,18,12,0.65) 100%);
  pointer-events: none;
}

.site-nav {
  position: absolute;
  inset: 18px 17px auto;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.site-logo {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.15em;
}

.site-logo small {
  font-family: "DM Sans", sans-serif;
  font-size: 5px;
  letter-spacing: 0.18em;
}

.menu-lines {
  display: grid;
  gap: 5px;
  padding-top: 4px;
}

.menu-lines i {
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
}

.hero-copy {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 20px;
  z-index: 3;
}

.hero-copy span {
  font-size: 7px;
  letter-spacing: 0.18em;
}

.hero-copy h3 {
  margin: 7px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.site-text-adjustable {
  position: relative;
  transform: translate3d(var(--text-adjust-x, 0), var(--text-adjust-y, 0), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-copy .site-text-adjustable,
.site-intro h4.site-text-adjustable,
.site-section-heading h4.site-text-adjustable {
  display: inline-block;
  max-width: 100%;
}

.site-intro p.site-text-adjustable,
.site-section-heading p.site-text-adjustable {
  display: block;
}

.site-text-adjustable.has-text-width-adjustment {
  box-sizing: border-box;
  width: var(--text-adjust-width, auto);
  max-width: 180%;
}

.preview-modal.is-editing .site-text-adjustable.has-text-adjustment::after {
  position: absolute;
  right: -9px;
  bottom: -7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--preview-accent);
  box-shadow: 0 0 0 3px rgba(255,255,255,.68);
  content: "";
}

.preview-modal.is-editing #modal-site-preview [data-inline-text].inline-edit-selected {
  cursor: grab;
}

.preview-modal.is-editing #modal-site-preview [data-inline-text].inline-edit-selected:active {
  cursor: grabbing;
}

.hero-controls {
  position: absolute;
  right: 13px;
  bottom: 12px;
  left: 17px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-controls > button {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 14, 11, .24);
  padding: 0 0 2px;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.hero-dots {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 4px;
}

.hero-dots button {
  width: 13px;
  height: 2px;
  border: 0;
  border-radius: 4px;
  background: rgba(255,255,255,.42);
  padding: 0;
  cursor: pointer;
}

.hero-dots button.active {
  width: 25px;
  background: #fff;
}

.hero-count {
  min-width: 31px;
  font-size: 6px;
  letter-spacing: .08em;
}

.hero-controls.single {
  display: none;
}

.site-actions {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.8fr;
  height: 47px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(43, 33, 23, 0.09);
}

.site-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-right: 1px solid #eee9e2;
  background: #fff;
  font-size: 7px;
  font-weight: 700;
}

.site-actions svg { width: 11px; }
.site-actions .site-main-action { color: #fff; background: var(--preview-accent); }

.site-body {
  padding: 18px;
}

.site-news {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 11px;
  border-bottom: 1px solid #ddd4c8;
  padding-bottom: 16px;
}

.site-news > span {
  color: var(--preview-accent);
  font-family: "Noto Serif JP", serif;
  font-size: 8px;
  font-weight: 700;
}

.site-news time {
  color: #9b9185;
  font-size: 6px;
}

.site-news p {
  margin: 4px 0 0;
  font-size: 7px;
  line-height: 1.6;
}

.site-intro {
  padding: 27px 2px 23px;
}

.site-intro small {
  color: var(--preview-accent);
  font-size: 6px;
  letter-spacing: 0.18em;
}

.site-intro h4 {
  margin: 9px 0 12px;
  color: var(--preview-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  line-height: 1.65;
}

.site-intro p {
  margin: 0;
  color: #756b61;
  font-size: 7px;
  line-height: 1.85;
}

.site-hours {
  display: grid;
  border: 1px solid #ddd3c7;
  padding: 13px;
  text-align: center;
}

.site-hours span { color: #81766c; font-size: 6px; }
.site-hours strong { margin: 5px 0 2px; font-family: "Noto Serif JP", serif; font-size: 14px; }
.site-hours small { color: #9a9086; font-size: 5px; }

.preview-foot {
  border-top: 1px solid #dcddd6;
  color: #8a8e88;
  background: #f8f8f4;
  font-size: 8px;
}

.preview-foot > span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.preview-foot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #56a274;
  box-shadow: 0 0 0 3px #e1f0e7;
}

.preview-foot button {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.preview-foot svg { width: 11px; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  visibility: hidden;
  background: rgba(30, 33, 28, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: 200ms ease;
}

.drawer-backdrop.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.edit-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  visibility: hidden;
  width: min(460px, 100vw);
  flex-direction: column;
  background: #fff;
  box-shadow: -24px 0 60px rgba(27, 30, 25, 0.12);
  opacity: 0;
  pointer-events: none;
}

.edit-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 25px 27px 20px;
}

.drawer-kicker {
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.drawer-header h2 {
  margin: 5px 0 0;
  font-size: 21px;
}

.drawer-header button {
  border: 0;
  color: #7e827c;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 25px 27px;
}

.drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: #fbfbf8;
  padding: 15px 20px;
}

.edit-drawer[data-type="upgrade"] .drawer-footer {
  display: none;
}

.drawer-footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #898d86;
  font-size: 8px;
}

.drawer-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #68a17f;
}

.form-section {
  margin-bottom: 24px;
}

.form-section h3 {
  margin: 0 0 6px;
  font-size: 13px;
}

.form-section > p {
  margin: 0 0 15px;
  color: #7e837c;
  font-size: 10px;
  line-height: 1.65;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  font-size: 10px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dcded8;
  border-radius: 8px;
  outline: 0;
  background: #fff;
  padding: 11px 12px;
  font-size: 12px;
  transition: 150ms ease;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
  line-height: 1.7;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-help {
  margin: -2px 0 12px;
  color: #7e837c;
  font-size: 9px;
  line-height: 1.6;
}

.news-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  border: 1px solid #dce7dc;
  border-radius: 14px;
  background: #f7fbf6;
  padding: 12px 13px;
}

.news-status-card b {
  color: #2f6e47;
  font-size: 12px;
}

.news-status-card span {
  color: #647268;
  font-size: 10px;
  line-height: 1.55;
  text-align: right;
}

.news-status-card.waiting {
  border-color: #ead9a6;
  background: #fffaf0;
}

.news-status-card.waiting b {
  color: #8a6715;
}

.news-status-card.expired,
.news-status-card.muted {
  border-color: #e4dfda;
  background: #faf8f6;
}

.news-status-card.expired b,
.news-status-card.muted b {
  color: #8b6c5c;
}

.news-period-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.news-period-fields .field {
  margin-bottom: 0;
}

.hours-row {
  display: grid;
  grid-template-columns: 42px 1fr 15px 1fr 48px;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
}

.hours-row > span {
  font-size: 10px;
  font-weight: 600;
}

.hours-row input {
  min-width: 0;
  border: 1px solid #dcded8;
  border-radius: 7px;
  padding: 8px 5px;
  font-size: 10px;
}

.hours-row small {
  color: #999d96;
  font-size: 9px;
  text-align: center;
}

.hours-row button {
  border: 1px solid #dcded8;
  border-radius: 6px;
  background: #fff;
  padding: 7px 3px;
  font-size: 8px;
  cursor: pointer;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.choice-card {
  position: relative;
  border: 1px solid #dcddd7;
  border-radius: 9px;
  background: #fff;
  padding: 12px;
  cursor: pointer;
}

.choice-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong { font-size: 11px; }
.choice-card small { margin-top: 4px; color: #92968f; font-size: 8px; }

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

.swatch {
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #d9dad4;
  cursor: pointer;
}

.swatch.selected {
  box-shadow: 0 0 0 2px var(--ink);
}

.upload-box {
  display: grid;
  min-height: 150px;
  place-items: center;
  border: 1px dashed #cfd1ca;
  border-radius: 10px;
  background: #fafaf7;
  color: #777c75;
  text-align: center;
  cursor: pointer;
}

.upload-box svg { width: 24px; margin-bottom: 7px; }
.upload-box strong,
.upload-box small { display: block; }
.upload-box strong { color: var(--ink); font-size: 11px; }
.upload-box small { margin-top: 6px; font-size: 8px; }

.menu-edit-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px;
}

.menu-edit-card + .menu-edit-card { margin-top: 9px; }
.menu-edit-card img { width: 60px; height: 50px; border-radius: 6px; object-fit: cover; }
.menu-edit-card strong,
.menu-edit-card small { display: block; }
.menu-edit-card strong { font-size: 10px; }
.menu-edit-card small { margin-top: 5px; color: #8b8f88; font-size: 8px; }
.menu-edit-card button { border: 0; background: transparent; color: #888c85; cursor: pointer; }

.editor-list {
  display: grid;
  gap: 12px;
}

.editor-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 13px;
}

.editor-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.editor-card-head strong {
  font-size: 11px;
}

.editor-card-head button {
  border: 0;
  color: #a05444;
  background: transparent;
  font-size: 9px;
  cursor: pointer;
}

.editor-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 9px;
}

.editor-checks {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.editor-checks label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 600;
}

.add-item-button {
  width: 100%;
  margin-top: 12px;
  border: 1px dashed #c8cbc3;
  border-radius: 9px;
  color: var(--accent-dark);
  background: #fffaf6;
  padding: 12px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.description-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #f6f6f2;
  padding: 10px 12px;
}

.description-setting strong,
.description-setting small {
  display: block;
}

.description-setting strong {
  font-size: 10px;
}

.description-setting small {
  margin-top: 3px;
  color: #8d918a;
  font-size: 8px;
}

.switch-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.switch-label input {
  position: absolute;
  opacity: 0;
}

.switch-label span {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 20px;
  background: #cfd2cb;
  transition: 150ms ease;
}

.switch-label span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: 150ms ease;
}

.switch-label input:checked + span {
  background: var(--accent);
}

.switch-label input:checked + span::after {
  transform: translateX(14px);
}

.switch-label b {
  min-width: 45px;
  font-size: 8px;
}

.is-hidden {
  display: none !important;
}

.schedule-list {
  display: grid;
  gap: 11px;
}

.schedule-card {
  border: 1px solid #dedfd9;
  border-radius: 11px;
  background: #fff;
  padding: 13px;
}

.schedule-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.schedule-card-head strong {
  font-size: 12px;
}

.schedule-summary {
  color: #858a83;
  font-size: 8px;
}

.schedule-mode {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 8px;
  background: #f0f1ed;
  padding: 3px;
}

.schedule-mode label {
  cursor: pointer;
}

.schedule-mode input {
  position: absolute;
  opacity: 0;
}

.schedule-mode span {
  display: block;
  border-radius: 6px;
  padding: 8px 4px;
  color: #787d76;
  font-size: 8px;
  font-weight: 700;
  text-align: center;
}

.schedule-mode input:checked + span {
  color: var(--accent-dark);
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .08);
}

.schedule-times {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.schedule-period {
  display: grid;
  grid-template-columns: 48px 1fr 12px 1fr;
  align-items: center;
  gap: 6px;
}

.schedule-period b {
  font-size: 9px;
}

.schedule-period input {
  min-width: 0;
  border: 1px solid #dcded8;
  border-radius: 7px;
  padding: 8px 5px;
  font-size: 10px;
}

.schedule-period small {
  color: #93978f;
  text-align: center;
}

.photo-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.photo-main-picker,
.photo-arrange-editor {
  display: grid;
  gap: 12px;
  margin-top: 13px;
  border: 1px solid #e1e2dc;
  border-radius: 14px;
  background: #fff;
  padding: 13px;
}

.photo-editor-step {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 9px;
}

.photo-editor-step > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-dark);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.photo-editor-step strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.photo-editor-step small {
  display: block;
  margin-top: 2px;
  color: #81877f;
  font-size: 8px;
}

.photo-thumb-strip,
.photo-select-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.photo-thumb-strip button,
.photo-select-strip button {
  position: relative;
  flex: 0 0 72px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #f4f5f1;
  padding: 0;
  cursor: pointer;
}

.photo-thumb-strip button.is-main,
.photo-select-strip button.selected {
  border-color: var(--accent);
  box-shadow: 0 9px 20px rgba(187, 79, 41, .16);
}

.photo-thumb-strip img,
.photo-select-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}

.photo-thumb-strip span,
.photo-select-strip span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 35, 30, .72);
  padding: 3px 6px;
  font-size: 7px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.photo-thumb-strip .is-main span {
  background: var(--accent);
}

.photo-editor-selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #eeeeea;
  padding-top: 12px;
}

.photo-editor-selected-head strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.photo-editor-selected-head small {
  display: block;
  margin-top: 2px;
  color: #858a83;
  font-size: 8px;
}

.photo-editor-selected-head > span,
.photo-editor-selected-head button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #fff0e7;
  color: var(--accent-dark);
  padding: 8px 10px;
  font-size: 8px;
  font-weight: 800;
}

.photo-surface-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  border-radius: 12px;
  background: #f0f1ed;
  padding: 4px;
}

.photo-surface-tabs button {
  border: 0;
  border-radius: 9px;
  color: #6c716a;
  background: transparent;
  padding: 9px 6px;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.photo-surface-tabs button.selected {
  color: var(--accent-dark);
  background: #fff;
  box-shadow: 0 2px 9px rgba(0, 0, 0, .08);
}

.photo-direct-preview {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border: 1px solid #dedfd9;
  border-radius: 16px;
  background: #d9ddd6;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.photo-direct-preview.gallery-shape {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.photo-direct-preview.is-dragging {
  cursor: grabbing;
}

.photo-direct-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.photo-drag-guide {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 23, 20, .66);
  padding: 8px 11px;
  font-size: 9px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.photo-drag-guide b {
  font-size: 13px;
}

.photo-position-status,
.photo-order-editor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.photo-position-status span,
.photo-order-editor small {
  color: #7b8179;
  font-size: 8px;
  font-weight: 700;
}

.photo-position-status button,
.photo-order-editor button,
.photo-delete-button {
  border: 1px solid #dedfd8;
  border-radius: 10px;
  background: #fff;
  padding: 9px 11px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.photo-position-status button:disabled,
.photo-order-editor button:disabled {
  opacity: .42;
  cursor: default;
}

.photo-drag-note {
  margin: -4px 0 0;
  color: #858a82;
  font-size: 8px;
  line-height: 1.6;
}

.photo-order-editor {
  border-top: 1px solid #eeeeea;
  padding-top: 12px;
}

.photo-order-editor div {
  display: grid;
  gap: 2px;
}

.photo-order-editor strong {
  color: var(--ink);
  font-size: 10px;
}

.photo-delete-button {
  justify-self: start;
  border-color: #ead2c8;
  color: #b64c32;
  background: #fff8f4;
}

.photo-empty-state {
  display: grid;
  gap: 4px;
  margin: 14px 0;
  border: 1px dashed #d7d9d2;
  border-radius: 13px;
  background: #fbfbf8;
  padding: 18px;
}

.photo-empty-state strong {
  font-size: 11px;
}

.photo-empty-state span {
  color: #858a82;
  font-size: 8px;
}

.photo-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.photo-section-heading h3,
.photo-section-heading p {
  margin: 0;
}

.photo-section-heading p {
  margin-top: 5px;
}

.photo-section-heading > strong {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef3ec;
  color: #506250;
  padding: 6px 9px;
  font-size: 8px;
}

.photo-sample-notice,
.onboarding-photo-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0;
  border: 1px solid #ead9b7;
  border-radius: 9px;
  background: #fff9ec;
  padding: 10px 12px;
  color: #725b2d;
}

.photo-sample-notice b,
.onboarding-photo-note strong {
  flex: 0 0 auto;
  font-size: 9px;
}

.photo-sample-notice span,
.onboarding-photo-note span {
  font-size: 8px;
}

.photo-editor-card {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: #eee;
}

.photo-order {
  position: absolute;
  top: 7px;
  left: 7px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(20, 23, 20, .7);
  font-size: 8px;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.photo-editor-card.hero {
  border-color: var(--accent);
}

.photo-preview-pair,
.onboarding-preview-pair {
  display: grid;
  grid-template-columns: 1.23fr 1fr;
  gap: 5px;
  background: #fff;
  padding: 5px;
}

.photo-preview-pair > div,
.onboarding-preview-pair > div {
  display: grid;
  gap: 4px;
}

.photo-use-label {
  display: grid;
  gap: 2px;
  border-radius: 7px;
  background: #f8f6f1;
  padding: 5px 4px;
  text-align: center;
}

.photo-use-label strong,
.photo-preview-pair b,
.onboarding-preview-pair b {
  color: #60675f;
  font-size: 7px;
  text-align: center;
}

.photo-use-label small {
  color: #8b9189;
  font-size: 6px;
  line-height: 1.35;
}

.hero-target .photo-use-label {
  background: #fff2e9;
}

.hero-target .photo-use-label strong {
  color: #b64a27;
}

.gallery-target .photo-use-label {
  background: #eef4ef;
}

.gallery-target .photo-use-label strong {
  color: #315f4d;
}

.photo-crop-preview,
.photo-gallery-preview,
.onboarding-crop-preview,
.onboarding-gallery-preview {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #d9ddd6;
}

.photo-crop-preview,
.onboarding-crop-preview {
  aspect-ratio: 1.23 / 1;
}

.photo-gallery-preview,
.onboarding-gallery-preview {
  aspect-ratio: 1 / 1;
}

.photo-crop-preview img,
.photo-gallery-preview img,
.onboarding-crop-preview img,
.onboarding-gallery-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placement {
  display: grid;
  gap: 2px;
  background: #fff;
  padding: 7px 8px 2px;
}

.photo-placement b {
  color: var(--ink);
  font-size: 8px;
}

.photo-placement small {
  color: #858a82;
  font-size: 7px;
}

.photo-focus-controls,
.onboarding-focus-controls {
  display: grid;
  gap: 7px;
  background: #fff;
  padding: 9px;
}

.photo-focus-controls strong,
.onboarding-focus-controls strong {
  margin-top: 3px;
  color: #353a34;
  font-size: 8px;
}

.photo-focus-controls label,
.onboarding-focus-controls label {
  display: grid;
  grid-template-columns: 55px 1fr;
  align-items: center;
  gap: 6px;
  color: #596059;
  font-size: 7px;
  font-weight: 700;
}

.photo-focus-controls input,
.onboarding-focus-controls input {
  width: 100%;
  accent-color: var(--accent);
  cursor: ew-resize;
}

.photo-focus-controls small {
  color: #8a9088;
  font-size: 7px;
  line-height: 1.5;
}

.photo-editor-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 7px;
}

.photo-editor-actions button {
  border: 0;
  background: transparent;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.photo-editor-actions button:first-child {
  color: var(--accent-dark);
}

.photo-editor-actions > span {
  display: flex;
  gap: 2px;
}

.photo-editor-actions > span button {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #f1f3ef;
}

.site-footer button {
  border: 0;
  color: inherit;
  background: transparent;
  padding: 0 6px;
  font-size: inherit;
  cursor: pointer;
}

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #f5f1e9;
  opacity: 0;
  transition: 200ms ease;
}

.preview-modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  height: 66px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  font-size: 11px;
  font-weight: 700;
}

.modal-bar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.modal-bar button:not(.primary) {
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.modal-bar .preview-edit-toggle {
  display: grid;
  min-width: 162px;
  gap: 3px;
  border: 1px solid #bfc5ba;
  border-radius: 12px;
  color: #2f362e;
  background:
    linear-gradient(180deg, #fff, #eef1eb);
  padding: 9px 13px 10px;
  text-align: left;
  box-shadow: 0 8px 18px rgba(35,40,34,.1), inset 0 -1px 0 rgba(35,40,34,.08);
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.modal-bar .preview-edit-toggle:hover {
  border-color: #879280;
  box-shadow: 0 11px 22px rgba(35,40,34,.13), inset 0 -1px 0 rgba(35,40,34,.1);
  transform: translateY(-1px);
}

.preview-edit-toggle-status {
  justify-self: start;
  border-radius: 999px;
  color: #4d5b48;
  background: #dfe5dc;
  padding: 3px 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .05em;
}

.preview-edit-toggle-label {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.preview-edit-toggle small {
  color: #737a70;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
}

.modal-bar .preview-close-button {
  border: 1px solid #e3dfd7;
  border-radius: 8px;
  color: #777b74;
  background: #fff;
  padding: 9px 13px;
}

.modal-bar .preview-edit-toggle.active {
  border-color: #d85b34;
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.32), transparent 28%),
    linear-gradient(135deg, #e26a3d, #bd4427);
  box-shadow: 0 13px 28px rgba(216,91,52,.28), inset 0 -1px 0 rgba(92,30,15,.18);
}

.modal-bar .preview-edit-toggle.active .preview-edit-toggle-status {
  color: #8b2f1c;
  background: #fff2e8;
}

.modal-bar .preview-edit-toggle.active small {
  color: rgba(255,255,255,.82);
}

.account-logout {
  border: 1px solid #dedfd9;
  border-radius: 9px;
  color: #5d625b;
  background: #fff;
  padding: 10px 13px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.auth-page {
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  min-height: calc(100vh - 160px);
  background: #f5f3ed;
}

.auth-card {
  align-self: center;
  width: min(420px, calc(100% - 40px));
  margin: 64px auto;
  border: 1px solid #e0dfd8;
  border-radius: 24px;
  background: #fff;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(35, 40, 34, .08);
}

.auth-kicker {
  color: #b65031;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}

.auth-card h1 {
  margin: 10px 0 8px;
  font-size: 30px;
}

.auth-card > p {
  margin: 0 0 26px;
  color: #777d75;
  line-height: 1.8;
}

.auth-form {
  display: grid;
  gap: 15px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  border: 1px solid #d9dbd4;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
}

.auth-form button {
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: #c85a38;
  padding: 14px;
  font-weight: 800;
  cursor: pointer;
}

.auth-form button:disabled {
  opacity: .55;
}

.terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #e1d7ca;
  border-radius: 14px;
  background: #fffaf5;
  padding: 13px 14px;
  color: #373b34;
  cursor: pointer;
}

.terms-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #c85a38;
}

.terms-consent span {
  display: grid;
  gap: 4px;
}

.terms-consent strong {
  font-size: 11px;
  line-height: 1.5;
}

.terms-consent small {
  color: #766f67;
  font-size: 10px;
  line-height: 1.6;
}

.terms-consent a {
  color: #a9472d;
  font-weight: 800;
}

.auth-terms-consent {
  margin-top: 2px;
}

.auth-form [data-auth-status] {
  min-height: 20px;
  margin: 0;
  color: #b33e2d;
  font-size: 11px;
}

.auth-form [data-auth-status].success {
  color: #337255;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: #9a9e97;
  font-size: 10px;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  flex: 1;
  background: #e2e3de;
  content: "";
}

.auth-magic-form button {
  border: 1px solid #c9cbc4;
  color: #333a33;
  background: #f7f7f3;
}

.auth-links {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  font-size: 11px;
}

.local-auth-test {
  margin-top: 24px;
  border: 1px dashed #d69a78;
  border-radius: 14px;
  background: #fff7f1;
  padding: 16px;
}

.local-auth-test span {
  color: #a3472d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.local-auth-test p {
  margin: 7px 0 12px;
  color: #74675f;
  font-size: 11px;
  line-height: 1.7;
}

.local-auth-test button {
  width: 100%;
  border: 1px solid #d85b34;
  border-radius: 9px;
  color: #a34026;
  background: #fff;
  padding: 11px;
  font-weight: 800;
  cursor: pointer;
}

.auth-card > a,
.auth-links a {
  color: #8b4a35;
  font-weight: 700;
}

.auth-benefits {
  display: grid;
  align-content: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(34, 42, 35, .9), rgba(77, 48, 35, .86)),
    url("https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?auto=format&fit=crop&w=1400&q=82") center/cover;
  padding: 80px max(48px, 9vw);
}

.auth-benefits > span {
  color: #efbd9d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.auth-benefits h2 {
  margin: 15px 0 28px;
  font: 700 clamp(32px, 4vw, 54px)/1.45 "Noto Serif JP", serif;
}

.auth-benefits ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.auth-benefits li::before {
  margin-right: 10px;
  color: #efbd9d;
  content: "✓";
}

@media (max-width: 820px) {
  .auth-page {
    display: block;
  }

  .auth-card {
    margin: 28px auto;
    padding: 26px 22px;
  }

  .auth-benefits {
    min-height: 360px;
    padding: 52px 28px;
  }

  .account-logout {
    display: none;
  }
}

.modal-design-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 82px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf6;
  padding: 12px 26px;
}

.modal-design-title strong,
.modal-design-title small {
  display: block;
}

.modal-design-title strong {
  font-size: 11px;
}

.modal-design-title small {
  margin-top: 4px;
  color: #858a83;
  font-size: 8px;
}

.modal-theme-options {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.modal-theme-options button {
  display: grid;
  gap: 2px;
  border: 1px solid #dcddd7;
  border-radius: 7px;
  background: #fff;
  padding: 7px 13px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.modal-theme-options button small {
  color: #92978f;
  font-size: 7px;
  font-weight: 500;
}

.modal-theme-options button.selected {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.modal-theme-picker {
  display: grid;
  gap: 7px;
}

.modal-theme-picker .theme-category-tabs {
  justify-content: center;
}

.modal-theme-picker .theme-category-tabs button {
  padding: 5px 9px;
  font-size: 8px;
}

.modal-color-options {
  display: flex;
  gap: 8px;
}

.modal-color-options button {
  width: 22px;
  height: 22px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 1px #d1d3cc;
  cursor: pointer;
}

.modal-color-options button.selected {
  box-shadow: 0 0 0 2px var(--ink);
}

.modal-copy-toolbar,
.start-copy-editor {
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 12px 26px;
}

.preview-direct-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-bottom: 1px solid #dedfd9;
  color: #343a33;
  background: #f2eadf;
  padding: 10px 20px;
  font-size: 9px;
  font-weight: 800;
}

.preview-modal.is-editing .preview-direct-guide {
  border-bottom-color: #efc3a3;
  background: #fff1e6;
}

.preview-direct-guide span::before {
  margin-right: 6px;
  color: #d85b34;
  content: "●";
}

.preview-modal:not(.is-editing) .preview-direct-guide span::before {
  color: #4c7c62;
}

.preview-direct-guide small {
  color: #81877f;
  font-size: 7px;
  font-weight: 500;
}

.preview-modal.is-editing #modal-site-preview [data-inline-text],
.preview-modal.is-editing #modal-site-preview [data-inline-photo] {
  cursor: pointer;
}

#modal-site-preview [data-inline-text] {
  position: relative;
  border-radius: 5px;
  transition: outline-color .18s ease, background-color .18s ease;
}

.preview-modal.is-editing #modal-site-preview [data-inline-text]:hover,
.preview-modal.is-editing #modal-site-preview [data-inline-text]:focus,
.preview-modal.is-editing #modal-site-preview [data-inline-text].inline-edit-selected {
  outline: 2px solid #efb07e;
  outline-offset: 4px;
  background: rgba(216,91,52,.09);
}

.inline-photo-edit-trigger {
  display: none;
}

.preview-modal.is-editing #modal-site-preview .inline-photo-edit-trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: auto;
  z-index: 8;
  display: block;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  color: #fff;
  background: rgba(31,36,30,.78);
  padding: 7px 10px;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

#modal-site-preview .site-hero > .hero-photo-edit-trigger {
  top: 16px;
  right: 16px;
  z-index: 20;
}

.preview-inline-editor {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  visibility: hidden;
  border: 1px solid #d9dbd4;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  padding: 17px;
  opacity: 0;
  box-shadow: 0 24px 65px rgba(24,29,24,.24);
  transform: translateY(15px);
  transition: .2s ease;
  backdrop-filter: blur(18px);
}

.preview-inline-editor.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.preview-inline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.preview-inline-head span,
.preview-inline-head strong {
  display: block;
}

.preview-inline-head span {
  color: #d85b34;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
}

.preview-inline-head strong {
  margin-top: 3px;
  font-size: 13px;
}

.preview-inline-head button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #5f655d;
  background: #f0f1ed;
  cursor: pointer;
}

.preview-inline-field {
  display: grid;
  gap: 6px;
}

.preview-inline-field > span {
  color: #555b54;
  font-size: 8px;
  font-weight: 800;
}

.preview-inline-field input,
.preview-inline-field textarea {
  width: 100%;
  border: 1px solid #d5d8d1;
  border-radius: 9px;
  color: #242923;
  background: #fafbf8;
  padding: 11px;
  font: inherit;
  font-size: 11px;
  line-height: 1.6;
  outline: none;
  resize: vertical;
}

.preview-inline-field textarea {
  min-height: 90px;
}

.preview-inline-field input:focus,
.preview-inline-field textarea:focus {
  border-color: #d85b34;
  box-shadow: 0 0 0 3px rgba(216,91,52,.1);
}

.preview-inline-field small,
.preview-inline-photo > small,
.preview-inline-adjustments small {
  color: #858b83;
  font-size: 7px;
  line-height: 1.6;
}

.preview-inline-adjustments {
  display: grid;
  gap: 9px;
  margin-top: 12px;
  border: 1px solid #eceee8;
  border-radius: 12px;
  background: #f7f8f4;
  padding: 12px;
}

.preview-inline-adjust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.preview-inline-adjust-head span {
  color: #454b43;
  font-size: 8px;
  font-weight: 900;
}

.preview-inline-adjust-head button {
  border: 1px solid #d9ddd4;
  border-radius: 999px;
  color: #565d54;
  background: #fff;
  padding: 5px 8px;
  font-size: 7px;
  font-weight: 800;
  cursor: pointer;
}

.preview-inline-adjustments label {
  display: grid;
  grid-template-columns: 58px 1fr 44px;
  align-items: center;
  gap: 8px;
  color: #4b5249;
  font-size: 8px;
  font-weight: 800;
}

.preview-inline-adjustments input {
  width: 100%;
  accent-color: #d85b34;
}

.preview-inline-adjustments b {
  color: #222821;
  font-size: 8px;
  text-align: right;
}

.preview-inline-photo {
  display: grid;
  gap: 10px;
}

.preview-inline-photo-thumb {
  position: relative;
  overflow: hidden;
  height: 125px;
  border-radius: 10px;
  background: #292d27;
}

.preview-inline-photo-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-inline-photo label {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 800;
}

.preview-inline-photo input {
  width: 100%;
}

.preview-inline-photo button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #315f4d;
  padding: 10px;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.preview-copy-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.preview-copy-heading > div,
.preview-copy-heading strong,
.preview-copy-heading small {
  display: block;
}

.preview-copy-heading strong {
  font-size: 11px;
}

.preview-copy-heading small {
  margin-top: 3px;
  color: #858a83;
  font-size: 8px;
}

.preview-copy-heading .btn {
  flex: 0 0 auto;
  height: 32px;
  font-size: 8px;
}

.preview-copy-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.preview-copy-fields label {
  display: grid;
  gap: 4px;
  color: #555c54;
  font-size: 8px;
  font-weight: 700;
}

.preview-copy-fields input,
.preview-copy-fields textarea {
  width: 100%;
  border: 1px solid #d9dcd5;
  border-radius: 7px;
  color: #242923;
  background: #fafbf8;
  padding: 8px 9px;
  font: inherit;
  font-size: 9px;
  outline: none;
  resize: vertical;
}

.preview-copy-fields textarea {
  min-height: 48px;
  max-height: 90px;
}

.preview-copy-fields input:focus,
.preview-copy-fields textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.start-copy-editor {
  border: 1px solid #dfe1da;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.start-copy-editor .preview-copy-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
}

.modal-site {
  display: grid;
  height: calc(100vh - 148px);
  place-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24,16,10,.7), rgba(24,16,10,.15)),
    url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=90") center / cover;
}

.preview-modal.theme-simple .modal-site {
  background:
    linear-gradient(90deg, rgba(20,25,29,.72), rgba(20,25,29,.08)),
    url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=90") center / cover;
}

.preview-modal.theme-cafe .modal-site {
  background:
    linear-gradient(90deg, rgba(80,57,37,.62), rgba(80,57,37,.08)),
    url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=90") center / cover;
}

.preview-modal.theme-cafe .modal-site-inner h2 {
  letter-spacing: .04em;
}

.preview-modal.theme-premium .modal-site {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.24)),
    url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1800&q=90") center / cover;
}

.preview-modal.theme-simple .modal-site-inner h2 {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: .02em;
}

.modal-site-inner {
  width: min(1100px, 86vw);
}

.modal-site-tag {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  letter-spacing: .2em;
}

.modal-site-inner p {
  margin: 3px 0 80px;
  font-size: 8px;
  letter-spacing: .4em;
}

.modal-site-inner h2 {
  margin: 0 0 22px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(54px, 8vw, 110px);
  line-height: 1.3;
  letter-spacing: .12em;
}

.modal-site-inner > span:last-child {
  font-size: 12px;
  letter-spacing: .25em;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: 34px 1fr;
  width: 300px;
  align-items: center;
  gap: 10px;
  border: 1px solid #dfe3dc;
  border-radius: 10px;
  background: #fff;
  padding: 13px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #4e8c68;
}

.toast-icon svg { width: 16px; }
.toast strong,
.toast small { display: block; }
.toast strong { font-size: 10px; }
.toast small { margin-top: 4px; color: #878b84; font-size: 8px; }

.mobile-nav,
.mobile-status {
  display: none;
}

@media (max-width: 1180px) {
  .workspace {
    grid-template-columns: minmax(560px, 1fr) 375px;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-health {
    grid-template-columns: 1fr auto;
  }
  .health-detail {
    display: none;
  }
}

@media (max-width: 980px) {
  .sidebar {
    width: 76px;
    align-items: center;
    padding: 24px 10px;
  }
  .brand {
    padding: 0 0 28px;
  }
  .brand > span:last-child,
  .nav-item span:not(.nav-icon):not(.nav-dot),
  .plan-card,
  .nav-item.muted span:last-child {
    display: none;
  }
  .nav-item {
    justify-content: center;
    padding: 12px;
  }
  .nav-dot {
    position: absolute;
    top: 8px;
    right: 10px;
  }
  .main {
    margin-left: 76px;
  }
  .workspace {
    grid-template-columns: minmax(540px, 1fr) 350px;
  }
  .content {
    padding: 28px 24px 50px;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric:nth-child(3) {
    border-left: 0;
  }
  .metric:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .preview-panel {
    top: 78px;
  }
  .save-state {
    display: none;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 76px;
  }
  .sidebar,
  .preview-panel {
    display: none;
  }
  .main {
    margin-left: 0;
  }
  .topbar {
    position: relative;
    min-height: 74px;
    padding: 16px 18px;
  }
  .store-heading p .header-divider,
  .store-heading p > span:last-child {
    display: none;
  }
  .topbar h1 {
    font-size: 17px;
  }
  .topbar-actions .btn,
  .save-state {
    display: none;
  }
  .avatar {
    width: 36px;
    height: 36px;
  }
  .mobile-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 700;
  }
  .mobile-status > div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #3e7859;
  }
  .mobile-status-actions {
    display: flex !important;
    gap: 6px;
  }
  .mobile-status button {
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--accent);
    padding: 8px 12px;
    font-size: 9px;
    font-weight: 700;
  }
  .mobile-status .mobile-preview-button {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #d9dad4;
    color: var(--ink);
    background: #fff;
  }
  .mobile-preview-button svg {
    width: 13px;
  }
  .workspace {
    display: block;
    min-height: 0;
  }
  .content {
    padding: 24px 16px 40px;
  }
  .welcome-row {
    align-items: flex-start;
  }
  .site-health {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 12px;
  }
  .welcome-row h2 {
    font-size: 22px;
  }
  .undo-button {
    font-size: 0;
  }
  .undo-button svg { width: 18px; }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-action {
    grid-template-columns: 37px 1fr;
    min-height: 84px;
    padding: 12px;
  }
  .quick-icon {
    width: 37px;
    height: 37px;
  }
  .quick-action .arrow {
    display: none;
  }
  .notice-card {
    grid-template-columns: 38px 1fr;
  }
  .notice-card > button:not(.dismiss) {
    grid-column: 2;
    justify-self: start;
  }
  .metrics {
    grid-template-columns: 1fr;
  }
  .metric + .metric {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .news-status-card {
    display: grid;
    align-items: start;
  }
  .news-status-card span {
    text-align: left;
  }
  .news-period-fields {
    grid-template-columns: 1fr;
  }
  .history-item {
    grid-template-columns: 34px 1fr;
  }
  .history-item button {
    display: none;
  }
  .mobile-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 70px;
    border-top: 1px solid #dedfd9;
    background: rgba(255,255,255,.96);
    padding: 7px 8px max(7px, env(safe-area-inset-bottom));
    backdrop-filter: blur(15px);
  }
  .mobile-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    border: 0;
    color: #8a8e87;
    background: transparent;
  }
  .mobile-nav svg {
    width: 18px;
    height: 18px;
  }
  .mobile-nav small {
    font-size: 8px;
  }
  .mobile-nav button.active {
    color: var(--accent);
  }
  .mobile-nav .mobile-add span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-top: -20px;
    place-items: center;
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: var(--accent);
    font-size: 20px;
    box-sizing: content-box;
  }
  .edit-drawer {
    inset: 7vh 0 0;
    width: 100%;
    border-radius: 18px 18px 0 0;
  }
  .edit-drawer.open {
    visibility: visible;
  }
  .drawer-header {
    padding: 20px;
  }
  .drawer-content {
    padding: 20px;
  }
  .drawer-footer {
    padding-bottom: max(15px, env(safe-area-inset-bottom));
  }
  .drawer-footer > span {
    display: none;
  }
  .drawer-footer .btn {
    width: 100%;
  }
  .modal-bar {
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }
  .modal-bar > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: auto;
  }
  .modal-bar > div:last-child button {
    width: 100%;
    min-height: 42px;
    margin: 0;
    padding-inline: 10px;
  }
  .modal-bar #modal-publish {
    grid-column: 1 / -1;
  }
  .modal-design-toolbar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 14px;
  }
  .modal-copy-toolbar {
    padding: 10px 12px;
  }
  .preview-copy-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .preview-copy-fields {
    display: flex;
  }
  .preview-copy-fields label {
    min-width: 180px;
  }
  .start-copy-editor .preview-copy-fields {
    display: grid;
    grid-template-columns: 1fr;
  }
  .modal-design-title small {
    display: none;
  }
  .modal-theme-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
    gap: 5px;
  }
  .modal-theme-options button {
    padding: 8px 4px;
  }
  .modal-color-options {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    border: 1px solid #e4e1d9;
    border-radius: 10px;
    background: #fff;
    padding: 9px 10px;
  }
  .modal-color-options::before {
    margin-right: 2px;
    color: #70766f;
    content: "色";
    font-size: 9px;
    font-weight: 800;
  }
  .modal-color-options button {
    width: 25px;
    height: 25px;
  }
  .modal-site {
    height: calc(100vh - 178px);
  }
}

@media (max-width: 430px) {
  .eyebrow {
    font-size: 8px;
  }
  .quick-action strong {
    font-size: 10px;
  }
  .quick-action small {
    line-height: 1.4;
  }
  .status-line .domain {
    display: none;
  }
  .section-head p {
    max-width: 210px;
  }
}

/* Full-page site preview */
.preview-section-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  border-top: 1px solid #eeeeea;
  padding-top: 9px;
}

.preview-section-nav > span {
  color: #737871;
  font-size: 8px;
  font-weight: 600;
}

.preview-section-nav > div {
  display: flex;
  gap: 3px;
  border-radius: 7px;
  background: #f1f1ed;
  padding: 2px;
}

.preview-section-nav button {
  border: 0;
  border-radius: 5px;
  color: #7c817a;
  background: transparent;
  padding: 5px 7px;
  font-size: 7px;
  font-weight: 700;
  cursor: pointer;
}

.preview-section-nav button.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.phone {
  height: min(470px, calc(100vh - 385px));
  min-height: 330px;
}

.phone.desktop-mode {
  height: min(450px, calc(100vh - 385px));
}

.phone-screen {
  scrollbar-color: rgba(96, 91, 82, .4) transparent;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.phone-screen::-webkit-scrollbar {
  display: block;
  width: 4px;
}

.phone-screen::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(96, 91, 82, .4);
}

.site-menu,
.site-gallery,
.site-access {
  padding: 28px 18px;
}

.site-menu,
.site-access {
  background: #fffdf9;
}

.site-gallery {
  background: #eee6db;
}

.site-section-heading {
  margin-bottom: 16px;
  text-align: center;
}

.site-section-heading small {
  color: var(--preview-accent);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .2em;
}

.site-section-heading h4 {
  margin: 6px 0 5px;
  color: var(--preview-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}

.site-section-heading p {
  margin: 0;
  color: #82786e;
  font-size: 6px;
}

.site-menu-grid {
  display: grid;
  gap: 11px;
}

.site-menu-category + .site-menu-category {
  margin-top: 19px;
}

.site-menu-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px solid #dfd6cb;
  padding-bottom: 7px;
}

.site-menu-category-head strong {
  color: var(--preview-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
}

.site-menu-category-head small {
  color: #948a80;
  font-size: 6px;
}

.site-menu-category-items {
  display: grid;
  gap: 11px;
}

.site-menu-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(54, 42, 29, .07);
}

.site-menu-grid article > img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.site-menu-grid .site-menu-thumb {
  width: 100%;
  height: 100px;
}

.site-menu-grid article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px 0;
}

.site-menu-grid strong {
  color: var(--preview-ink);
  font-family: "Noto Serif JP", serif;
  font-size: 9px;
}

.site-menu-grid span {
  color: var(--preview-accent);
  font-size: 8px;
  font-weight: 700;
}

.site-menu-grid p {
  margin: 5px 0 0;
  padding: 0 11px 11px;
  color: #8c8278;
  font-size: 6px;
}

.menu-meta {
  display: flex;
  padding: 6px 11px 0;
}

.menu-meta span {
  border-radius: 100px;
  color: var(--preview-accent);
  background: color-mix(in srgb, var(--preview-accent) 10%, white);
  padding: 3px 6px;
  font-size: 5px;
  font-weight: 700;
}

.menu-recommend {
  display: inline-block;
  margin-right: 5px;
  color: var(--preview-accent);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 5px;
  font-style: normal;
  letter-spacing: 0;
}

.site-empty {
  grid-column: 1 / -1;
  padding: 28px 10px;
  color: #8c8278;
  text-align: center;
}

.site-outline-button,
.site-main-button {
  width: 100%;
  margin-top: 15px;
  border-radius: 2px;
  padding: 11px;
  font-size: 7px;
  font-weight: 700;
}

.site-outline-button {
  border: 1px solid var(--preview-accent);
  color: var(--preview-accent);
  background: transparent;
}

.site-main-button {
  border: 1px solid var(--preview-accent);
  color: #fff;
  background: var(--preview-accent);
}

.site-gallery-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 3px 18px 8px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.site-gallery-frame {
  position: relative;
  width: 76%;
  height: 145px;
  flex: 0 0 76%;
  overflow: hidden;
  border-radius: 5px;
  scroll-snap-align: start;
  cursor: zoom-in;
  transition: filter 180ms ease, transform 180ms ease;
}

.site-gallery-frame > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-gallery-frame:hover {
  filter: brightness(.94);
  transform: translateY(-2px);
}

.site-gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-note {
  margin-top: 5px;
  color: #8b8177;
  font-size: 6px;
  text-align: right;
}

.site-map {
  display: grid;
  min-height: 108px;
  place-items: center;
  align-content: center;
  border: 1px solid #ddd3c7;
  background: #f0ebe3;
}

.site-map svg {
  width: 18px;
  color: var(--preview-accent);
}

.site-map strong {
  margin-top: 6px;
  font-size: 9px;
}

.site-map small {
  margin-top: 3px;
  color: #898078;
  font-size: 6px;
}

.site-access dl {
  margin: 15px 0 0;
}

.site-access dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
  border-bottom: 1px solid #e5ddd4;
  padding: 9px 0;
  font-size: 7px;
}

.site-access dt {
  color: #8d847b;
}

.site-access dd {
  margin: 0;
  color: var(--preview-ink);
}

.weekly-hours-line {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 4px;
  line-height: 1.7;
}

.weekly-hours-line b {
  color: var(--preview-accent);
}

.site-footer {
  padding: 30px 18px 22px;
  color: #eee7dc;
  background: #26211c;
  text-align: center;
}

.site-footer strong,
.site-footer small {
  display: block;
}

.site-footer strong {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: .15em;
}

.site-footer small {
  margin-top: 3px;
  font-size: 5px;
  letter-spacing: .2em;
}

.site-footer p {
  margin: 20px 0;
  font-size: 7px;
}

.site-footer span {
  color: #8f877f;
  font-size: 5px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  visibility: hidden;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  place-items: center;
  color: #fff;
  background: rgba(12, 14, 12, .92);
  opacity: 0;
  pointer-events: none;
  transition: 180ms ease;
  backdrop-filter: blur(12px);
}

.image-lightbox.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox figure {
  display: grid;
  width: min(1000px, 82vw);
  height: min(760px, 82vh);
  place-items: center;
  margin: 0;
}

.image-lightbox img {
  max-width: 100%;
  max-height: calc(100% - 35px);
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 25px 80px rgba(0,0,0,.4);
}

.image-lightbox figcaption {
  align-self: end;
  font-size: 10px;
  letter-spacing: .08em;
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 25px;
  font-size: 30px;
}

.lightbox-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  font-size: 28px;
}

/* Theme: simple */
.phone.theme-simple .site-hero,
.preview-modal.theme-simple .modal-page .site-hero {
  height: 215px;
}

.phone.theme-simple .site-hero-overlay,
.preview-modal.theme-simple .site-hero-overlay {
  background: linear-gradient(90deg, rgba(13, 22, 27, .7), rgba(13, 22, 27, .04));
}

.phone.theme-simple .site-menu-grid,
.preview-modal.theme-simple .site-menu-grid {
  display: block;
}

.phone.theme-simple .site-menu-grid article,
.preview-modal.theme-simple .site-menu-grid article {
  display: grid;
  grid-template-columns: 78px 1fr;
  column-gap: 12px;
  border-bottom: 1px solid #e5e7e3;
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  box-shadow: none;
}

.phone.theme-simple .site-menu-grid article > img,
.preview-modal.theme-simple .site-menu-grid article > img,
.phone.theme-simple .site-menu-grid .site-menu-thumb,
.preview-modal.theme-simple .site-menu-grid .site-menu-thumb {
  grid-row: span 2;
  height: 64px;
  border-radius: 0;
}

.phone.theme-simple .site-gallery-grid,
.preview-modal.theme-simple .site-gallery-grid {
  gap: 6px;
}

.phone.theme-simple .site-gallery-frame,
.preview-modal.theme-simple .site-gallery-frame {
  width: 68%;
  flex-basis: 68%;
  border-radius: 0;
}

.phone.theme-simple .site-gallery-frame:first-child,
.preview-modal.theme-simple .site-gallery-frame:first-child {
  width: 86%;
  flex-basis: 86%;
}

/* Theme: cafe */
.phone.theme-cafe .phone-screen,
.preview-modal.theme-cafe .modal-page {
  display: flex;
  flex-direction: column;
  background: #fbf3e7;
}

.phone.theme-cafe .site-hero,
.phone.theme-cafe .hero-slide,
.phone.theme-cafe .hero-slide .smart-image-frame,
.preview-modal.theme-cafe .site-hero,
.preview-modal.theme-cafe .hero-slide,
.preview-modal.theme-cafe .hero-slide .smart-image-frame {
  border-radius: 0 0 45% 0;
}

.phone.theme-cafe .site-body,
.preview-modal.theme-cafe .site-body {
  z-index: 1;
  margin: -14px 12px 0;
  border-radius: 18px 18px 0 0;
  background: #fffaf2;
}

.phone.theme-cafe .site-gallery,
.preview-modal.theme-cafe .site-gallery {
  order: 3;
}

.phone.theme-cafe .site-menu,
.preview-modal.theme-cafe .site-menu {
  order: 4;
}

.phone.theme-cafe .site-access,
.preview-modal.theme-cafe .site-access {
  order: 5;
}

.phone.theme-cafe .site-footer,
.preview-modal.theme-cafe .site-footer {
  order: 6;
}

.phone.theme-cafe .site-menu-grid article,
.phone.theme-cafe .site-hours,
.phone.theme-cafe .site-map,
.preview-modal.theme-cafe .site-menu-grid article,
.preview-modal.theme-cafe .site-hours,
.preview-modal.theme-cafe .site-map {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(89, 67, 45, .09);
}

.phone.theme-cafe .site-menu-grid article > img,
.phone.theme-cafe .site-gallery-frame,
.preview-modal.theme-cafe .site-menu-grid article > img,
.preview-modal.theme-cafe .site-gallery-frame,
.phone.theme-cafe .site-menu-grid .site-menu-thumb,
.preview-modal.theme-cafe .site-menu-grid .site-menu-thumb {
  border-radius: 14px;
}

/* Theme: premium */
.phone.theme-premium .site-menu,
.phone.theme-premium .site-gallery,
.phone.theme-premium .site-access,
.phone.theme-premium .site-footer,
.preview-modal.theme-premium .modal-page,
.preview-modal.theme-premium .site-menu,
.preview-modal.theme-premium .site-gallery,
.preview-modal.theme-premium .site-access,
.preview-modal.theme-premium .site-footer {
  color: #eee6da;
  background: #171717;
}

.phone.theme-premium .site-menu-grid article,
.preview-modal.theme-premium .site-menu-grid article {
  border: 1px solid #38342e;
  border-radius: 0;
  background: #1d1c1a;
  box-shadow: none;
}

.phone.theme-premium .site-menu-grid article > img,
.phone.theme-premium .site-gallery-frame,
.preview-modal.theme-premium .site-menu-grid article > img,
.preview-modal.theme-premium .site-gallery-frame,
.phone.theme-premium .site-menu-grid .site-menu-thumb,
.preview-modal.theme-premium .site-menu-grid .site-menu-thumb {
  border-radius: 0;
  filter: saturate(.6) contrast(1.1);
}

.phone.theme-premium .site-section-heading h4,
.phone.theme-premium .site-menu-grid strong,
.phone.theme-premium .site-access dd,
.preview-modal.theme-premium .site-section-heading h4,
.preview-modal.theme-premium .site-menu-grid strong,
.preview-modal.theme-premium .site-access dd {
  color: #f3ece1;
}

.phone.theme-premium .site-map,
.preview-modal.theme-premium .site-map {
  border-color: #49423a;
  background: #211f1c;
}

/* Pro Theme: ryotei */
.phone.theme-ryotei .phone-screen,
.preview-modal.theme-ryotei .modal-page {
  color: #2f271d;
  background:
    linear-gradient(90deg, rgba(157,123,69,.08) 0 1px, transparent 1px 100%),
    #f7f0e3;
}

.phone.theme-ryotei .site-hero,
.preview-modal.theme-ryotei .site-hero {
  height: 300px;
  margin: 12px;
  border-radius: 0 90px 0 90px;
  box-shadow: 0 16px 35px rgba(64, 45, 25, .16);
}

.phone.theme-ryotei .site-hero::after,
.preview-modal.theme-ryotei .site-hero::after {
  position: absolute;
  inset: 10px;
  z-index: 4;
  border: 1px solid rgba(224, 199, 148, .72);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.phone.theme-ryotei .site-hero-overlay,
.preview-modal.theme-ryotei .site-hero-overlay {
  background: linear-gradient(115deg, rgba(27,21,15,.68), rgba(27,21,15,.14) 46%, rgba(27,21,15,.76));
}

.phone.theme-ryotei .hero-copy,
.preview-modal.theme-ryotei .hero-copy {
  right: 30px;
  bottom: 46px;
  left: 30px;
  text-align: center;
}

.phone.theme-ryotei .hero-copy h3,
.phone.theme-ryotei .site-section-heading h4,
.preview-modal.theme-ryotei .hero-copy h3,
.preview-modal.theme-ryotei .site-section-heading h4 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: .08em;
}

.phone.theme-ryotei .site-body,
.phone.theme-ryotei .site-menu,
.phone.theme-ryotei .site-gallery,
.phone.theme-ryotei .site-access,
.phone.theme-ryotei .site-footer,
.preview-modal.theme-ryotei .site-body,
.preview-modal.theme-ryotei .site-menu,
.preview-modal.theme-ryotei .site-gallery,
.preview-modal.theme-ryotei .site-access,
.preview-modal.theme-ryotei .site-footer {
  background: transparent;
}

.phone.theme-ryotei .site-menu-grid article,
.phone.theme-ryotei .site-hours,
.phone.theme-ryotei .site-map,
.preview-modal.theme-ryotei .site-menu-grid article,
.preview-modal.theme-ryotei .site-hours,
.preview-modal.theme-ryotei .site-map {
  border: 1px solid rgba(157,123,69,.35);
  border-radius: 0 24px 0 24px;
  background: rgba(255,251,242,.72);
  box-shadow: none;
}

.phone.theme-ryotei .site-menu-grid .site-menu-thumb,
.phone.theme-ryotei .site-gallery-frame,
.preview-modal.theme-ryotei .site-menu-grid .site-menu-thumb,
.preview-modal.theme-ryotei .site-gallery-frame {
  border-radius: 0 36px 0 36px;
}

/* Pro Theme: patisserie */
.phone.theme-patisserie .phone-screen,
.preview-modal.theme-patisserie .modal-page {
  color: #5f4540;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.92), transparent 28%),
    #fff2ee;
}

.phone.theme-patisserie .site-hero,
.phone.theme-patisserie .hero-slide,
.phone.theme-patisserie .hero-slide .smart-image-frame,
.preview-modal.theme-patisserie .site-hero,
.preview-modal.theme-patisserie .hero-slide,
.preview-modal.theme-patisserie .hero-slide .smart-image-frame {
  border-radius: 72px 72px 26px 26px;
}

.phone.theme-patisserie .site-hero,
.preview-modal.theme-patisserie .site-hero {
  height: 300px;
  margin: 12px 12px 0;
}

.phone.theme-patisserie .site-nav,
.preview-modal.theme-patisserie .site-nav {
  inset: 28px 26px auto;
}

.phone.theme-patisserie .site-hero-overlay,
.preview-modal.theme-patisserie .site-hero-overlay {
  background: linear-gradient(180deg, rgba(85,54,49,.08), rgba(85,54,49,.64));
}

.phone.theme-patisserie .hero-copy,
.preview-modal.theme-patisserie .hero-copy {
  right: 26px;
  bottom: 42px;
  left: 26px;
  text-align: center;
}

.phone.theme-patisserie .hero-copy h3,
.phone.theme-patisserie .site-section-heading h4,
.preview-modal.theme-patisserie .hero-copy h3,
.preview-modal.theme-patisserie .site-section-heading h4 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: .03em;
}

.phone.theme-patisserie .site-body,
.preview-modal.theme-patisserie .site-body {
  margin: -8px 12px 0;
  border-radius: 24px 24px 0 0;
  background: #fffaf8;
}

.phone.theme-patisserie .site-menu,
.phone.theme-patisserie .site-gallery,
.phone.theme-patisserie .site-access,
.phone.theme-patisserie .site-footer,
.preview-modal.theme-patisserie .site-menu,
.preview-modal.theme-patisserie .site-gallery,
.preview-modal.theme-patisserie .site-access,
.preview-modal.theme-patisserie .site-footer {
  background: #fffaf8;
}

.phone.theme-patisserie .site-menu-grid article,
.phone.theme-patisserie .site-hours,
.phone.theme-patisserie .site-map,
.preview-modal.theme-patisserie .site-menu-grid article,
.preview-modal.theme-patisserie .site-hours,
.preview-modal.theme-patisserie .site-map {
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(139, 84, 76, .12);
}

.phone.theme-patisserie .site-menu-grid .site-menu-thumb,
.phone.theme-patisserie .site-gallery-frame,
.preview-modal.theme-patisserie .site-menu-grid .site-menu-thumb,
.preview-modal.theme-patisserie .site-gallery-frame {
  border-radius: 22px;
}

/* Pro Theme: trattoria */
.phone.theme-trattoria .phone-screen,
.preview-modal.theme-trattoria .modal-page {
  color: #24382b;
  background: #f7efd9;
}

.phone.theme-trattoria .site-hero,
.preview-modal.theme-trattoria .site-hero {
  height: 245px;
  margin: 14px 14px 0;
  border-radius: 0;
  transform: rotate(-.6deg);
  box-shadow: 8px 8px 0 #26382c;
}

.phone.theme-trattoria .site-hero-overlay,
.preview-modal.theme-trattoria .site-hero-overlay {
  background: linear-gradient(90deg, rgba(38,56,44,.76), rgba(38,56,44,.12));
}

.phone.theme-trattoria .site-section-heading small,
.preview-modal.theme-trattoria .site-section-heading small {
  color: #b7472d;
  letter-spacing: .22em;
}

.phone.theme-trattoria .hero-copy h3,
.phone.theme-trattoria .site-section-heading h4,
.preview-modal.theme-trattoria .hero-copy h3,
.preview-modal.theme-trattoria .site-section-heading h4 {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: -.05em;
}

.phone.theme-trattoria .site-news,
.preview-modal.theme-trattoria .site-news {
  border: 0;
  color: #fff;
  background: #26382c;
}

.phone.theme-trattoria .site-menu-category-items,
.preview-modal.theme-trattoria .site-menu-category-items {
  grid-template-columns: 1fr;
}

.phone.theme-trattoria .site-menu-grid article,
.preview-modal.theme-trattoria .site-menu-grid article {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0 12px;
  border: 0;
  border-top: 1px solid #c7b78f;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone.theme-trattoria .site-menu-grid .site-menu-thumb,
.preview-modal.theme-trattoria .site-menu-grid .site-menu-thumb {
  grid-row: span 3;
  height: 118px;
  border-radius: 0;
}

.phone.theme-trattoria .site-gallery-frame,
.preview-modal.theme-trattoria .site-gallery-frame {
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(38,56,44,.22);
}

/* Pro Theme: luxury */
.phone.theme-luxury .phone-screen,
.phone.theme-luxury .site-body,
.phone.theme-luxury .site-menu,
.phone.theme-luxury .site-gallery,
.phone.theme-luxury .site-access,
.phone.theme-luxury .site-footer,
.preview-modal.theme-luxury .modal-page,
.preview-modal.theme-luxury .site-body,
.preview-modal.theme-luxury .site-menu,
.preview-modal.theme-luxury .site-gallery,
.preview-modal.theme-luxury .site-access,
.preview-modal.theme-luxury .site-footer {
  color: #efe5d2;
  background:
    radial-gradient(circle at 84% 0%, rgba(128,38,54,.24), transparent 34%),
    linear-gradient(180deg, #111014, #1d1116);
}

.phone.theme-luxury .site-hero,
.preview-modal.theme-luxury .site-hero {
  height: 325px;
}

.phone.theme-luxury .site-hero-overlay,
.preview-modal.theme-luxury .site-hero-overlay {
  background: linear-gradient(180deg, rgba(17,16,20,.08), rgba(17,16,20,.86));
}

.phone.theme-luxury .hero-copy,
.preview-modal.theme-luxury .hero-copy {
  right: 24px;
  bottom: 58px;
  left: 24px;
  text-align: center;
}

.phone.theme-luxury .hero-copy h3,
.phone.theme-luxury .site-section-heading h4,
.preview-modal.theme-luxury .hero-copy h3,
.preview-modal.theme-luxury .site-section-heading h4 {
  color: #fff7e8;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .04em;
}

.phone.theme-luxury .site-actions,
.preview-modal.theme-luxury .site-actions {
  border-color: rgba(213,179,107,.28);
  background: rgba(17,16,20,.92);
  backdrop-filter: blur(16px);
}

.phone.theme-luxury .site-actions button,
.preview-modal.theme-luxury .site-actions button {
  color: #efe5d2;
  border-color: rgba(213,179,107,.24);
  background: transparent;
}

.phone.theme-luxury .site-actions .site-main-action,
.preview-modal.theme-luxury .site-actions .site-main-action {
  color: #111014;
  background: #d5b36b;
}

.phone.theme-luxury .site-menu-grid article,
.phone.theme-luxury .site-hours,
.phone.theme-luxury .site-map,
.phone.theme-luxury .site-news,
.preview-modal.theme-luxury .site-menu-grid article,
.preview-modal.theme-luxury .site-hours,
.preview-modal.theme-luxury .site-map,
.preview-modal.theme-luxury .site-news {
  border: 1px solid rgba(213,179,107,.24);
  border-radius: 0;
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
}

.phone.theme-luxury .site-intro p,
.phone.theme-luxury .site-hours span,
.phone.theme-luxury .site-hours small,
.preview-modal.theme-luxury .site-intro p,
.preview-modal.theme-luxury .site-hours span,
.preview-modal.theme-luxury .site-hours small {
  color: #bdb3a0;
}

.phone.theme-luxury .site-menu-grid .site-menu-thumb,
.phone.theme-luxury .site-gallery-frame,
.preview-modal.theme-luxury .site-menu-grid .site-menu-thumb,
.preview-modal.theme-luxury .site-gallery-frame {
  border-radius: 999px 999px 6px 6px;
  filter: saturate(.72) contrast(1.08);
}

.modal-page-shell {
  min-height: calc(100vh - 238px);
  overflow: visible;
  background: #dcded8;
  padding: clamp(18px, 3vw, 38px) 18px 56px;
}

.modal-page {
  box-sizing: border-box;
  width: min(520px, calc(100vw - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 8px solid #20231f;
  border-radius: 38px;
  background: #f9f4ed;
  box-shadow: 0 28px 80px rgba(27, 30, 25, .22);
}

.modal-page .site-hero {
  height: min(72vh, 620px);
}

.modal-page .site-nav {
  inset: 32px 38px auto;
}

.modal-page .site-logo {
  font-size: 20px;
}

.modal-page .site-logo small {
  font-size: 8px;
}

.modal-page .hero-copy {
  bottom: 65px;
  left: 55px;
}

.modal-page .hero-copy span,
.modal-page .site-news > span,
.modal-page .site-news p {
  font-size: 11px;
}

.modal-page .hero-copy h3 {
  font-size: clamp(48px, 7vw, 78px);
}

.modal-page .site-actions {
  height: 66px;
}

.modal-page .site-actions button {
  font-size: 11px;
}

.modal-page .site-body,
.modal-page .site-menu,
.modal-page .site-gallery,
.modal-page .site-access {
  padding: 58px clamp(35px, 8vw, 90px);
}

.modal-page .site-news {
  grid-template-columns: 110px 1fr;
}

.modal-page .site-news time,
.modal-page .site-intro small,
.modal-page .site-section-heading small {
  font-size: 9px;
}

.modal-page .site-intro {
  padding: 70px 0 55px;
}

.modal-page .site-intro h4,
.modal-page .site-section-heading h4 {
  font-size: 30px;
}

.modal-page .site-intro p,
.modal-page .site-section-heading p,
.modal-page .site-hours span,
.modal-page .site-hours small,
.modal-page .site-menu-grid p,
.modal-page .site-map small,
.modal-page .site-access dl div {
  font-size: 10px;
}

.modal-page .site-hours strong {
  font-size: 24px;
}

.modal-page .site-menu-grid {
  display: block;
}

.modal-page .site-menu-category-items {
  grid-template-columns: repeat(3, 1fr);
}

.modal-page .site-menu-grid article > img {
  height: 180px;
}

.modal-page .site-menu-grid .site-menu-thumb {
  height: 180px;
}

.modal-page .site-menu-grid strong {
  font-size: 13px;
}

.modal-page .site-menu-grid span,
.modal-page .site-outline-button,
.modal-page .site-main-button {
  font-size: 11px;
}

.modal-page .site-gallery-grid {
  gap: 14px;
}

.modal-page .site-gallery-frame {
  width: 48%;
  height: 290px;
  flex-basis: 48%;
}

.modal-page .site-map {
  min-height: 220px;
}

.modal-page .site-map strong {
  font-size: 15px;
}

.modal-page .site-footer {
  padding: 60px;
}

.modal-page .site-footer strong {
  font-size: 22px;
}

.modal-page .site-footer p {
  font-size: 11px;
}

.modal-page .site-footer span {
  font-size: 8px;
}

.preview-modal.theme-simple .modal-page .site-hero {
  height: 420px;
}

.preview-modal.theme-simple .modal-page .site-menu-grid article {
  grid-template-columns: 160px 1fr;
  padding: 18px 0;
}

.preview-modal.theme-simple .modal-page .site-menu-grid article > img {
  height: 105px;
}

.preview-modal.theme-simple .modal-page .site-menu-grid .site-menu-thumb {
  height: 105px;
}

.preview-modal.theme-premium .modal-page .site-actions,
.preview-modal.theme-premium .modal-page .site-body {
  color: #eee6da;
  background: #171717;
}

.preview-modal.theme-premium .modal-page .site-actions button {
  color: #eee6da;
  border-color: #38342e;
  background: #171717;
}

.preview-modal.theme-premium .modal-page .site-actions .site-main-action {
  color: #fff;
  background: var(--preview-accent);
}

.preview-modal.theme-premium .modal-page .site-intro h4,
.preview-modal.theme-premium .modal-page .site-hours strong {
  color: #f3ece1;
}

.preview-modal.theme-premium .modal-page .site-intro p,
.preview-modal.theme-premium .modal-page .site-hours span,
.preview-modal.theme-premium .modal-page .site-hours small {
  color: #aaa197;
}

.preview-modal.theme-premium .modal-page .site-news,
.preview-modal.theme-premium .modal-page .site-hours,
.preview-modal.theme-premium .modal-page .site-access dl div {
  border-color: #49423a;
}

@media (max-width: 820px) {
  .modal-page-shell {
    min-height: auto;
    overflow: visible;
    padding: 12px 8px 36px;
  }

  .modal-page .site-hero {
    height: 62vh;
  }

  .modal-page .site-body,
  .modal-page .site-menu,
  .modal-page .site-gallery,
  .modal-page .site-access {
    padding: 38px 22px;
  }

  .modal-page .site-menu-grid {
    display: block;
  }

  .modal-page .site-menu-category-items {
    grid-template-columns: 1fr;
  }

  .modal-page .site-gallery-grid {
    gap: 8px;
  }

  .modal-page .site-gallery-frame {
    width: 82%;
    height: 230px;
    flex-basis: 82%;
  }

  .preview-modal.theme-simple .modal-page .site-hero {
    height: 42vh;
  }

  .preview-modal.theme-simple .modal-page .site-menu-grid article {
    grid-template-columns: 95px 1fr;
  }

  .image-lightbox {
    grid-template-columns: 45px minmax(0, 1fr) 45px;
  }

  .image-lightbox figure {
    width: calc(100vw - 90px);
    height: 78vh;
  }

  .lightbox-arrow {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Free service routes */
.route-page[hidden],
#app[hidden] {
  display: none !important;
}

.public-header {
  position: relative;
  z-index: 10;
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.public-brand {
  display: flex;
  align-items: center;
  color: #20251f;
  text-decoration: none;
}

.public-brand-copy {
  display: grid;
  gap: 1px;
}

.public-brand-copy strong {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.public-brand-copy small {
  color: #8a9088;
  font-family: "DM Sans", sans-serif;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .16em;
}

.public-brand em {
  display: inline-block;
  margin: 0 2px;
  border-radius: 4px;
  color: #fff;
  background: #d85b34;
  padding: 1px 4px 2px;
  font-family: "DM Sans", sans-serif;
  font-size: .86em;
  font-style: normal;
  letter-spacing: 0;
}

.public-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.public-nav-links,
.public-nav-account {
  display: flex;
  align-items: center;
  gap: 28px;
}

.public-header nav a {
  color: #60665e;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.public-header nav .header-cta {
  border-radius: 8px;
  color: #fff;
  background: #d85b34;
  padding: 12px 18px;
}

.route-marketing {
  background: #faf9f4;
}

.landing {
  overflow: hidden;
}

.landing-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 75px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 45px 45px 80px;
}

.landing-pill,
.landing-problem > span,
.landing-pricing > span {
  display: inline-block;
  color: #b84827;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.landing-pill {
  border: 1px solid #edcfc1;
  border-radius: 100px;
  background: #fff4ee;
  padding: 7px 12px;
}

.landing-copy h1 {
  margin: 24px 0 22px;
  color: #20251f;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(38px, 4.2vw, 61px);
  line-height: 1.35;
  letter-spacing: -.055em;
}

.landing-copy h1 em {
  color: #d85b34;
  font-style: normal;
}

.landing-copy p {
  color: #60675f;
  font-size: 15px;
  line-height: 2;
}

.landing-actions {
  margin: 32px 0 15px;
}

.landing-actions .landing-primary,
.landing-final a {
  display: inline-flex;
  min-width: 310px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 10px;
  color: #fff;
  background: #d85b34;
  padding: 20px 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(216,91,52,.2);
}

.landing-primary b {
  font-size: 18px;
  transition: transform 160ms ease;
}

.landing-primary:hover b {
  transform: translateX(4px);
}

.landing-copy > small {
  color: #92978f;
  font-size: 10px;
}

.hero-flow {
  display: grid;
  grid-template-columns: 1fr 18px 1fr 18px 1fr;
  align-items: center;
  gap: 4px;
  margin-top: 33px;
  border-top: 1px solid #e1e2dc;
  padding-top: 20px;
}

.hero-flow > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-flow > div > b {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #315f4d;
  font-size: 8px;
}

.hero-flow strong,
.hero-flow small {
  display: block;
}

.hero-flow strong {
  font-size: 9px;
}

.hero-flow small {
  margin-top: 2px;
  color: #92978f;
  font-size: 7px;
}

.hero-flow > i {
  height: 1px;
  background: #cacdc6;
}

.landing-phone {
  position: relative;
  display: grid;
  place-items: center;
}

.landing-phone-screen.published-store {
  position: relative;
  width: 330px;
  min-height: 0;
  height: 610px;
  overflow: hidden;
  border: 9px solid #252822;
  border-radius: 42px;
  background: #fff;
  padding: 0;
  box-shadow: 0 35px 75px rgba(40,43,36,.2);
}

.landing-live-page.published-store-page {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: none;
  scrollbar-width: none;
}

.landing-live-page::-webkit-scrollbar {
  display: none;
}

.landing-live-page .site-hero {
  height: 300px;
}

.landing-live-page .smart-image-frame {
  background: #f1ede6;
}

.landing-live-page .smart-image-backdrop,
.landing-live-page .smart-image-edge {
  display: none;
}

.landing-live-page .smart-image-content {
  transform: none;
}

.landing-live-page .smart-image-main {
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.landing-live-page .site-body,
.landing-live-page .site-menu,
.landing-live-page .site-gallery,
.landing-live-page .site-access {
  padding: 38px 23px;
}

.landing-live-page .site-menu-category-items {
  grid-template-columns: 1fr;
}

.landing-live-page .site-gallery-frame {
  width: 82%;
  height: 230px;
  flex-basis: 82%;
}

.landing-live-page .site-footer {
  padding: 45px 23px;
}

.landing-preview-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #626961;
  font-size: 9px;
  font-weight: 700;
}

.landing-preview-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #439266;
  box-shadow: 0 0 0 4px #e2f0e6;
}

.floating-note {
  position: absolute;
  border: 1px solid #e4e1d8;
  border-radius: 10px;
  background: rgba(255,255,255,.94);
  padding: 13px 16px;
  color: #4b5149;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 12px 35px rgba(40,43,36,.11);
}

.note-menu { top: 100px; left: 0; }

.landing-scroll-note {
  margin-top: 12px;
  color: #8c918a;
  font-size: 8px;
}

.landing-problem,
.landing-pricing {
  padding: 100px max(24px, calc((100vw - 1120px) / 2));
  text-align: center;
}

.landing-problem {
  background: #fff;
}

.landing-samples {
  padding: 105px max(24px, calc((100vw - 1180px) / 2));
  color: #eeeae2;
  background: #222721;
}

.sample-heading {
  max-width: 650px;
  margin-bottom: 45px;
}

.sample-heading > span,
.plans-hero > span {
  color: #e1a273;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.sample-heading h2 {
  margin: 13px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(29px, 3.2vw, 45px);
}

.sample-heading p {
  color: #aeb4ab;
  font-size: 12px;
  line-height: 1.8;
}

.sample-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sample-card {
  overflow: hidden;
  border: 1px solid #3e443d;
  border-radius: 15px;
  background: #292f28;
}

.sample-browser {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.sample-browser > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: flex;
  gap: 4px;
  height: 24px;
  align-items: center;
  background: rgba(245,245,241,.94);
  padding: 0 9px;
}

.sample-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b8bbb4;
}

.sample-overlay {
  position: absolute;
  inset: 24px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(180deg, transparent 25%, rgba(15,17,14,.76));
  padding: 25px;
}

.sample-overlay small {
  margin-bottom: 7px;
  font-size: 8px;
  letter-spacing: .12em;
}

.sample-overlay strong {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.45;
}

.sample-cafe .sample-browser,
.sample-cafe .sample-browser img {
  border-radius: 0 0 42% 0;
}

.sample-cafe .sample-overlay strong {
  font-size: 23px;
}

.sample-premium .sample-browser img {
  filter: saturate(.55) contrast(1.12);
}

.sample-card > div:last-child {
  padding: 22px;
}

.sample-card > div:last-child > span {
  color: #e1a273;
  font-size: 8px;
  font-weight: 700;
}

.sample-card h3 {
  margin: 7px 0;
  color: #fff;
  font-size: 15px;
}

.sample-card p {
  margin: 0;
  color: #aeb4ab;
  font-size: 9px;
  line-height: 1.7;
}

.sample-cta {
  display: block;
  width: max-content;
  margin: 38px auto 0;
  border-radius: 9px;
  color: #fff;
  background: #d85b34;
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.free-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 34px 24px;
  color: #315f4d;
  background: #e9f1e9;
}

.free-promise strong {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}

.free-promise span {
  color: #627067;
  font-size: 11px;
}

.free-promise a {
  border: 1px solid #789381;
  border-radius: 8px;
  color: #315f4d;
  padding: 10px 14px;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.landing-problem h2,
.landing-pricing h2,
.landing-steps h2,
.landing-final h2 {
  margin: 18px 0 48px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.55;
  letter-spacing: -.035em;
}

.value-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-grid article {
  border: 1px solid #e8e7e0;
  border-radius: 15px;
  padding: 35px 28px;
  text-align: left;
}

.value-grid b {
  color: #d85b34;
  font-size: 11px;
}

.value-grid h3 {
  margin: 35px 0 12px;
  font-size: 17px;
}

.value-grid p {
  color: #71776f;
  font-size: 12px;
  line-height: 1.8;
}

.landing-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 110px 24px;
}

.landing-steps > div > span {
  color: #d85b34;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.landing-steps ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #dedfd8;
  padding: 19px 0;
}

.landing-steps li > b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #315f4d;
}

.landing-steps strong,
.landing-steps small {
  display: block;
}

.landing-steps small {
  margin-top: 4px;
  color: #858b83;
  font-size: 10px;
}

.landing-pricing {
  background: #f0efe8;
}

.pricing-grid article {
  display: flex;
  flex-direction: column;
  border: 1px solid #deddd4;
  border-radius: 15px;
  background: #fff;
  padding: 32px;
  text-align: left;
}

.pricing-grid article.pricing-free {
  border: 2px solid #315f4d;
}

.pricing-grid article > small {
  color: #8b9088;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
}

.pricing-grid h3 {
  margin: 8px 0 18px;
  font-size: 19px;
}

.pricing-grid article > strong {
  font-size: 40px;
}

.pricing-grid strong em {
  font-size: 12px;
  font-style: normal;
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  color: #5e655d;
  font-size: 12px;
}

.pricing-grid li::before {
  margin-right: 8px;
  color: #388060;
  content: "✓";
}

.pricing-grid a {
  margin-top: auto;
  border-radius: 8px;
  color: #fff;
  background: #315f4d;
  padding: 13px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.pricing-grid article > p {
  margin-top: auto;
  color: #81877f;
  font-size: 11px;
}

/* Plans */
.plans-page {
  min-height: 100vh;
  background: #f6f5f0;
  padding-bottom: 100px;
}

.plans-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 85px 24px 60px;
  text-align: center;
}

.plans-hero h1 {
  margin: 15px 0 20px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 4vw, 53px);
  line-height: 1.45;
}

.plans-hero p {
  color: #6f766d;
  font-size: 13px;
  line-height: 1.9;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 24px;
}

.plan-detail {
  position: relative;
  display: flex;
  min-height: 730px;
  flex-direction: column;
  border: 1px solid #dedfd8;
  border-radius: 18px;
  background: #fff;
  padding: 30px;
}

.plan-detail.featured {
  border: 2px solid #d85b34;
  box-shadow: 0 22px 55px rgba(57,48,39,.11);
}

.plan-label {
  color: #8c9289;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}

.plan-detail h2 {
  margin: 9px 0 16px;
  font-size: 22px;
}

.plan-regular,
.regular-price {
  color: #969b94;
  font-size: 10px;
  text-decoration: line-through;
}

.plan-price {
  margin: 5px 0 13px;
  font-size: 42px;
  font-weight: 700;
}

.plan-price small {
  font-size: 12px;
}

.plan-detail > p {
  min-height: 44px;
  color: #747a72;
  font-size: 11px;
  line-height: 1.8;
}

.campaign-badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 8px;
  border-radius: 100px;
  color: #a74427;
  background: #ffeadf;
  padding: 5px 9px;
  font-size: 8px;
  font-weight: 700;
}

.plan-preview {
  display: flex;
  min-height: 266px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 20px 0;
  border-radius: 12px;
  background: #eceee9;
  padding: 14px;
}

.free-preview {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(145deg, #f8f7f1, #e9eee7);
}

.pro-preview {
  background:
    radial-gradient(circle at 16% 20%, rgba(240,205,153,.22), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(216,91,52,.2), transparent 28%),
    linear-gradient(145deg, #1f241f, #34362d);
}

.plan-visual {
  width: min(100%, 310px);
}

.plan-visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #566052;
  font-size: 9px;
  font-weight: 800;
}

.plan-visual-caption span {
  border-radius: 999px;
  background: rgba(49,95,77,.1);
  padding: 5px 8px;
}

.pro-visual .plan-visual-caption {
  color: #fff4df;
}

.pro-visual .plan-visual-caption span {
  color: #ffe8b9;
  background: rgba(255,255,255,.13);
}

.plan-visual-screen {
  overflow: hidden;
  border: 1px solid rgba(49,95,77,.12);
  border-radius: 16px;
  background: #fff;
  padding: 11px;
  box-shadow: 0 16px 34px rgba(42,39,33,.14);
}

.plan-visual-hero {
  display: flex;
  min-height: 58px;
  align-items: flex-end;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(49,95,77,.2), transparent 48%),
    linear-gradient(145deg, #cfd7c8, #f1dac3 60%, #ba6a43);
  padding: 8px;
}

.plan-visual-hero span,
.pro-visual-grid span {
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  padding: 5px 7px;
  color: #315f4d;
  font-size: 8px;
  font-weight: 800;
}

.plan-visual-title {
  display: grid;
  gap: 3px;
  margin-top: 10px;
}

.plan-visual-title strong {
  color: #262b25;
  font-size: 13px;
}

.plan-visual-title small {
  color: #7a8178;
  font-size: 8px;
}

.plan-visual-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.plan-visual-actions span {
  border-radius: 8px;
  color: #fff;
  background: #315f4d;
  padding: 7px 4px;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}

.plan-visual-menu-card {
  display: grid;
  gap: 3px;
  margin-top: 9px;
  border: 1px solid #e7e4dc;
  border-radius: 10px;
  background: #faf9f4;
  padding: 9px;
}

.plan-visual-menu-card b,
.pro-visual-feature strong,
.pro-visual-analytics b {
  color: #30362f;
  font-size: 10px;
}

.plan-visual-menu-card small,
.pro-visual-feature small,
.pro-visual-analytics small {
  color: #737a71;
  font-size: 8px;
  line-height: 1.45;
}

.plan-visual-logo {
  display: grid;
  gap: 2px;
  margin-top: 8px;
  border: 1px dashed #d9dbd2;
  border-radius: 9px;
  color: #81877e;
  background: #fbfaf6;
  padding: 6px;
  text-align: center;
}

.plan-visual-logo span {
  font-size: 7px;
  font-weight: 700;
}

.plan-visual-logo b {
  color: #9a6d45;
  font-size: 8px;
}

.pro-visual .plan-visual-screen {
  border-color: rgba(240,205,153,.26);
  color: #f8f1e4;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    #252921;
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}

.pro-logo-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 7px;
  align-items: stretch;
}

.logo-before,
.logo-after {
  display: grid;
  gap: 4px;
  min-height: 54px;
  align-content: center;
  border-radius: 12px;
  padding: 8px;
}

.logo-before {
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,247,232,.58);
  background: rgba(255,255,255,.06);
  text-decoration: line-through;
}

.logo-after {
  border: 1px solid rgba(240,205,153,.45);
  background:
    linear-gradient(135deg, rgba(240,205,153,.2), rgba(216,91,52,.08)),
    rgba(255,255,255,.08);
}

.logo-before small,
.logo-after small {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
}

.logo-before b,
.logo-after b {
  font-size: 8px;
  line-height: 1.35;
}

.logo-after b {
  color: #fff5df;
}

.logo-after span {
  justify-self: start;
  border-radius: 999px;
  color: #392913;
  background: #f1c982;
  padding: 4px 7px;
  font-size: 7px;
  font-weight: 900;
}

.logo-arrow {
  display: grid;
  width: 20px;
  place-items: center;
  color: #f1c982;
  font-size: 13px;
  font-weight: 900;
}

.pro-visual-feature {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(240,205,153,.28), transparent 48%),
    linear-gradient(145deg, #41543f, #22261f);
  padding: 13px;
}

.pro-visual-feature strong,
.pro-visual-analytics b {
  color: #fff7e8;
}

.pro-visual-feature small,
.pro-visual-analytics small {
  color: rgba(255,247,232,.72);
}

.pro-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.pro-visual-grid span {
  display: grid;
  min-height: 30px;
  place-items: center;
  color: #fce8bd;
  background: rgba(255,255,255,.1);
  text-align: center;
}

.pro-visual-analytics {
  display: grid;
  grid-template-columns: 1fr 84px;
  gap: 10px;
  align-items: end;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  padding: 10px;
}

.pro-visual-analytics div:first-child {
  display: grid;
  gap: 3px;
}

.pro-visual-bars {
  display: flex;
  height: 42px;
  align-items: flex-end;
  gap: 5px;
}

.pro-visual-bars i {
  display: block;
  flex: 1;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, #f2c56f, #d85b34);
}

.pro-visual-bars i:nth-child(1) {
  height: 42%;
}

.pro-visual-bars i:nth-child(2) {
  height: 70%;
}

.pro-visual-bars i:nth-child(3) {
  height: 55%;
}

.pro-visual-bars i:nth-child(4) {
  height: 88%;
}

.mini-site {
  display: grid;
  width: 170px;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,.1);
}

.mini-site i {
  display: block;
  height: 9px;
  border-radius: 4px;
  background: #e5e7e2;
}

.mini-site small {
  color: #999e96;
  font-size: 6px;
  text-align: center;
}

.mini-site em {
  border-radius: 5px;
  color: #327052;
  background: #e7f2e9;
  padding: 7px;
  font-size: 7px;
  font-style: normal;
}

.benefit-pictures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.benefit-pictures div {
  border-radius: 7px;
  background: #f1f3ee;
  padding: 9px 6px;
  text-align: center;
}

.benefit-pictures b,
.benefit-pictures span {
  display: block;
}

.benefit-pictures b {
  color: #315f4d;
  font-size: 10px;
}

.benefit-pictures span {
  margin-top: 4px;
  color: #747a72;
  font-size: 6px;
}

.plan-detail ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 25px;
  padding: 0;
  list-style: none;
}

.plan-detail li {
  color: #596058;
  font-size: 10px;
  line-height: 1.5;
}

.plan-detail li::before {
  margin-right: 7px;
  color: #397759;
  content: "✓";
}

.plan-detail > a {
  margin-top: auto;
  border-radius: 8px;
  color: #fff;
  background: #315f4d;
  padding: 13px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.plan-detail.featured > a {
  background: #d85b34;
}

.plan-comparison {
  max-width: 980px;
  margin: 75px auto 0;
  padding: 0 24px;
}

.plan-comparison-head {
  margin-bottom: 24px;
  text-align: center;
}

.plan-comparison-head > span {
  color: #d85b34;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.plan-comparison-head h2 {
  margin: 9px 0 7px;
  font-family: "Noto Serif JP", serif;
  font-size: 31px;
}

.plan-comparison-head p {
  color: #777d75;
  font-size: 11px;
}

.plan-comparison-table {
  overflow-x: auto;
  border: 1px solid #dfe1da;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(57,48,39,.07);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.7fr) minmax(130px, 1fr) minmax(130px, 1fr);
  min-height: 54px;
  border-bottom: 1px solid #e8e9e4;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > strong,
.comparison-row > div {
  display: grid;
  align-items: center;
  padding: 12px 18px;
}

.comparison-row > strong {
  color: #454b44;
  font-size: 10px;
}

.comparison-row > div {
  justify-items: center;
  border-left: 1px solid #ecece7;
  text-align: center;
}

.comparison-header {
  min-height: 70px;
  color: #fff;
  background: #292e28;
}

.comparison-header > strong {
  justify-items: center;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.comparison-header > strong:first-child {
  justify-items: start;
}

.comparison-header > strong:last-child {
  color: #f0cd99;
  background: #343a32;
}

.comparison-header small {
  color: #bdc3b9;
  font-size: 8px;
}

.comparison-row > div:last-child {
  background: #fffaf3;
}

.comparison-row .is-yes,
.comparison-row .is-no {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.comparison-row .is-yes {
  color: #2f7151;
  background: #e6f2e9;
}

.comparison-row .is-no {
  color: #9b9f98;
  background: #f0f1ee;
}

.comparison-row .is-detail {
  color: #535a52;
  font-size: 9px;
  font-weight: 800;
}

.comparison-row > div:last-child .is-detail {
  color: #a45332;
}

.comparison-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  border-radius: 12px;
  color: #fff;
  background: #315f4d;
  padding: 20px 23px;
}

.comparison-cta p {
  margin: 0;
  color: #dce8e1;
  font-size: 10px;
  line-height: 1.7;
}

.comparison-cta strong {
  color: #fff;
}

.comparison-cta a {
  flex: 0 0 auto;
  border-radius: 8px;
  color: #315f4d;
  background: #fff;
  padding: 11px 15px;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}

.plans-reassurance {
  max-width: 850px;
  margin: 55px auto 0;
  padding: 35px 24px;
  text-align: center;
}

.plans-reassurance strong {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
}

.plans-reassurance p {
  color: #70766e;
  font-size: 11px;
}

.plans-reassurance a {
  display: inline-block;
  margin-top: 12px;
  border-radius: 8px;
  color: #fff;
  background: #d85b34;
  padding: 13px 20px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.landing-final {
  display: grid;
  place-items: center;
  padding: 110px 24px;
  color: #fff;
  background: #242921;
  text-align: center;
}

.landing-final h2 {
  margin-top: 0;
}

.landing-final a {
  text-decoration: none;
}

.landing-final small {
  margin-top: 15px;
  color: #aeb4aa;
}

/* Onboarding */
.route-start {
  background: #f5f5f0;
}

.onboarding-shell {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: center;
  gap: 70px;
  padding: 45px 30px 80px;
}

.onboarding-shell > aside {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  border-right: 1px solid #dedfd8;
  padding-right: 35px;
}

.onboarding-shell > aside > a {
  color: #747a72;
  font-size: 10px;
  text-decoration: none;
}

.onboarding-shell > aside > span {
  margin-top: 45px;
  font-size: 12px;
  font-weight: 700;
}

.onboarding-shell aside ol {
  display: grid;
  gap: 23px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.onboarding-shell aside li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #969b94;
  font-size: 11px;
  font-weight: 600;
}

.onboarding-shell aside li b {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid #d4d7d1;
  border-radius: 50%;
  font-size: 9px;
}

.onboarding-shell aside li.active {
  color: #20251f;
}

.onboarding-shell aside li.active b {
  border-color: #d85b34;
  color: #fff;
  background: #d85b34;
}

.onboarding-shell aside li.done b {
  border-color: #315f4d;
  color: #fff;
  background: #315f4d;
}

.onboarding-shell > aside > small {
  margin-top: auto;
  color: #999e97;
  font-size: 9px;
}

.onboarding-main {
  border: 1px solid #e0e2dc;
  border-radius: 17px;
  background: #fff;
  padding: 35px 42px;
  box-shadow: 0 18px 55px rgba(42,47,40,.06);
}

.onboarding-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
}

.onboarding-progress span {
  color: #868c84;
  font-size: 9px;
  font-weight: 700;
}

.onboarding-progress i {
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, #d85b34 var(--progress), #e6e7e2 var(--progress));
}

.onboarding-main > header {
  margin: 34px 0 30px;
}

.onboarding-main > header h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
}

.onboarding-main > header p {
  color: #777d75;
  font-size: 11px;
}

.onboarding-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.onboarding-fields label {
  color: #555c54;
  font-size: 10px;
  font-weight: 700;
}

.onboarding-fields label.wide {
  grid-column: 1 / -1;
}

.onboarding-fields input,
.onboarding-fields select {
  width: 100%;
  height: 44px;
  margin-top: 7px;
  border: 1px solid #d8dad4;
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  font-size: 12px;
}

.onboarding-content .form-section {
  border: 0;
  padding: 0;
}

.onboarding-content .schedule-list {
  max-height: 440px;
  overflow: auto;
}

.onboarding-main > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  border-top: 1px solid #ecece7;
  padding-top: 25px;
}

.onboarding-main > footer button {
  border: 0;
  background: transparent;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.onboarding-main > footer .start-next {
  border-radius: 8px;
  color: #fff;
  background: #d85b34;
  padding-inline: 28px;
}

.free-limits {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.free-limits span {
  border-radius: 8px;
  background: #f1f3ee;
  padding: 10px 13px;
  font-size: 10px;
}

.photo-usage-guide {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  border: 1px solid #ead9cc;
  border-radius: 13px;
  background: #fffaf6;
  padding: 12px 13px;
}

.photo-usage-guide svg {
  width: 18px;
  color: #d85b34;
}

.photo-usage-guide > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: #f8ebe4;
}

.photo-usage-guide strong,
.photo-usage-guide small {
  display: block;
}

.photo-usage-guide strong {
  color: #353932;
  font-size: 11px;
}

.photo-usage-guide small {
  margin-top: 3px;
  color: #7d8178;
  font-size: 9px;
  line-height: 1.55;
}

.onboarding-photo-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.onboarding-photo-preview figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 11px;
  background: #f4f5f1;
}

.onboarding-photo-preview figure > button {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(29, 31, 28, .78);
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.onboarding-photo-preview figure.main {
  border-color: #d85b34;
}

.onboarding-photo-preview figcaption {
  display: grid;
  gap: 3px;
  padding: 9px;
}

.onboarding-photo-preview b {
  color: #343a33;
  font-size: 9px;
}

.onboarding-photo-preview figcaption span {
  color: #7b8179;
  font-size: 8px;
}

.onboarding-focus-controls {
  border-top: 1px solid #e2e4de;
  padding-top: 8px;
}

.onboarding-focus-controls label {
  grid-template-columns: 28px 1fr;
}

.onboarding-upload-grid,
.start-theme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.start-theme-grid + .start-theme-preview-card {
  margin-top: 18px;
}

.onboarding-upload-grid button,
.onboarding-upload-grid label,
.start-theme-grid button {
  display: grid;
  gap: 8px;
  border: 1px solid #dfe1da;
  border-radius: 12px;
  background: #fff;
  padding: 25px;
  text-align: left;
  cursor: pointer;
}

.onboarding-menu-upload.has-upload-preview label {
  grid-template-columns: 86px 1fr;
  align-items: center;
}

.onboarding-menu-upload.has-upload-preview .onboarding-menu-upload-frame {
  grid-row: 1 / span 2;
  width: 86px;
  height: 76px;
  min-height: 0;
  border-radius: 8px;
}

.onboarding-menu-upload {
  position: relative;
}

.onboarding-menu-upload label {
  display: grid;
  gap: 8px;
  min-height: 100%;
  border: 1px solid #dfe1da;
  border-radius: 12px;
  background: #fff;
  padding: 25px;
  text-align: left;
  cursor: pointer;
  height: 100%;
}

.onboarding-menu-upload > button {
  position: absolute;
  right: 12px;
  bottom: 10px;
  border: 0;
  color: #a3422d;
  background: transparent;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.theme-site-example {
  position: relative;
  display: block;
  height: 158px;
  overflow: hidden;
  border-radius: 9px;
  color: #28251f;
  background: #f7f2e9;
}

.theme-site-example.pro-example {
  box-shadow:
    inset 0 0 0 1px rgba(185, 139, 60, .35),
    0 16px 34px rgba(61, 45, 23, .12);
}

.example-tier {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 6;
  border-radius: 999px;
  color: #7b7167;
  background: rgba(255,255,255,.88);
  padding: 4px 6px;
  font-size: 5px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pro-example .example-tier {
  color: #2f2415;
  background: linear-gradient(135deg, #f5dfa0, #b9842f);
  box-shadow: 0 6px 16px rgba(74, 48, 14, .2);
}

.example-pro-panels {
  position: absolute;
  right: 10px;
  bottom: 36px;
  left: 10px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 4px;
}

.example-pro-panels i {
  display: block;
  height: 14px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 5px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 14px rgba(0,0,0,.1);
}

.example-pro-panels i:nth-child(2) {
  opacity: .82;
}

.example-pro-panels i:nth-child(3) {
  opacity: .68;
}

.example-pro-caption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 7;
  max-width: 62%;
  overflow: hidden;
  color: #6c542a;
  font-size: 5px;
  font-weight: 900;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.example-photo-stack {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.example-photo-stack img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 13px 28px rgba(32, 27, 21, .18);
}

.preview-theme .theme-site-example {
  height: 58px;
  border-radius: 5px;
}

.preview-theme .example-tier {
  top: 3px;
  right: 3px;
  padding: 1px 3px;
  font-size: 3px;
}

.preview-theme.locked .example-tier,
.start-theme-grid button.locked .example-tier {
  display: none;
}

.preview-theme .example-pro-panels {
  right: 4px;
  bottom: 13px;
  left: 4px;
  gap: 2px;
}

.preview-theme .example-pro-panels i {
  height: 5px;
  border-radius: 2px;
}

.preview-theme .example-pro-caption {
  display: none;
}

.preview-theme .example-header {
  height: 11px;
  padding: 0 4px;
}

.preview-theme .example-header i,
.preview-theme .example-header em,
.preview-theme .example-copy small {
  font-size: 3px;
}

.preview-theme .example-copy b {
  font-size: 5px;
}

.preview-theme .example-lower {
  height: 12px;
  padding: 2px 4px;
}

.preview-theme .example-lower strong {
  padding: 2px 4px;
  font-size: 3px;
}

.design-choice .theme-site-example {
  width: 92px;
  height: 72px;
}

.design-choice .example-tier {
  top: 4px;
  right: 4px;
  padding: 2px 4px;
  font-size: 3px;
}

.design-choice .example-pro-panels {
  right: 5px;
  bottom: 16px;
  left: 5px;
  gap: 2px;
}

.design-choice .example-pro-panels i {
  height: 6px;
  border-radius: 2px;
}

.design-choice .example-pro-caption {
  display: none;
}

.preview-theme .example-photo-stack,
.design-choice .example-photo-stack {
  display: none;
}

.start-theme-grid button {
  align-content: start;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  padding: 14px;
}

.start-theme-grid .theme-site-example {
  height: 170px;
}

.start-theme-grid .example-pro-caption {
  display: none;
}

.start-theme-grid button > strong {
  color: #2c332b;
  font-size: 13px;
  line-height: 1.45;
}

.start-theme-grid button > small {
  display: block;
  min-height: 32px;
  line-height: 1.65;
}

.example-header,
.example-hero,
.example-copy,
.example-lower {
  position: absolute;
  display: flex;
}

.example-header {
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  background: #f7f2e9;
}

.example-header i,
.example-header em {
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.example-header em {
  font-size: 4px;
  letter-spacing: .12em;
}

.example-hero {
  top: 26px;
  right: 0;
  bottom: 31px;
  left: 0;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(35, 28, 20, .48), rgba(35, 28, 20, .08)),
    var(--example-photo) center / cover no-repeat,
    rgba(48, 38, 28, .1);
  isolation: isolate;
}

.example-hero img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: var(--example-focus, center center);
  filter: drop-shadow(0 10px 18px rgba(26, 20, 14, .22));
}

.example-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.04));
  content: "";
}

.example-copy {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.32);
}

.example-slice-reveal {
  position: absolute;
  inset: 6px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.example-slice-reveal i {
  display: block;
  min-width: 0;
  background-image: var(--example-photo);
  background-repeat: no-repeat;
  background-size: 400% 100%;
  opacity: 0;
  transform: translateY(16px) scale(.96);
  animation: exampleSliceSettle 5.8s cubic-bezier(.2,.8,.2,1) infinite;
}

.example-slice-reveal i:nth-child(1) {
  background-position: 0% 50%;
  animation-delay: .05s;
}

.example-slice-reveal i:nth-child(2) {
  background-position: 33.333% 50%;
  animation-delay: .22s;
}

.example-slice-reveal i:nth-child(3) {
  background-position: 66.666% 50%;
  animation-delay: .39s;
}

.example-slice-reveal i:nth-child(4) {
  background-position: 100% 50%;
  animation-delay: .56s;
}

.theme-site-example.pro-example .example-hero > img {
  opacity: .34;
}

@keyframes exampleSliceSettle {
  0%, 8% {
    opacity: 0;
    transform: translateY(16px) scale(.96);
  }

  18%, 72% {
    opacity: .9;
    transform: translateY(0) scale(1);
  }

  90%, 100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.01);
  }
}

.example-copy small {
  font-size: 5px;
  letter-spacing: .12em;
}

.example-copy b {
  margin-top: 5px;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
}

.example-lower {
  right: 0;
  bottom: 0;
  left: 0;
  height: 31px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #f7f2e9;
}

.example-lower span {
  display: grid;
  width: 38%;
  gap: 3px;
}

.example-lower u {
  display: block;
  height: 2px;
  background: #d1c8b9;
  text-decoration: none;
}

.example-lower u:last-child {
  width: 70%;
}

.example-lower strong {
  border-radius: 2px;
  color: #fff;
  background: #a8492d;
  padding: 5px 7px;
  font-size: 5px;
}

/* The same content is deliberately rearranged so theme differences are comparable. */
.theme-site-example.izakaya {
  background: #f2d43d;
}

.theme-site-example.izakaya .example-header {
  color: #fff;
  background: #bb2f20;
}

.theme-site-example.izakaya .example-hero {
  right: 8px;
  bottom: 24px;
  left: 8px;
  --example-focus: center 54%;
  transform: rotate(-1deg);
}

.theme-site-example.izakaya .example-hero::after {
  background: linear-gradient(120deg, rgba(0,0,0,.12), rgba(0,0,0,.82));
}

.theme-site-example.izakaya .example-copy {
  align-items: flex-end;
  justify-content: center;
  padding: 18px 13px 12px 46%;
  text-align: right;
}

.theme-site-example.izakaya .example-copy b {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.theme-site-example.izakaya .example-lower {
  height: 24px;
  background: #f2d43d;
}

.theme-site-example.izakaya .example-lower strong {
  color: #f2d43d;
  background: #24201d;
}

.theme-site-example.cafe {
  border-radius: 34px 34px 9px 9px;
  background: #eadcc6;
}

.theme-site-example.cafe .example-header {
  color: #5f563e;
  background: #eadcc6;
}

.theme-site-example.cafe .example-hero {
  right: 13px;
  bottom: 37px;
  left: 13px;
  --example-focus: center 58%;
  border-radius: 44px 44px 6px 6px;
}

.theme-site-example.cafe .example-hero::after {
  background: linear-gradient(0deg, rgba(72,59,42,.62), transparent 65%);
}

.theme-site-example.cafe .example-copy {
  align-items: center;
  justify-content: flex-end;
  padding: 14px 18px 16px;
  text-align: center;
}

.theme-site-example.cafe .example-copy b {
  font-size: 11px;
}

.theme-site-example.cafe .example-lower {
  height: 37px;
  background: #eadcc6;
}

.theme-site-example.cafe .example-lower strong {
  border-radius: 100px;
  background: #647458;
}

.theme-site-example.natural {
  background: #e8eddc;
}

.theme-site-example.natural .example-header {
  color: #40513b;
  background: #e8eddc;
}

.theme-site-example.natural .example-hero {
  right: 38%;
  bottom: 10px;
  left: 9px;
  --example-focus: 45% 50%;
  border-radius: 70px 70px 8px 8px;
}

.theme-site-example.natural .example-copy {
  top: 34px;
  right: -78%;
  bottom: auto;
  left: 108%;
  justify-content: flex-start;
  padding: 0;
  color: #40513b;
  background: transparent;
  text-align: left;
  text-shadow: none;
}

.theme-site-example.natural .example-copy b {
  font-size: 11px;
}

.theme-site-example.natural .example-hero::after {
  display: none;
}

.theme-site-example.natural .example-lower {
  display: none;
}

.theme-site-example.natural .example-pro-panels {
  top: 98px;
  right: 11px;
  bottom: auto;
  left: 52%;
  grid-template-columns: 1fr;
}

.theme-site-example.natural .example-pro-panels i {
  height: 9px;
  background: rgba(255,255,255,.9);
}

.theme-site-example.natural .example-photo-stack {
  top: 34px;
  right: 12px;
  width: 37%;
  height: 104px;
}

.theme-site-example.natural .example-photo-stack img {
  border: 4px solid #f7fbef;
  border-radius: 30px 30px 7px 7px;
}

.theme-site-example.natural .example-photo-stack img:first-child {
  top: 0;
  left: 0;
  height: 56%;
}

.theme-site-example.natural .example-photo-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 78%;
  height: 44%;
  border-radius: 12px;
}

.theme-site-example.simple {
  color: #172933;
  background: #fff;
}

.theme-site-example.simple .example-header {
  background: #fff;
}

.theme-site-example.simple .example-hero {
  right: 48%;
  bottom: 0;
  --example-focus: 42% 50%;
}

.theme-site-example.simple .example-copy {
  right: -95%;
  left: 110%;
  justify-content: center;
  padding: 0;
  color: #172933;
  background: #fff;
  text-shadow: none;
}

.theme-site-example.simple .example-copy b {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 12px;
}

.theme-site-example.simple .example-hero::after,
.theme-site-example.simple .example-lower {
  display: none;
}

.theme-site-example.bistro {
  color: #24323c;
  background: #f1e5d2;
}

.theme-site-example.bistro .example-header {
  color: #f1e5d2;
  background: #24323c;
}

.theme-site-example.bistro .example-hero {
  top: 34px;
  right: 8px;
  bottom: 8px;
  left: 38%;
  --example-focus: 56% 50%;
}

.theme-site-example.bistro .example-copy {
  right: 100%;
  left: -62%;
  justify-content: flex-start;
  color: #24323c;
  background: #f1e5d2;
  text-shadow: none;
}

.theme-site-example.bistro .example-copy b {
  font-style: italic;
}

.theme-site-example.bistro .example-hero::after,
.theme-site-example.bistro .example-lower {
  display: none;
}

.theme-site-example.bistro .example-pro-panels {
  top: 76px;
  right: 62%;
  bottom: auto;
  left: 10px;
  grid-template-columns: 1fr;
}

.theme-site-example.bistro .example-pro-panels i {
  height: 10px;
  border-color: rgba(36,50,60,.18);
  background: rgba(255,255,255,.72);
}

.theme-site-example.bistro .example-photo-stack {
  top: 82px;
  left: 11px;
  width: 50px;
  height: 50px;
}

.theme-site-example.bistro .example-photo-stack img {
  border: 3px solid #fff7e8;
  border-radius: 2px;
}

.theme-site-example.bistro .example-photo-stack img:first-child {
  inset: 0 auto auto 0;
  width: 74%;
  height: 74%;
  transform: rotate(-6deg);
}

.theme-site-example.bistro .example-photo-stack img:last-child {
  right: 0;
  bottom: 0;
  width: 68%;
  height: 68%;
  transform: rotate(5deg);
}

.theme-site-example.premium {
  border-radius: 0;
  color: #d2b77c;
  background: #121212;
  box-shadow: inset 0 0 0 1px #806b42;
}

.theme-site-example.premium .example-header,
.theme-site-example.premium .example-lower {
  color: #d2b77c;
  background: #121212;
}

.theme-site-example.premium .example-hero {
  top: 32px;
  right: 16px;
  bottom: 34px;
  left: 16px;
  --example-focus: center 55%;
}

.theme-site-example.premium .example-hero img {
  filter: brightness(.58) saturate(.7);
}

.theme-site-example.premium .example-hero::after {
  background: rgba(0,0,0,.18);
}

.theme-site-example.premium .example-copy {
  align-items: center;
  justify-content: center;
  padding-inline: 24px;
  text-align: center;
}

.theme-site-example.premium .example-lower strong {
  border: 1px solid #a68c55;
  color: #d2b77c;
  background: transparent;
}

.theme-site-example.premium .example-pro-panels i,
.theme-site-example.luxury .example-pro-panels i {
  border-color: rgba(210,183,124,.45);
  background: rgba(210,183,124,.16);
}

.theme-site-example.premium .example-pro-caption,
.theme-site-example.luxury .example-pro-caption {
  color: #d2b77c;
}

.theme-site-example.premium .example-photo-stack {
  top: 40px;
  right: 18px;
  width: 30px;
  height: 70px;
}

.theme-site-example.premium .example-photo-stack img {
  border: 1px solid rgba(210,183,124,.46);
  filter: brightness(.7) saturate(.75);
}

.theme-site-example.premium .example-photo-stack img:first-child {
  top: 0;
  right: 0;
  height: 47%;
}

.theme-site-example.premium .example-photo-stack img:last-child {
  right: 0;
  bottom: 0;
  height: 47%;
}

.theme-site-example.night {
  color: #d9dcf0;
  background: #101725;
}

.theme-site-example.night .example-header,
.theme-site-example.night .example-lower {
  color: #d9dcf0;
  background: #101725;
}

.theme-site-example.night .example-hero {
  top: 0;
  bottom: 0;
  --example-focus: center 52%;
}

.theme-site-example.night .example-hero img {
  filter: brightness(.45) saturate(.8);
}

.theme-site-example.night .example-hero::after {
  background: linear-gradient(0deg, #101725, transparent 70%);
}

.theme-site-example.night .example-header,
.theme-site-example.night .example-lower {
  background: transparent;
}

.theme-site-example.night .example-copy {
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 35px;
  text-align: center;
}

.theme-site-example.night .example-copy b {
  text-shadow: 0 0 10px #8f77da;
}

.theme-site-example.night .example-lower strong {
  background: #6b57a2;
}

.theme-site-example.ryotei {
  border-radius: 2px;
  color: #9d7b45;
  background:
    linear-gradient(90deg, rgba(157,123,69,.18) 0 1px, transparent 1px 100%),
    #f6f0e4;
  box-shadow: inset 0 0 0 1px rgba(122,87,43,.26);
}

.theme-site-example.ryotei .example-header,
.theme-site-example.ryotei .example-lower {
  color: #382c20;
  background: #f6f0e4;
}

.theme-site-example.ryotei .example-hero {
  top: 33px;
  right: 42%;
  bottom: 12px;
  left: 14px;
  --example-focus: 46% 50%;
  border-radius: 0 34px 0 34px;
}

.theme-site-example.ryotei .example-copy {
  top: 40px;
  right: -82%;
  bottom: auto;
  left: 110%;
  justify-content: center;
  padding: 0;
  color: #382c20;
  background: transparent;
  text-align: left;
  text-shadow: none;
}

.theme-site-example.ryotei .example-copy b {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.55;
}

.theme-site-example.ryotei .example-hero::after {
  background: linear-gradient(0deg, rgba(56,44,32,.42), transparent 66%);
}

.theme-site-example.ryotei .example-lower strong {
  border: 1px solid #9d7b45;
  color: #5b4328;
  background: transparent;
}

.theme-site-example.ryotei .example-pro-panels {
  top: 54px;
  right: 17px;
  bottom: auto;
  left: 64%;
  grid-template-columns: 1fr;
}

.theme-site-example.ryotei .example-pro-panels i {
  height: 13px;
  border-color: rgba(157,123,69,.25);
  background: rgba(255,251,242,.88);
}

.theme-site-example.ryotei .example-photo-stack {
  top: 54px;
  right: 17px;
  width: 44px;
  height: 78px;
}

.theme-site-example.ryotei .example-photo-stack img {
  border: 3px solid #fff9ed;
  border-radius: 0 22px 0 22px;
}

.theme-site-example.ryotei .example-photo-stack img:first-child {
  top: 0;
  right: 0;
  height: 56%;
}

.theme-site-example.ryotei .example-photo-stack img:last-child {
  right: 10px;
  bottom: 0;
  width: 72%;
  height: 45%;
  opacity: .92;
}

.theme-site-example.patisserie {
  color: #715044;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.72), transparent 26%),
    #f7e5df;
}

.theme-site-example.patisserie .example-header,
.theme-site-example.patisserie .example-lower {
  color: #715044;
  background: transparent;
}

.theme-site-example.patisserie .example-hero {
  top: 32px;
  right: 12px;
  bottom: 40px;
  left: 12px;
  --example-focus: center 57%;
  border-radius: 999px 999px 18px 18px;
}

.theme-site-example.patisserie .example-copy {
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12px;
  text-align: center;
}

.theme-site-example.patisserie .example-copy b {
  color: #fff;
  font-size: 12px;
}

.theme-site-example.patisserie .example-hero::after {
  background: linear-gradient(0deg, rgba(91,57,49,.66), transparent 60%);
}

.theme-site-example.patisserie .example-lower strong {
  color: #fff;
  background: #b46f6f;
}

.theme-site-example.patisserie .example-pro-panels {
  right: 18px;
  bottom: 36px;
  left: 18px;
}

.theme-site-example.patisserie .example-pro-panels i {
  border-color: rgba(180,111,111,.18);
  background: rgba(255,255,255,.86);
}

.theme-site-example.patisserie .example-photo-stack {
  right: 24px;
  bottom: 31px;
  width: 58px;
  height: 35px;
}

.theme-site-example.patisserie .example-photo-stack img {
  border: 3px solid #fff8f4;
  border-radius: 999px;
}

.theme-site-example.patisserie .example-photo-stack img:first-child {
  left: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
}

.theme-site-example.patisserie .example-photo-stack img:last-child {
  right: 0;
  bottom: 4px;
  width: 27px;
  height: 27px;
}

.theme-site-example.trattoria {
  border-radius: 0;
  color: #26382c;
  background: #f7f0df;
}

.theme-site-example.trattoria .example-header {
  color: #f7f0df;
  background: #26382c;
}

.theme-site-example.trattoria .example-hero {
  top: 28px;
  right: 9px;
  bottom: 44px;
  left: 9px;
  --example-focus: center 54%;
  transform: rotate(-1.5deg);
}

.theme-site-example.trattoria .example-copy {
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 42%;
  text-align: left;
}

.theme-site-example.trattoria .example-copy b {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: -.05em;
}

.theme-site-example.trattoria .example-hero::after {
  background: linear-gradient(0deg, rgba(38,56,44,.72), transparent 58%);
}

.theme-site-example.trattoria .example-lower {
  height: 38px;
  color: #26382c;
  background: #f7f0df;
}

.theme-site-example.trattoria .example-lower strong {
  border-radius: 0;
  background: #b7472d;
}

.theme-site-example.trattoria .example-pro-panels {
  right: 12px;
  bottom: 36px;
  left: 12px;
  grid-template-columns: 1fr;
}

.theme-site-example.trattoria .example-pro-panels i {
  height: 8px;
  border-radius: 0;
  border-color: #c7b78f;
  background: rgba(255,255,255,.36);
}

.theme-site-example.trattoria .example-photo-stack {
  right: 17px;
  bottom: 31px;
  width: 58px;
  height: 36px;
}

.theme-site-example.trattoria .example-photo-stack img {
  border: 3px solid #fff8e9;
  border-radius: 0;
}

.theme-site-example.trattoria .example-photo-stack img:first-child {
  left: 0;
  bottom: 0;
  width: 38px;
  height: 30px;
  transform: rotate(4deg);
}

.theme-site-example.trattoria .example-photo-stack img:last-child {
  right: 0;
  top: -6px;
  width: 31px;
  height: 31px;
  transform: rotate(-7deg);
}

.theme-site-example.luxury {
  border-radius: 0;
  color: #d5b36b;
  background:
    radial-gradient(circle at 78% 12%, rgba(167,56,72,.28), transparent 36%),
    linear-gradient(135deg, #100f13, #241116);
  box-shadow: inset 0 0 0 1px rgba(213,179,107,.42);
}

.theme-site-example.luxury .example-header,
.theme-site-example.luxury .example-lower {
  color: #d5b36b;
  background: transparent;
}

.theme-site-example.luxury .example-hero {
  top: 38px;
  right: 24px;
  bottom: 38px;
  left: 24px;
  --example-focus: center 56%;
  border-radius: 999px 999px 8px 8px;
}

.theme-site-example.luxury .example-hero img {
  filter: brightness(.45) saturate(.75) contrast(1.1);
}

.theme-site-example.luxury .example-hero::after {
  background: linear-gradient(0deg, rgba(16,15,19,.55), transparent 68%);
}

.theme-site-example.luxury .example-copy {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.theme-site-example.luxury .example-copy b {
  font-size: 13px;
  text-shadow: 0 0 18px rgba(213,179,107,.45);
}

.theme-site-example.luxury .example-lower strong {
  border: 1px solid rgba(213,179,107,.72);
  color: #d5b36b;
  background: transparent;
}

.theme-site-example.luxury .example-photo-stack {
  top: 34px;
  left: 16px;
  width: 38px;
  height: 82px;
}

.theme-site-example.luxury .example-photo-stack img {
  border: 1px solid rgba(213,179,107,.5);
  filter: brightness(.58) saturate(.75);
}

.theme-site-example.luxury .example-photo-stack img:first-child {
  top: 0;
  left: 0;
  height: 48%;
}

.theme-site-example.luxury .example-photo-stack img:last-child {
  bottom: 0;
  left: 8px;
  width: 74%;
  height: 48%;
}

.onboarding-fields label > select + input,
.field select + input {
  margin-top: 8px;
}

.is-hidden {
  display: none !important;
}

.contact-page {
  min-height: calc(100vh - 76px);
  padding: 70px 24px 100px;
}

.contact-intro,
.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.contact-intro span {
  color: #d85b34;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.contact-intro h1 {
  margin: 12px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 5vw, 44px);
}

.contact-intro p {
  color: #6d746c;
  font-size: 12px;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-top: 38px;
  border: 1px solid #e1e2dc;
  border-radius: 18px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(44,48,42,.07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4f564e;
  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9dcd5;
  border-radius: 9px;
  background: #fff;
  padding: 12px;
  font: inherit;
  font-size: 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: #d85b34;
  padding: 15px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: .6;
}

.contact-status {
  min-height: 18px;
  margin: 0;
  color: #a74427;
  font-size: 10px;
}

.contact-status.success {
  color: #2f7452;
}

.onboarding-upload-grid svg {
  width: 25px;
  color: #d85b34;
}

.onboarding-upload-grid small,
.start-theme-grid small {
  color: #81877f;
  font-size: 9px;
}

.start-theme-categories {
  display: flex;
  gap: 7px;
  margin-bottom: 15px;
}

.start-theme-categories button {
  border: 1px solid #dcded8;
  border-radius: 100px;
  background: #fff;
  padding: 7px 11px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.start-theme-categories button.selected,
.start-theme-grid button.selected {
  border-color: #d85b34;
  box-shadow: 0 0 0 2px #f9e9e2;
}

.start-theme-preview-card {
  display: grid;
  gap: 14px;
  border: 1px solid #dfe1da;
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.9), transparent 30%),
    #eef0ea;
  padding: 16px;
}

.start-theme-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.start-theme-preview-head div {
  display: grid;
  gap: 4px;
}

.start-theme-preview-head span {
  color: #c05636;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}

.start-theme-preview-head strong {
  color: #2f352e;
  font-size: 15px;
}

.start-theme-preview-head small {
  color: #747b72;
  font-size: 10px;
  line-height: 1.6;
}

.start-theme-preview-stage {
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg, #dde0da, #f7f8f4);
  padding: 18px;
}

.start-theme-phone.published-store {
  width: 238px;
  height: 430px;
  overflow: hidden;
  border: 6px solid #232620;
  border-radius: 30px;
  background: #fff;
  padding: 0;
  box-shadow: 0 20px 45px rgba(30,34,28,.22);
}

.start-theme-preview-page {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: none;
  scrollbar-width: thin;
}

.start-theme-preview-page .site-hero {
  height: 235px;
}

.start-theme-preview-page .site-body,
.start-theme-preview-page .site-menu,
.start-theme-preview-page .site-gallery,
.start-theme-preview-page .site-access {
  padding: 30px 19px;
}

.start-theme-preview-page .site-menu-category-items {
  grid-template-columns: 1fr;
}

.start-theme-preview-page .site-gallery-frame {
  width: 84%;
  height: 205px;
  flex-basis: 84%;
}

.start-theme-preview-page .site-footer {
  padding: 40px 19px;
}

.onboarding-finish {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 35px;
}

.finish-phone {
  border: 6px solid #22251f;
  border-radius: 25px;
  padding: 4px;
}

.finish-screen {
  overflow: hidden;
  border-radius: 16px;
  background: #f8f2e8;
  padding-bottom: 16px;
}

.finish-screen img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.finish-screen h3,
.finish-screen p,
.finish-screen b {
  display: block;
  margin: 12px 15px;
}

.finish-screen p {
  color: #767b74;
  font-size: 8px;
}

.finish-screen b {
  border-radius: 6px;
  color: #fff;
  background: #d85b34;
  padding: 10px;
  font-size: 9px;
  text-align: center;
}

.onboarding-finish ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.onboarding-finish li {
  font-size: 10px;
}

.onboarding-finish li::before {
  margin-right: 7px;
  color: #337557;
  content: "✓";
}

.onboarding-review {
  display: grid;
  gap: 16px;
}

.review-toolbar,
.review-actions,
.review-devices,
.review-guide,
.review-publish-note {
  display: flex;
  align-items: center;
}

.review-toolbar {
  justify-content: space-between;
  gap: 16px;
}

.review-toolbar > div:first-child {
  display: grid;
  gap: 7px;
}

.review-toolbar strong {
  font-size: 12px;
}

.review-actions {
  gap: 8px;
}

.review-devices {
  border: 1px solid #dcded7;
  border-radius: 8px;
  background: #f0f1ed;
  padding: 3px;
}

.review-devices button,
.review-expand {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  padding: 7px 9px;
  color: #747a72;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.review-devices button.active {
  color: #222720;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,.08);
}

.review-devices svg,
.review-expand svg {
  width: 13px;
}

.review-expand {
  border: 1px solid #dcded7;
  background: #fff;
}

.review-stage {
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #e4e6e1;
  padding: 20px;
}

.start-live-preview.published-store {
  width: 302px;
  min-height: 0;
  height: 580px;
  overflow: hidden;
  border: 7px solid #232620;
  border-radius: 34px;
  background: #fff;
  padding: 0;
  box-shadow: 0 24px 50px rgba(30,34,28,.2);
  transition: width 220ms ease, border-radius 220ms ease;
}

.start-live-preview.desktop {
  width: min(680px, 100%);
  border-width: 5px;
  border-radius: 13px;
}

.start-live-preview .start-live-page {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: none;
  scrollbar-width: thin;
}

.start-live-preview .site-hero {
  height: 265px;
}

.start-live-preview.desktop .site-hero {
  height: 430px;
}

.start-live-preview .site-body,
.start-live-preview .site-menu,
.start-live-preview .site-gallery,
.start-live-preview .site-access {
  padding: 35px 22px;
}

.start-live-preview .site-menu-category-items {
  grid-template-columns: 1fr;
}

.start-live-preview.desktop .site-menu-category-items {
  grid-template-columns: repeat(3, 1fr);
}

.start-live-preview .site-gallery-frame {
  width: 82%;
  height: 230px;
  flex-basis: 82%;
}

.start-live-preview.desktop .site-gallery-frame {
  width: 48%;
  height: 290px;
  flex-basis: 48%;
}

.start-live-preview .site-footer {
  padding: 45px 22px;
}

.review-guide {
  flex-wrap: wrap;
  gap: 7px;
  border: 1px solid #dfe1da;
  border-radius: 10px;
  background: #fafbf8;
  padding: 11px 13px;
}

.review-guide > span {
  flex: 1 1 300px;
  color: #6f756d;
  font-size: 8px;
}

.review-guide i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #3c835f;
}

.review-guide button {
  border: 0;
  color: #566159;
  background: transparent;
  padding: 5px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.review-publish-note {
  justify-content: space-between;
  gap: 20px;
  border-radius: 12px;
  color: #eff2ec;
  background: #292e27;
  padding: 19px 22px;
}

.review-publish-note h3,
.review-publish-note p {
  margin: 0;
}

.review-publish-note h3 {
  font-size: 13px;
}

.review-publish-note p,
.review-publish-note li {
  color: #b9bfb5;
  font-size: 8px;
}

.review-publish-note p {
  margin-top: 5px;
}

.review-publish-note ul {
  display: grid;
  gap: 5px;
  min-width: 175px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-publish-note li::before {
  margin-right: 6px;
  color: #e4b487;
  content: "✓";
}

.start-terms-consent {
  border-color: #e6d8ca;
  background: #fffaf4;
  box-shadow: 0 14px 34px rgba(61, 51, 42, .07);
}

.start-terms-consent strong {
  font-size: 12px;
}

.start-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  background: #dfe1dc;
  opacity: 0;
  pointer-events: none;
  transition: 160ms ease;
}

.start-preview-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.start-preview-modal > header {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d4d7d1;
  background: #fff;
  padding: 0 24px;
}

.start-preview-modal > header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.start-preview-modal > header small {
  color: #8b9088;
  font-size: 8px;
}

.start-preview-modal > header button {
  border: 1px solid #d9dbd5;
  border-radius: 7px;
  background: #fff;
  padding: 9px 13px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.start-preview-modal-shell {
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 28px;
}

.start-preview-modal-page.published-store {
  min-height: 0;
  padding: 0;
}

.start-preview-modal-page .published-store-page {
  width: min(820px, 100%);
}

/* Dashboard plan controls */
.pro-lock {
  margin-left: auto;
  border-radius: 100px;
  color: #8b6744;
  background: #f1e6d8;
  padding: 3px 6px;
  font-size: 7px;
}

.free-dashboard-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto auto auto;
  align-items: center;
  gap: 17px;
  margin: 18px 0;
  border: 1px solid #dfe2db;
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.free-plan-summary {
  display: flex;
  align-items: center;
  gap: 13px;
}

.free-badge {
  display: inline-block;
  border-radius: 100px;
  color: #2f6c50;
  background: #e8f2eb;
  padding: 5px 8px;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.free-plan-summary strong,
.free-plan-summary p {
  display: block;
  margin: 0;
}

.free-plan-summary strong {
  font-size: 11px;
}

.free-plan-summary p {
  margin-top: 4px;
  color: #81867f;
  font-size: 8px;
}

.qr-mini-card {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid #e2e4df;
  padding-left: 16px;
}

.qr-mini-card img {
  width: 47px;
  height: 47px;
}

.qr-mini-card strong,
.qr-mini-card small {
  display: block;
  font-size: 8px;
}

.qr-mini-card small {
  color: #91968e;
}

.qr-mini-card a {
  color: #456d5a;
  font-size: 8px;
  font-weight: 700;
}

.upgrade-quiet,
.metrics-lock button,
.inline-upgrade {
  border: 1px solid #e5cdbd;
  border-radius: 7px;
  color: #b34a2a;
  background: #fff7f1;
  padding: 9px 12px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.local-pro-strip-button {
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #27372e;
  padding: 9px 12px;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
}

.local-pro-strip-button.reset {
  color: #8a4a2b;
  background: #fff3eb;
}

.metrics-section {
  position: relative;
}

.metrics-lock {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border: 1px solid #e5d8ca;
  border-radius: 9px;
  background: #fffaf4;
  padding: 12px;
}

.metrics-lock[hidden] {
  display: none;
}

.metrics-lock svg {
  width: 18px;
  color: #b76c38;
}

.metrics-lock div {
  flex: 1;
}

.metrics-lock strong,
.metrics-lock small {
  display: block;
}

.metrics-lock strong {
  font-size: 10px;
}

.metrics-lock small {
  margin-top: 3px;
  color: #858077;
  font-size: 8px;
}

body:not(.is-pro) .metrics {
  opacity: .27;
  filter: grayscale(1);
  pointer-events: none;
}

.powered-by {
  display: block;
  margin: 20px auto 12px;
  color: #8b857d;
  font-size: 7px;
  line-height: 1.7;
  text-decoration: none;
}

.powered-by b {
  color: var(--preview-accent);
}

.single-menu-image > img,
.public-menu-image > img {
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  border-radius: 8px;
  object-fit: contain !important;
}

.single-menu-image .menu-sheet-editor-frame,
.public-menu-image .menu-sheet-smart-frame {
  min-height: 310px;
  border: 1px solid #e6e4dc;
  border-radius: 12px;
  background: #fff;
}

.inline-upgrade {
  width: 100%;
  margin-top: 12px;
}

.dashboard-pro-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, 1.1fr);
  gap: 30px;
  overflow: hidden;
  margin: 22px 0;
  border-radius: 18px;
  color: #f7f3eb;
  background:
    radial-gradient(circle at 82% 0%, rgba(217, 179, 130, .2), transparent 32%),
    linear-gradient(135deg, #20241f, #30352e);
  padding: 30px;
  box-shadow: 0 18px 45px rgba(31, 38, 31, .15);
}

.dashboard-pro-showcase[hidden] {
  display: none;
}

.dashboard-pro-copy {
  align-self: center;
}

.dashboard-pro-heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-pro-label,
.campaign-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.dashboard-pro-label {
  color: #2a2e28;
  background: #ddb983;
}

.campaign-pill {
  border: 1px solid rgba(221, 185, 131, .35);
  color: #e7c89d;
  background: rgba(255,255,255,.06);
}

.dashboard-pro-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(20px, 2.4vw, 31px);
  line-height: 1.35;
  letter-spacing: -.02em;
}

.dashboard-pro-copy > p {
  max-width: 430px;
  margin: 0;
  color: #c5c9c1;
  font-size: 10px;
  line-height: 1.8;
}

.dashboard-pro-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 18px 0;
}

.dashboard-pro-benefits span {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: #c9cec5;
  background: rgba(255,255,255,.045);
  padding: 9px 10px;
  font-size: 8px;
}

.dashboard-pro-benefits b {
  margin-right: 3px;
  color: #f1d09f;
  font-size: 10px;
}

.dashboard-pro-copy > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  border: 0;
  border-radius: 9px;
  color: #252a24;
  background: linear-gradient(135deg, #efd5ab, #d7aa70);
  padding: 13px 16px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(216, 175, 116, .18);
}

.dashboard-pro-copy > button svg {
  width: 14px;
}

.dashboard-pro-copy > small {
  display: block;
  margin-top: 9px;
  color: #8f968c;
  font-size: 7px;
  text-align: center;
}

.dashboard-pro-preview {
  position: relative;
  min-height: 320px;
}

.pro-preview-browser {
  overflow: hidden;
  width: 88%;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: #f8f4ed;
  box-shadow: 0 22px 48px rgba(0,0,0,.22);
  transform: rotate(1.2deg);
}

.pro-preview-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 27px;
  color: #777b74;
  background: #e9e5de;
  padding: 0 9px;
  font-size: 7px;
}

.pro-preview-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b9b8b2;
}

.pro-preview-bar span {
  margin-left: 6px;
}

.pro-preview-hero {
  display: grid;
  align-content: end;
  min-height: 140px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(27,24,18,.75), rgba(27,24,18,.03)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=900&q=80") center/cover;
  padding: 19px;
}

.pro-preview-hero span {
  color: #f0c58e;
  font-size: 7px;
  font-weight: 700;
}

.pro-preview-hero strong {
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.4;
}

.pro-preview-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
}

.pro-preview-menu article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 7px;
  align-items: center;
  border: 1px solid #e7e1d8;
  border-radius: 7px;
  background: #fff;
  padding: 6px;
}

.pro-preview-menu article > i {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: url("https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=240&q=80") center/cover;
}

.pro-preview-menu article:nth-child(2) > i {
  background-image: url("https://images.unsplash.com/photo-1569058242253-92a9c755a0ec?auto=format&fit=crop&w=240&q=80");
}

.pro-preview-menu small,
.pro-preview-menu b,
.pro-preview-menu span {
  display: block;
}

.pro-preview-menu small {
  color: #b35d38;
  font-size: 5px;
}

.pro-preview-menu b {
  margin: 2px 0;
  color: #333730;
  font-size: 7px;
}

.pro-preview-menu span {
  color: #74786f;
  font-size: 6px;
}

.pro-preview-insight {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 190px;
  border: 1px solid rgba(221,185,131,.45);
  border-radius: 11px;
  color: #33372f;
  background: rgba(255,255,255,.96);
  padding: 14px;
  box-shadow: 0 17px 35px rgba(0,0,0,.24);
}

.pro-preview-insight > span,
.pro-preview-insight > strong {
  display: block;
}

.pro-preview-insight > span {
  color: #9c7041;
  font-size: 7px;
  font-weight: 800;
}

.pro-preview-insight > strong {
  margin: 4px 0 10px;
  font-size: 10px;
}

.pro-preview-insight > div {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 45px;
}

.pro-preview-insight i {
  width: 22px;
  height: var(--value);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(#d7aa70, #a86e3e);
}

.dashboard-pro-preview {
  display: grid;
  align-content: center;
  min-width: 0;
}

.pro-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pro-demo-head span,
.pro-demo-head strong {
  display: block;
}

.pro-demo-head span {
  color: #dbb77f;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
}

.pro-demo-head strong {
  margin-top: 3px;
  font-size: 10px;
}

.pro-demo-arrows {
  display: flex;
  gap: 5px;
}

.pro-demo-arrows button {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: #f2d3a6;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.pro-demo-arrows button:hover {
  border-color: #deb983;
  background: rgba(222,185,131,.12);
}

.pro-demo-viewport {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: #171a16;
  box-shadow: 0 24px 55px rgba(0,0,0,.3);
  touch-action: pan-y;
  user-select: none;
}

.pro-demo-track {
  display: flex;
  width: 100%;
  transition: transform .55s cubic-bezier(.22,.75,.2,1);
  will-change: transform;
}

.pro-demo-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 10px;
}

.pro-slide-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 3px 9px;
}

.pro-slide-caption > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  color: #272b25;
  background: #ddb77e;
  font-size: 8px;
  font-weight: 900;
}

.pro-slide-caption strong,
.pro-slide-caption small {
  display: block;
}

.pro-slide-caption strong {
  font-size: 9px;
}

.pro-slide-caption small {
  margin-top: 2px;
  color: #92998f;
  font-size: 6px;
}

.pro-site-window {
  overflow: hidden;
  min-height: 253px;
  border-radius: 10px;
  color: #32362f;
  background: #f7f3ec;
}

.pro-site-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 29px;
  color: #7d8178;
  background: #e9e5dd;
  padding: 0 9px;
  font-size: 6px;
}

.pro-site-toolbar > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bbb9b3;
}

.pro-site-toolbar b {
  margin-left: 6px;
  color: #343830;
}

.pro-site-toolbar em {
  margin-left: auto;
  border-radius: 999px;
  color: #fff;
  background: #a75b3b;
  padding: 4px 8px;
  font-style: normal;
}

.pro-site-home-hero {
  display: grid;
  align-content: center;
  min-height: 183px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18,17,13,.86), rgba(18,17,13,.09)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1000&q=85") center/cover;
  padding: 20px;
}

.pro-site-home-hero div {
  display: grid;
  justify-items: start;
}

.pro-site-home-hero small {
  color: #e8bd7f;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .18em;
}

.pro-site-home-hero strong {
  margin: 7px 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 21px;
  line-height: 1.28;
}

.pro-site-home-hero span {
  max-width: 220px;
  color: #dedfd9;
  font-size: 6px;
}

.pro-site-home-hero button {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  color: #30291f;
  background: #f0d4aa;
  padding: 7px 12px;
  font-size: 6px;
  font-weight: 800;
}

.pro-site-news {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 41px;
  padding: 0 13px;
  font-size: 6px;
}

.pro-site-news b {
  color: #a15b3d;
  letter-spacing: .1em;
}

.pro-site-news em {
  color: #969990;
  font-style: normal;
}

.pro-menu-title {
  padding: 13px 14px 10px;
  text-align: center;
}

.pro-menu-title > small {
  color: #ae6b49;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .16em;
}

.pro-menu-title > strong {
  display: block;
  margin: 3px 0 9px;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 15px;
}

.pro-menu-title > div {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.pro-menu-title span {
  border: 1px solid #ddd7cd;
  border-radius: 999px;
  color: #787c73;
  padding: 4px 7px;
  font-size: 5px;
}

.pro-menu-title span.selected {
  border-color: #2f342d;
  color: #fff;
  background: #2f342d;
}

.pro-menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 0 10px;
}

.pro-menu-cards article {
  overflow: hidden;
  border: 1px solid #e5dfd5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 7px 17px rgba(49,42,34,.07);
}

.pro-menu-cards article > i {
  display: block;
  height: 64px;
  background-position: center;
  background-size: cover;
}

.pro-menu-cards .dish-one {
  background-image: url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=420&q=85");
}

.pro-menu-cards .dish-two {
  background-image: url("https://images.unsplash.com/photo-1529692236671-f1f6cf9683ba?auto=format&fit=crop&w=420&q=85");
}

.pro-menu-cards .dish-three {
  background-image: url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=320&q=85");
}

.pro-menu-cards article > div {
  padding: 7px;
}

.pro-menu-cards small,
.pro-menu-cards b,
.pro-menu-cards p,
.pro-menu-cards strong {
  display: block;
}

.pro-menu-cards small {
  color: #b45f3d;
  font-size: 5px;
  font-weight: 800;
}

.pro-menu-cards b {
  margin: 3px 0;
  font-size: 7px;
}

.pro-menu-cards p {
  min-height: 23px;
  margin: 0;
  color: #8c8f87;
  font-size: 5px;
  line-height: 1.45;
}

.pro-menu-cards strong {
  margin-top: 5px;
  font-size: 7px;
}

.pro-menu-add {
  margin: 9px 10px 10px;
  border: 1px dashed #cbbda9;
  border-radius: 7px;
  color: #9a7049;
  background: #fffaf3;
  padding: 7px;
  font-size: 6px;
  font-weight: 800;
  text-align: center;
}

.pro-site-insights {
  padding: 14px;
  background: #f2f1ed;
}

.pro-insights-head {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  border-radius: 9px;
  color: #fff;
  background: #2d322c;
  padding: 14px;
}

.pro-insights-head small,
.pro-insights-head strong,
.pro-insights-head span {
  display: block;
}

.pro-insights-head small {
  color: #c4c9c0;
  font-size: 6px;
}

.pro-insights-head strong {
  margin: 5px 0;
  font-size: 21px;
}

.pro-insights-head em,
.pro-insights-stats em {
  font-size: 7px;
  font-style: normal;
}

.pro-insights-head span {
  color: #e5bd83;
  font-size: 6px;
}

.pro-insights-head > i {
  height: 63px;
  background:
    linear-gradient(135deg, transparent 0 10%, #d5aa71 11% 13%, transparent 14% 28%, #d5aa71 29% 31%, transparent 32% 47%, #d5aa71 48% 50%, transparent 51% 67%, #d5aa71 68% 70%, transparent 71%),
    linear-gradient(#4a5048 1px, transparent 1px);
  background-size: 100% 100%, 100% 16px;
}

.pro-insights-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 8px 0;
}

.pro-insights-stats article {
  border: 1px solid #dfded8;
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

.pro-insights-stats small,
.pro-insights-stats strong,
.pro-insights-stats span {
  display: block;
}

.pro-insights-stats small {
  color: #858a81;
  font-size: 5px;
}

.pro-insights-stats strong {
  margin: 5px 0;
  font-size: 13px;
}

.pro-insights-stats span {
  color: #46805e;
  font-size: 5px;
  font-weight: 800;
}

.pro-insights-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.pro-insights-bottom > div {
  display: grid;
  gap: 5px;
  border: 1px solid #dfded8;
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

.pro-insights-bottom small {
  color: #a36645;
  font-size: 5px;
  font-weight: 800;
}

.pro-insights-bottom b {
  color: #555a52;
  font-size: 6px;
}

.pro-news-compose strong {
  font-size: 7px;
  line-height: 1.45;
}

.pro-news-compose button {
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #a65c3d;
  padding: 7px;
  font-size: 5px;
  font-weight: 800;
}

.pro-demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 9px;
}

.pro-demo-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: #969d93;
  background: rgba(255,255,255,.035);
  padding: 6px;
  font-size: 7px;
  font-weight: 700;
  cursor: pointer;
}

.pro-demo-tabs button span {
  color: #d9b47e;
  font-size: 6px;
}

.pro-demo-tabs button.is-active {
  border-color: rgba(222,185,131,.55);
  color: #fff;
  background: rgba(222,185,131,.12);
}

.pro-menu-example {
  margin-top: 16px;
  border: 1px solid #e5d4c4;
  border-radius: 12px;
  background: linear-gradient(145deg, #fffaf5, #f8f1e8);
  padding: 13px;
}

.pro-menu-example-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}

.pro-menu-example-head span {
  border-radius: 999px;
  color: #fff;
  background: #2d322c;
  padding: 4px 7px;
  font-size: 7px;
  font-weight: 700;
}

.pro-menu-example-head strong {
  font-size: 10px;
}

.pro-menu-example-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  border-radius: 9px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 7px 18px rgba(53, 43, 32, .08);
}

.pro-menu-example-card > img {
  width: 88px;
  height: 88px;
  border-radius: 7px;
  object-fit: cover;
}

.pro-menu-example-card .pro-menu-example-image {
  width: 88px;
  height: 88px;
  border-radius: 7px;
}

.pro-menu-example-card div {
  display: grid;
  align-content: center;
  gap: 3px;
}

.pro-menu-example-card small {
  color: #b95535;
  font-size: 7px;
  font-weight: 700;
}

.pro-menu-example-card strong {
  font-size: 10px;
}

.pro-menu-example-card b {
  font-size: 9px;
}

.pro-menu-example-card p {
  margin: 1px 0 0;
  color: #777d75;
  font-size: 7px;
  line-height: 1.55;
}

.pro-menu-features {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
}

.pro-menu-features span {
  border: 1px solid #e4d7ca;
  border-radius: 999px;
  color: #695f55;
  background: rgba(255,255,255,.72);
  padding: 5px 7px;
  font-size: 7px;
  font-weight: 700;
}

.menu-image-editor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 14px 0;
}

.menu-image-editor-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid #dedfd9;
  border-radius: 9px;
  background: #fff;
}

.menu-image-editor-grid > img {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.menu-image-editor-grid .menu-image-editor-frame {
  height: 110px;
  border-bottom: 1px solid #eee8df;
  background: #fff;
}

.onboarding-menu-upload .onboarding-menu-upload-frame {
  width: 100%;
  max-width: 180px;
  min-height: 110px;
  border: 1px solid #e9e4da;
  border-radius: 12px;
  background: #fff;
}

.menu-image-editor-grid article > span {
  display: block;
  padding: 8px 8px 6px;
  color: #555c54;
  font-size: 7px;
  font-weight: 700;
}

.menu-image-editor-grid article > button {
  width: calc(100% - 12px);
  margin: 0 6px 6px;
  border: 0;
  border-radius: 6px;
  color: #a34e32;
  background: #fff0e9;
  padding: 6px;
  font-size: 7px;
  font-weight: 800;
  cursor: pointer;
}

.menu-photo-field {
  display: grid;
  grid-template-columns: minmax(92px, 132px) 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid #ece6dd;
  border-radius: 10px;
  background: #fffaf4;
  padding: 10px;
}

.menu-photo-field .field {
  margin: 0;
}

.menu-photo-field small {
  display: block;
  margin-top: 5px;
  color: #7c766d;
  font-size: 7px;
  line-height: 1.6;
}

.menu-card-image-preview {
  height: 86px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(44, 35, 24, .1);
}

.site-menu-grid .pro-menu-sheet {
  margin: 0 0 15px;
}

.site-menu-grid .pro-menu-sheet > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.site-menu-grid .pro-menu-sheet .menu-sheet-smart-frame {
  min-height: 330px;
  border-radius: 12px;
}

.site-menu-grid .pro-menu-sheet figcaption {
  margin-top: 5px;
  color: #858a82;
  font-size: 8px;
  text-align: center;
}

.locked-feature {
  display: grid;
  place-items: center;
  border: 1px solid #e3ded4;
  border-radius: 13px;
  background: #fbfaf6;
  padding: 38px 25px;
  text-align: center;
}

.locked-feature svg {
  width: 28px;
  color: #ba6a35;
}

.locked-feature p {
  max-width: 330px;
}

.locked-feature button,
.checkout-button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #d85b34;
  padding: 12px 18px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.upgrade-panel {
  position: relative;
  border-radius: 15px;
  color: #f5f0e8;
  background: #242720;
  padding: 32px;
}

.upgrade-product-preview {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
  margin: 22px 0;
}

.upgrade-site-sample,
.upgrade-result-sample {
  overflow: hidden;
  border: 1px solid #494e46;
  border-radius: 11px;
  background: #30342e;
}

.upgrade-site-photo {
  display: grid;
  align-content: end;
  min-height: 125px;
  background:
    linear-gradient(0deg, rgba(24,23,19,.8), rgba(24,23,19,.05)),
    url("https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=700&q=80") center/cover;
  padding: 14px;
}

.upgrade-site-photo span {
  color: #edc690;
  font-size: 7px;
  font-weight: 700;
}

.upgrade-site-photo b {
  margin-top: 5px;
  color: #fff;
  font-size: 11px;
}

.upgrade-site-items {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 9px;
  align-items: center;
  padding: 9px;
}

.upgrade-site-items > i {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=240&q=80") center/cover;
}

.upgrade-site-items small,
.upgrade-site-items strong,
.upgrade-site-items b {
  display: block;
}

.upgrade-site-items small {
  color: #ddb57e;
  font-size: 6px;
}

.upgrade-site-items strong {
  margin: 2px 0;
  color: #f1f2ee;
  font-size: 8px;
}

.upgrade-site-items b {
  color: #bfc4bb;
  font-size: 7px;
}

.upgrade-result-sample {
  align-self: center;
  padding: 17px;
}

.upgrade-result-sample > span,
.upgrade-result-sample > strong {
  display: block;
}

.upgrade-result-sample > span {
  color: #ddb57e;
  font-size: 7px;
  font-weight: 700;
}

.upgrade-result-sample > strong {
  margin: 7px 0 15px;
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
}

.upgrade-result-sample > div {
  display: grid;
  gap: 6px;
}

.upgrade-result-sample b {
  border-radius: 6px;
  color: #d2d6ce;
  background: #3c4139;
  padding: 8px;
  font-size: 7px;
}

.upgrade-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.upgrade-feature-grid article {
  display: flex;
  gap: 8px;
  border: 1px solid #454a42;
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  padding: 10px;
}

.upgrade-feature-grid article > span {
  display: grid;
  flex: 0 0 18px;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #292d27;
  background: #dcb37d;
  font-size: 8px;
  font-weight: 900;
}

.upgrade-feature-grid strong,
.upgrade-feature-grid small {
  display: block;
}

.upgrade-feature-grid strong {
  color: #f4f1ea;
  font-size: 8px;
}

.upgrade-feature-grid small {
  margin-top: 3px;
  color: #aeb3aa;
  font-size: 7px;
  line-height: 1.5;
}

.upgrade-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  margin-top: 12px;
}

.upgrade-reassurance span {
  color: #aeb3aa;
  font-size: 7px;
}

.upgrade-reassurance span::before {
  margin-right: 4px;
  color: #ddb57e;
  content: "✓";
}

.upgrade-panel .campaign-badge {
  margin-bottom: 14px;
}

.regular-price {
  margin-top: 14px;
}

.upgrade-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}

.upgrade-visual > div {
  display: grid;
  gap: 5px;
  min-height: 105px;
  border: 1px solid #484d45;
  border-radius: 9px;
  background: #30342e;
  padding: 12px;
}

.upgrade-visual > div.pro {
  border-color: #d1a574;
  background: #3a342c;
}

.upgrade-visual span {
  color: #d9b382;
  font-size: 7px;
  font-weight: 700;
}

.upgrade-visual b {
  font-size: 8px;
}

.upgrade-visual i {
  height: 6px;
  border-radius: 4px;
  background: #555b52;
}

.upgrade-visual > strong {
  color: #d9b382;
}

.billing-options {
  display: grid;
  gap: 15px;
}

.upgrade-eyebrow {
  color: #d9b382;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
}

.upgrade-panel h3 {
  margin: 8px 0;
  font-size: 23px;
}

.upgrade-price {
  margin: 15px 0;
  font-size: 36px;
  font-weight: 700;
}

.upgrade-price small {
  font-size: 13px;
}

.upgrade-panel p,
.upgrade-panel li {
  color: #c1c4bc;
  font-size: 10px;
}

.upgrade-panel ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.upgrade-panel li::before {
  margin-right: 8px;
  color: #ddb57e;
  content: "✓";
}

.checkout-button {
  width: 100%;
}

.checkout-note {
  display: block;
  margin-top: 10px;
  color: #898e85;
  font-size: 8px;
  text-align: center;
}

.local-pro-test-card {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  border: 1px dashed #d2b889;
  border-radius: 15px;
  background: #fff9ec;
  padding: 16px;
}

.local-pro-test-card span {
  color: #a8792e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.local-pro-test-card strong {
  color: #352c20;
  font-size: 13px;
}

.local-pro-test-card p {
  margin: 0;
  color: #74644d;
  font-size: 9px;
  line-height: 1.7;
}

.local-pro-test-card button {
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #27372e;
  padding: 11px 13px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.billing-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dfe1db;
  border-radius: 9px;
  padding: 15px;
}

.subscription-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  margin-top: 12px;
  border-radius: 8px;
  background: #f2f4ef;
  padding: 12px;
  font-size: 9px;
}

.subscription-meta.local-test {
  border: 1px solid #e4c790;
  background: #fff9ec;
}

.subscription-meta small {
  grid-column: 1 / -1;
  color: #858a83;
}

.portal-button {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #d9dcd5;
  border-radius: 8px;
  background: #fff;
  padding: 11px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.checkout-button:disabled,
.portal-button:disabled {
  opacity: .65;
  cursor: wait;
}

.form-caution {
  border-radius: 7px;
  color: #795b3c !important;
  background: #f7eee1;
  padding: 10px;
}

/* Published store */
.route-public {
  background: #dfe1dc;
}

.published-store {
  min-height: 100vh;
  padding: 35px 20px;
}

.published-store-page {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #f9f4ed;
  box-shadow: 0 22px 70px rgba(27,30,25,.18);
}

.published-store-page .site-hero {
  height: min(72vh, 620px);
}

.published-store-page .site-body,
.published-store-page .site-menu,
.published-store-page .site-gallery,
.published-store-page .site-access {
  padding: 58px clamp(30px, 8vw, 90px);
}

.published-store-page .site-menu-category-items {
  grid-template-columns: repeat(3, 1fr);
}

.published-store-page .site-gallery-frame {
  width: 48%;
  height: 290px;
  flex-basis: 48%;
}

.published-store-page .site-footer {
  padding: 60px;
}

.published-store.theme-premium .published-store-page,
.published-store.theme-premium .site-body,
.published-store.theme-premium .site-menu,
.published-store.theme-premium .site-gallery,
.published-store.theme-premium .site-access,
.published-store.theme-premium .site-footer {
  color: #eee6da;
  background: #171717;
}

.published-store.theme-premium .site-actions {
  background: #171717;
}

.published-store.theme-premium .site-actions button {
  color: #eee6da;
  border-color: #38342e;
  background: #171717;
}

.published-store.theme-premium .site-actions .site-main-action {
  color: #fff;
  background: var(--preview-accent);
}

.published-store.theme-premium .site-section-heading h4,
.published-store.theme-premium .site-menu-grid strong,
.published-store.theme-premium .site-access dd,
.published-store.theme-premium .site-hours strong {
  color: #f3ece1;
}

.published-store.theme-premium .site-news,
.published-store.theme-premium .site-hours,
.published-store.theme-premium .site-access dl div {
  border-color: #49423a;
}

.published-store.theme-night .published-store-page,
.published-store.theme-night .site-body,
.published-store.theme-night .site-menu,
.published-store.theme-night .site-gallery,
.published-store.theme-night .site-access,
.published-store.theme-night .site-footer {
  color: #e8eaf4;
  background: #101725;
}

.published-store.theme-night .site-actions {
  border-color: #273149;
  background: #101725;
}

.published-store.theme-night .site-actions button {
  color: #e8eaf4;
  border-color: #273149;
  background: #101725;
}

.published-store.theme-night .site-section-heading h4,
.published-store.theme-night .site-access dd,
.published-store.theme-night .site-hours strong {
  color: #f3f4fb;
}

.published-store.theme-cafe .published-store-page {
  background: #fbf3e7;
}

.published-store.theme-cafe .site-hero,
.published-store.theme-cafe .hero-slide,
.published-store.theme-cafe .hero-slide .smart-image-frame {
  border-radius: 0 0 45% 0;
}

.published-store.theme-cafe .site-body {
  position: relative;
  z-index: 2;
  margin: -20px 20px 0;
  border-radius: 25px 25px 0 0;
  background: #fffaf2;
}

.published-store.theme-natural .published-store-page {
  background: #f2f3e8;
}

.published-store.theme-natural .site-hero {
  margin: 16px;
  border-radius: 42px;
  box-shadow: 0 22px 54px rgba(62,88,71,.15);
}

.published-store.theme-natural .site-menu {
  background: #e4ead8;
}

.published-store.theme-izakaya .published-store-page {
  background: #f4e9d8;
}

.published-store.theme-izakaya .site-hero {
  border-bottom: 12px solid var(--preview-accent);
}

.published-store.theme-izakaya .site-section-heading h4 {
  display: inline;
  color: #fff;
  background: #29211b;
  padding: 4px 10px;
}

.published-store.theme-bistro .published-store-page {
  background: #f5ead9;
}

.published-store.theme-bistro .site-hero {
  margin: 18px 18px 0;
}

.published-store.theme-bistro .site-section-heading h4 {
  font-style: italic;
}

.published-store.theme-simple .site-hero {
  height: 430px;
}

.published-store.theme-simple .site-hero-overlay {
  background: linear-gradient(90deg, rgba(13,22,27,.7), rgba(13,22,27,.04));
}

.published-store.theme-ryotei .published-store-page {
  color: #2f271d;
  background:
    linear-gradient(90deg, rgba(157,123,69,.08) 0 1px, transparent 1px 100%),
    #f7f0e3;
}

.published-store.theme-ryotei .site-hero {
  margin: 22px;
  border-radius: 0 150px 0 150px;
  box-shadow: 0 20px 55px rgba(64,45,25,.18);
}

.published-store.theme-ryotei .site-hero::after {
  position: absolute;
  inset: 14px;
  z-index: 4;
  border: 1px solid rgba(224,199,148,.72);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.published-store.theme-ryotei .site-hero-overlay {
  background: linear-gradient(115deg, rgba(27,21,15,.68), rgba(27,21,15,.14) 46%, rgba(27,21,15,.76));
}

.published-store.theme-ryotei .site-body,
.published-store.theme-ryotei .site-menu,
.published-store.theme-ryotei .site-gallery,
.published-store.theme-ryotei .site-access,
.published-store.theme-ryotei .site-footer {
  background: transparent;
}

.published-store.theme-ryotei .site-section-heading h4,
.published-store.theme-ryotei .hero-copy h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: .08em;
}

.published-store.theme-ryotei .site-menu-grid article,
.published-store.theme-ryotei .site-hours,
.published-store.theme-ryotei .site-map {
  border: 1px solid rgba(157,123,69,.35);
  border-radius: 0 34px 0 34px;
  background: rgba(255,251,242,.72);
  box-shadow: none;
}

.published-store.theme-ryotei .site-menu-grid .site-menu-thumb,
.published-store.theme-ryotei .site-gallery-frame {
  border-radius: 0 55px 0 55px;
}

.published-store.theme-patisserie .published-store-page {
  color: #5f4540;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.92), transparent 28%),
    #fff2ee;
}

.published-store.theme-patisserie .site-hero,
.published-store.theme-patisserie .hero-slide,
.published-store.theme-patisserie .hero-slide .smart-image-frame {
  border-radius: 112px 112px 38px 38px;
}

.published-store.theme-patisserie .site-hero {
  margin: 20px 20px 0;
}

.published-store.theme-patisserie .site-nav {
  inset: 36px 34px auto;
}

.published-store.theme-patisserie .site-body {
  position: relative;
  z-index: 2;
  margin: -24px 26px 0;
  border-radius: 32px 32px 0 0;
  background: #fffaf8;
}

.published-store.theme-patisserie .site-menu,
.published-store.theme-patisserie .site-gallery,
.published-store.theme-patisserie .site-access,
.published-store.theme-patisserie .site-footer {
  background: #fffaf8;
}

.published-store.theme-patisserie .site-section-heading h4,
.published-store.theme-patisserie .hero-copy h3 {
  font-family: "Noto Serif JP", serif;
}

.published-store.theme-patisserie .site-menu-grid article,
.published-store.theme-patisserie .site-hours,
.published-store.theme-patisserie .site-map {
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(139,84,76,.12);
}

.published-store.theme-patisserie .site-menu-grid .site-menu-thumb,
.published-store.theme-patisserie .site-gallery-frame {
  border-radius: 24px;
}

.published-store.theme-trattoria .published-store-page {
  color: #24382b;
  background: #f7efd9;
}

.published-store.theme-trattoria .site-hero {
  margin: 22px 22px 0;
  border-radius: 0;
  box-shadow: 10px 10px 0 #26382c;
  transform: rotate(-.35deg);
}

.published-store.theme-trattoria .site-hero-overlay {
  background: linear-gradient(90deg, rgba(38,56,44,.76), rgba(38,56,44,.12));
}

.published-store.theme-trattoria .hero-copy h3,
.published-store.theme-trattoria .site-section-heading h4 {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: -.05em;
}

.published-store.theme-trattoria .site-news {
  border: 0;
  color: #fff;
  background: #26382c;
}

.published-store.theme-trattoria .site-menu-category-items {
  grid-template-columns: 1fr;
}

.published-store.theme-trattoria .site-menu-grid article {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0 18px;
  border: 0;
  border-top: 1px solid #c7b78f;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.published-store.theme-trattoria .site-menu-grid .site-menu-thumb {
  grid-row: span 3;
  height: 210px;
  border-radius: 0;
}

.published-store.theme-trattoria .site-gallery-frame {
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(38,56,44,.22);
}

.published-store.theme-luxury .published-store-page,
.published-store.theme-luxury .site-body,
.published-store.theme-luxury .site-menu,
.published-store.theme-luxury .site-gallery,
.published-store.theme-luxury .site-access,
.published-store.theme-luxury .site-footer {
  color: #efe5d2;
  background:
    radial-gradient(circle at 84% 0%, rgba(128,38,54,.24), transparent 34%),
    linear-gradient(180deg, #111014, #1d1116);
}

.published-store.theme-luxury .site-hero-overlay {
  background: linear-gradient(180deg, rgba(17,16,20,.08), rgba(17,16,20,.86));
}

.published-store.theme-luxury .hero-copy {
  right: 8vw;
  left: 8vw;
  text-align: center;
}

.published-store.theme-luxury .hero-copy h3,
.published-store.theme-luxury .site-section-heading h4,
.published-store.theme-luxury .site-menu-grid strong,
.published-store.theme-luxury .site-access dd,
.published-store.theme-luxury .site-hours strong {
  color: #fff7e8;
}

.published-store.theme-luxury .site-actions {
  border-color: rgba(213,179,107,.28);
  background: rgba(17,16,20,.92);
}

.published-store.theme-luxury .site-actions button {
  color: #efe5d2;
  border-color: rgba(213,179,107,.24);
  background: transparent;
}

.published-store.theme-luxury .site-actions .site-main-action {
  color: #111014;
  background: #d5b36b;
}

.published-store.theme-luxury .site-menu-grid article,
.published-store.theme-luxury .site-hours,
.published-store.theme-luxury .site-map,
.published-store.theme-luxury .site-news {
  border: 1px solid rgba(213,179,107,.24);
  border-radius: 0;
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
}

.published-store.theme-luxury .site-intro p,
.published-store.theme-luxury .site-hours span,
.published-store.theme-luxury .site-hours small {
  color: #bdb3a0;
}

.published-store.theme-luxury .site-menu-grid .site-menu-thumb,
.published-store.theme-luxury .site-gallery-frame {
  border-radius: 999px 999px 6px 6px;
  filter: saturate(.72) contrast(1.08);
}

.phone.theme-cafe .hero-copy,
.preview-modal.theme-cafe .hero-copy,
.published-store.theme-cafe .hero-copy {
  right: 28px;
  bottom: 38px;
  left: 28px;
  text-align: center;
}

.phone.theme-natural .hero-copy,
.preview-modal.theme-natural .hero-copy,
.published-store.theme-natural .hero-copy {
  right: 28px;
  bottom: 42px;
  left: 28px;
  text-align: center;
}

.phone.theme-simple .hero-copy,
.preview-modal.theme-simple .hero-copy,
.published-store.theme-simple .hero-copy {
  right: 42%;
  bottom: 38px;
  left: 28px;
  text-align: left;
}

.phone.theme-izakaya .hero-copy,
.preview-modal.theme-izakaya .hero-copy,
.published-store.theme-izakaya .hero-copy {
  right: 28px;
  bottom: 34px;
  left: 34%;
  text-align: right;
}

.phone.theme-bistro .hero-copy,
.preview-modal.theme-bistro .hero-copy,
.published-store.theme-bistro .hero-copy {
  right: 42%;
  bottom: 36px;
  left: 28px;
  text-align: left;
}

.phone.theme-ryotei .hero-copy,
.preview-modal.theme-ryotei .hero-copy,
.published-store.theme-ryotei .hero-copy {
  right: 34px;
  bottom: 46px;
  left: 34px;
  text-align: center;
}

.phone.theme-patisserie .hero-copy,
.preview-modal.theme-patisserie .hero-copy,
.published-store.theme-patisserie .hero-copy {
  right: 30px;
  bottom: 42px;
  left: 30px;
  text-align: center;
}

.phone.theme-trattoria .hero-copy,
.preview-modal.theme-trattoria .hero-copy,
.published-store.theme-trattoria .hero-copy {
  right: 42%;
  bottom: 38px;
  left: 30px;
  text-align: left;
}

.phone.theme-premium .hero-copy,
.preview-modal.theme-premium .hero-copy,
.published-store.theme-premium .hero-copy,
.phone.theme-luxury .hero-copy,
.preview-modal.theme-luxury .hero-copy,
.published-store.theme-luxury .hero-copy,
.phone.theme-night .hero-copy,
.preview-modal.theme-night .hero-copy,
.published-store.theme-night .hero-copy {
  right: 8%;
  bottom: 48px;
  left: 8%;
  text-align: center;
}

@media (max-width: 820px) {
  .preview-direct-guide {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 9px 14px;
  }

  .preview-inline-editor {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

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

  .public-header {
    height: auto;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding: 11px 14px 9px;
  }

  .public-brand {
    min-width: 0;
  }

  .public-brand-copy {
    min-width: 0;
  }

  .public-brand-copy strong {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .public-brand-copy small {
    font-size: 5px;
    letter-spacing: .12em;
  }

  .public-header .public-nav {
    display: contents;
  }

  .public-nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 0;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid rgba(35, 30, 25, .08);
  }

  .public-nav-links a {
    flex: 1;
    padding: 2px 8px;
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
  }

  .public-nav-links a[href="/#samples"],
  .public-nav-links a[href="/features"] {
    display: none;
  }

  .public-nav-account {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    gap: 7px;
  }

  .public-nav-account > a:not(.header-cta) {
    display: none;
  }

  .public-header .header-cta {
    padding: 9px 11px;
    font-size: 10px;
    white-space: nowrap;
  }

  .landing-hero,
  .landing-steps {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    display: flex;
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 24px 18px 52px;
    text-align: center;
  }

  .landing-copy {
    display: contents;
  }

  .landing-pill {
    order: 1;
  }

  .landing-copy h1 {
    order: 2;
    margin: 12px 0 6px;
    font-size: clamp(30px, 8vw, 39px);
    line-height: 1.28;
  }

  .landing-copy p {
    order: 3;
    max-width: 34rem;
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
  }

  .landing-copy p br {
    display: none;
  }

  .landing-actions {
    order: 4;
    justify-content: center;
    width: min(100%, 360px);
    margin: 16px 0 4px;
  }

  .landing-actions .landing-primary {
    width: 100%;
    min-width: 0;
    padding: 17px 22px;
  }

  .landing-copy > small {
    order: 5;
  }

  .hero-flow {
    order: 7;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 330px;
    margin: 13px auto 0;
    padding-top: 14px;
    text-align: left;
  }

  .hero-flow > i {
    display: none;
  }

  .landing-phone {
    order: 6;
    margin-top: 8px;
  }

  .landing-phone-screen.published-store {
    width: min(300px, 82vw);
    height: 430px;
    border-width: 7px;
    border-radius: 34px;
  }

  .landing-live-page .site-hero {
    height: 220px;
  }

  .floating-note.note-menu {
    top: 85px;
    left: -5px;
  }

  .value-grid,
  .pricing-grid,
  .sample-showcase,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .free-promise {
    align-items: flex-start;
    flex-direction: column;
  }

  .plans-hero {
    padding-top: 55px;
  }

  .plan-detail {
    min-height: 0;
  }

  .landing-steps {
    gap: 25px;
    padding-block: 75px;
  }

  .onboarding-shell {
    display: block;
    padding: 15px 14px 70px;
  }

  .onboarding-shell > aside {
    display: none;
  }

  .onboarding-main {
    padding: 25px 18px;
  }

  .onboarding-main > footer {
    position: sticky;
    bottom: 0;
    z-index: 12;
    margin-inline: -18px;
    background: rgba(255, 255, 255, .96);
    padding: 18px;
    box-shadow: 0 -12px 28px rgba(35, 40, 34, .08);
    backdrop-filter: blur(12px);
  }

  .onboarding-fields,
  .onboarding-upload-grid,
  .onboarding-photo-preview,
  .start-theme-grid,
  .onboarding-finish {
    grid-template-columns: 1fr;
  }

  .onboarding-finish .finish-phone {
    width: 220px;
    margin: 0 auto;
  }

  .start-theme-preview-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .start-theme-preview-stage {
    min-height: 410px;
    padding: 12px;
  }

  .start-theme-phone.published-store {
    width: min(238px, 76vw);
    height: 400px;
  }

  .review-toolbar,
  .review-publish-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-actions {
    width: 100%;
    justify-content: space-between;
  }

  .review-stage {
    min-height: 560px;
    padding: 12px;
  }

  .start-live-preview.published-store {
    width: min(302px, 100%);
    height: 535px;
  }

  .start-live-preview.desktop {
    width: 100%;
  }

  .review-publish-note ul {
    min-width: 0;
  }

  .start-preview-modal > header {
    padding: 0 12px;
  }

  .start-preview-modal > header small {
    display: none;
  }

  .start-preview-modal-shell {
    padding: 0;
  }

  .free-dashboard-strip {
    grid-template-columns: 1fr;
  }

  .dashboard-pro-showcase {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .dashboard-pro-preview {
    min-height: 0;
  }

  .pro-demo-head {
    margin-top: 5px;
  }

  .pro-site-window {
    min-height: 250px;
  }

  .pro-demo-tabs button {
    min-height: 39px;
    font-size: 6px;
  }

  .upgrade-product-preview {
    grid-template-columns: 1fr;
  }

  .upgrade-result-sample {
    width: auto;
  }

  .qr-mini-card {
    border-top: 1px solid #e2e4df;
    border-left: 0;
    padding-top: 12px;
    padding-left: 0;
  }

  .published-store {
    padding: 0;
  }

  .published-store-page .site-hero {
    height: 62vh;
  }

  .published-store-page .site-body,
  .published-store-page .site-menu,
  .published-store-page .site-gallery,
  .published-store-page .site-access {
    padding: 38px 22px;
  }

  .published-store-page .site-menu-category-items {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 681px) and (max-width: 900px) {
  .landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 24px;
    min-height: 700px;
    padding: 30px 24px 55px;
    text-align: left;
  }

  .landing-copy {
    display: block;
  }

  .landing-copy h1 {
    margin: 24px 0 22px;
    font-size: 39px;
  }

  .landing-copy p {
    max-width: none;
    font-size: 15px;
    line-height: 2;
  }

  .landing-copy p br {
    display: none;
  }

  .landing-actions {
    width: auto;
    margin: 32px 0 15px;
    justify-content: flex-start;
  }

  .landing-actions .landing-primary {
    width: auto;
    min-width: 310px;
    padding: 20px 30px;
  }

  .landing-copy > small,
  .landing-phone,
  .hero-flow {
    order: initial;
  }

  .hero-flow {
    margin-inline: 0;
    padding-top: 20px;
  }

  .landing-phone {
    align-self: center;
    margin-top: 0;
  }

  .landing-phone-screen.published-store {
    width: 290px;
    height: 575px;
    border-width: 9px;
    border-radius: 42px;
  }

  .landing-live-page .site-hero {
    height: 300px;
  }

  .floating-note.note-menu {
    display: none;
  }
}

.business-summary {
  max-width: 1080px;
  margin: 0 auto;
  padding: 90px 24px;
}

.business-summary > div:first-child {
  max-width: 720px;
}

.business-summary span,
.legal-page header > span {
  color: #d85b34;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.business-summary h2 {
  margin: 14px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.45;
}

.business-summary p {
  color: #686f67;
  font-size: 12px;
  line-height: 2;
}

.business-price-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.business-price-list article {
  display: grid;
  gap: 8px;
  border: 1px solid #dedfd9;
  border-radius: 14px;
  background: #fff;
  padding: 22px;
}

.business-price-list b {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
}

.business-price-list small {
  color: #777d75;
  font-size: 9px;
}

.business-contact a {
  color: #315f4d;
  font-weight: 700;
}

.public-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid #e2e2dc;
  background: #f5f3ec;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
}

.public-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.public-footer nav a,
.public-footer > small {
  color: #686e66;
  font-size: 9px;
  text-decoration: none;
}

.legal-page {
  max-width: 820px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 70px 24px 110px;
}

.legal-page header {
  margin-bottom: 50px;
}

.legal-page h1 {
  margin: 13px 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 5vw, 46px);
}

.legal-page header p,
.legal-page section p,
.legal-page dd {
  color: #666d65;
  font-size: 12px;
  line-height: 2;
}

.legal-page section {
  border-top: 1px solid #e1e2dc;
  padding: 28px 0;
}

.legal-page section h2 {
  margin: 0 0 10px;
  font-size: 15px;
}

.commerce-law dl {
  border-top: 1px solid #dfe1da;
}

.commerce-law dl div {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid #dfe1da;
  padding: 20px 0;
}

.commerce-law dt {
  font-size: 11px;
  font-weight: 700;
}

.commerce-law dd {
  margin: 0;
}

@media (max-width: 680px) {
  .plan-comparison {
    padding-inline: 14px;
  }

  .comparison-row {
    grid-template-columns: 145px 76px 92px;
    min-width: 313px;
  }

  .comparison-row > strong,
  .comparison-row > div {
    padding: 11px 10px;
  }

  .comparison-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .comparison-cta a {
    text-align: center;
  }

  .business-price-list,
  .public-footer {
    grid-template-columns: 1fr;
  }

  .public-footer,
  .public-footer nav {
    justify-items: start;
    justify-content: start;
  }

  .commerce-law dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* Adjustable photo frames with blurred overflow */
.site-gallery-grid .site-gallery-frame > img {
  width: 100%;
  height: 100%;
  flex: none;
  border-radius: inherit;
}

.phone.theme-simple .site-gallery-frame,
.preview-modal.theme-simple .site-gallery-frame {
  width: 68%;
  flex-basis: 68%;
  border-radius: 0;
}

.phone.theme-simple .site-gallery-frame:first-child,
.preview-modal.theme-simple .site-gallery-frame:first-child {
  width: 86%;
  flex-basis: 86%;
}

.modal-page .site-gallery-frame,
.published-store-page .site-gallery-frame {
  width: 48%;
  height: 290px;
  flex-basis: 48%;
}

.landing-live-page .site-gallery-frame,
.start-live-preview .site-gallery-frame {
  width: 82%;
  height: 230px;
  flex-basis: 82%;
}

.start-live-preview.desktop .site-gallery-frame {
  width: 48%;
  height: 290px;
  flex-basis: 48%;
}

@media (max-width: 820px) {
  .modal-page .site-gallery-frame,
  .published-store-page .site-gallery-frame {
    width: 82%;
    height: 230px;
    flex-basis: 82%;
  }
}

/* Preset readability safeguards */
.phone.theme-simple .hero-copy,
.phone.theme-bistro .hero-copy,
.phone.theme-trattoria .hero-copy,
.published-store.theme-simple .hero-copy,
.published-store.theme-bistro .hero-copy,
.published-store.theme-trattoria .hero-copy {
  right: auto;
  left: 24px;
  width: min(62%, 210px);
  text-align: left;
}

.preview-modal.theme-simple .modal-page .hero-copy,
.preview-modal.theme-bistro .modal-page .hero-copy,
.preview-modal.theme-trattoria .modal-page .hero-copy {
  right: auto;
  left: clamp(34px, 8vw, 58px);
  width: min(58%, 360px);
  text-align: left;
}

.phone.theme-simple .hero-copy h3,
.phone.theme-bistro .hero-copy h3,
.phone.theme-trattoria .hero-copy h3 {
  font-size: 23px;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.preview-modal.theme-simple .modal-page .hero-copy h3,
.preview-modal.theme-bistro .modal-page .hero-copy h3,
.preview-modal.theme-trattoria .modal-page .hero-copy h3,
.published-store.theme-simple .hero-copy h3,
.published-store.theme-bistro .hero-copy h3,
.published-store.theme-trattoria .hero-copy h3 {
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.theme-site-example.simple .example-copy,
.theme-site-example.bistro .example-copy,
.theme-site-example.trattoria .example-copy {
  overflow: hidden;
}

.theme-site-example.simple .example-copy b,
.theme-site-example.bistro .example-copy b,
.theme-site-example.trattoria .example-copy b {
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.phone.theme-luxury .site-hours,
.phone.theme-luxury .site-map,
.phone.theme-luxury .site-access dl div,
.preview-modal.theme-luxury .site-hours,
.preview-modal.theme-luxury .site-map,
.preview-modal.theme-luxury .site-access dl div,
.published-store.theme-luxury .site-hours,
.published-store.theme-luxury .site-map,
.published-store.theme-luxury .site-access dl div {
  border-color: rgba(213,179,107,.42);
  color: #f5ead6;
  background: rgba(255,248,230,.075);
}

.phone.theme-luxury .site-hours span,
.phone.theme-luxury .site-hours small,
.phone.theme-luxury .site-access dt,
.phone.theme-luxury .site-map small,
.preview-modal.theme-luxury .site-hours span,
.preview-modal.theme-luxury .site-hours small,
.preview-modal.theme-luxury .site-access dt,
.preview-modal.theme-luxury .site-map small,
.published-store.theme-luxury .site-hours span,
.published-store.theme-luxury .site-hours small,
.published-store.theme-luxury .site-access dt,
.published-store.theme-luxury .site-map small {
  color: #d9c79f;
}

.phone.theme-luxury .site-hours strong,
.phone.theme-luxury .site-access dd,
.phone.theme-luxury .site-map strong,
.phone.theme-luxury .weekly-hours-line,
.preview-modal.theme-luxury .site-hours strong,
.preview-modal.theme-luxury .site-access dd,
.preview-modal.theme-luxury .site-map strong,
.preview-modal.theme-luxury .weekly-hours-line,
.published-store.theme-luxury .site-hours strong,
.published-store.theme-luxury .site-access dd,
.published-store.theme-luxury .site-map strong,
.published-store.theme-luxury .weekly-hours-line {
  color: #fff8e8;
}
