:root {
  --bg: #111315;
  --bg-soft: #16191d;
  --surface: #171a1f;
  --surface-strong: #1d2127;
  --surface-soft: #242930;
  --surface-contrast: #2b3038;
  --surface-raised: #21262d;
  --ink: #f2efe8;
  --ink-soft: #d7d0c2;
  --muted: #a79f92;
  --muted-soft: #7f786e;
  --line: rgba(196, 173, 128, 0.1);
  --line-strong: rgba(196, 173, 128, 0.18);
  --accent: #c9a159;
  --accent-strong: #dfbb78;
  --accent-soft: rgba(201, 161, 89, 0.12);
  --accent-deep: #72572b;
  --info: #78d6eb;
  --info-soft: rgba(120, 214, 235, 0.14);
  --danger: #c97e7e;
  --danger-soft: rgba(170, 77, 77, 0.22);
  --shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.26);
  --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 6px 14px rgba(0, 0, 0, 0.12);
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --font-handwriting: "Segoe Print", "Bradley Hand", "Chalkboard SE", "Comic Sans MS", "Marker Felt", "Noteworthy", cursive;
  --text-body: 17px;
  --text-caption: 15px;
  --text-title: 24px;
  --text-price-list: 22px;
  --text-price: 31px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.app-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 10px calc(90px + env(safe-area-inset-bottom, 0px));
}

.tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(29, 33, 39, 0.92);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

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

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 18;
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-topbar[hidden] {
  display: none;
}

.admin-topbar-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(196, 173, 128, 0.14);
  border-radius: 18px;
  padding: 8px 10px;
  background:
    radial-gradient(circle at top left, rgba(223, 187, 120, 0.12), transparent 32%),
    rgba(23, 26, 31, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-topbar-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding-left: 4px;
}

.admin-topbar-copy span {
  color: var(--accent-strong);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-topbar-copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 850;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-menu-trigger {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 0 12px;
  color: #171311;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
}

.admin-menu-trigger-icon {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.admin-topbar.is-open .admin-menu-trigger-icon {
  transform: rotate(225deg) translate(-2px, -1px);
}

.admin-menu-dropdown {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(196, 173, 128, 0.14);
  border-radius: 20px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(29, 33, 39, 0.98), rgba(19, 22, 27, 0.98));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.admin-menu-dropdown[hidden] {
  display: none;
}

.admin-menu-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(196, 173, 128, 0.1);
  border-radius: 15px;
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
  font: inherit;
  text-align: left;
}

.admin-menu-item.is-active {
  border-color: rgba(223, 187, 120, 0.28);
  background:
    linear-gradient(180deg, rgba(223, 187, 120, 0.15), rgba(223, 187, 120, 0.05)),
    rgba(255, 255, 255, 0.025);
}

.admin-menu-item-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-menu-item-copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}

.admin-menu-item-copy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.admin-menu-badge {
  min-width: 28px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #171311;
  background: var(--accent-strong);
  font-size: 14px;
  font-weight: 900;
}

.tab-button {
  flex: 0 0 auto;
  min-height: 44px;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 12px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
  opacity: 0.92;
  transition: color 160ms ease, opacity 160ms ease, background 160ms ease, box-shadow 160ms ease, font-weight 160ms ease;
}

.tab-button-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.tab-button-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.tab-button-label {
  display: block;
}

.tab-button-services .tab-button-icon {
  color: #f3c66a;
  background: rgba(201, 161, 89, 0.12);
}

.tab-button-home .tab-button-icon {
  color: #f7e5b7;
  background: rgba(243, 198, 106, 0.12);
}

.tab-button-admin .tab-button-icon {
  color: #d7d0c2;
  background: rgba(215, 208, 194, 0.12);
}

.tab-button-faqs .tab-button-icon {
  color: var(--info);
  background: var(--info-soft);
}

.tab-button.is-active {
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-weight: 700;
  opacity: 1;
}

.tab-button-services.is-active {
  background: rgba(201, 161, 89, 0.14);
}

.tab-button-home.is-active {
  background: rgba(243, 198, 106, 0.14);
}

.tab-button-admin.is-active {
  background: rgba(215, 208, 194, 0.12);
}

.tab-button-home.is-active .tab-button-icon {
  color: #171311;
  background: #f3c66a;
}

.tab-button-admin.is-active .tab-button-icon {
  color: #111315;
  background: #d7d0c2;
}

.tab-button-services.is-active .tab-button-icon {
  color: #171311;
  background: var(--accent);
}

.tab-button-faqs.is-active {
  background: rgba(120, 214, 235, 0.16);
}

.tab-button-faqs.is-active .tab-button-icon {
  color: #0f1b20;
  background: var(--info);
}

.quick-search,
.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(23, 26, 31, 0.88);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.quick-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 12px 0 14px;
  padding: 8px;
  border-color: transparent;
  box-shadow: none;
}

.quick-search input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(196, 173, 128, 0.2);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(12, 14, 17, 0.86);
  font: inherit;
  font-size: var(--text-body);
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.quick-search input::placeholder {
  color: var(--muted);
  font-size: 16px;
}

.quick-search button,
.ghost-button,
.human-chat-button {
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-size: var(--text-body);
  line-height: 1.25;
  font-weight: 700;
}

.quick-search button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.panel {
  padding: 14px;
}

.customer-footer {
  position: sticky;
  bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  z-index: 6;
  margin: 14px 2px 0;
  padding: 2px;
}

