.nowgo-top-header {
  --nowgo-accent: #ff385c;
  --nowgo-text: #222222;
  --nowgo-muted: #6a6a6a;
  --nowgo-line: #dddddd;
  --nowgo-panel-top: 136px;
  --nowgo-query-submit-track: 68px;
  position: sticky;
  top: 0;
  z-index: 3200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  min-height: auto;
  padding: 18px 24px 16px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ebebeb;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(18px);
  transition:
    padding 0.28s ease,
    gap 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.nowgo-header-main-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.nowgo-header-nav,
.nowgo-header-query-row,
.nowgo-top-header .nowgo-search-box,
.nowgo-top-header .nowgo-date-trigger,
.nowgo-top-header .nowgo-person-trigger,
.nowgo-top-header .nowgo-search-leading-icon,
.nowgo-top-header .nowgo-search-submit {
  transition:
    opacity 0.24s ease,
    transform 0.28s ease,
    width 0.28s ease,
    max-width 0.28s ease,
    padding 0.28s ease,
    gap 0.28s ease,
    height 0.28s ease,
    box-shadow 0.28s ease,
    top 0.28s ease,
    left 0.28s ease;
}

.nowgo-header-logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0;
  justify-self: start;
  line-height: 1;
}

.nowgo-header-logo .logo-text img {
  height: 34px;
}

.nowgo-header-nav {
  display: inline-flex;
  margin-inline: auto;
  justify-self: center;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #f7f7f7;
  max-width: 100%;
  white-space: nowrap;
  transition:
    opacity 0.24s ease,
    transform 0.28s ease,
    max-height 0.28s ease,
    padding 0.28s ease,
    border-color 0.28s ease,
    margin 0.28s ease;
}

.nowgo-header-nav::-webkit-scrollbar {
  display: none;
}

.nowgo-header-tab {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--nowgo-muted);
  font-size: 15px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nowgo-header-tab:hover {
  color: var(--nowgo-text);
}

.nowgo-header-tab.is-active {
  background: #fff;
  color: var(--nowgo-text);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.nowgo-header-tab-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nowgo-header-tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 56, 92, 0.12);
  color: var(--nowgo-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.nowgo-header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.nowgo-host-btn,
.nowgo-globe-btn,
.nowgo-user-menu-btn {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nowgo-host-btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nowgo-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.nowgo-host-btn:hover,
.nowgo-globe-btn:hover,
.nowgo-user-menu-btn:hover {
  background: #f7f7f7;
}

.nowgo-popover-shell {
  position: relative;
}

.nowgo-globe-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.nowgo-globe-btn svg,
.nowgo-user-menu-icon,
.nowgo-user-avatar-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--nowgo-text);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nowgo-user-menu-btn {
  height: 46px;
  min-width: 84px;
  padding: 0 14px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.08);
}

.nowgo-user-menu-btn[aria-expanded="true"],
.nowgo-globe-btn[aria-expanded="true"] {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14);
}

.nowgo-user-avatar-icon {
  width: 24px;
  height: 24px;
  stroke: #717171;
}

.nowgo-popover-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 3300;
  min-width: 244px;
  padding: 10px;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.nowgo-user-menu-panel {
  transition:
    top 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.nowgo-popover-panel[hidden] {
  display: none !important;
}

.nowgo-popover-option,
.nowgo-popover-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--nowgo-text);
  text-align: left;
  text-decoration: none;
}

.nowgo-popover-option strong {
  font-size: 14px;
  font-weight: 800;
}

.nowgo-popover-option span,
.nowgo-popover-link {
  color: var(--nowgo-muted);
  font-size: 13px;
  line-height: 1.45;
}

.nowgo-popover-link.is-strong {
  color: var(--nowgo-text);
  font-size: 14px;
  font-weight: 800;
}

.nowgo-popover-option:hover,
.nowgo-popover-option.is-active,
.nowgo-popover-link:hover {
  background: #f7f7f7;
}

.nowgo-header-query-row {
  --nowgo-query-row-layout-transform: translate(0, 0);
  position: relative;
  isolation: isolate;
  align-self: center;
  margin-inline: auto;
  width: min(960px, 100%);
  max-width: 960px;
  display: grid;
  grid-template-columns:
    minmax(300px, 1.45fr)
    minmax(310px, 1.18fr)
    minmax(208px, 0.9fr)
    var(--nowgo-query-submit-track);
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 1px solid var(--nowgo-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.1);
  overflow: visible;
  transform: var(--nowgo-query-row-layout-transform) scale(1);
  transform-origin: center center;
  will-change: transform, width, top, left, opacity;
  transition:
    width 0.34s ease,
    max-width 0.34s ease,
    padding 0.34s ease,
    border-color 0.34s ease,
    background-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease,
    opacity 0.34s ease;
}

.nowgo-header-query-row.is-panel-open {
  border-color: rgba(255, 56, 92, 0.18);
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 56, 92, 0.05);
}

.nowgo-header-query-row::before,
.nowgo-header-query-row::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  opacity: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 0.3s ease;
}

