:root {
  --font-body: "PingFang TC", "Hiragino Sans CNS", "Microsoft JhengHei", "Noto Sans TC", "Noto Sans CJK TC", sans-serif;
  --font-accent: "Avenir Next", "SF Pro Rounded", "Helvetica Neue", "Arial Rounded MT Bold", sans-serif;
  --bg-canvas: #f6ede6;
  --bg-shell: rgba(255, 252, 248, 0.9);
  --bg-surface: #fffaf6;
  --bg-elevated: #ffffff;
  --bg-soft: #fdf4ed;
  --bg-soft-2: #fff5ee;
  --bg-mint: #eef7f0;
  --bg-sky: #eef5fb;
  --bg-gold: #fbf3e1;
  --line-soft: rgba(132, 92, 66, 0.08);
  --line-strong: rgba(132, 92, 66, 0.16);
  --text-main: #2d211c;
  --text-sub: #67544a;
  --text-soft: #9f8c81;
  --primary: #eb7b56;
  --primary-deep: #cf6240;
  --primary-soft: #fff0e8;
  --success: #4d9364;
  --success-soft: #edf7f0;
  --sky: #77a8cf;
  --sky-soft: #edf6ff;
  --gold: #d5a651;
  --gold-soft: #fcf4df;
  --shadow-soft: 0 18px 40px rgba(76, 49, 33, 0.08);
  --shadow-card: 0 8px 24px rgba(76, 49, 33, 0.08);
  --shadow-glow: 0 18px 36px rgba(235, 123, 86, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease-out;
  --transition-base: 220ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 245, 238, 0.96), rgba(246, 237, 230, 0.96) 46%),
    radial-gradient(circle at right 10%, rgba(250, 231, 215, 0.55), transparent 28%),
    linear-gradient(180deg, #f8f0ea 0%, #f4ece6 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

.app-shell {
  position: relative;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(255, 248, 243, 0.98)),
    var(--bg-shell);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.app-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 240px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 222, 205, 0.95), transparent 36%),
    radial-gradient(circle at 85% 4%, rgba(231, 241, 247, 0.96), transparent 28%),
    linear-gradient(160deg, rgba(255, 248, 243, 0.8), rgba(255, 248, 243, 0));
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 18px 16px 118px;
}

.page.tight {
  padding-top: 0;
}

.page.has-cta {
  padding-bottom: 136px;
}

