:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --ink: #151515;
  --muted: #6d665d;
  --line: rgba(21, 21, 21, 0.09);
  --accent: #a07846;
  --accent-dark: #72542f;
  --shadow: 0 18px 60px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(208, 189, 159, 0.38), transparent 28%),
    linear-gradient(180deg, #f7f3ec, #ede6da);
}

body.route-guide-open {
  overflow: hidden;
}

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

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

.page {
  padding: 20px;
  min-height: 100vh;
}

.shell,
.card,
.hero,
.table-card,
.product-card,
.side-card,
.admin-card {
  backdrop-filter: blur(16px);
}

.topbar,
.hero,
.card,
.table-card,
.product-card,
.side-card,
.admin-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.topbar nav,
.controls,
.brand-tabs,
.metric-row,
.filter-row,
.grid,
.admin-grid,
.chips,
.split,
.toolbar {
  display: flex;
  gap: 12px;
}

.topbar nav,
.brand-tabs,
.metric-row,
.chips {
  flex-wrap: wrap;
}

.category-strip {
  overflow-x: auto;
  padding-bottom: 6px;
}

.nav-link,
.chip,
.brand-tab,
.pill,
.ghost-button,
.solid-button,
.small-button {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.82);
}

.nav-link.active,
.brand-tab.active,
.chip.active {
  background: linear-gradient(135deg, rgba(160, 120, 70, 0.18), rgba(160, 120, 70, 0.34));
  border-color: rgba(160, 120, 70, 0.4);
}

.controls {
  align-items: center;
  flex-wrap: wrap;
}

.topbar .controls label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin: 0;
  white-space: nowrap;
}

.topbar .controls select {
  min-height: 46px;
  margin: 0;
}

.route-select-anchor {
  position: relative;
}

.route-select-anchor--highlight {
  z-index: 2;
}

.route-select-anchor--highlight::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  border: 1px solid rgba(160, 120, 70, 0.34);
  box-shadow:
    0 0 0 10px rgba(160, 120, 70, 0.08),
    0 0 0 18px rgba(255, 255, 255, 0.34);
  animation: route-anchor-pulse 0.56s ease-out 1;
  pointer-events: none;
}

.route-guide {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  --route-guide-dx: 0px;
  --route-guide-dy: 0px;
  --route-guide-scale-x: 0.28;
  --route-guide-scale-y: 0.28;
}

.route-guide__scrim {
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 19, 0.26);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.route-guide__card {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(160, 120, 70, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(246, 239, 228, 0.92));
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transform-origin: center center;
  transition:
    opacity 0.24s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.route-guide--visible .route-guide__scrim {
  opacity: 1;
}

.route-guide--visible .route-guide__card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.route-guide--closing .route-guide__scrim {
  opacity: 0;
}

.route-guide--closing .route-guide__card {
  opacity: 0;
  transform: translate(var(--route-guide-dx), var(--route-guide-dy)) scale(var(--route-guide-scale-x), var(--route-guide-scale-y));
}

.route-guide__title {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  letter-spacing: -0.05em;
}

.route-guide__lead {
  margin: 12px 0 0;
  max-width: 34ch;
}

.route-guide__field {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.route-guide__field span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.route-guide__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 18px;
}

.route-guide__actions .solid-button {
  min-height: 48px;
  padding: 12px 22px;
}

.route-guide__hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

@keyframes route-anchor-pulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.06);
  }
}

.hero {
  margin-top: 18px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(249, 245, 238, 0.72));
}

.auth-shell {
  max-width: 1040px;
  margin: 48px auto;
  padding: 34px;
}

.auth-shell__intro,
.auth-metric-row,
.auth-note-grid,
.auth-choice-grid {
  display: grid;
  gap: 16px;
}