.nowgo-header-query-row::before {
  z-index: 0;
  background-image: linear-gradient(
    90deg,
    #8bf35b 0%,
    #59f0da 34%,
    #68c8ff 64%,
    #7f9cff 84%,
    #b68cff 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  filter:
    saturate(1.15)
    brightness(1.12)
    drop-shadow(0 0 5px rgba(104, 200, 255, 0.28))
    drop-shadow(0 0 10px rgba(146, 128, 255, 0.24));
}

.nowgo-header-query-row::after {
  inset: -7px;
  padding: 7px;
  z-index: 0;
  background-image: linear-gradient(
    120deg,
    rgba(139, 243, 91, 0.86) 0%,
    rgba(89, 240, 218, 0.82) 34%,
    rgba(104, 200, 255, 0.84) 64%,
    rgba(127, 156, 255, 0.88) 84%,
    rgba(182, 140, 255, 0.88) 100%
  );
  background-size: 260% 100%;
  background-position: 0% 50%;
  filter: blur(13px) saturate(1.2) brightness(1.12);
}

.nowgo-header-query-row > * {
  position: relative;
  z-index: 1;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row {
  width: min(1100px, 100%);
  max-width: 1100px;
  grid-template-columns: minmax(0, 1fr) var(--nowgo-query-submit-track);
  padding: 6px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nowgo-top-header[data-nowgo-header-mode="experience"] .nowgo-header-query-row {
  grid-template-columns:
    minmax(300px, 1.62fr)
    minmax(155px, 0.59fr)
    minmax(208px, 0.9fr)
    var(--nowgo-query-submit-track);
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::before {
  opacity: 1;
  animation:
    nowgo-ai-query-flow 4.8s linear infinite,
    nowgo-ai-query-opacity 1.9s ease-in-out infinite;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::after {
  opacity: 0.95;
  animation:
    nowgo-ai-query-flow 6.2s linear infinite,
    nowgo-ai-query-opacity 2.2s ease-in-out infinite;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-date-box,
.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-person-box {
  display: none !important;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-box {
  width: 100%;
  height: 74px;
  gap: 16px;
  padding: 0 26px 0 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7f7f7 0%, #eeeeee 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 24px rgba(15, 23, 42, 0.08);
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-box::after {
  display: none;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-copy {
  gap: 3px;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-field-title {
  font-size: 15px;
  font-weight: 800;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-input {
  color: #4b5563;
  font-size: 16px;
  font-weight: 500;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-leading-icon {
  width: 38px;
  height: 38px;
  background: #e8e8e8;
  color: #2f2f2f;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit {
  width: 60px;
  height: 60px;
  margin-right: 0;
  box-shadow: 0 12px 28px rgba(255, 56, 92, 0.24);
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row.is-panel-open {
  box-shadow: none;
}

@keyframes nowgo-ai-query-flow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes nowgo-ai-query-opacity {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

.nowgo-top-header.is-ai-mode-appearing .nowgo-header-query-row {
  animation: nowgo-ai-mode-shell 0.68s cubic-bezier(0.2, 0.9, 0.22, 1);
}

.nowgo-top-header.is-ai-mode-appearing .nowgo-search-box {
  animation: nowgo-ai-mode-field 0.72s cubic-bezier(0.19, 1, 0.22, 1);
}

.nowgo-top-header.is-ai-mode-appearing .nowgo-search-submit {
  animation: nowgo-ai-mode-submit 0.72s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes nowgo-ai-mode-shell {
  0% {
    opacity: 0;
    transform: translateY(-12px) scale(0.965);
  }

  60% {
    opacity: 1;
    transform: translateY(0) scale(1.012);
  }

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

@keyframes nowgo-ai-mode-field {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }

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

@keyframes nowgo-ai-mode-submit {
  0% {
    opacity: 0;
    transform: translateX(-12px) scale(0.9);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.nowgo-top-header.is-query-row-shrinking .nowgo-header-query-row {
  animation: nowgo-query-row-shrink-to-center 0.5s cubic-bezier(0.2, 0.9, 0.22, 1);
}

.nowgo-top-header.is-query-row-growing .nowgo-header-query-row {
  animation: nowgo-query-row-grow-from-center 0.54s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes nowgo-query-row-shrink-to-center {
  0% {
    opacity: 0.86;
    transform: var(--nowgo-query-row-layout-transform) scale(1.12);
  }

  60% {
    opacity: 1;
    transform: var(--nowgo-query-row-layout-transform) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: var(--nowgo-query-row-layout-transform) scale(1);
  }
}

@keyframes nowgo-query-row-grow-from-center {
  0% {
    opacity: 0.84;
    transform: var(--nowgo-query-row-layout-transform) scale(0.86);
  }

  58% {
    opacity: 1;
    transform: var(--nowgo-query-row-layout-transform) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: var(--nowgo-query-row-layout-transform) scale(1);
  }
}

.nowgo-top-header .nowgo-search-box,
.nowgo-top-header .nowgo-date-box,
.nowgo-top-header .nowgo-person-box {
  position: relative;
  min-width: 0;
}

.nowgo-top-header .nowgo-search-box {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 68px;
  padding: 0 18px 0 24px;
  border-radius: 999px 0 0 999px;
  background: transparent;
  box-shadow: none;
}

.nowgo-top-header .nowgo-search-box::after,
.nowgo-top-header .nowgo-date-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 32px;
  background: #dddddd;
  transform: translateY(-50%);
}

.nowgo-top-header .nowgo-search-box:hover,
.nowgo-top-header .nowgo-date-trigger:hover,
.nowgo-top-header .nowgo-person-trigger:hover {
  background: #f7f7f7;
}

.nowgo-top-header .nowgo-search-box.is-open,
.nowgo-top-header .nowgo-search-box:focus-within,
.nowgo-top-header .nowgo-date-box.is-open .nowgo-date-trigger,
.nowgo-top-header .nowgo-person-box.is-open .nowgo-person-trigger {
  background: #fff;
}

.nowgo-search-copy {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nowgo-search-leading-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--nowgo-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nowgo-search-leading-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nowgo-search-field-title,
.nowgo-segment-label {
  color: var(--nowgo-text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.nowgo-top-header .nowgo-search-input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--nowgo-muted);
  font-size: 14px;
  font-weight: 500;
}

.nowgo-top-header .nowgo-search-input::placeholder {
  color: var(--nowgo-muted);
}

.nowgo-search-mobile-summary {
  display: none;
  margin: 0;
  color: var(--nowgo-muted);
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nowgo-top-header .nowgo-date-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nowgo-top-header[data-nowgo-header-mode="experience"] .nowgo-date-box {
  grid-template-columns: minmax(0, 1fr);
}

.nowgo-top-header .nowgo-date-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 32px;
  background: #dddddd;
  transform: translate(-50%, -50%);
}

.nowgo-top-header[data-nowgo-header-mode="experience"] .nowgo-date-box::before {
  display: none;
}

.nowgo-top-header .nowgo-date-trigger,
.nowgo-top-header .nowgo-person-trigger {
  width: 100%;
  height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--nowgo-text);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.nowgo-top-header .nowgo-date-trigger-start {
  border-radius: 0;
}

.nowgo-top-header .nowgo-date-trigger-end {
  padding-right: 26px;
}

.nowgo-top-header[data-nowgo-header-mode="experience"] .nowgo-date-trigger-end {
  display: none;
}

.nowgo-segment-value {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nowgo-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nowgo-night-pill {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 11px;
  font-weight: 800;
}

.nowgo-top-header .nowgo-person-box {
  display: block;
}

.nowgo-top-header .nowgo-person-trigger {
  padding-right: 56px;
}

.nowgo-top-header .nowgo-search-submit {
  width: 52px;
  height: 52px;
  align-self: center;
  justify-self: end;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff385c 0%, #ff5a5f 100%);
  color: #fff;
  margin-right: 0;
  box-shadow: 0 10px 24px rgba(255, 56, 92, 0.26);
}

.nowgo-top-header .nowgo-search-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nowgo-top-header .nowgo-search-submit:hover {
  filter: brightness(0.98);
}

.nowgo-top-header .nowgo-header-search-panel {
  top: var(--nowgo-panel-top);
  width: min(440px, calc(100vw - 48px));
  padding: 18px 20px 20px;
  border-radius: 24px;
  border-color: #ebebeb;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.nowgo-top-header .nowgo-header-search-panel,
.nowgo-top-header .date-dropdown,
.nowgo-top-header .header-guest-dropdown {
  opacity: 0;
  margin-top: 12px;
  filter: blur(10px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    margin-top 0.26s ease,
    filter 0.26s ease,
    box-shadow 0.26s ease;
}

.nowgo-top-header .nowgo-header-search-panel.is-visible,
.nowgo-top-header .date-dropdown.is-visible,
.nowgo-top-header .header-guest-dropdown.is-visible {
  opacity: 1;
  margin-top: 0;
  filter: blur(0);
  pointer-events: auto;
}

.nowgo-top-header .date-dropdown {
  top: var(--nowgo-panel-top);
  width: min(920px, calc(100vw - 48px), calc(var(--app-width) - 48px));
  padding: 20px;
  border: 1px solid #ebebeb;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.14);
}

.nowgo-top-header .header-guest-dropdown {
  position: fixed;
  top: var(--nowgo-panel-top);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 388px;
  padding: 24px 26px;
  border: 1px solid #ebebeb;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.nowgo-top-header .header-guest-copy h4 {
  font-size: 18px;
}

.nowgo-top-header .header-guest-copy p {
  font-size: 14px;
}

.nowgo-top-header .header-guest-stepper {
  margin-top: 22px;
  grid-template-columns: 44px auto 44px;
}

.nowgo-top-header .header-guest-step {
  width: 44px;
  height: 44px;
}

.nowgo-top-header .header-search-section h3 {
  color: var(--nowgo-text);
}

.nowgo-top-header .header-search-nearby {
  border-radius: 18px;
}

@media (min-width: 1200px) {
  .nowgo-top-header.is-scrolled-compact {
    gap: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-main-row {
    min-height: 56px;
    position: relative;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-actions {
    gap: 12px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.96);
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-query-row {
    --nowgo-query-row-layout-transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(430px, 31vw, 560px);
    grid-template-columns: minmax(178px, 1.16fr) minmax(108px, 0.82fr) minmax(128px, 0.9fr) 54px;
    border-color: #dddddd;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.08),
      0 3px 14px rgba(15, 23, 42, 0.08);
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="experience"]
    .nowgo-header-query-row {
    grid-template-columns:
      minmax(196px, 1.22fr)
      minmax(72px, 0.41fr)
      minmax(128px, 0.9fr)
      54px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-box {
    height: 50px;
    gap: 10px;
    padding: 0 14px 0 16px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-leading-icon {
    width: 28px;
    height: 28px;
    background: #f4f4f4;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-leading-icon svg {
    width: 14px;
    height: 14px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-field-title,
  .nowgo-top-header.is-scrolled-compact .nowgo-segment-label,
  .nowgo-top-header.is-scrolled-compact .nowgo-night-pill,
  .nowgo-top-header.is-scrolled-compact .nowgo-search-mobile-summary {
    display: none;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-copy {
    gap: 0;
    justify-content: center;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-input,
  .nowgo-top-header.is-scrolled-compact .nowgo-segment-value {
    color: var(--nowgo-text);
    font-size: 15px;
    font-weight: 700;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-input::placeholder {
    color: var(--nowgo-text);
    opacity: 1;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-box::after,
  .nowgo-top-header.is-scrolled-compact .nowgo-date-box::after,
  .nowgo-top-header.is-scrolled-compact .nowgo-date-box::before {
    height: 22px;
    background: #dddddd;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-date-trigger,
  .nowgo-top-header.is-scrolled-compact .nowgo-person-trigger {
    height: 50px;
    padding: 0 14px;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-person-trigger {
    padding-right: 14px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-submit {
    width: 40px;
    height: 40px;
    margin-right: 0;
    box-shadow: 0 6px 14px rgba(255, 56, 92, 0.22);
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-host-btn {
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-globe-btn {
    width: 40px;
    height: 40px;
    background: #f2f2f2;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-user-menu-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: #f2f2f2;
    justify-content: center;
    box-shadow: none;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-user-avatar-icon {
    display: none;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-header-query-row {
    width: clamp(420px, 30vw, 520px);
    grid-template-columns: minmax(0, 1fr) 54px;
  }
}

@media (max-width: 1199px) {
  .nowgo-user-menu-panel.is-open {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 12px);
    right: 16px;
    z-index: 3800;
    width: min(280px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .nowgo-top-header.is-mobile-user-menu-shifted .nowgo-user-menu-panel.is-open {
    top: calc(var(--nowgo-panel-top) + 8px);
  }

  .nowgo-top-header {
    --nowgo-panel-top: 104px;
    --nowgo-query-submit-track: 64px;
    gap: 12px;
    padding: calc(14px + env(safe-area-inset-top, 0px)) 16px 12px;
  }

  .nowgo-header-main-row {
    position: relative;
    z-index: 2;
    grid-template-columns: minmax(76px, auto) minmax(0, 1fr) minmax(76px, auto);
    grid-template-areas: "logo nav actions";
    align-items: center;
    column-gap: 10px;
    min-height: 48px;
    max-height: 64px;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height 0.24s ease,
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .nowgo-header-logo {
    grid-area: logo;
    justify-self: start;
    align-self: center;
    min-width: 76px;
  }

  .nowgo-header-actions {
    grid-area: actions;
    justify-self: end;
    align-self: center;
    min-width: 76px;
  }

  .nowgo-header-nav {
    grid-area: nav;
    justify-self: center;
    align-self: start;
    width: max-content;
    max-width: min(100%, 360px);
    max-height: 52px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    gap: 6px;
    padding: 4px;
  }

  .nowgo-host-btn,
  .nowgo-globe-btn {
    display: none;
  }

  .nowgo-header-query-row {
    z-index: 1;
    width: min(780px, calc(100vw - 32px));
    max-width: min(780px, calc(100vw - 32px));
    min-height: 70px;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    align-self: center;
    margin-inline: auto;
    padding: 3px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 12px 28px rgba(15, 23, 42, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.74) inset;
  }

  .nowgo-header-query-row.is-panel-open {
    border-color: rgba(255, 56, 92, 0.16);
    box-shadow:
      0 18px 36px rgba(15, 23, 42, 0.14),
      0 0 0 1px rgba(255, 56, 92, 0.05);
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row {
    width: min(820px, calc(100vw - 32px));
    max-width: min(820px, calc(100vw - 32px));
    min-height: 72px;
    padding: 4px;
    border-radius: 34px;
    grid-template-columns: minmax(0, 1fr);
  }

  .nowgo-top-header.is-scrolled-compact {
    gap: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-main-row {
    min-height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-14px);
    pointer-events: none;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-query-row {
    width: min(720px, calc(100vw - 32px));
    max-width: min(720px, calc(100vw - 32px));
    min-height: 58px;
    padding: 2px;
    border-radius: 28px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0;
    box-shadow:
      0 8px 18px rgba(15, 23, 42, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.72) inset;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-box {
    height: 56px;
    gap: 12px;
    padding: 0 68px 0 18px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-submit {
    width: 46px;
    height: 46px;
    right: 8px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-header-query-row {
    min-height: 64px;
    padding: 3px;
    border-radius: 30px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-search-box {
    height: 60px;
    gap: 12px;
    padding: 0 72px 0 20px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-search-submit {
    width: 48px;
    height: 48px;
  }

  .nowgo-top-header.is-ai-mode-appearing .nowgo-search-submit {
    animation: none;
    transform: translateY(-50%);
  }

  .nowgo-top-header .nowgo-date-box,
  .nowgo-top-header .nowgo-person-box {
    display: none !important;
  }

  .nowgo-top-header .nowgo-search-box {
    height: 62px;
    gap: 14px;
    padding: 0 76px 0 22px;
    border-radius: 999px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-box {
    height: 62px;
    gap: 14px;
    padding: 0 76px 0 22px;
    border-radius: 999px;
  }

  .nowgo-top-header .nowgo-search-box::after {
    display: none;
  }

  .nowgo-top-header:not(.is-scrolled-compact):not([data-nowgo-header-mode="service"])
    .nowgo-search-box::after {
    display: none;
  }

  .nowgo-top-header:not(.is-scrolled-compact):not([data-nowgo-header-mode="service"])
    .nowgo-search-field-title {
    display: block;
  }

  .nowgo-search-leading-icon {
    width: 36px;
    height: 36px;
    background: #111827;
    color: #fff;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-leading-icon {
    width: 36px;
    height: 36px;
  }

  .nowgo-top-header .nowgo-search-input {
    color: var(--nowgo-text);
    font-size: 13px;
    font-weight: 600;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-input {
    font-size: 16px;
  }

  .nowgo-top-header .nowgo-date-box::before,
  .nowgo-top-header .nowgo-search-box::after,
  .nowgo-top-header .nowgo-date-box::after {
    height: 26px;
  }

  .nowgo-top-header .nowgo-date-trigger,
  .nowgo-top-header .nowgo-person-trigger {
    height: 62px;
    padding: 0 16px;
    gap: 4px;
  }

  .nowgo-top-header .nowgo-date-trigger-end,
  .nowgo-top-header .nowgo-person-trigger {
    padding-right: 18px;
  }

  .nowgo-top-header:not(.is-scrolled-compact):not([data-nowgo-header-mode="service"])
    .nowgo-person-trigger {
    padding-right: 64px;
  }

  .nowgo-top-header .nowgo-segment-value {
    gap: 6px;
    font-size: 12px;
  }

  .nowgo-top-header .nowgo-night-pill {
    height: 20px;
    padding: 0 7px;
    font-size: 10px;
  }

  .nowgo-top-header .nowgo-search-mobile-summary {
    display: none;
    font-size: 14px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-mobile-summary,
  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-mobile-summary {
    display: block;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-field-title,
  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-field-title {
    display: none;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-box {
    padding: 0 70px 0 20px;
  }

  .nowgo-top-header .nowgo-search-submit {
    display: inline-flex !important;
    position: absolute;
    top: 50%;
    right: 9px;
    width: 50px;
    height: 50px;
    margin-right: 0;
    transform: translateY(-50%);
    z-index: 2;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }

  .nowgo-top-header .nowgo-header-search-panel {
    top: var(--nowgo-panel-top) !important;
    width: min(520px, calc(100vw - 24px));
  }

  .nowgo-top-header .date-dropdown {
    top: var(--nowgo-panel-top) !important;
    width: min(720px, calc(100vw - 24px), calc(var(--app-width) - 24px));
  }
}

@media (max-width: 767px) {
  .nowgo-user-menu-panel.is-open {
    top: calc(env(safe-area-inset-top, 0px) + 45px);
    right: 0px;
    width: min(260px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .nowgo-top-header.is-mobile-user-menu-shifted .nowgo-user-menu-panel.is-open {
    top: calc(var(--nowgo-panel-top) + 6px);
  }

  .nowgo-top-header {
    --nowgo-panel-top: 82px;
    --nowgo-query-submit-track: 58px;
    gap: 9px;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 12px 10px;
  }

  .nowgo-header-main-row {
    grid-template-columns: minmax(60px, auto) minmax(0, 1fr) minmax(60px, auto);
    grid-template-areas: "logo nav actions";
    align-items: center;
    gap: 8px;
    min-height: 42px;
    max-height: 56px;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height 0.24s ease,
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .nowgo-header-logo {
    grid-area: logo;
    justify-self: start;
    min-width: 60px;
  }

  .nowgo-header-actions {
    grid-area: actions;
    justify-self: end;
    min-width: 60px;
  }

  .nowgo-header-nav {
    grid-area: nav;
    display: inline-flex;
    justify-self: center;
    align-self: start;
    width: max-content;
    max-width: min(100%, 236px);
    max-height: 44px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    gap: 3px;
    padding: 3px;
  }

  .nowgo-header-tab {
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nowgo-header-tab-badge {
    min-width: 28px;
    height: 16px;
    padding: 0 6px;
    font-size: 10px;
  }

  .nowgo-header-logo .logo-text img {
    height: 30px;
  }

  .nowgo-user-menu-btn {
    min-width: 68px;
    height: 40px;
    padding: 0 10px;
    gap: 8px;
  }

  .nowgo-header-query-row {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 560px);
    max-width: min(100%, 560px);
    min-height: 62px;
    margin-inline: auto;
    padding: 2px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 10px 24px rgba(15, 23, 42, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.7) inset;
  }

  .nowgo-header-query-row.is-panel-open {
    border-color: rgba(255, 56, 92, 0.15);
    box-shadow:
      0 16px 30px rgba(15, 23, 42, 0.14),
      0 0 0 1px rgba(255, 56, 92, 0.04);
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row {
    width: min(100%, 560px);
    max-width: min(100%, 560px);
    min-height: 64px;
    padding: 4px;
    border-radius: 30px;
    grid-template-columns: minmax(0, 1fr);
  }

  .nowgo-top-header.is-scrolled-compact {
    gap: 0;
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-main-row {
    min-height: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-header-query-row {
    min-height: 52px;
    padding: 2px;
    border-radius: 24px;
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0;
    box-shadow:
      0 7px 16px rgba(15, 23, 42, 0.09),
      0 1px 0 rgba(255, 255, 255, 0.7) inset;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-box {
    height: 50px;
    gap: 8px;
    padding: 0 54px 0 14px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-submit {
    width: 38px;
    height: 38px;
    right: 7px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-header-query-row {
    min-height: 58px;
    padding: 3px;
    border-radius: 26px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-search-box {
    height: 54px;
    gap: 10px;
    padding: 0 60px 0 16px;
  }

  .nowgo-top-header.is-scrolled-compact[data-nowgo-header-mode="service"] .nowgo-search-submit {
    width: 40px;
    height: 40px;
  }

  .nowgo-top-header.is-ai-mode-appearing .nowgo-search-submit {
    animation: none;
    transform: translateY(-50%);
  }

  .nowgo-top-header .nowgo-search-box {
    height: 56px;
    gap: 10px;
    padding: 0 60px 0 16px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-box {
    height: 56px;
    gap: 12px;
    padding: 0 60px 0 16px;
  }

  .nowgo-search-leading-icon {
    width: 30px;
    height: 30px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-leading-icon {
    width: 30px;
    height: 30px;
  }

  .nowgo-top-header .nowgo-search-input {
    font-size: 12px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-input {
    font-size: 15px;
  }

  .nowgo-top-header .nowgo-date-box,
  .nowgo-top-header .nowgo-person-box {
    display: none !important;
  }

  .nowgo-top-header:not(.is-scrolled-compact):not([data-nowgo-header-mode="service"])
    .nowgo-search-field-title {
    display: block;
    font-size: 11px;
  }

  .nowgo-top-header .nowgo-search-mobile-summary {
    display: none;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-mobile-summary,
  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-mobile-summary {
    display: block;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-field-title,
  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-field-title {
    display: none;
  }

  .nowgo-top-header .nowgo-date-box::before,
  .nowgo-top-header .nowgo-search-box::after,
  .nowgo-top-header .nowgo-date-box::after {
    height: 22px;
  }

  .nowgo-top-header .nowgo-date-trigger,
  .nowgo-top-header .nowgo-person-trigger {
    height: 56px;
    padding: 0 10px;
    gap: 4px;
  }

  .nowgo-top-header .nowgo-date-trigger-end {
    padding-right: 12px;
  }

  .nowgo-top-header:not(.is-scrolled-compact):not([data-nowgo-header-mode="service"])
    .nowgo-person-trigger {
    padding-right: 50px;
  }

  .nowgo-top-header .nowgo-segment-label {
    font-size: 11px;
  }

  .nowgo-top-header .nowgo-segment-value {
    gap: 4px;
    font-size: 11px;
  }

  .nowgo-top-header .nowgo-night-pill {
    height: 18px;
    padding: 0 6px;
    font-size: 9px;
  }

  .nowgo-top-header.is-scrolled-compact .nowgo-search-box {
    padding: 0 58px 0 14px;
  }

  .nowgo-top-header .nowgo-search-submit {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 42px;
    height: 42px;
    margin-right: 0;
    transform: translateY(-50%);
    z-index: 2;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit {
    width: 42px;
    height: 42px;
    margin-right: 0;
  }

  .nowgo-top-header .nowgo-header-search-panel {
    width: calc(100vw - 16px);
    padding: 16px;
  }

  .nowgo-top-header .date-dropdown {
    width: calc(100vw - 16px);
    padding: 14px;
    border-radius: 24px;
  }

  .nowgo-top-header .header-guest-dropdown {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
}

/* NOWGO hybrid search UI: canvas + command palette */
.nowgo-top-header:not([data-nowgo-header-mode="service"]) {
  --nowgo-query-submit-track: 124px;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-header-query-row {
  width: min(820px, 100%);
  max-width: 820px;
  grid-template-columns: minmax(0, 1fr) var(--nowgo-query-submit-track);
  border-radius: 18px;
  border-color: #e6eaf0;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.07),
    0 1px 0 rgba(15, 23, 42, 0.04);
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-date-box,
.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-person-box {
  display: none !important;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-box {
  height: 74px;
  padding: 0 18px 0 20px;
  border-radius: 18px 0 0 18px;
  gap: 12px;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-box::after {
  display: none;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-leading-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #eef3ff;
  color: #3154c7;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-field-title {
  color: #374151;
  font-size: 12px;
  font-weight: 700;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-input {
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
}

.nowgo-search-canvas-hint {
  margin: 0;
  color: #9aa3b2;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nowgo-top-header.is-scrolled-compact .nowgo-search-canvas-hint {
  display: none;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-submit {
  width: auto;
  min-width: 108px;
  height: 46px;
  margin-right: 10px;
  align-self: center;
  border-radius: 12px;
  padding: 0 14px;
  gap: 6px;
  background: #111827;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.2);
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-submit:hover {
  background: #1f2937;
  filter: none;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-submit svg {
  width: 16px;
  height: 16px;
}

.nowgo-search-submit-label {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit-label {
  display: none;
}

.nowgo-search-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  inset: 0;
  z-index: 3390;
  background: rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.nowgo-search-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nowgo-top-header .nowgo-header-search-panel {
  z-index: 3400;
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-header-search-panel {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: min(720px, calc(100vw - 36px), calc(var(--app-width) - 36px));
  max-height: min(74vh, 700px);
  padding: 22px 24px 24px;
  border: 1px solid #e8edf3;
  border-radius: 20px;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.22);
}

.nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-header-search-panel.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.nowgo-command-head h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.nowgo-command-head p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.45;
}

.nowgo-command-examples {
  margin-top: 18px;
}

.nowgo-command-compose {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #e5eaf1;
  border-radius: 14px;
  background: #f8fafc;
}

.nowgo-command-compose-label {
  margin: 0;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
}

.nowgo-command-compose-row {
  margin-top: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.nowgo-command-preview {
  margin: 0;
  min-height: 40px;
  border: 1px solid #d7dfe9;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.nowgo-command-preview.is-placeholder {
  color: #9aa3b2;
  font-weight: 500;
}

.nowgo-command-submit {
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.nowgo-command-submit:hover {
  background: #1f2937;
}

.nowgo-command-compose-help {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.3;
}

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

.nowgo-command-chip {
  height: 34px;
  border: 1px solid #dbe3ee;
  border-radius: 999px;
  padding: 0 14px;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.nowgo-command-chip:hover {
  background: #edf2f8;
  border-color: #cbd6e4;
}

.is-nowgo-search-palette-open {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .nowgo-top-header.is-scrolled-compact:not([data-nowgo-header-mode="service"]) {
    --nowgo-query-submit-track: 44px;
  }

  .nowgo-top-header.is-scrolled-compact:not([data-nowgo-header-mode="service"]) .nowgo-search-box {
    height: 52px;
    border-radius: 12px 0 0 12px;
  }

  .nowgo-top-header.is-scrolled-compact:not([data-nowgo-header-mode="service"]) .nowgo-search-submit {
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin-right: 6px;
    padding: 0;
  }

  .nowgo-top-header.is-scrolled-compact:not([data-nowgo-header-mode="service"])
    .nowgo-search-submit-label {
    display: none;
  }
}

@media (max-width: 1199px) {
  .nowgo-top-header:not([data-nowgo-header-mode="service"]) {
    --nowgo-query-submit-track: 44px;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-header-query-row {
    grid-template-columns: minmax(0, 1fr) 44px;
    border-radius: 14px;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-box {
    height: 56px;
    border-radius: 14px 0 0 14px;
    padding: 0 12px;
    gap: 10px;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-leading-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-input {
    font-size: 14px;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-submit {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 2px;
    padding: 0;
    border-radius: 10px;
    gap: 0;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-submit-label,
  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-search-canvas-hint {
    display: none;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-header-search-panel {
    top: auto;
    bottom: 12px;
    transform: translateX(-50%) scale(0.98);
    width: min(720px, calc(100vw - 16px));
    max-height: calc(100vh - 24px);
    border-radius: 16px;
    padding: 18px 16px 18px;
  }

  .nowgo-top-header:not([data-nowgo-header-mode="service"]) .nowgo-header-search-panel.is-visible {
    transform: translateX(-50%) scale(1);
  }

  .nowgo-command-head h3 {
    font-size: 18px;
  }

  .nowgo-command-compose-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .nowgo-command-submit {
    width: 100%;
  }
}

/* AI search field: always-expanded look (matched to test.html open state) */
.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row {
  width: min(760px, 100%);
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 8px;
  border-radius: 34px;
  border: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  isolation: isolate;
  overflow: visible;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::before,
.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 36px;
  pointer-events: none;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::before {
  z-index: 0;
  background: conic-gradient(
    #c4b5fd,
    #93c5fd,
    #6ee7b7,
    #fde68a,
    #fca5a5,
    #f0abfc,
    #c4b5fd
  );
  opacity: 0.34;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::after {
  z-index: -1;
  inset: -9px -10px;
  border-radius: 40px;
  background: linear-gradient(120deg, #a78bfa, #60a5fa, #34d399, #60a5fa, #a78bfa);
  background-size: 280% 280%;
  filter: blur(9px);
  opacity: 0.15;
  animation:
    nowgo-service-halo-shift 6s ease infinite,
    nowgo-service-heartbeat 3.6s ease-in-out infinite;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-box {
  width: 100%;
  height: 60px;
  gap: 12px;
  padding: 0 12px 0 20px;
  border-radius: 27px;
  background: #fff;
  box-shadow: none;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-field-title {
  display: none;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-copy {
  justify-content: center;
  gap: 0;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-input {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-input::placeholder {
  color: #b3b7c1;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-leading-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #f2f4f8;
  color: #374151;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-canvas-hint,
.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-mobile-summary {
  display: none;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit {
  width: 42px;
  min-width: 42px;
  height: 42px;
  align-self: center;
  margin-right: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  animation: nowgo-service-submit-pulse 3.6s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit:hover {
  transform: scale(1.07);
  filter: none;
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit:active {
  transform: scale(0.95);
}

.nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit-label {
  display: none;
}

@keyframes nowgo-service-halo-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes nowgo-service-heartbeat {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(1);
  }

  6% {
    opacity: 0.28;
    transform: scale(1.018);
  }

  12% {
    opacity: 0.15;
    transform: scale(1.004);
  }

  22% {
    opacity: 0.4;
    transform: scale(1.036);
  }

  40% {
    opacity: 0.12;
    transform: scale(1);
  }
}

@keyframes nowgo-service-submit-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.28), 0 4px 14px rgba(59, 130, 246, 0.3);
  }

  6% {
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.14), 0 4px 14px rgba(59, 130, 246, 0.34);
  }

  12% {
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1), 0 4px 14px rgba(59, 130, 246, 0.24);
  }

  22% {
    box-shadow: 0 0 0 9px rgba(124, 58, 237, 0.08), 0 4px 18px rgba(59, 130, 246, 0.38);
  }

  40% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0), 0 4px 14px rgba(59, 130, 246, 0.3);
  }
}

@media (max-width: 1199px) {
  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row {
    width: min(680px, calc(100vw - 16px));
    padding: 6px;
    border-radius: 28px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::before {
    border-radius: 30px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-header-query-row::after {
    border-radius: 32px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-box {
    height: 52px;
    border-radius: 22px;
    padding: 0 10px 0 14px;
    gap: 8px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-input {
    font-size: 13px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-leading-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .nowgo-top-header[data-nowgo-header-mode="service"] .nowgo-search-submit svg {
    width: 16px;
    height: 16px;
  }
}

/* Final override: single test.html-like search field (no tabs, no expand/collapse) */
.nowgo-top-header .nowgo-date-box,
.nowgo-top-header .nowgo-person-box {
  display: none !important;
}

.nowgo-top-header .nowgo-header-query-row {
  width: min(760px, 100%);
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr) auto !important;
  padding: 8px;
  border-radius: 34px;
  border: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  isolation: isolate;
  overflow: visible;
}

.nowgo-top-header .nowgo-header-query-row::before,
.nowgo-top-header .nowgo-header-query-row::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nowgo-top-header .nowgo-header-query-row::before {
  z-index: 0;
  inset: -3px;
  border-radius: 36px;
  background: conic-gradient(
    #c4b5fd,
    #93c5fd,
    #6ee7b7,
    #fde68a,
    #fca5a5,
    #f0abfc,
    #c4b5fd
  );
  opacity: 0.34;
}

.nowgo-top-header .nowgo-header-query-row::after {
  z-index: -1;
  inset: -9px -10px;
  border-radius: 40px;
  background: linear-gradient(120deg, #a78bfa, #60a5fa, #34d399, #60a5fa, #a78bfa);
  background-size: 280% 280%;
  filter: blur(9px);
  opacity: 0.15;
  animation:
    nowgo-flat-search-halo-shift 6s ease infinite,
    nowgo-flat-search-heartbeat 3.6s ease-in-out infinite;
}

.nowgo-top-header .nowgo-search-box {
  width: 100%;
  height: 60px;
  gap: 12px;
  padding: 0 12px 0 20px;
  border-radius: 27px;
  background: #fff;
  box-shadow: none;
}

.nowgo-top-header .nowgo-search-box::after {
  display: none;
}

.nowgo-top-header .nowgo-search-field-title,
.nowgo-top-header .nowgo-search-canvas-hint,
.nowgo-top-header .nowgo-search-mobile-summary,
.nowgo-top-header .nowgo-search-submit-label {
  display: none !important;
}

.nowgo-top-header .nowgo-search-copy {
  justify-content: center;
  gap: 0;
}

.nowgo-top-header .nowgo-search-input {
  color: #111827;
  font-size: 14px;
  font-weight: 500;
}

.nowgo-top-header .nowgo-search-input::placeholder {
  color: #b3b7c1;
}

.nowgo-top-header .nowgo-search-leading-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: #f2f4f8;
  color: #374151;
}

.nowgo-top-header .nowgo-search-submit {
  width: 42px;
  min-width: 42px;
  height: 42px;
  align-self: center;
  margin-right: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  animation: nowgo-flat-search-submit-pulse 3.6s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nowgo-top-header .nowgo-search-submit:hover {
  transform: scale(1.07);
  filter: none;
}

.nowgo-top-header .nowgo-search-submit:active {
  transform: scale(0.95);
}

@keyframes nowgo-flat-search-halo-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes nowgo-flat-search-heartbeat {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(1);
  }

  6% {
    opacity: 0.28;
    transform: scale(1.018);
  }

  12% {
    opacity: 0.15;
    transform: scale(1.004);
  }

  22% {
    opacity: 0.4;
    transform: scale(1.036);
  }

  40% {
    opacity: 0.12;
    transform: scale(1);
  }
}

@keyframes nowgo-flat-search-submit-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.28), 0 4px 14px rgba(59, 130, 246, 0.3);
  }

  6% {
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.14), 0 4px 14px rgba(59, 130, 246, 0.34);
  }

  12% {
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1), 0 4px 14px rgba(59, 130, 246, 0.24);
  }

  22% {
    box-shadow: 0 0 0 9px rgba(124, 58, 237, 0.08), 0 4px 18px rgba(59, 130, 246, 0.38);
  }

  40% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0), 0 4px 14px rgba(59, 130, 246, 0.3);
  }
}

@media (max-width: 1199px) {
  .nowgo-top-header .nowgo-header-query-row {
    width: min(680px, calc(100vw - 16px));
    padding: 6px;
    border-radius: 28px;
  }

  .nowgo-top-header .nowgo-header-query-row::before {
    border-radius: 30px;
  }

  .nowgo-top-header .nowgo-header-query-row::after {
    border-radius: 32px;
  }

  .nowgo-top-header .nowgo-search-box {
    height: 52px;
    border-radius: 22px;
    padding: 0 10px 0 14px;
    gap: 8px;
  }

  .nowgo-top-header .nowgo-search-input {
    font-size: 13px;
  }

  .nowgo-top-header .nowgo-search-leading-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .nowgo-top-header .nowgo-search-submit {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .nowgo-top-header .nowgo-search-submit svg {
    width: 16px;
    height: 16px;
  }
}

/* Exact-style override: match test.html expanded bar animation */
@property --nowgo-run-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.top-header.nowgo-top-header .nowgo-date-box,
.top-header.nowgo-top-header .nowgo-person-box {
  display: none !important;
}

.top-header.nowgo-top-header .nowgo-header-query-row {
  position: relative;
  width: min(760px, 100%);
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr) auto !important;
  padding: 3px;
  border: 0;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 10px 32px rgba(0, 0, 0, 0.06);
  isolation: isolate;
  overflow: visible;
}

.top-header.nowgo-top-header .nowgo-header-query-row::before {
  content: "";
  position: absolute;
  inset: -8px -10px;
  border-radius: 36px;
  background: linear-gradient(120deg, #a78bfa, #60a5fa, #34d399, #60a5fa, #a78bfa);
  background-size: 300% 300%;
  filter: blur(8px);
  z-index: 0;
  opacity: 0.12;
  animation: nowgo-test-halo-shift 6s ease infinite, nowgo-test-heartbeat 3.6s ease-in-out infinite;
  pointer-events: none;
}

.top-header.nowgo-top-header .nowgo-header-query-row::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 3px;
  background: conic-gradient(
    from var(--nowgo-run-angle),
    transparent 0deg,
    transparent 60deg,
    #c4b5fd 90deg,
    #ffffff 110deg,
    #93c5fd 130deg,
    #6ee7b7 150deg,
    #fde68a 170deg,
    #fca5a5 190deg,
    #f0abfc 210deg,
    #c4b5fd 230deg,
    transparent 260deg,
    transparent 360deg
  );
  z-index: 1;
  animation: nowgo-test-light-run 3s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.top-header.nowgo-top-header .nowgo-header-query-row > * {
  position: relative;
  z-index: 2;
}

.top-header.nowgo-top-header .nowgo-search-box {
  width: 100%;
  height: 60px;
  gap: 10px;
  padding: 0 8px 0 20px;
  border-radius: 27px;
  background: #fff;
  box-shadow: none;
}

.top-header.nowgo-top-header .nowgo-search-box::after {
  display: none;
}

.top-header.nowgo-top-header .nowgo-search-field-title,
.top-header.nowgo-top-header .nowgo-search-canvas-hint,
.top-header.nowgo-top-header .nowgo-search-mobile-summary,
.top-header.nowgo-top-header .nowgo-search-submit-label {
  display: none !important;
}

.top-header.nowgo-top-header .nowgo-search-copy {
  justify-content: center;
  gap: 0;
}

.top-header.nowgo-top-header .nowgo-search-input {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.top-header.nowgo-top-header .nowgo-search-input::placeholder {
  color: #bbb;
  font-weight: 300;
}

.top-header.nowgo-top-header .nowgo-search-leading-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #374151;
}

.top-header.nowgo-top-header .nowgo-search-submit {
  width: 42px;
  min-width: 42px;
  height: 42px;
  margin-right: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7c3aed, #3b82f6);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  animation: nowgo-test-btn-pulse 3.6s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-header.nowgo-top-header .nowgo-search-submit:hover {
  transform: scale(1.07);
  filter: none;
}

.top-header.nowgo-top-header .nowgo-search-submit:active {
  transform: scale(0.95);
}

@keyframes nowgo-test-light-run {
  from {
    --nowgo-run-angle: 0deg;
  }
  to {
    --nowgo-run-angle: 360deg;
  }
}

@keyframes nowgo-test-halo-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes nowgo-test-heartbeat {
  0%,
  100% {
    opacity: 0.12;
    transform: scale(1);
  }
  6% {
    opacity: 0.3;
    transform: scale(1.02);
  }
  12% {
    opacity: 0.15;
    transform: scale(1.005);
  }
  22% {
    opacity: 0.42;
    transform: scale(1.04);
  }
  40% {
    opacity: 0.12;
    transform: scale(1);
  }
}

@keyframes nowgo-test-btn-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.3), 0 4px 14px rgba(59, 130, 246, 0.3);
  }
  6% {
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.15), 0 4px 14px rgba(59, 130, 246, 0.35);
  }
  12% {
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.1), 0 4px 14px rgba(59, 130, 246, 0.25);
  }
  22% {
    box-shadow: 0 0 0 10px rgba(124, 58, 237, 0.08), 0 4px 18px rgba(59, 130, 246, 0.4);
  }
  40% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0), 0 4px 14px rgba(59, 130, 246, 0.3);
  }
}

@media (max-width: 1199px) {
  .top-header.nowgo-top-header .nowgo-header-query-row {
    width: min(680px, calc(100vw - 16px));
    border-radius: 24px;
  }

  .top-header.nowgo-top-header .nowgo-header-query-row::after {
    border-radius: 24px;
  }

  .top-header.nowgo-top-header .nowgo-search-box {
    height: 52px;
    border-radius: 22px;
    padding: 0 10px 0 14px;
    gap: 8px;
  }

  .top-header.nowgo-top-header .nowgo-search-leading-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .top-header.nowgo-top-header .nowgo-search-input {
    font-size: 13px;
  }

  .top-header.nowgo-top-header .nowgo-search-submit {
    width: 38px;
    min-width: 38px;
    height: 38px;
    border-radius: 13px;
  }
}

/* Prevent layout shake on search by reserving scrollbar space */
html {
  overflow-y: scroll;
}

/* Thin orange brand scrollbar */
:root {
  scrollbar-width: thin;
  scrollbar-color: #ff8a1a #fff5eb;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #fff5eb;
}

*::-webkit-scrollbar-thumb {
  background: #ff8a1a;
  border-radius: 999px;
  border: 2px solid #fff5eb;
}

*::-webkit-scrollbar-thumb:hover {
  background: #ff7a00;
}