.map-link {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(196, 173, 128, 0.12);
  border-radius: 18px;
  padding: 12px 15px;
  color: rgba(243, 238, 228, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(23, 26, 31, 0.68);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.map-link:active,
.map-link:focus-visible {
  outline: none;
  color: var(--ink);
  border-color: var(--accent);
  background:
    linear-gradient(180deg, rgba(207, 166, 90, 0.14), rgba(207, 166, 90, 0.05)),
    rgba(32, 35, 40, 0.7);
  transform: translateY(-1px);
}

.map-link-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #171311;
  background: rgba(201, 161, 89, 0.92);
}

.map-link-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.channel-gate-return {
  position: fixed;
  left: max(10px, env(safe-area-inset-left, 0px));
  right: max(10px, env(safe-area-inset-right, 0px));
  bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(207, 173, 103, 0.16);
  border-radius: 18px;
  padding: 10px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(27, 29, 32, 0.88);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.channel-gate-return[hidden] {
  display: none;
}

.channel-gate-return-text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.channel-gate-return-text strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.channel-gate-return-text small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.channel-gate-return-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.channel-gate-return-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 10px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.channel-gate-return-actions button:last-child {
  color: #171311;
  border-color: transparent;
  background: var(--accent);
}

.channel-gate-return-actions button:disabled {
  opacity: 0.62;
}

.channel-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.channel-gate-modal[hidden] {
  display: none;
}

.channel-gate-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.channel-gate-dialog {
  position: relative;
  width: min(100%, 420px);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(207, 173, 103, 0.22);
  border-radius: 18px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
}

.channel-gate-dialog-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 166, 90, 0.34);
  border-radius: 14px;
  color: #171311;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(207, 166, 90, 0.18);
}

.channel-gate-dialog-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.channel-gate-dialog-copy {
  display: grid;
  gap: 8px;
}

.channel-gate-dialog-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.channel-gate-dialog-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.channel-gate-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}

.channel-gate-dialog-actions button {
  min-height: 46px;
  border-radius: 12px;
  padding: 0 14px;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.channel-gate-secondary {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--surface-soft);
}

.channel-gate-primary {
  border: 1px solid transparent;
  color: #171311;
  background: var(--accent);
}

.ghost-button {
  width: auto;
  border: 1px solid var(--line);
  padding: 9px 12px;
  color: var(--ink-soft);
  background: rgba(36, 41, 48, 0.72);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ghost-button:active,
.ghost-button:focus-visible,
.tab-button:focus-visible,
.entry-card:focus-visible,
.service-row:focus-visible,
.admin-entry-card:focus-visible,
.admin-list-row:focus-visible,
.service-detail-action:focus-visible {
  outline: none;
  border-color: var(--accent);
  transform: translateY(-1px);
}

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

.home-hero {
  display: grid;
  gap: 6px;
  margin-bottom: 6px;
}

.home-hero-kicker {
  color: var(--accent-strong);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 7.2vw, 38px);
  line-height: 1.08;
  font-weight: 850;
}

.home-hero p {
  margin: 0;
  max-width: 42ch;
  color: rgba(221, 214, 200, 0.9);
  font-size: 16px;
  line-height: 1.58;
}

.landing-promo {
  display: grid;
  gap: 10px;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
  border: 1px solid rgba(244, 204, 126, 0.24);
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 191, 68, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(20, 29, 34, 0.96), rgba(12, 17, 22, 0.98));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  font: inherit;
  cursor: pointer;
}

.landing-promo:focus-visible {
  outline: 2px solid rgba(255, 232, 151, 0.74);
  outline-offset: 3px;
}

.landing-promo-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 11px 6px;
  border: 1px solid rgba(255, 233, 173, 0.22);
  border-radius: 999px;
  color: #2a1a08;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 44%),
    linear-gradient(135deg, #f7dfa1 0%, #d99b43 100%);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.landing-promo-copy {
  display: grid;
  gap: 10px;
}

.landing-promo-kicker {
  display: block;
  color: #fff6e7;
  font-family: "SF Pro Display", "Inter", "Aptos Display", var(--font-sans);
  font-size: clamp(26px, 6.2vw, 31px);
  line-height: 1.12;
  max-width: 100%;
  font-weight: 780;
  letter-spacing: 0.02em;
  text-transform: none;
}

.landing-promo-body {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 248, 232, 0.86);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.56;
  font-weight: 500;
  display: grid;
  gap: 5px;
}

.landing-promo-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(255, 220, 144, 0.18);
  border-radius: 999px;
  color: rgba(255, 242, 211, 0.92);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 700;
}

.landing-promo-line {
  display: block;
}

.landing-promo-line.is-service {
  color: rgba(255, 246, 224, 0.88);
}

.landing-promo-body .landing-promo-line:first-child {
  color: rgba(255, 235, 184, 0.94);
  font-weight: 650;
}

.landing-promo-line.is-lead {
  color: rgba(255, 237, 190, 0.96);
  font-weight: 680;
}

.landing-promo-line.is-description {
  max-width: 44ch;
  color: rgba(255, 248, 232, 0.84);
  font-weight: 500;
}

.landing-promo-line.is-price,
.landing-promo-line.is-gift {
  color: rgba(255, 236, 184, 0.92);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 650;
}

.promotion-booking-view {
  display: grid;
  gap: 12px;
  font-size: var(--text-body);
}

.promotion-booking-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 201, 94, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 22px rgba(5, 8, 12, 0.14);
}

.promotion-booking-card-hero {
  gap: 10px;
  border-color: rgba(255, 206, 118, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.promotion-booking-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 223, 156, 0.36);
  color: #221407;
  background: linear-gradient(135deg, #f8e4aa 0%, #d7a24a 100%);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promotion-booking-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--text-title);
  line-height: 1.24;
}

.promotion-booking-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.5;
}

.promotion-policy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promotion-policy-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 220, 144, 0.18);
  border-radius: 999px;
  color: rgba(255, 240, 205, 0.86);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  line-height: 1.32;
  font-weight: 760;
}

.promotion-booking-price {
  width: fit-content;
  padding: 4px 0 2px;
  border-radius: 0;
  color: #fff3d2;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  text-shadow: 0 1px 10px rgba(255, 201, 112, 0.18);
}