.surface {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.soft-card {
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.96), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.section {
  margin-top: 18px;
}

.section:first-child {
  margin-top: 0;
}

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

.section-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-copy,
.muted {
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.65;
}

.section-copy {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.eyebrow i,
.icon-inline {
  font-size: 15px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  margin: -18px -16px 16px;
  padding: 20px 16px 12px;
  background: linear-gradient(180deg, rgba(248, 240, 234, 0.96), rgba(248, 240, 234, 0.72), rgba(248, 240, 234, 0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.topbar > .topbar-group:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

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

.topbar-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.topbar-title strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.topbar-title span {
  color: var(--text-soft);
  font-size: 12px;
  overflow-wrap: anywhere;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.icon-button,
.floating-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 20px rgba(65, 40, 26, 0.08);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.icon-button i,
.floating-button i {
  font-size: 20px;
}

.icon-button:hover,
.floating-button:hover,
.chip:hover,
.option-chip:hover,
.restaurant-card:hover,
.restaurant-row:hover,
.theme-card:hover,
.menu-card:hover,
.info-card:hover,
.action-button:hover,
.shortcut-card:hover,
.journey-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(65, 40, 26, 0.11);
}

.search-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.search-panel i {
  font-size: 18px;
  color: var(--text-soft);
}

.search-panel input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-main);
  font-size: 15px;
}

.search-panel a,
.search-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary), #f09f7c);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(140deg, #e97854 0%, #f0a07c 55%, #f7cdb3 100%);
  color: #fffdfa;
  box-shadow: var(--shadow-glow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -26px;
  width: 140px;
  height: 140px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(18deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 16px;
  align-items: end;
}

.hero-copy-block {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin: 12px 0 10px;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 240px;
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.92;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-stats {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.hero-stat {
  display: grid;
  gap: 2px;
  min-width: 88px;
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stat strong {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
}

.hero-stat span {
  font-size: 11px;
  opacity: 0.88;
}

.hero-art {
  position: relative;
  height: 174px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-art::before {
  width: 88px;
  height: 88px;
  right: 18px;
  top: 20px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-art::after {
  width: 140px;
  height: 58px;
  left: -10px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-12deg);
}

.hero-art img {
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

.chip-row,
.pill-row,
.filter-row,
.segmented {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar,
.pill-row::-webkit-scrollbar,
.filter-row::-webkit-scrollbar,
.segmented::-webkit-scrollbar,
.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.chip-row-wrap {
  flex-wrap: wrap;
  overflow: visible;
}

.chip,
.option-chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-sub);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition-fast), color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.chip i,
.option-chip i,
.mini-chip i {
  font-size: 15px;
}

.chip.is-active,
.option-chip.is-active,
.mini-chip.is-active {
  color: #ffffff;
  border-color: rgba(235, 123, 86, 0.9);
  background: linear-gradient(135deg, var(--primary), #f0a27f);
  box-shadow: var(--shadow-glow);
}

.mini-chip {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

.tone-warm {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.tone-mint {
  background: var(--success-soft);
  color: var(--success);
}

.tone-sky {
  background: var(--sky-soft);
  color: var(--sky);
}

.tone-gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.tone-cream {
  background: #fff8f2;
  color: var(--text-main);
}

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

.pet-tile {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 16px 10px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.pet-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  font-size: 24px;
}

.pet-tile strong {
  font-size: 13px;
  line-height: 1.2;
}

.stack-12 {
  display: grid;
  gap: 12px;
}

.stack-16 {
  display: grid;
  gap: 16px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card,
.theme-card,
.journey-card,
.shortcut-card {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

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

.theme-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.theme-card strong,
.info-card strong,
.journey-card strong,
.shortcut-card strong {
  font-size: 16px;
  line-height: 1.3;
}

.theme-card p,
.info-card p,
.journey-card p,
.shortcut-card p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.merchant-strip,
.horizontal-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.restaurant-card {
  min-width: 286px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.restaurant-media {
  position: relative;
  height: 188px;
  overflow: hidden;
}

.restaurant-media img {
  height: 100%;
  object-fit: cover;
}

.restaurant-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 18, 13, 0.06) 0%, rgba(31, 18, 13, 0.62) 100%);
}

.media-badges {
  position: absolute;
  inset: 14px 14px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.media-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  color: #fffefc;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.media-pill i {
  font-size: 14px;
}

.restaurant-content {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.restaurant-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.restaurant-title-block {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.restaurant-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.restaurant-subtitle {
  color: var(--text-soft);
  font-size: 12px;
  overflow-wrap: anywhere;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.score-badge {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.score-number,
.price-number,
.metric-number,
.metric-card strong {
  font-family: var(--font-accent);
}

.score-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 14px;
}

.score-copy {
  color: var(--text-soft);
  font-size: 11px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.tag i {
  font-size: 14px;
}

.tag.warm {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.tag.mint {
  background: var(--success-soft);
  color: var(--success);
}

.tag.sky {
  background: var(--sky-soft);
  color: var(--sky);
}

.tag.gold {
  background: var(--gold-soft);
  color: var(--gold);
}

.meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-sub);
  font-size: 12px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta-item i {
  font-size: 14px;
  color: var(--text-soft);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.status-open {
  background: var(--success);
}

.status-warm {
  background: var(--gold);
}

.restaurant-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.restaurant-row-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 132px;
}

.restaurant-row-media img {
  height: 100%;
  object-fit: cover;
}

.restaurant-row-body {
  display: grid;
  gap: 10px;
}

.row-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.row-title strong {
  font-size: 16px;
  line-height: 1.25;
}

.row-copy {
  color: var(--text-sub);
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-card);
}

.summary-bar strong {
  font-size: 15px;
}

.summary-bar > div:first-child {
  min-width: 0;
}

.segmented {
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-soft);
}

.segmented a,
.segmented button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  color: var(--text-soft);
  white-space: nowrap;
  cursor: pointer;
}

.segmented .is-active {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: 0 6px 12px rgba(65, 40, 26, 0.08);
}

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  border-radius: 30px;
}

.hero-banner img {
  height: 100%;
  object-fit: cover;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(27, 18, 13, 0.18), rgba(27, 18, 13, 0.64));
  color: #fffdf9;
}

.hero-banner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-banner-title {
  display: grid;
  gap: 8px;
  max-width: 78%;
}

.hero-banner-title strong {
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
}

.hero-banner-title p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.96;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.floating-group {
  display: flex;
  gap: 10px;
}

.detail-summary {
  display: grid;
  gap: 14px;
  margin-top: -34px;
  padding: 18px;
  border-radius: 30px;
}

.detail-summary-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.detail-summary-top h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.detail-summary-top p {
  margin: 8px 0 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

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

.metric-card {
  padding: 14px 10px;
  border-radius: 18px;
  background: var(--bg-soft);
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.metric-card span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.4;
}

.tabbar {
  position: sticky;
  top: 72px;
  z-index: 40;
  display: flex;
  gap: 8px;
  padding: 8px;
  margin-top: 14px;
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.tabbar a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
}

.tabbar a.is-active {
  color: var(--text-main);
  background: #ffffff;
}

.rule-list,
.facility-grid,
.agenda-list,
.detail-list,
.upload-grid,
.timeline-list,
.rating-strip,
.photo-grid {
  display: grid;
  gap: 12px;
}

.rule-card,
.timeline-card,
.detail-row,
.agenda-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.rule-card i,
.timeline-card i,
.agenda-card i {
  font-size: 20px;
  color: var(--primary-deep);
}

.rule-card strong,
.timeline-card strong,
.agenda-card strong,
.detail-row strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.rule-card p,
.timeline-card p,
.agenda-card p,
.detail-row p {
  margin: 6px 0 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.65;
}

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

.facility-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
}

.facility-card .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 24px;
}

.facility-card strong {
  font-size: 12px;
  text-align: center;
  line-height: 1.45;
}

.menu-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.menu-card {
  min-width: 220px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.menu-thumb {
  position: relative;
  height: 148px;
  overflow: hidden;
}

.menu-thumb img {
  height: 100%;
  object-fit: cover;
}

.menu-body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.menu-body strong {
  font-size: 16px;
  line-height: 1.35;
}

.menu-body p {
  margin: 0;
  color: var(--text-sub);
  font-size: 12px;
  line-height: 1.6;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-deep);
}

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

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  border-radius: 24px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.photo-card img {
  height: 100%;
  object-fit: cover;
}

.photo-card span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(31, 18, 13, 0.44);
  color: #ffffff;
  font-size: 11px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.review-summary-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.review-score-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
}

.review-score-panel strong {
  font-family: var(--font-accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  color: var(--primary-deep);
}

.bar-chart {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft);
}

.bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(207, 98, 64, 0.08);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #f0a27f);
}

.review-card {
  padding: 16px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0a27f, #e97d55);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 800;
}

.avatar.soft {
  background: linear-gradient(135deg, #8db7d5, #77a8cf);
}

.review-header strong {
  display: block;
  font-size: 15px;
}

.review-header span {
  color: var(--text-soft);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.review-card p {
  margin: 12px 0 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.review-gallery {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.review-gallery img {
  width: 96px;
  height: 84px;
  border-radius: 18px;
  object-fit: cover;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-plain {
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 32%),
    linear-gradient(135deg, #fff2ea, #fffaf6);
  border: 1px solid rgba(255, 222, 205, 0.8);
  box-shadow: var(--shadow-card);
}

.hero-plain strong {
  display: block;
  font-size: 26px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.hero-plain p {
  margin: 10px 0 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.step-card {
  position: relative;
  padding: 14px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line-soft);
  text-align: center;
}

.step-card.is-active {
  background: var(--primary-soft);
  border-color: rgba(235, 123, 86, 0.28);
}

.step-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(235, 123, 86, 0.12);
  color: var(--primary-deep);
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 800;
}

.step-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 700;
}

.booking-card {
  padding: 16px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.mini-restaurant {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-restaurant img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  object-fit: cover;
}

.mini-restaurant strong {
  display: block;
  font-size: 16px;
}

.mini-restaurant span,
.field-label,
.note-copy {
  color: var(--text-soft);
  font-size: 12px;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.slot {
  padding: 14px 8px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.slot strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 16px;
}

.slot span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 11px;
}

.slot.is-active {
  background: var(--primary-soft);
  border-color: rgba(235, 123, 86, 0.4);
}

.slot.is-full {
  opacity: 0.42;
  pointer-events: none;
  box-shadow: none;
}

.slot.is-limited span {
  color: var(--gold);
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.counter-meta strong {
  display: block;
  font-size: 15px;
}

.counter-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  cursor: pointer;
}

.counter-value {
  min-width: 24px;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
}

.pet-profile-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: var(--primary-soft);
}

.pet-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-deep);
  font-size: 22px;
}

.field-grid {
  display: grid;
  gap: 12px;
}

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

.field-label {
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-main);
  outline: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(235, 123, 86, 0.45);
  box-shadow: 0 0 0 4px rgba(235, 123, 86, 0.08);
}

.summary-card {
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff6f0, #fffdfb);
  border: 1px solid rgba(235, 123, 86, 0.12);
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  color: var(--text-sub);
  font-size: 13px;
}

.summary-line strong {
  color: var(--text-main);
}

.summary-line.total {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(235, 123, 86, 0.14);
  font-size: 15px;
  font-weight: 800;
}

.summary-line.total strong {
  color: var(--primary-deep);
}

.sticky-cta,
.bottom-nav {
  position: fixed;
  left: 50%;
  width: min(100%, 430px);
  transform: translateX(-50%);
  z-index: 80;
}

.sticky-cta {
  bottom: 88px;
  padding: 0 16px;
}

.sticky-cta.is-alone {
  bottom: 18px;
}

.cta-bar {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 250, 246, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.cta-main,
.cta-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 18px;
  font-weight: 800;
  cursor: pointer;
}

.cta-main {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), #f09f7c);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.cta-sub {
  min-width: 52px;
  padding: 0 16px;
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.bottom-nav {
  bottom: 0;
  padding: 10px 12px 18px;
}

.bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 26px 26px 0 0;
  background: rgba(255, 252, 249, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 56px;
  padding-top: 6px;
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 700;
}

.bottom-nav a i {
  font-size: 22px;
}

.bottom-nav a.is-active {
  color: var(--primary-deep);
}

.map-stage {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  background: #f3efe8;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.map-stage img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  box-shadow: 0 12px 22px rgba(52, 35, 25, 0.12);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.map-pin i {
  color: var(--primary-deep);
}

.map-pin.is-active {
  background: linear-gradient(135deg, var(--primary), #f09f7c);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.map-pin.is-active i {
  color: #ffffff;
}

.map-drawer {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 248, 243, 0.86) 16%, rgba(255, 248, 243, 0.96) 100%);
}

.filter-layout {
  display: grid;
  gap: 18px;
}

.filter-group {
  display: grid;
  gap: 12px;
}

.range-card {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.range-track {
  position: relative;
  height: 6px;
  margin: 18px 2px 8px;
  border-radius: 999px;
  background: rgba(235, 123, 86, 0.12);
}

.range-track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 28%;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #f09f7c);
}

.range-dot {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 5px solid var(--primary);
  box-shadow: 0 4px 12px rgba(57, 36, 24, 0.12);
  transform: translate(-50%, -50%);
}

.range-dot.start {
  left: 12%;
}

.range-dot.end {
  left: 72%;
}

.range-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 12px;
}

.activity-hero {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.activity-hero-cover {
  position: relative;
  min-height: 250px;
}

.activity-hero-cover img {
  height: 100%;
  object-fit: cover;
}

.activity-hero-copy {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.activity-hero-copy h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.activity-hero-copy p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.merchant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 700;
}

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

.profile-hero {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 30%),
    linear-gradient(140deg, #f0a27f 0%, #f6c6ad 64%, #fbefe8 100%);
  box-shadow: var(--shadow-card);
}

.profile-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.profile-avatar {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.profile-name {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.profile-name strong {
  font-size: 24px;
}

.profile-name span {
  color: rgba(45, 33, 28, 0.72);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric-panel {
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.metric-panel strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 19px;
}

.metric-panel span {
  display: block;
  margin-top: 4px;
  color: rgba(45, 33, 28, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

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

.shortcut-card {
  display: grid;
  gap: 10px;
  min-height: 120px;
}

.shortcut-card i {
  font-size: 22px;
  color: var(--primary-deep);
}

.order-card {
  padding: 16px;
  border-radius: 26px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.order-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.order-head > div:first-child,
.detail-summary-top > div:first-child,
.row-title > div,
.review-header > div,
.mini-restaurant > div {
  min-width: 0;
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.order-status.open {
  background: var(--primary-soft);
  color: var(--primary-deep);
}

.order-status.done {
  background: var(--success-soft);
  color: var(--success);
}

.detail-list {
  margin-top: 12px;
}

.detail-row {
  grid-template-columns: auto 1fr;
}

.detail-row i {
  color: var(--text-soft);
  font-size: 18px;
}

.action-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.action-button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(235, 123, 86, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-main);
  font-weight: 700;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.action-button.primary {
  border-color: rgba(235, 123, 86, 0.35);
  background: linear-gradient(135deg, var(--primary), #f09f7c);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.success-hero {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 30px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f3fbf5, #ffffff);
  border: 1px solid rgba(77, 147, 100, 0.14);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.success-hero .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 30px;
  background: rgba(77, 147, 100, 0.12);
  color: var(--success);
  font-size: 38px;
}

.success-hero strong {
  font-size: 28px;
  line-height: 1.12;
}

.success-hero p {
  margin: 0;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.qr-box {
  width: 132px;
  height: 132px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(45, 33, 28, 0.08) 8px, transparent 8px) 0 0 / 24px 24px,
    linear-gradient(rgba(45, 33, 28, 0.08) 8px, transparent 8px) 0 0 / 24px 24px,
    radial-gradient(circle at 30% 30%, rgba(45, 33, 28, 0.84) 9px, transparent 9px),
    radial-gradient(circle at 70% 32%, rgba(45, 33, 28, 0.84) 9px, transparent 9px),
    radial-gradient(circle at 42% 70%, rgba(45, 33, 28, 0.84) 11px, transparent 11px),
    #ffffff;
  border: 10px solid #ffffff;
  box-shadow: inset 0 0 0 1px rgba(45, 33, 28, 0.06);
}

.rating-picker {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rating-picker button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
}

.rating-picker button.is-active {
  background: var(--gold-soft);
  border-color: rgba(213, 166, 81, 0.35);
}

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

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

.upload-card {
  display: grid;
  place-items: center;
  min-height: 108px;
  border-radius: 22px;
  border: 1px dashed rgba(235, 123, 86, 0.26);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-deep);
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
}

.upload-card i {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.cover-board {
  display: grid;
  gap: 16px;
  padding-bottom: 24px;
}

.cover-card {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

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

.swatch {
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line-soft);
}

.swatch-tone {
  height: 72px;
}

.swatch span {
  display: block;
  padding: 10px;
  color: var(--text-sub);
  font-size: 11px;
  line-height: 1.55;
}

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

.screen-swatch {
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f2, #ffffff);
  border: 1px solid var(--line-soft);
}

.screen-swatch strong {
  display: block;
  font-size: 14px;
}

.screen-swatch span {
  display: block;
  margin-top: 6px;
  color: var(--text-sub);
  font-size: 12px;
  line-height: 1.55;
}

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

.hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  body {
    padding: 28px 0;
  }

  .app-shell {
    border-radius: 34px;
  }
}

@media (max-width: 420px) {
  .summary-bar,
  .restaurant-heading,
  .row-title,
  .detail-summary-top,
  .profile-row,
  .order-head,
  .price-row {
    align-items: flex-start;
  }

  .summary-bar .segmented {
    width: 100%;
  }

  .summary-bar .segmented a,
  .summary-bar .segmented button {
    flex: 1 1 0;
  }

  .restaurant-heading .score-badge,
  .row-title .score-badge,
  .detail-summary-top .score-badge,
  .review-score-panel {
    justify-items: start;
  }

  .review-summary-card {
    grid-template-columns: 1fr;
  }

  .action-row {
    flex-wrap: wrap;
  }

  .action-button {
    flex: 1 1 160px;
  }
}

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

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