.auth-shell__intro {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.auth-shell__description {
  max-width: 760px;
}

.auth-shell__badge,
.auth-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-shell__badge {
  border: 1px solid rgba(21, 21, 21, 0.1);
  background: rgba(255, 255, 255, 0.68);
}

.auth-shell__lead,
.auth-shell__content {
  margin-top: 18px;
}

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

.auth-metric {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.auth-metric span,
.auth-note-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-metric strong,
.auth-note-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

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

.auth-choice-card {
  padding: 22px;
}

.auth-feature-list {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.auth-feature-list li + li {
  margin-top: 8px;
}

.auth-link-hint {
  margin-top: 10px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9rem;
}

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

.auth-note-card {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.auth-pane {
  min-height: 100%;
}

.auth-account-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.auth-account-list p {
  margin: 0;
}

.auth-session-card {
  border: 1px solid rgba(160, 120, 70, 0.25);
}

.auth-shell--portal {
  background:
    radial-gradient(circle at top right, rgba(160, 120, 70, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(245, 237, 225, 0.84));
}

.auth-shell--frontend {
  background:
    radial-gradient(circle at top left, rgba(37, 120, 108, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(245, 255, 252, 0.92), rgba(228, 244, 239, 0.82));
}

.auth-shell--admin {
  background:
    radial-gradient(circle at top right, rgba(24, 36, 68, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(246, 248, 255, 0.94), rgba(226, 232, 246, 0.84));
}

.auth-shell--portal .auth-shell__badge,
.auth-shell--portal .auth-chip {
  background: rgba(160, 120, 70, 0.14);
  color: #7d5b2d;
}

.auth-shell--frontend .auth-shell__badge,
.auth-shell--frontend .solid-button {
  background: linear-gradient(135deg, #2c8b76, #1d6859);
  color: #fff;
}

.auth-shell--compact {
  max-width: 960px;
}

.auth-shell--compact .auth-shell__intro {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.auth-compact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: start;
}

.auth-context-card,
.auth-compact-card {
  padding: 24px;
}

.auth-note-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.auth-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.auth-tab-button {
  border-radius: 999px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 14px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.auth-tab-button:hover {
  transform: translateY(-1px);
}

.auth-tab-button.active {
  border-color: rgba(44, 139, 118, 0.34);
  background: linear-gradient(135deg, rgba(44, 139, 118, 0.14), rgba(29, 104, 89, 0.2));
}

.auth-tab-panel {
  display: none;
}

.auth-tab-panel.active {
  display: block;
}

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

.auth-pane-copy {
  margin: 0 0 14px;
}

.auth-secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.auth-shell--admin .auth-shell__badge,
.auth-shell--admin .solid-button {
  background: linear-gradient(135deg, #283f74, #18243e);
  color: #fff;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero h1,
.page-title {
  margin: 8px 0 0;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.muted {
  color: var(--muted);
}

.metric {
  min-width: 148px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.route-note-card,
.route-flow-card {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.route-note-card strong {
  display: block;
  margin-bottom: 8px;
}

.route-flow-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.route-flow-list li + li {
  margin-top: 8px;
}

.toolbar,
.split {
  margin-top: 18px;
  align-items: flex-start;
}

.split {
  gap: 18px;
}

.sidebar {
  width: 300px;
  display: grid;
  gap: 16px;
}

.main {
  flex: 1;
  min-width: 0;
}

.side-card,
.card,
.table-card,
.admin-card {
  background: var(--surface);
  border-radius: 26px;
  padding: 18px;
}

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

.search-bar {
  display: flex;
  gap: 12px;
}

.search-bar input,
textarea,
input[type="file"],
input[type="range"],
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
}

.solid-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
}

.ghost-button,
.small-button {
  cursor: pointer;
}

.grid {
  flex-wrap: wrap;
}

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

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

.product-feed-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  min-height: 52px;
}

.feed-sentinel {
  min-height: 24px;
}

.feed-pill {
  pointer-events: none;
  opacity: 0.9;
}

.product-card {
  background: var(--surface-strong);
  border-radius: 26px;
  padding: 16px;
}

.product-card--compact {
  padding: 10px;
  border-radius: 18px;
}

.product-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #fff;
}

.product-card--compact .product-media {
  min-height: 142px;
  border-radius: 16px;
}

.product-card--compact .product-media img {
  width: 92%;
  height: 92%;
}

.product-card__body {
  margin-top: 10px;
}

.product-card__meta {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__quality {
  padding: 6px 10px;
  font-size: 0.72rem;
  min-height: 0;
}

.product-card__status {
  margin-top: 8px;
}

.product-media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.filter-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(20, 20, 20, 0.08);
  border-color: rgba(160, 120, 70, 0.5);
}

.entity-chip {
  background: #fff;
}

.quality-chip {
  background: linear-gradient(135deg, rgba(160, 120, 70, 0.16), rgba(160, 120, 70, 0.32));
  border-color: rgba(160, 120, 70, 0.38);
}

.quality-chip.active {
  background: linear-gradient(135deg, #1d1d1d, #4f4335);
  border-color: rgba(29, 29, 29, 0.4);
  color: #fff;
}

.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  gap: 8px;
}

.product-card h3 {
  margin: 14px 0 8px;
}

.product-card--compact h3 {
  margin: 8px 0 6px;
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.category-tree {
  display: grid;
  gap: 10px;
}

.tree-button {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  text-align: left;
}

.tree-button.active {
  background: linear-gradient(135deg, rgba(160, 120, 70, 0.16), rgba(160, 120, 70, 0.3));
}

.admin-grid {
  flex-wrap: wrap;
  margin-top: 18px;
}

.admin-layout {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: flex-start;
}

.admin-sidebar {
  width: 290px;
  position: sticky;
  top: 20px;
}

.module-tree {
  display: grid;
  gap: 10px;
}

.home-brand-nav {
  max-height: 70vh;
  overflow: auto;
  padding-right: 6px;
}

.module-group {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.8);
}

.module-group strong {
  display: block;
  margin-bottom: 8px;
}

.module-group ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.module-sub-link {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: inherit;
  padding: 4px 0;
  cursor: pointer;
}

.module-sub-link.active {
  color: var(--accent-dark);
  font-weight: 700;
}

.module-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  text-align: left;
}

.admin-main {
  flex: 1;
  min-width: 0;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-subpanel {
  display: none;
}

.admin-subpanel.active {
  display: block;
}

.tree-view {
  display: none;
}

.tree-view.active {
  display: block;
}

.module-link.active {
  background: linear-gradient(135deg, rgba(160, 120, 70, 0.18), rgba(160, 120, 70, 0.34));
  border-color: rgba(160, 120, 70, 0.4);
}

.admin-card {
  flex: 1 1 380px;
}

.category-manager-shell {
  display: grid;
  grid-template-columns: 220px 240px minmax(0, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.category-manager-column {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
}

.category-manager-column--content {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px;
}

.category-tree-nav {
  display: grid;
  gap: 10px;
  max-height: 720px;
  overflow-y: auto;
  padding-right: 4px;
}

.category-manager-toolbar {
  margin-top: 0;
}

.category-pagination {
  justify-content: flex-end;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.login-note {
  margin-top: 10px;
  font-size: 0.92rem;
}

.empty-state {
  padding: 26px;
  text-align: center;
  border-radius: 22px;
  border: 1px dashed var(--line);
}

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

.hero-home {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.brand-logo-list,
.tag-row,
.detail-strip,
.detail-long-list {
  display: grid;
  gap: 12px;
}

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

.brand-logo-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 10px;
}

.brand-logo-card img,
.admin-logo-preview {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.tag-row {
  grid-auto-flow: column;
  justify-content: start;
  overflow-x: auto;
}

.status-pill {
  font-size: 0.84rem;
  color: var(--muted);
}

.product-detail {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.product-gallery,
.detail-rail,
.detail-main,
.detail-thumb,
.detail-long {
  overflow: hidden;
}

.detail-main img,
.detail-thumb img,
.detail-long img {
  width: 100%;
  display: block;
}

.detail-main,
.detail-thumb,
.detail-long {
  background: #fff;
}

.product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.detail-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

.detail-thumb-button {
  padding: 0;
  border: 1px solid transparent;
  border-radius: 22px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.detail-thumb-button:hover {
  transform: translateY(-1px);
  border-color: rgba(160, 120, 70, 0.24);
}

.detail-thumb-button.active {
  border-color: rgba(160, 120, 70, 0.42);
  box-shadow: 0 0 0 3px rgba(160, 120, 70, 0.12);
}

.detail-thumb {
  aspect-ratio: 1 / 1;
}

.detail-main {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 18px;
}

.detail-main img {
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.product-summary {
  align-self: start;
}

.price-large {
  font-size: 2rem;
  margin: 12px 0;
}

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

.inquiry-item {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.inquiry-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

@media (max-width: 1100px) {
.split,
.toolbar,
.topbar,
.admin-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .sidebar,
  .admin-sidebar {
    width: 100%;
    position: static;
  }

  .product-grid,
  .two-col,
  .hero-home,
  .product-detail,
  .auth-metric-row,
  .auth-note-grid,
  .auth-choice-grid,
  .auth-compact-layout,
  .auth-account-list,
  .category-manager-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-compact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 12px;
  }

  .hero,
  .auth-shell,
  .topbar,
  .side-card,
  .card,
  .table-card,
  .admin-card {
    border-radius: 22px;
    padding: 16px;
  }

  .product-grid,
  .two-col,
  .hero-home,
  .product-detail,
  .brand-logo-list,
  .auth-compact-layout,
  .auth-shell__intro,
  .auth-metric-row,
  .auth-note-grid,
  .auth-choice-grid,
  .auth-account-list,
  .category-manager-shell {
    grid-template-columns: 1fr;
  }

  .search-bar,
  .controls {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar--mobile-browser,
  .main--mobile-browser {
    margin-top: 14px;
  }

  .mobile-browser-card {
    padding: 14px;
  }

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

  .product-card--compact .tag-row,
  .product-card--compact .link-row,
  .product-card--compact .small-row,
  .product-card--compact .product-actions {
    display: none;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .detail-rail {
    grid-auto-flow: column;
    grid-auto-columns: 84px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .detail-main {
    min-height: auto;
  }

  .route-guide {
    padding: 16px;
  }

  .route-guide__card {
    padding: 18px;
    border-radius: 24px;
  }
}