.promotion-payment-card {
  text-align: left;
  padding: 6px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.promotion-payment-qr {
  width: min(100%, 260px);
  margin: 2px auto 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.promotion-payment-lines {
  display: grid;
  gap: 6px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 220, 144, 0.1);
  background: transparent;
}

.promotion-payment-lines span {
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.45;
}

.promotion-payment-lines strong {
  color: var(--ink);
}

.promotion-payment-card .admin-editor-actions {
  padding-top: 4px;
}

.promotion-payment-card > .admin-field-hint {
  padding-top: 12px;
  border-top: 1px solid rgba(214, 214, 214, 0.28);
}

.promotion-discount-card,
.promotion-service-list {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(196, 173, 128, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.promotion-step-compact {
  display: grid;
  gap: 4px;
  padding: 10px 2px 0;
}

.promotion-step-label {
  color: var(--accent-strong);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promotion-step-compact strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.26;
  font-weight: 850;
}

.promotion-step-compact span {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.promotion-step-compact small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.promotion-service-panel {
  gap: 10px;
}

.promotion-booking-form-shell {
  gap: 12px;
  padding: 4px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.promotion-flat-head {
  padding: 0 2px 2px;
}

.promotion-inline-summary {
  padding-top: 0;
  border-top: 0;
}

.promotion-booking-form-shell .admin-field {
  gap: 4px;
}

.promotion-booking-form-shell .admin-field span {
  padding-left: 2px;
  font-size: 13px;
}

.promotion-booking-form-shell .admin-field input,
.promotion-booking-form-shell .admin-field select,
.promotion-booking-form-shell .admin-field textarea {
  border: 1px solid rgba(196, 173, 128, 0.08);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.promotion-booking-form-shell #promoDatePickerHost {
  padding-top: 2px;
}

.promotion-booking-form-shell .admin-field-hint {
  padding-left: 2px;
  margin: 0;
  font-size: 15px;
  line-height: 1.42;
}

.promotion-discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}

.promotion-discount-grid span {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.promotion-discount-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 750;
}

.promotion-discount-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.promotion-discount-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.45;
}

.promotion-booking-cta {
  position: sticky;
  top: 10px;
  z-index: 2;
}

.promotion-next-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(223, 187, 120, 0.32);
  border-radius: 18px;
  color: rgba(245, 240, 227, 0.78);
  background:
    linear-gradient(135deg, rgba(28, 33, 38, 0.94), rgba(10, 15, 19, 0.96)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.promotion-next-button.is-ready {
  color: #1b1307;
  border-color: rgba(255, 222, 144, 0.64);
  background:
    linear-gradient(135deg, #fff0a8 0%, #d9a34c 54%, #a96722 100%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(218, 166, 72, 0.16);
}

.promotion-next-button span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.promotion-next-button strong {
  font-size: 17px;
  line-height: 1.22;
  font-weight: 900;
}

.promotion-next-button small {
  color: currentColor;
  opacity: 0.78;
  font-size: 13px;
  line-height: 1.28;
  font-weight: 750;
}

.promotion-next-button b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.promotion-date-picker {
  display: grid;
  gap: 10px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(223, 187, 120, 0.14);
  background: transparent;
}

.promotion-date-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.promotion-date-head strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.promotion-date-head small {
  color: var(--accent-strong);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.promotion-weekdays,
.promotion-date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.promotion-weekdays span {
  color: rgba(245, 240, 227, 0.52);
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  text-align: center;
}

.promotion-date-cell {
  display: grid;
  min-width: 0;
  min-height: 46px;
  place-items: center;
  gap: 2px;
  padding: 6px 2px;
  border: 1px solid rgba(223, 187, 120, 0.2);
  border-radius: 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
}

.promotion-date-blank {
  min-height: 46px;
}

.promotion-date-cell span {
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.promotion-date-cell small {
  color: currentColor;
  opacity: 0.68;
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
}

.promotion-date-cell.is-disabled,
.promotion-date-cell:disabled {
  color: rgba(245, 240, 227, 0.32);
  border-color: rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.022);
}

.promotion-date-cell.is-selected {
  color: #1b1307;
  border-color: rgba(255, 236, 174, 0.84);
  background: linear-gradient(135deg, #fff0a8 0%, #d9a34c 62%, #a96722 100%);
  box-shadow: 0 0 18px rgba(218, 166, 72, 0.16);
}

.promotion-date-cell.is-range-selected {
  color: #241805;
  border-color: rgba(255, 236, 174, 0.68);
  background: linear-gradient(135deg, #ffe58f 0%, #d7a248 100%);
  box-shadow: 0 0 14px rgba(218, 166, 72, 0.12);
}

.promotion-date-picker p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.45;
}

.promotion-submit-bar {
  position: sticky;
  bottom: 10px;
  z-index: 3;
  padding-top: 4px;
  margin-top: 2px;
}

.promotion-submit-button {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 236, 174, 0.58);
  border-radius: 18px;
  color: #1b1307;
  background: linear-gradient(135deg, #fff0a8 0%, #d9a34c 56%, #a96722 100%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(218, 166, 72, 0.14);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

.promotion-secondary-actions {
  justify-content: center;
  margin-top: -2px;
}

.promotion-service-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(196, 173, 128, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.promotion-service-option.is-selected {
  border-color: rgba(223, 187, 120, 0.5);
  background:
    linear-gradient(135deg, rgba(223, 187, 120, 0.16), rgba(120, 214, 235, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 22px rgba(0, 0, 0, 0.16);
}

.promotion-service-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
}

.promotion-service-option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.promotion-service-option-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 850;
}

.promotion-service-option-copy small {
  color: var(--accent-strong);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

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

.admin-entry-card-home {
  width: 100%;
  margin-top: 14px;
}

.entry-card {
  width: 100%;
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--surface-strong);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.entry-card-services {
  border-color: rgba(201, 161, 89, 0.12);
}

.entry-card-faqs {
  border-color: rgba(120, 214, 235, 0.12);
}

.entry-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.entry-card-services .entry-icon {
  color: #171311;
  background: rgba(201, 161, 89, 0.9);
}

.entry-card-faqs .entry-icon {
  color: #0f1b20;
  background: rgba(120, 214, 235, 0.9);
}

.entry-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
}

.entry-copy {
  display: grid;
  gap: 6px;
}

.entry-copy strong {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--ink);
}

.entry-copy small {
  color: rgba(221, 214, 200, 0.74);
  font-size: 14px;
  line-height: 1.42;
  font-weight: 500;
}

.entry-arrow {
  font-size: 26px;
  color: rgba(223, 187, 120, 0.86);
}

.entry-card:active,
.entry-card:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.entry-card:active {
  transform: translateY(1px);
}

.human-chat-button {
  width: 100%;
  padding: 4px 0 0;
  display: grid;
  place-items: center;
  color: rgba(223, 187, 120, 0.78);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.human-chat-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(196, 173, 128, 0.14);
  background: rgba(36, 41, 48, 0.46);
  box-shadow: none;
}

.human-chat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.human-chat-button:hover .human-chat-icon,
.human-chat-button:focus-visible .human-chat-icon {
  transform: translateX(-1px);
}

.human-chat-icon {
  color: var(--accent-strong);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.content-card {
  padding: 14px;
  border: 1px solid rgba(196, 173, 128, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.content-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
}

.content-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: 1.66;
}

.content-card-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
}

.content-meta {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: var(--text-caption);
  line-height: 1.35;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 173, 128, 0.1);
}

.faq-card {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(207, 173, 103, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: none;
  overflow: hidden;
  transition: background 160ms ease, border-color 160ms ease;
}

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

.faq-ai-card > .faq-ai-head {
  order: 1;
}

.faq-ai-title {
  order: 2;
  margin: -2px 0 2px;
  color: #b48a36;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.faq-ai-card > .faq-answer-body {
  order: 3;
}

.faq-ai-card > .faq-feedback-card {
  order: 4;
}

.faq-ai-card > .faq-human-handoff {
  order: 5;
}

.faq-ai-card > .faq-meta {
  order: 6;
}

.faq-human-handoff {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 4px;
}

.faq-human-handoff-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.faq-human-handoff-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.faq-human-handoff-button {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(196, 173, 128, 0.16);
  border-radius: 14px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(36, 41, 48, 0.72);
  box-shadow: none;
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.faq-feedback-card {
  display: grid;
  gap: 14px;
  border-top: 1px solid rgba(196, 173, 128, 0.1);
  padding-top: 18px;
}

.faq-feedback-card.is-collapsed {
  gap: 0;
}

.faq-feedback-toggle {
  width: 100%;
  min-height: 48px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(196, 173, 128, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  font: inherit;
  text-align: left;
}

.faq-feedback-toggle span {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
}

.faq-feedback-toggle small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.faq-feedback-inner {
  display: grid;
  gap: 12px;
}

.faq-feedback-inner[hidden] {
  display: none;
}

.faq-feedback-copy {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-feedback-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.faq-feedback-rating-block {
  display: grid;
  gap: 8px;
}

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

.faq-rating-star {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 173, 128, 0.12);
  border-radius: 8px;
  color: rgba(231, 222, 207, 0.42);
  background: rgba(255, 255, 255, 0.02);
  font: inherit;
  font-size: 20px;
  line-height: 1;
}

.faq-rating-star.is-active {
  color: #171311;
  border-color: rgba(223, 187, 120, 0.28);
  background: rgba(201, 161, 89, 0.88);
}

.faq-rating-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.faq-feedback-field {
  display: grid;
  gap: 7px;
}

.faq-feedback-field span {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.faq-feedback-field textarea {
  width: 100%;
  min-height: 84px;
  border: 1px solid rgba(196, 173, 128, 0.18);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(13, 15, 18, 0.94);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
}

.faq-feedback-actions {
  display: grid;
  gap: 8px;
  align-items: start;
}

.faq-feedback-actions[hidden] {
  display: none;
}

.faq-feedback-submit {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  color: #171311;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  font: inherit;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.faq-feedback-submit:disabled {
  opacity: 0.72;
}

.faq-feedback-status {
  min-height: 20px;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.faq-feedback-success {
  display: grid;
}

.faq-feedback-success[hidden] {
  display: none;
}

.faq-feedback-success-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(196, 173, 128, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(214, 181, 107, 0.14), rgba(214, 181, 107, 0.06)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-sm);
}

.faq-feedback-success-copy {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.faq-feedback-success-copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.faq-feedback-community-button {
  min-height: 46px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 0 16px;
  color: #171311;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.faq-feedback-card.is-submitted textarea,
.faq-feedback-card.is-submitted .faq-rating-star {
  pointer-events: none;
  opacity: 0.72;
}

.faq-feedback-card.is-submitted .faq-feedback-submit {
  opacity: 0.72;
}

.faq-ai-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.faq-related-label {
  margin: 8px 4px -2px;
  color: var(--muted-soft);
  font-size: 14px;
  font-weight: 700;
}

.faq-question-button {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 0;
  padding: 14px 16px;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.faq-question-button span:first-child {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196, 173, 128, 0.1);
  border-radius: 999px;
  color: rgba(231, 222, 207, 0.82);
  background: rgba(255, 255, 255, 0.03);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.faq-card:hover {
  background: rgba(255, 255, 255, 0.022);
}

.faq-card.is-open {
  border-color: rgba(196, 173, 128, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.faq-card.is-open .faq-question-button {
  color: var(--ink);
}

.faq-card.is-open .faq-question-button span:first-child {
  color: #b48a36;
  font-weight: 700;
}

.faq-card.is-open .faq-toggle-icon {
  color: #171311;
  border-color: rgba(223, 187, 120, 0.22);
  background: rgba(201, 161, 89, 0.82);
}

.faq-card.is-open .faq-toggle-icon::before {
  content: "-";
}

.faq-card.is-open .faq-toggle-icon {
  font-size: 0;
}

.faq-card.is-open .faq-toggle-icon::before {
  font-size: 20px;
}

.faq-answer-panel {
  border-top: 1px solid rgba(196, 173, 128, 0.08);
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.02);
}

.faq-answer-body {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.faq-answer-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 161, 89, 0.18);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(201, 161, 89, 0.12);
}

.faq-answer-icon svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.faq-answer-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.faq-answer-line {
  margin: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.faq-answer-line strong {
  color: var(--ink);
  font-weight: 800;
}

.faq-answer-line-list {
  display: grid;
  grid-template-columns: 24px auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
}

.faq-answer-line-icon {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #171311;
  background: rgba(224, 189, 122, 0.78);
}

.faq-answer-line-icon svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}

.faq-answer-line-icon-warning {
  background: rgba(231, 169, 106, 0.94);
}

.faq-answer-line-icon-time {
  background: rgba(246, 213, 116, 0.9);
}

.faq-answer-line-icon-inspect {
  background: rgba(183, 207, 166, 0.9);
}

.faq-answer-line-icon-price {
  background: rgba(207, 166, 90, 0.94);
}

.faq-answer-bullet {
  min-width: 24px;
  min-height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  padding: 2px 6px;
  color: #171311;
  background: rgba(246, 213, 116, 0.78);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-meta {
  order: 3;
  margin: 2px 0 0;
  gap: 6px;
}

.faq-chip {
  min-height: 24px;
  border: 1px solid rgba(196, 173, 128, 0.1);
  padding: 3px 8px;
  color: var(--muted-soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.faq-chip-code {
  color: var(--ink-soft);
  background: rgba(201, 161, 89, 0.1);
  border-color: rgba(201, 161, 89, 0.16);
}

.faq-chip-category {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(120, 214, 235, 0.08);
  border-color: rgba(120, 214, 235, 0.16);
}

.content-empty {
  padding: 20px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: rgba(23, 26, 31, 0.7);
}

.content-empty h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--ink);
}

.content-empty p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.66;
}

.category-rail {
  position: sticky;
  top: 116px;
  z-index: 3;
  display: flex;
  gap: 8px;
  margin: -2px -2px 10px;
  padding: 2px 2px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  background: linear-gradient(180deg, rgba(18, 19, 21, 0.98), rgba(18, 19, 21, 0.92));
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;
  min-height: 38px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(36, 41, 48, 0.72);
  font: inherit;
  font-size: var(--text-caption);
  line-height: 1.35;
  font-weight: 600;
  white-space: nowrap;
}

.category-pill.is-active {
  color: #171311;
  background: rgba(201, 161, 89, 0.9);
}

.service-list {
  display: grid;
  gap: 8px;
}

.service-row {
  width: 100%;
  min-height: 58px;
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(29, 33, 39, 0.88);
  font: inherit;
  text-align: left;
  box-shadow: none;
}

.service-row-line {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.service-row-name {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.34;
  white-space: normal;
  overflow-wrap: anywhere;
}

.service-row-price {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.12;
  white-space: nowrap;
}

.service-detail {
  display: grid;
  gap: 14px;
}

.service-detail-head {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(36, 41, 48, 0.74);
  color: var(--ink);
}

.service-detail-copy {
  display: grid;
  gap: 12px;
}

.service-detail-title-row {
  display: grid;
  gap: 14px;
}

.service-detail-head h3 {
  margin: 0;
  font-size: clamp(22px, 5.4vw, 28px);
  font-weight: 700;
  line-height: 1.22;
}

.service-detail-price {
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px 9px;
  border: 1px solid rgba(255, 232, 160, 0.18);
  border-radius: 16px;
  background: rgba(255, 239, 183, 0.08);
  color: var(--ink);
  font-size: clamp(20px, 4.8vw, 25px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  white-space: normal;
}

.service-description {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.68;
}

.service-description-code {
  color: var(--accent);
  font-size: var(--text-caption);
  font-weight: 700;
}

.service-description-paragraph {
  display: block;
  margin-top: 6px;
}

.service-description-code + .service-description-paragraph {
  display: inline;
  margin-top: 0;
}

.service-description-paragraph + .service-description-paragraph {
  margin-top: 10px;
}

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

.service-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface);
  aspect-ratio: 1 / 1;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  touch-action: manipulation;
  cursor: zoom-in;
}

.service-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

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

.service-gallery.gallery-single figure {
  aspect-ratio: 4 / 3;
}

.service-gallery-item.is-expanded {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  cursor: zoom-out;
}

.service-detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 2px;
}

.service-detail-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(36, 41, 48, 0.72);
  font: inherit;
  font-size: var(--text-caption);
  line-height: 1.25;
  font-weight: 600;
}

.service-detail-action-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.service-detail-action-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.service-detail-action-label {
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.25;
}

.service-detail-action-accent {
  color: #171311;
  background: rgba(201, 161, 89, 0.9);
}

.service-detail-action-accent .service-detail-action-icon {
  color: #171311;
}

.admin-view-banner {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(29, 33, 39, 0.84);
  box-shadow: var(--shadow-sm);
}

.admin-view-banner-copy {
  display: grid;
  gap: 6px;
}

.admin-view-banner h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 700;
}

.admin-view-banner p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.66;
}

.admin-overview,
.admin-section {
  display: grid;
  gap: 12px;
}

.admin-hero-card-compact {
  gap: 14px;
}

.admin-hero-card,
.admin-editor-card {
  border: 1px solid rgba(196, 173, 128, 0.08);
  border-radius: 14px;
  padding: 16px;
  background: rgba(29, 33, 39, 0.72);
  box-shadow: none;
}

.admin-hero-card {
  gap: 18px;
}

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

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

.admin-shortcuts {
  display: grid;
  gap: 10px;
}

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

.admin-entry-grid-primary {
  margin-top: 2px;
}

.admin-shortcut {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(36, 41, 48, 0.72);
  font: inherit;
  text-align: left;
  box-shadow: none;
}

.admin-shortcut strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

.admin-shortcut small {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.55;
}

.admin-shortcut-accent {
  border-color: rgba(201, 161, 89, 0.16);
  background: rgba(201, 161, 89, 0.08);
}

.admin-shortcut-accent strong {
  color: var(--ink);
}

.admin-stat-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(36, 41, 48, 0.62);
}

.admin-stat-card strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
}

.admin-stat-card small {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.admin-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.4;
}

.admin-hero-card h3,
.admin-section-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.32;
  font-weight: 700;
}

.admin-hero-card p,
.admin-note {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.66;
}

.admin-entry-grid,
.admin-list {
  display: grid;
  gap: 10px;
}

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

.admin-period-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(36, 41, 48, 0.7);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.admin-period-chip.is-active {
  color: #171311;
  border-color: rgba(201, 161, 89, 0.92);
  background: rgba(201, 161, 89, 0.92);
}

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

.admin-analytics-card {
  display: grid;
  gap: 8px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(36, 41, 48, 0.68);
}

.admin-analytics-card strong {
  color: var(--ink);
  font-size: clamp(24px, 6vw, 32px);
  line-height: 1.08;
  font-weight: 700;
}

.admin-analytics-card small {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.admin-analytics-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.admin-analytics-trend-card {
  gap: 14px;
}

.admin-analytics-trend-list {
  display: grid;
  gap: 10px;
}

.admin-analytics-trend-row {
  display: grid;
  gap: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(196, 173, 128, 0.1);
  border-radius: 14px;
  background: rgba(15, 17, 21, 0.46);
}

.admin-analytics-trend-row strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.admin-analytics-trend-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.admin-entry-card,
.admin-list-row {
  width: 100%;
  display: grid;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(36, 41, 48, 0.68);
  font: inherit;
  text-align: left;
}

.admin-entry-card {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-entry-copy,
.admin-list-main {
  display: grid;
  gap: 4px;
}

.admin-entry-eyebrow {
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.4;
}

.admin-entry-copy strong,
.admin-list-main strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.admin-entry-copy small,
.admin-list-main small,
.admin-list-side-faq {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.55;
}

.admin-entry-meta,
.admin-list-side {
  color: var(--muted-soft);
  font-size: var(--text-caption);
  line-height: 1.4;
  font-weight: 600;
  white-space: nowrap;
}

.admin-list-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.admin-feedback-row {
  align-items: start;
}

.admin-feedback-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: 700;
  line-height: 1.45;
}

.admin-feedback-edit {
  margin-top: 8px;
}

.admin-feedback-row .admin-list-main small {
  white-space: normal;
}

.admin-review-card {
  gap: 14px;
  padding: 16px;
}

.admin-review-head {
  display: grid;
  gap: 12px;
}

.admin-review-title-block {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.admin-review-title-block strong {
  font-size: clamp(22px, 5vw, 28px);
  line-height: 1.18;
}

.admin-review-actions {
  justify-content: flex-start;
}

.admin-review-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-review-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(196, 173, 128, 0.12);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.admin-review-chip-accent {
  color: #171311;
  background: rgba(201, 161, 89, 0.9);
  border-color: rgba(201, 161, 89, 0.9);
}

.admin-review-chip-subtle {
  color: var(--muted);
}

.admin-review-panels {
  display: grid;
  gap: 10px;
}

.admin-review-panel {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(196, 173, 128, 0.1);
  border-radius: 14px;
  background: rgba(15, 17, 21, 0.5);
}

.admin-review-panel-compact {
  gap: 10px;
}

.admin-review-answer {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.58;
  white-space: pre-wrap;
}

.admin-review-grid {
  display: grid;
  gap: 10px;
}

.admin-review-primary-field {
  margin-top: 0;
}

.admin-review-span-2 {
  grid-column: 1 / -1;
}

.admin-review-grid-secondary {
  padding-top: 2px;
  border-top: 1px solid rgba(196, 173, 128, 0.08);
}

@media (min-width: 720px) {
  .admin-review-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .admin-review-actions {
    justify-content: flex-end;
    align-self: start;
  }

  .admin-review-panels {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }

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

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

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

.admin-toolbar {
  margin-bottom: 14px;
}

.admin-toolbar-field {
  max-width: 320px;
}

.admin-section-head {
  display: grid;
  gap: 12px;
}

.admin-section-head-compact {
  gap: 8px;
}

.admin-section-head-compact .admin-kicker {
  margin-bottom: 4px;
}

.admin-section-head-compact h3 {
  font-size: 18px;
  line-height: 1.28;
}

.admin-section-head-compact .admin-note {
  font-size: 14px;
  line-height: 1.5;
}

.admin-chip-row,
.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ghost-button-accent {
  color: #171311;
  background: rgba(201, 161, 89, 0.9);
}

.ghost-button-danger {
  border-color: rgba(201, 126, 126, 0.18);
  color: #e8c2c2;
  background: var(--danger-soft);
}

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

.admin-field span {
  color: var(--muted);
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 1.45;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(13, 15, 18, 0.94);
  font: inherit;
  font-size: var(--text-body);
  line-height: 1.45;
}

.admin-field select {
  appearance: none;
}

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

.admin-promotion-service-list {
  display: grid;
  gap: 10px;
}

.admin-promotion-service-option {
  border-radius: 12px;
  background: rgba(13, 15, 18, 0.62);
}

.admin-empty-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px dashed rgba(196, 173, 128, 0.22);
  border-radius: 12px;
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.45;
}

.admin-toggle-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(196, 173, 128, 0.1);
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 500;
}

.admin-toggle-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #d7a64c;
}

.promotion-booking-list {
  gap: 10px;
  font-size: var(--text-body);
}

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

.promotion-booking-row .admin-list-main strong,
.promotion-booking-row .admin-list-side {
  font-size: var(--text-body);
}

.promotion-booking-row .admin-list-main small,
.promotion-booking-row .admin-entry-meta {
  font-size: var(--text-caption);
}

.promotion-booking-row.is-due-soon {
  border-color: rgba(255, 181, 64, 0.34);
  background: rgba(255, 181, 64, 0.08);
}

.promotion-booking-row.is-overdue {
  border-color: rgba(255, 92, 92, 0.36);
  background: rgba(255, 92, 92, 0.08);
}

.promotion-booking-row.is-closed {
  opacity: 0.72;
}

.promotion-booking-row.is-closed .admin-list-side,
.promotion-booking-row.is-closed .admin-list-main strong {
  color: var(--ink-soft);
}

.promotion-booking-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-editor-summary {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 173, 128, 0.1);
  border-radius: 14px;
  background: rgba(15, 17, 21, 0.42);
}

.admin-editor-summary small {
  color: var(--muted);
  font-size: var(--text-caption);
  line-height: 1.5;
}

.admin-faq-editor-card {
  gap: 14px;
}

.admin-faq-editor-main {
  margin-top: 0;
}

.admin-faq-editor-main textarea {
  min-height: 0;
}

.admin-faq-editor-meta {
  display: grid;
  gap: 10px;
  padding-top: 2px;
  border-top: 1px solid rgba(196, 173, 128, 0.08);
}

.admin-faq-editor-meta-span-2 {
  grid-column: 1 / -1;
}

.admin-price-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.admin-price-suffix {
  color: var(--accent);
  font-size: var(--text-caption);
  font-weight: 600;
  line-height: 1.4;
}

.admin-category-tools {
  margin-top: 2px;
}

.admin-category-picker {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(196, 173, 128, 0.16);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(23, 26, 31, 0.92);
  box-shadow: var(--shadow-sm);
  font: inherit;
  text-align: left;
}

.admin-category-picker-copy {
  display: grid;
  gap: 4px;
}

.admin-category-picker-copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.admin-category-picker-copy small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.admin-category-picker-chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(223, 187, 120, 0.78);
  border-bottom: 2px solid rgba(223, 187, 120, 0.78);
  transform: rotate(45deg) translateY(-3px);
}

.admin-category-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.admin-category-modal[hidden] {
  display: none;
}

.admin-category-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 12, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admin-category-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, calc(100vw - 24px));
  max-height: min(80vh, 760px);
  overflow: auto;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(196, 173, 128, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(223, 187, 120, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(27, 31, 37, 0.98), rgba(18, 21, 26, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.admin-category-dialog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.admin-category-dialog-head h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.admin-category-sheet-copy {
  display: grid;
  gap: 6px;
}

.admin-category-sheet-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.admin-category-sheet-copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.admin-category-option-list,
.admin-category-replacement-list,
.admin-category-manage-list {
  display: grid;
  gap: 10px;
}

.admin-category-option,
.admin-category-manage-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(196, 173, 128, 0.12);
  border-radius: 16px;
  background: rgba(36, 41, 48, 0.52);
}

.admin-category-option {
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.admin-category-option.is-active {
  border-color: rgba(223, 187, 120, 0.28);
  background:
    linear-gradient(180deg, rgba(223, 187, 120, 0.16), rgba(223, 187, 120, 0.06)),
    rgba(36, 41, 48, 0.62);
}

.admin-category-option-copy,
.admin-category-manage-copy {
  display: grid;
  gap: 4px;
}

.admin-category-option-copy strong,
.admin-category-manage-copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.admin-category-option-copy small,
.admin-category-manage-copy small,
.admin-category-delete-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.admin-category-option-check {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(223, 187, 120, 0.5);
  border-radius: 999px;
  background: transparent;
}

.admin-category-option.is-active .admin-category-option-check {
  background: radial-gradient(circle, rgba(223, 187, 120, 0.95) 0 48%, transparent 52%);
}

.admin-category-sheet-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-category-modal-field {
  margin: 0;
}

.admin-upload-list {
  display: grid;
  gap: 10px;
}

.admin-upload-item {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(36, 41, 48, 0.68);
}

.admin-upload-item img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg);
}

.admin-upload-empty {
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
}

.admin-field-hint {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.admin-list-footer {
  display: flex;
  justify-content: center;
}

.admin-footer-button {
  min-height: 46px;
  padding: 0 18px;
}

.content-card-admin {
  border-color: var(--line);
}

.related-services {
  display: grid;
  gap: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.home-mode .tabs,
body.home-mode .quick-search,
body.home-mode .ghost-button {
  display: none;
}

body.home-mode {
  --bg: #070b0f;
  --bg-soft: #0d151b;
  --surface: #101820;
  --surface-strong: #151d25;
  --surface-soft: #202a33;
  --ink: #fff7e8;
  --ink-soft: #e7deca;
  --muted: #c5bba7;
  --muted-soft: #938a78;
  --line: rgba(221, 176, 91, 0.13);
  --line-strong: rgba(232, 191, 112, 0.26);
  --accent: #d3a24e;
  --accent-strong: #f0c977;
  background:
    radial-gradient(circle at 82% 18%, rgba(235, 171, 61, 0.18), transparent 25%),
    radial-gradient(circle at 14% 6%, rgba(50, 151, 167, 0.13), transparent 28%),
    linear-gradient(180deg, #06090d 0%, #0b1117 48%, #0d151b 100%);
}

body.home-mode .app-shell {
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

body.home-mode .panel {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  border-color: rgba(230, 195, 126, 0.08);
  border-radius: 22px;
  padding: 18px 14px 14px;
  background:
    radial-gradient(circle at 78% 18%, rgba(223, 163, 65, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(16, 24, 31, 0.9), rgba(9, 14, 19, 0.94));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.home-mode .content-list {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 17px;
}

body.home-mode .entry-grid {
  gap: 14px;
}

body.home-mode .entry-card {
  min-height: 96px;
  border-radius: 20px;
  padding: 16px;
  border-color: rgba(231, 206, 157, 0.1);
  background:
    linear-gradient(145deg, rgba(22, 32, 41, 0.92), rgba(10, 17, 24, 0.94));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

body.home-mode .entry-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

body.home-mode .entry-card-services .entry-icon {
  color: #f4ca72;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 238, 183, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(211, 162, 78, 0.17), rgba(79, 53, 20, 0.14));
  border-color: rgba(232, 191, 112, 0.28);
}

body.home-mode .entry-card-faqs .entry-icon {
  color: #80ddea;
  background:
    radial-gradient(circle at 32% 24%, rgba(178, 250, 255, 0.22), transparent 44%),
    linear-gradient(145deg, rgba(120, 214, 235, 0.15), rgba(24, 70, 82, 0.13));
  border-color: rgba(120, 214, 235, 0.3);
}

body.home-mode .entry-copy strong {
  color: var(--ink);
  font-family: "SF Pro Display", "Inter", "Aptos Display", var(--font-sans);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0.01em;
}

body.home-mode .entry-arrow {
  color: rgba(240, 201, 119, 0.92);
  font-size: 28px;
  text-shadow: 0 0 16px rgba(224, 169, 70, 0.24);
}

body.home-mode .entry-copy small {
  color: rgba(234, 226, 210, 0.82);
  font-size: 13.5px;
  line-height: 1.36;
  font-weight: 500;
}

body.home-mode .human-chat-button {
  margin-top: 4px;
}

body.home-mode .customer-footer {
  position: static;
  bottom: auto;
  margin: auto 2px 0;
  padding: 2px 0 calc(2px + env(safe-area-inset-bottom, 0px));
}

body.home-mode .map-link {
  border-color: rgba(196, 173, 128, 0.16);
  color: rgba(243, 238, 228, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(23, 26, 31, 0.74);
}

body.home-mode .human-chat-icon {
  width: 48px;
  height: 48px;
  background:
    radial-gradient(circle at 35% 18%, rgba(255, 236, 181, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(26, 35, 42, 0.94), rgba(8, 13, 18, 0.96));
  border-color: rgba(232, 191, 112, 0.25);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 229, 169, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.32);
}

body.home-mode .human-chat-icon svg {
  width: 20px;
  height: 20px;
}

body.home-mode .count-pill {
  display: none;
}

body.admin-overview-mode .quick-search {
  display: none;
}

body.admin-mode .tabs {
  display: none;
}

body:not(.admin-ready) .tab-button-admin {
  display: none;
}

body.service-mode .tab-button-home,
body.faq-mode .tab-button-home {
  display: none;
}

body.admin-mode .customer-footer {
  display: none;
}

body.admin-mode .channel-gate-return {
  display: none;
}

body.faq-mode .quick-search {
  grid-template-columns: 1fr auto;
}

body.service-mode .quick-search {
  grid-template-columns: 1fr;
}

body.service-mode #searchButton {
  display: none;
}

body.service-mode .tab-button,
body.faq-mode .tab-button {
  font-size: 19px;
}

body.service-mode .quick-search input,
body.faq-mode .quick-search input {
  font-size: 18px;
}

body.service-mode .quick-search input::placeholder,
body.faq-mode .quick-search input::placeholder {
  font-size: 17px;
}

body.faq-mode .faq-ai-title {
  font-size: 21px;
}

body.faq-mode .faq-human-handoff-copy {
  font-size: 17px;
}

body.faq-mode .faq-human-handoff-copy strong {
  font-size: 18px;
}

body.faq-mode .faq-human-handoff-button {
  font-size: 17px;
}

body.faq-mode .faq-feedback-toggle span {
  font-size: 17px;
}

body.faq-mode .faq-feedback-toggle small,
body.faq-mode .faq-rating-hint,
body.faq-mode .faq-related-label,
body.faq-mode .faq-chip,
body.faq-mode .faq-feedback-status {
  font-size: 15px;
}

body.faq-mode .faq-feedback-copy {
  font-size: 16px;
}

body.faq-mode .faq-feedback-copy strong {
  font-size: 17px;
}

body.faq-mode .faq-feedback-field textarea {
  font-size: 17px;
}

body.faq-mode .faq-answer-line {
  font-size: 19px;
}

body.faq-mode .faq-answer-bullet {
  font-size: 15px;
}

body.service-mode .category-pill {
  font-size: 16px;
}

body.service-mode .service-description {
  font-size: 20px;
}

body.service-mode .service-description-code {
  font-size: 16px;
}

body.service-mode .service-detail-action,
body.service-mode .service-detail-action-label {
  font-size: 16px;
}

body.service-mode .content-empty h3,
body.faq-mode .content-empty h3 {
  font-size: 20px;
}

body.service-mode .content-empty p,
body.faq-mode .content-empty p {
  font-size: 18px;
}

@media (min-width: 640px) {
  .app-shell {
    padding: 18px 16px calc(100px + env(safe-area-inset-bottom, 0px));
  }

  .entry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-view-banner,
  .admin-section-head,
  .admin-hero-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .admin-view-banner-copy {
    max-width: 540px;
  }

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

@media (max-width: 420px) {
  .home-hero {
    gap: 5px;
    margin-bottom: 4px;
  }

  .home-hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }

  .home-hero p {
    font-size: 15px;
    line-height: 1.56;
  }

  .landing-promo {
    border-radius: 26px;
    padding: 15px;
  }

  .landing-promo-badge {
    max-width: 100%;
    padding: 7px 10px 6px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .landing-promo-copy {
    gap: 10px;
  }

  .landing-promo-kicker {
    font-size: 25px;
    line-height: 1.16;
    max-width: 100%;
    letter-spacing: 0.02em;
  }

  .landing-promo-body {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.52;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .landing-promo-line.is-description {
    max-width: 34ch;
  }

  .landing-promo-line.is-price {
    font-size: var(--text-price-list);
  }

  .landing-promo-line.is-gift {
    font-size: 14px;
    line-height: 1.46;
  }

  body.home-mode .entry-card {
    min-height: 98px;
    padding: 16px;
    border-radius: 23px;
  }

  body.home-mode .entry-copy strong {
    font-size: 24px;
  }

  body.home-mode .entry-copy small {
    font-size: 15px;
    line-height: 1.48;
  }

  body.home-mode .entry-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
  }

  body.home-mode .entry-icon svg {
    width: 24px;
    height: 24px;
  }

  .map-link {
    font-size: 15px;
    line-height: 1.42;
  }

  .channel-gate-return {
    grid-template-columns: 1fr;
  }

  .channel-gate-return-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-head {
    padding: 15px;
  }

  .service-detail-title-row {
    gap: 12px;
  }

  .service-detail-price {
    padding: 9px 12px 8px;
    border-radius: 14px;
    font-size: 20px;
  }

  .service-description {
    font-size: 17px;
    line-height: 1.62;
  }
}

/* Editor improvements for service description notes */
.admin-textarea-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}

.admin-textarea-toolbar + textarea {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  margin-top: 0;
}

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toolbar-btn:hover {
  background: rgba(201, 161, 89, 0.2);
  border-color: rgba(201, 161, 89, 0.5);
  color: var(--accent);
}

.toolbar-separator {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

.toolbar-icons-label {
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 600;
}

.toolbar-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.toolbar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.toolbar-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.18);
}

.admin-field textarea#adminServiceNote {
  min-height: 160px;
  font-size: 15px;
  line-height: 1.55;
}
