:root {
  --gz-bg: #f5f5f2;
  --gz-surface: #ffffff;
  --gz-ink: #1a1b1e;
  --gz-ink-2: #4c5158;
  --gz-ink-3: #8b9099;
  --gz-line: #ecece7;
  --gz-chip: #efefec;
  --gz-brand: #005ffb;
  --gz-red: #d83d67;
  --gz-green: #15a66e;
  --gz-amber: #f0a52a;
  --gz-radius: 20px;
  --gz-shadow: 0 2px 12px rgba(20, 22, 40, 0.055);
  --bg: var(--gz-bg);
  --surface: var(--gz-surface);
  --surface-soft: #fafaf8;
  --text: var(--gz-ink);
  --muted: var(--gz-ink-2);
  --subtle: var(--gz-ink-3);
  --line: var(--gz-line);
  --primary: var(--gz-brand);
  --shadow: var(--gz-shadow);
}

/* f86 RestaurantDetailV3 / ActDetailV2 */
.f86-place-detail-body {
  min-height: 100vh;
  margin: 0;
  padding-bottom: 112px;
  background: var(--gz-bg);
  color: var(--gz-ink);
}

.f86-place-detail-body *,
.f86-place-detail-body *::before,
.f86-place-detail-body *::after {
  box-sizing: border-box;
}

.f86-place-detail-page {
  width: 100%;
  padding: 24px;
}

.f86-place-detail-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.f86-place-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: start;
  gap: 28px;
}

.f86-place-hero {
  position: sticky;
  top: 24px;
  height: min(760px, calc(100vh - 48px));
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  background: #dfe5ed;
  box-shadow: 0 18px 50px rgba(20, 32, 51, 0.1);
}

.f86-place-gallery {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.f86-place-gallery::-webkit-scrollbar {
  display: none;
}

.f86-place-gallery > img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.f86-place-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 19, 31, 0.28), transparent 24%, transparent 72%, rgba(12, 19, 31, 0.2));
  content: "";
}

.f86-place-hero-top {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f86-place-hero-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.f86-place-glass-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1b1e;
  box-shadow: 0 5px 18px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(12px);
  cursor: pointer;
  text-decoration: none;
}

.f86-place-glass-button:hover {
  transform: translateY(-1px);
  background: #fff;
}

.f86-place-glass-button svg,
.f86-place-slider-arrow svg {
  width: 21px;
  height: 21px;
}

.f86-place-favorite.active {
  color: #e54868;
}

.f86-place-favorite.active svg g {
  fill: #e54868;
}

.f86-place-language .language-control {
  margin: 0;
}

.f86-place-language .language-control label {
  display: none;
}

.f86-place-language .language-control select {
  width: auto;
  min-width: 72px;
  height: 42px;
  border: 0;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1b1e;
  box-shadow: 0 5px 18px rgba(17, 24, 39, 0.14);
}

.f86-place-slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #1a1b1e;
  box-shadow: 0 5px 18px rgba(17, 24, 39, 0.16);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.f86-place-slider-arrow.previous {
  left: 18px;
}

.f86-place-slider-arrow.next {
  right: 18px;
}

.f86-place-slider-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.f86-place-gallery-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(9px);
}

.f86-place-gallery-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.f86-place-gallery-dots button.active {
  width: 19px;
  border-radius: 5px;
  background: #fff;
}

.f86-place-gallery-dots button:focus-visible,
.f86-place-glass-button:focus-visible,
.f86-place-slider-arrow:focus-visible {
  outline: 3px solid rgba(0, 95, 251, 0.42);
  outline-offset: 2px;
}

.f86-place-sheet {
  min-width: 0;
  padding: 26px 4px 12px;
}

.f86-place-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.f86-place-heading-copy {
  min-width: 0;
  flex: 1;
}

.f86-place-category {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 9px;
  background: #e8f0ff;
  color: var(--gz-brand);
  font-size: 12px;
  font-weight: 800;
}

.f86-place-category svg,
.f86-place-location svg,
.f86-place-rating-pill svg,
.f86-place-feature svg,
.f86-place-map svg,
.f86-place-view-pill svg,
.f86-place-review-button svg,
.f86-place-review header > span svg,
.f86-place-actions svg,
.f86-place-modal svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.f86-place-heading h1 {
  margin: 11px 0 0;
  color: var(--gz-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.f86-place-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  color: var(--gz-ink-2);
  font-size: 15px;
}

.f86-place-location svg {
  width: 16px;
  height: 16px;
  color: var(--gz-ink-3);
}

.f86-place-rating-pill {
  display: grid;
  min-width: 82px;
  justify-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.f86-place-rating-pill strong {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gz-ink);
  font-size: 16px;
}

.f86-place-rating-pill strong svg {
  width: 16px;
  height: 16px;
  color: #f5a524;
  fill: #f5a524;
}

.f86-place-rating-pill span {
  margin-top: 3px;
  color: var(--gz-ink-3);
  font-size: 10.5px;
  white-space: nowrap;
}

.f86-place-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.f86-place-feature {
  display: flex;
  min-width: 0;
  min-height: 72px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 15px;
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.f86-place-feature > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: #e8f0ff;
  color: var(--gz-brand);
}

.f86-place-feature div {
  min-width: 0;
}

.f86-place-feature strong,
.f86-place-feature small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-place-feature strong {
  color: var(--gz-ink);
  font-size: 13px;
}

.f86-place-feature small {
  margin-top: 3px;
  color: var(--gz-ink-3);
  font-size: 10.5px;
}

.f86-place-section {
  margin-top: 26px;
}

.f86-place-section h2 {
  margin: 0;
  color: var(--gz-ink);
  font-size: 20px;
  line-height: 1.3;
}

.f86-place-about {
  margin: 9px 0 0;
  color: var(--gz-ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.f86-place-map {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  padding: 15px;
  border-radius: 18px;
  background: var(--gz-surface);
  color: var(--gz-ink);
  box-shadow: var(--gz-shadow);
  text-decoration: none;
}

.f86-place-map-pin {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--gz-brand);
  color: #fff;
}

.f86-place-map > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.f86-place-map strong,
.f86-place-map small {
  display: block;
}

.f86-place-map strong {
  font-size: 14px;
}

.f86-place-map small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--gz-ink-3);
  font-size: 12.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-place-map > svg {
  width: 21px;
  height: 21px;
  color: var(--gz-brand);
}

.f86-place-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.f86-place-view-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 9px;
  background: var(--gz-chip);
  color: var(--gz-ink-3);
  font-size: 12px;
  font-weight: 700;
}

.f86-place-view-pill svg {
  width: 14px;
  height: 14px;
}

.f86-place-rating-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: var(--gz-surface);
}

.f86-place-rating-summary {
  display: grid;
  justify-items: center;
}

.f86-place-rating-summary > strong {
  font-size: 32px;
  line-height: 1.1;
}

.f86-place-rating-summary > span {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.f86-place-rating-summary i {
  color: #d9dce1;
  font-size: 13px;
  font-style: normal;
}

.f86-place-rating-summary i.filled {
  color: #f5a524;
}

.f86-place-rating-summary small {
  margin-top: 5px;
  color: var(--gz-ink-3);
  font-size: 11px;
}

.f86-place-rating-bars {
  display: grid;
  gap: 6px;
}

.f86-place-rating-bars > div {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 7px;
  color: var(--gz-ink-3);
  font-size: 11px;
}

.f86-place-rating-bars i {
  height: 7px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--gz-chip);
}

.f86-place-rating-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gz-brand);
}

.f86-place-rating-bars small {
  text-align: right;
}

.f86-place-review-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  border: 1.5px solid var(--gz-brand);
  border-radius: 15px;
  background: #e8f0ff;
  color: var(--gz-brand);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.f86-place-review-list {
  display: grid;
  gap: 11px;
  margin-top: 15px;
}

.f86-place-review {
  padding: 15px;
  border-radius: 17px;
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.f86-place-review[hidden] {
  display: none;
}

.f86-place-review header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f86-place-review header img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--gz-chip);
  object-fit: cover;
}

.f86-place-review header > div {
  min-width: 0;
  flex: 1;
}

.f86-place-review header strong,
.f86-place-review header time {
  display: block;
}

.f86-place-review header strong {
  overflow: hidden;
  font-size: 13.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-place-review header time {
  margin-top: 2px;
  color: var(--gz-ink-3);
  font-size: 10.5px;
}

.f86-place-review header > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 9px;
  background: #fff7e5;
  color: #8b5a00;
  font-size: 11.5px;
  font-weight: 800;
}

.f86-place-review header > span svg {
  width: 13px;
  height: 13px;
  color: #f5a524;
  fill: #f5a524;
}

.f86-place-review > p {
  margin: 12px 0 0;
  color: var(--gz-ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.f86-place-review footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.f86-place-review footer span {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 10.5px;
  font-weight: 650;
}

.f86-place-empty {
  margin: 14px 0 0;
  padding: 17px;
  border-radius: 15px;
  background: var(--gz-surface);
  color: var(--gz-ink-3);
  font-size: 13.5px;
  text-align: center;
}

.f86-place-more-reviews {
  display: block;
  margin: 12px auto 0;
  padding: 9px 15px;
  border: 0;
  background: transparent;
  color: var(--gz-brand);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.f86-place-content-spacer {
  height: 70px;
}

.f86-place-actions {
  position: fixed;
  z-index: 20;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 18px;
  display: flex;
  width: min(500px, calc(42vw - 20px));
  gap: 9px;
  padding: 11px;
  border: 1px solid color-mix(in srgb, var(--gz-line) 80%, transparent);
  border-radius: 20px;
  background: color-mix(in srgb, var(--gz-bg) 94%, transparent);
  box-shadow: 0 10px 35px rgba(20, 32, 51, 0.14);
  backdrop-filter: blur(16px);
}

.f86-place-actions a {
  display: flex;
  min-width: 0;
  min-height: 54px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1.5px solid var(--gz-brand);
  border-radius: 15px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.f86-place-actions a.outline {
  background: var(--gz-surface);
  color: var(--gz-brand);
}

.f86-place-actions a.primary {
  background: var(--gz-brand);
  color: #fff;
}

.f86-place-modal[hidden] {
  display: none;
}

.f86-place-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 12, 20, 0.48);
}

.f86-place-modal-open {
  overflow: hidden;
}

.f86-place-modal-sheet {
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow-y: auto;
  padding: 10px 20px 22px;
  border-radius: 27px 27px 20px 20px;
  background: var(--gz-surface);
  color: var(--gz-ink);
  box-shadow: 0 24px 70px rgba(8, 12, 20, 0.24);
}

.f86-place-modal-handle {
  display: block;
  width: 42px;
  height: 4px;
  margin: 0 auto;
  border-radius: 3px;
  background: var(--gz-line);
}

.f86-place-modal-sheet > header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 16px;
}

.f86-place-modal-icon,
.f86-place-modal-sheet > header > button {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: #e8f0ff;
  color: var(--gz-brand);
}

.f86-place-modal-sheet > header > h2 {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  margin: 0;
  font-size: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-place-modal-sheet > header > button {
  border-radius: 50%;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
}

.f86-place-star-input,
.f86-place-cost-options {
  min-width: 0;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
}

.f86-place-star-input {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  border-radius: 15px;
  background: var(--gz-chip);
}

.f86-place-star-input legend {
  display: flex;
  float: left;
  align-items: center;
  gap: 6px;
  color: var(--gz-ink);
  font-size: 12.5px;
  font-weight: 750;
}

.f86-place-star-input legend svg {
  width: 16px;
  height: 16px;
  color: #f5a524;
}

.f86-place-star-input > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 3px;
}

.f86-place-star-input label,
.f86-place-cost-options label {
  cursor: pointer;
}

.f86-place-star-input input,
.f86-place-cost-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.f86-place-star-input label span:first-of-type {
  color: #cfd3da;
  font-size: 26px;
  line-height: 1;
}

.f86-place-star-input label.selected span:first-of-type {
  color: #f5a524;
}

.f86-place-cost-options legend {
  margin: 5px 0 9px;
  color: var(--gz-ink-2);
  font-size: 12.5px;
  font-weight: 750;
}

.f86-place-cost-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.f86-place-cost-options legend {
  grid-column: 1 / -1;
}

.f86-place-cost-options label > span {
  display: grid;
  min-height: 62px;
  place-items: center;
  align-content: center;
  padding: 8px;
  border: 1.5px solid transparent;
  border-radius: 13px;
  background: var(--gz-chip);
  text-align: center;
}

.f86-place-cost-options input:checked + span {
  border-color: var(--gz-brand);
  background: #e8f0ff;
  color: var(--gz-brand);
}

.f86-place-cost-options strong,
.f86-place-cost-options small {
  display: block;
}

.f86-place-cost-options strong {
  font-size: 14px;
}

.f86-place-cost-options small {
  overflow: hidden;
  max-width: 100%;
  margin-top: 3px;
  color: var(--gz-ink-3);
  font-size: 9.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-place-comment-field {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  color: var(--gz-ink-2);
  font-size: 12.5px;
  font-weight: 750;
}

.f86-place-comment-field textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 13px;
  border: 1px solid var(--gz-line);
  border-radius: 15px;
  background: var(--gz-chip);
  color: var(--gz-ink);
  font: inherit;
}

.f86-place-modal-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border: 0;
  border-radius: 15px;
  background: var(--gz-brand);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.f86-place-modal-submit:disabled,
.f86-place-favorite:disabled {
  opacity: 0.58;
}

.f86-place-toast {
  position: fixed;
  z-index: 130;
  bottom: 104px;
  left: 50%;
  max-width: min(420px, calc(100% - 32px));
  padding: 11px 16px;
  border-radius: 12px;
  background: #1a1b1e;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.f86-place-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

html[data-theme="dark"] .f86-place-category,
html[data-theme="dark"] .f86-place-feature > span,
html[data-theme="dark"] .f86-place-review-button,
html[data-theme="dark"] .f86-place-modal-icon,
html[data-theme="dark"] .f86-place-cost-options input:checked + span {
  background: rgba(0, 95, 251, 0.17);
}

html[data-theme="dark"] .f86-place-review header > span {
  background: rgba(245, 165, 36, 0.15);
  color: #f3bf62;
}

@media (max-width: 900px) {
  .f86-place-detail-body {
    padding-bottom: 94px;
  }

  .f86-place-detail-page {
    padding: 0;
  }

  .f86-place-detail-shell {
    width: 100%;
  }

  .f86-place-layout {
    display: block;
  }

  .f86-place-hero {
    position: relative;
    top: auto;
    width: 100%;
    height: 300px;
    min-height: 300px;
    border-radius: 0;
    box-shadow: none;
  }

  .f86-place-sheet {
    position: relative;
    z-index: 4;
    margin-top: -24px;
    padding: 22px 18px 12px;
    border-radius: 25px 25px 0 0;
    background: var(--gz-bg);
  }

  .f86-place-actions {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 11px 14px max(11px, env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .f86-place-content-spacer {
    height: 48px;
  }
}

@media (max-width: 520px) {
  .f86-place-hero-top {
    top: max(12px, env(safe-area-inset-top));
    right: 14px;
    left: 14px;
  }

  .f86-place-glass-button {
    width: 40px;
    height: 40px;
  }

  .f86-place-language .language-control select {
    min-width: 62px;
    height: 40px;
    padding-right: 22px;
    padding-left: 9px;
    font-size: 11px;
  }

  .f86-place-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .f86-place-slider-arrow.previous {
    left: 10px;
  }

  .f86-place-slider-arrow.next {
    right: 10px;
  }

  .f86-place-gallery-dots {
    bottom: 34px;
  }

  .f86-place-heading {
    gap: 11px;
  }

  .f86-place-heading h1 {
    font-size: 25px;
    line-height: 31px;
  }

  .f86-place-rating-pill {
    min-width: 72px;
    padding: 8px 10px;
  }

  .f86-place-features {
    margin-top: 18px;
  }

  .f86-place-feature {
    min-height: 64px;
    padding: 10px;
  }

  .f86-place-feature > span {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .f86-place-section {
    margin-top: 22px;
  }

  .f86-place-section h2 {
    font-size: 18px;
  }

  .f86-place-rating-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 13px;
    padding: 12px;
  }

  .f86-place-actions a {
    min-height: 52px;
    padding: 0 9px;
    font-size: 12.5px;
  }

  .f86-place-modal {
    padding: 0;
  }

  .f86-place-modal-sheet {
    max-height: calc(100vh - 18px);
    padding-right: 18px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));
    padding-left: 18px;
    border-radius: 27px 27px 0 0;
  }

  .f86-place-cost-options {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(78px, 1fr));
  }
}

html[data-theme="dark"] {
  color-scheme: dark;
  --gz-bg: #121316;
  --gz-surface: #1c1e22;
  --gz-ink: #f5f6f7;
  --gz-ink-2: #c5c9d0;
  --gz-ink-3: #8c929c;
  --gz-line: #2b2e34;
  --gz-chip: #25282e;
  --gz-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
  --surface-soft: #181a1e;
}

body {
  background: var(--gz-bg);
  color: var(--gz-ink);
}

.topbar {
  min-height: 68px;
  border-color: var(--gz-line);
  background: color-mix(in srgb, var(--gz-surface) 92%, transparent);
}

.topbar .logo-primary {
  fill: var(--gz-brand);
}

.topbar .nav-item,
.topbar .language-control select {
  border-color: var(--gz-line);
  background: var(--gz-surface);
  color: var(--gz-ink);
}

.topbar .nav-item:hover,
.topbar .language-control select:hover {
  background: var(--gz-chip);
}

.topbar .nav-item.primary-nav {
  border-color: var(--gz-brand);
  background: var(--gz-brand);
  color: #fff;
}

.site-footer {
  background: #1a1b1e;
}

.service-strip {
  background: var(--gz-surface);
  border-color: var(--gz-line);
}

.search-band {
  background: var(--gz-bg);
  color: var(--gz-ink);
}

.intro-copy p,
.intro-copy .eyebrow {
  color: var(--gz-ink-2);
}

.intro-copy h1 {
  color: var(--gz-ink);
}

.search-band .eyebrow {
  color: var(--gz-brand);
}

.search-band .live-counts span {
  border-color: var(--gz-line);
  background: var(--gz-surface);
  color: var(--gz-ink-2);
}

.search-band .primary-button {
  border-color: var(--gz-brand);
  background: var(--gz-brand);
  color: #fff;
}

.search-band .secondary-action-link {
  border-color: var(--gz-line);
  background: var(--gz-surface);
  color: var(--gz-brand);
}

.search-panel,
.transport-quick-card,
.workspace-card {
  border-color: var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.primary-button,
.gz-primary-button {
  border-radius: 14px;
  background: var(--gz-brand);
  box-shadow: none;
}

.account-screen.f86-product-screen .workspace-section {
  width: min(1180px, 100%);
  max-width: 1180px;
  padding-top: 32px;
}

.account-screen.f86-product-screen .workspace-header {
  display: none;
}

.workspace-grid:has(.gz-product-page) {
  display: block;
}

.gz-product-page {
  width: 100%;
  color: var(--gz-ink);
}

.gz-product-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.gz-product-header h2 {
  max-width: 760px;
  margin: 4px 0 0;
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -1.3px;
}

.gz-product-header p:not(.gz-kicker) {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--gz-ink-2);
  font-size: 15px;
  line-height: 1.55;
}

.gz-kicker {
  margin: 0;
  color: var(--gz-brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.gz-product-body {
  display: grid;
  gap: 22px;
}

.gz-header-actions,
.gz-action-row,
.gz-inline-form,
.gz-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gz-section-heading {
  justify-content: space-between;
  margin-bottom: 14px;
}

.gz-section-heading h3 {
  margin: 0;
  font-size: 20px;
}

.gz-section-heading > span {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 14px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 12px;
  font-weight: 800;
}

.gz-primary-button,
.gz-secondary-button,
.gz-filter-button,
.gz-link-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.gz-primary-button.compact,
.gz-secondary-button.compact,
.gz-link-button {
  min-height: 40px;
  padding: 0 15px;
}

.gz-primary-button.green {
  background: var(--gz-green);
}

.gz-primary-button.amber {
  background: var(--gz-amber);
}

.gz-secondary-button,
.gz-link-button {
  border: 1px solid var(--gz-line);
  background: var(--gz-surface);
  color: var(--gz-ink);
}

.gz-link-button {
  color: var(--gz-brand);
}

.gz-filter-button {
  background: var(--gz-ink);
}

.gz-primary-button:disabled,
.gz-secondary-button:disabled,
.gz-filter-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.gz-feature-grid,
.gz-publish-grid,
.gz-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gz-feature-card,
.gz-publish-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 160px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  color: var(--gz-ink);
  text-align: left;
  box-shadow: var(--gz-shadow);
  cursor: pointer;
}

.gz-feature-card:hover,
.gz-publish-card:hover,
.gz-market-card:hover {
  border-color: color-mix(in srgb, var(--gz-brand) 28%, var(--gz-line));
  transform: translateY(-2px);
}

.gz-feature-card,
.gz-publish-card,
.gz-market-card {
  transition: border-color 160ms ease, transform 160ms ease;
}

.gz-feature-card strong,
.gz-publish-card strong {
  margin-top: auto;
  font-size: 16px;
}

.gz-feature-card small,
.gz-publish-card small {
  color: var(--gz-ink-2);
  font-size: 12.5px;
  line-height: 1.45;
}

.gz-feature-icon,
.gz-publish-icon,
.gz-order-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #e9f1ff;
  color: var(--gz-brand);
  font-size: 0;
}

.gz-feature-icon::before,
.gz-publish-icon::before,
.gz-order-icon::before {
  width: 22px;
  height: 22px;
  background: currentColor;
  content: "";
  -webkit-mask: var(--gz-icon) center / contain no-repeat;
  mask: var(--gz-icon) center / contain no-repeat;
}

[data-icon="car"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 17h14M6 17v2m12-2v2M4 13l2-6h12l2 6v4H4zm3 0h.01M17 13h.01'/%3E%3C/svg%3E"); }
[data-icon="box"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m12 3 8 4-8 4-8-4 8-4Zm-8 4v10l8 4 8-4V7M12 11v10'/%3E%3C/svg%3E"); }
[data-icon="bed"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 19v-9m18 9v-6a3 3 0 0 0-3-3H9v9M3 15h18M7 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E"); }
[data-icon="food"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M7 3v8m4-8v8M5 7h8m-4 4v10m8-18v18m0-18c3 2 3 7 0 9'/%3E%3C/svg%3E"); }
[data-icon="compass"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m15 9-2 4-4 2 2-4 4-2Z'/%3E%3C/svg%3E"); }
[data-icon="sparkle"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m12 3 1.5 4.5L18 9l-4.5 1.5L12 15l-1.5-4.5L6 9l4.5-1.5L12 3Zm6 12 .8 2.2L21 18l-2.2.8L18 21l-.8-2.2L15 18l2.2-.8L18 15Z'/%3E%3C/svg%3E"); }
[data-icon="calendar"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 5h14v16H5zM8 3v4m8-4v4M5 10h14'/%3E%3C/svg%3E"); }
[data-icon="taxi"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 17h14M6 17v2m12-2v2M4 13l2-6h12l2 6v4H4zM9 4h6M7 13h.01M17 13h.01'/%3E%3C/svg%3E"); }
[data-icon="home"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m3 11 9-8 9 8v9H3zM9 20v-6h6v6'/%3E%3C/svg%3E"); }
[data-icon="person"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='M4 21a8 8 0 0 1 16 0'/%3E%3C/svg%3E"); }
[data-icon="globe"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' d='M3 12h18M12 3a15 15 0 0 1 0 18M12 3a15 15 0 0 0 0 18'/%3E%3C/svg%3E"); }
[data-icon="key"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='15' r='4' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m11 12 9-9m-3 3 3 3m-6 0 3 3'/%3E%3C/svg%3E"); }
[data-icon="phone"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M5 4h4l2 5-3 2a15 15 0 0 0 5 5l2-3 5 2v4c0 1-1 2-2 2A17 17 0 0 1 3 6c0-1 1-2 2-2Z'/%3E%3C/svg%3E"); }
[data-icon="mail"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
[data-icon="help"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='M9.5 9a3 3 0 1 1 4.5 2.6c-1 .6-2 1.2-2 2.4m0 3h.01'/%3E%3C/svg%3E"); }
[data-icon="bell"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M18 8a6 6 0 0 0-12 0c0 7-3 7-3 9h18c0-2-3-2-3-9m-11 13h4'/%3E%3C/svg%3E"); }
[data-icon="heart"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0l-1 1-1-1a5.5 5.5 0 1 0-7.8 7.8l8.8 8.8 8.8-8.8a5.5 5.5 0 0 0 0-7.8Z'/%3E%3C/svg%3E"); }
[data-icon="wallet"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6h14a2 2 0 0 1 2 2v11H5a2 2 0 0 1-2-2V6a3 3 0 0 1 3-3h11m0 8h3'/%3E%3C/svg%3E"); }
[data-icon="plus"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
[data-icon="gift"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 10h18v11H3zM2 6h20v4H2zm10 0v15M12 6c-4 0-5-5-2-5 2 0 2 3 2 5Zm0 0c4 0 5-5 2-5-2 0-2 3-2 5Z'/%3E%3C/svg%3E"); }
[data-icon="gear"] { --gz-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M19.4 15a1.7 1.7 0 0 0 .3 1.9l.1.1-2.8 2.8-.1-.1a1.7 1.7 0 0 0-1.9-.3 1.7 1.7 0 0 0-1 1.6v.2h-4V21a1.7 1.7 0 0 0-1-1.6 1.7 1.7 0 0 0-1.9.3l-.1.1L4.2 17l.1-.1a1.7 1.7 0 0 0 .3-1.9A1.7 1.7 0 0 0 3 14H2.8v-4H3a1.7 1.7 0 0 0 1.6-1 1.7 1.7 0 0 0-.3-1.9L4.2 7 7 4.2l.1.1a1.7 1.7 0 0 0 1.9.3A1.7 1.7 0 0 0 10 3V2.8h4V3a1.7 1.7 0 0 0 1 1.6 1.7 1.7 0 0 0 1.9-.3l.1-.1L19.8 7l-.1.1a1.7 1.7 0 0 0-.3 1.9 1.7 1.7 0 0 0 1.6 1h.2v4H21a1.7 1.7 0 0 0-1.6 1Z'/%3E%3C/svg%3E"); }

.gz-publish-card {
  min-height: 126px;
  flex-direction: row;
  align-items: center;
  padding: 18px;
}

.gz-publish-card > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.gz-publish-card strong {
  margin: 0;
}

.gz-publish-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--feature-color) 12%, var(--gz-surface));
  color: var(--feature-color);
}

.gz-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gz-ink-3);
  font-size: 25px;
}

.gz-form-card,
.gz-section-card,
.gz-settings-card,
.gz-balance-card,
.gz-invite-card,
.gz-booking-card,
.gz-itinerary article {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.gz-form-card {
  border-top: 4px solid var(--form-accent, var(--gz-brand));
}

.gz-form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

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

.gz-field {
  display: grid;
  min-width: 0;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--gz-ink-2);
  font-size: 12px;
  font-weight: 750;
}

.gz-field input,
.gz-field select,
.gz-field textarea,
.gz-inline-form input,
.gz-market-filter select {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid var(--gz-line);
  border-radius: 13px;
  outline: none;
  background: var(--gz-bg);
  color: var(--gz-ink);
  font: inherit;
  font-size: 14px;
}

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

.gz-field input:focus,
.gz-field select:focus,
.gz-field textarea:focus,
.gz-inline-form input:focus,
.gz-market-filter select:focus {
  border-color: var(--gz-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gz-brand) 13%, transparent);
}

.gz-field small {
  color: var(--gz-ink-3);
  font-weight: 500;
}

.gz-check,
.gz-setting-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 12px 0 18px;
  color: var(--gz-ink-2);
  font-size: 13px;
}

.gz-check input,
.gz-setting-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--gz-brand);
}

.gz-repeat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
  border: 0;
}

.gz-repeat-options legend {
  width: 100%;
  margin-bottom: 2px;
  color: var(--gz-ink-2);
  font-size: 12px;
  font-weight: 750;
}

.gz-repeat-options label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 11px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 11px;
  font-weight: 700;
}

.gz-repeat-options input {
  accent-color: var(--gz-brand);
}

.gz-step-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.gz-step-strip span {
  flex: 1;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--gz-chip);
  color: var(--gz-ink-3);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.gz-step-strip .active {
  background: color-mix(in srgb, var(--form-accent, var(--gz-brand)) 12%, var(--gz-surface));
  color: var(--form-accent, var(--gz-brand));
}

.gz-state-card,
.gz-empty-state {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 30px;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  color: var(--gz-ink-2);
  text-align: center;
}

.gz-empty-state h3,
.gz-empty-state p {
  margin: 0;
}

.gz-empty-state p {
  max-width: 400px;
  color: var(--gz-ink-3);
  font-size: 13px;
}

.gz-empty-icon {
  font-size: 34px;
  color: var(--gz-ink-3);
}

.gz-spinner {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 3px solid var(--gz-line);
  border-top-color: var(--gz-brand);
  border-radius: 50%;
  animation: gz-spin 720ms linear infinite;
}

@keyframes gz-spin {
  to { transform: rotate(360deg); }
}

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

.gz-notification-categories {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding: 1px 1px 4px;
  scrollbar-width: none;
}

.gz-notification-categories::-webkit-scrollbar {
  display: none;
}

.gz-notification-category-button {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 13px;
  border: 0;
  border-radius: 10px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.gz-notification-category-button.active {
  background: var(--gz-brand);
  color: #fff;
  font-weight: 800;
}

.gz-notification-category-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gz-brand) 28%, transparent);
  outline-offset: 2px;
}

.gz-notification-row,
.gz-saved-row,
.gz-order-row,
.gz-offer-row {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--gz-line);
  border-radius: 16px;
  background: var(--gz-surface);
  color: var(--gz-ink);
  text-align: left;
}

.gz-notification-row {
  cursor: pointer;
}

.gz-notification-row > span:nth-child(2),
.gz-order-row > div,
.gz-offer-row > div {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 4px;
}

.gz-notification-row small,
.gz-order-row small,
.gz-offer-row small {
  overflow: hidden;
  color: var(--gz-ink-2);
  font-size: 12px;
  line-height: 1.45;
  text-overflow: ellipsis;
}

.gz-notification-category-tag {
  --notification-tone: var(--gz-green);
  justify-self: start;
  margin-top: 3px;
  padding: 4px 8px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--notification-tone) 13%, var(--gz-surface));
  color: var(--notification-tone);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  line-height: 14px;
}

.gz-notification-category-tag.promotions {
  --notification-tone: #f26430;
}

.gz-notification-category-tag.requests {
  --notification-tone: var(--gz-brand);
}

.gz-notification-category-tag.features {
  --notification-tone: #7657d9;
}

.gz-notification-row time {
  color: var(--gz-ink-3);
  font-size: 11px;
}

.gz-notification-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--gz-line);
}

.gz-notification-row.unread .gz-notification-dot {
  background: var(--gz-brand);
}

.gz-saved-row img,
.gz-saved-row > .gz-image-placeholder {
  width: 76px;
  height: 70px;
  flex: 0 0 76px;
  border-radius: 13px;
  object-fit: cover;
}

.gz-saved-row button {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 4px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.gz-saved-row small,
.gz-saved-row span {
  overflow: hidden;
  color: var(--gz-ink-3);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gz-balance-card {
  min-height: 210px;
  color: #fff;
  background: linear-gradient(135deg, #005ffb, #2740cb);
}

.gz-balance-card > span {
  display: block;
  opacity: 0.74;
}

.gz-balance-card > strong {
  display: block;
  margin: 12px 0 28px;
  font-size: clamp(34px, 6vw, 56px);
  letter-spacing: -1.8px;
}

.gz-balance-card > strong small {
  font-size: 15px;
}

.gz-inline-form {
  max-width: 480px;
}

.gz-inline-form input {
  background: rgba(255, 255, 255, 0.94);
  color: #17191d;
}

.gz-payment-card {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 15px;
  background: var(--gz-chip);
}

.gz-plan-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.gz-plan-card.selected {
  border: 2px solid var(--gz-brand);
}

.gz-plan-card > span {
  color: var(--gz-brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.gz-plan-card h3,
.gz-plan-card p {
  margin: 0;
}

.gz-plan-card p,
.gz-muted {
  color: var(--gz-ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.gz-plan-card > strong {
  margin-top: auto;
  font-size: 23px;
}

.gz-danger-link {
  width: fit-content;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: #d43b3b;
  font-weight: 750;
  cursor: pointer;
}

.gz-settings-card {
  display: grid;
  gap: 2px;
}

.gz-setting-row {
  justify-content: space-between;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--gz-line);
}

.gz-setting-row > span {
  display: grid;
  gap: 3px;
}

.gz-setting-row small {
  color: var(--gz-ink-3);
  font-weight: 500;
}

.gz-legal-links {
  display: flex;
  gap: 18px;
  color: var(--gz-brand);
  font-size: 13px;
  font-weight: 700;
}

.gz-invite-card {
  max-width: 620px;
  margin: auto;
  text-align: center;
  background: linear-gradient(145deg, var(--gz-surface), color-mix(in srgb, var(--gz-brand) 7%, var(--gz-surface)));
}

.gz-invite-card > span {
  color: var(--gz-ink-2);
}

.gz-invite-card > strong {
  display: block;
  margin: 12px 0 22px;
  color: var(--gz-brand);
  font-size: clamp(34px, 7vw, 58px);
  letter-spacing: 5px;
}

.gz-invite-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.gz-invite-stats span {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 12px;
}

.gz-invite-stats strong {
  color: var(--gz-ink);
  font-size: 18px;
}

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

.gz-itinerary article > span {
  color: var(--gz-brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1px;
}

.gz-itinerary h3 {
  margin: 10px 0;
}

.gz-itinerary ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gz-ink-2);
  font-size: 13px;
  line-height: 1.7;
}

.gz-market-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 15px;
  border: 1px solid var(--gz-line);
  border-radius: 18px;
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.gz-market-filter label {
  display: grid;
  gap: 6px;
  color: var(--gz-ink-2);
  font-size: 11px;
  font-weight: 750;
}

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

.gz-market-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.gz-market-image {
  position: relative;
  display: block;
  width: 100%;
  height: 190px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--gz-chip);
}

.gz-market-image img,
.gz-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gz-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--gz-chip), color-mix(in srgb, var(--market-accent, var(--gz-brand)) 12%, var(--gz-chip)));
}

.gz-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1b1e;
  font-size: 11px;
  font-weight: 800;
}

.gz-market-copy {
  padding: 16px;
}

.gz-market-copy > small {
  color: var(--market-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gz-market-copy h3 {
  margin: 5px 0;
  overflow: hidden;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gz-market-copy p {
  display: -webkit-box;
  min-height: 38px;
  margin: 0;
  overflow: hidden;
  color: var(--gz-ink-2);
  font-size: 12px;
  line-height: 19px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gz-market-copy > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.gz-round-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--market-accent) 12%, var(--gz-surface));
  color: var(--market-accent);
  font-size: 22px;
  cursor: pointer;
}

.gz-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(270px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.gz-detail-main {
  display: grid;
  gap: 16px;
}

.gz-detail-image {
  height: min(52vw, 480px);
  overflow: hidden;
  border-radius: 24px;
  background: var(--gz-chip);
}

.gz-section-card h3,
.gz-section-card p {
  margin: 0;
}

.gz-section-card p {
  margin-top: 9px;
  color: var(--gz-ink-2);
  line-height: 1.65;
}

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

.gz-fact-grid span {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--gz-line);
  border-radius: 15px;
  background: var(--gz-surface);
}

.gz-fact-grid small {
  color: var(--gz-ink-3);
}

.gz-booking-card {
  position: sticky;
  top: 92px;
}

.gz-booking-card > span {
  color: var(--gz-ink-3);
  font-size: 12px;
}

.gz-booking-card > strong {
  display: block;
  margin: 7px 0 14px;
  font-size: 26px;
}

.gz-booking-card p {
  color: var(--gz-ink-2);
  font-size: 12px;
  line-height: 1.5;
}

.gz-booking-card .gz-primary-button {
  width: 100%;
  margin-top: 8px;
}

.gz-order-card {
  padding: 20px;
  border: 1px solid var(--gz-line);
  border-radius: var(--gz-radius);
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.gz-order-route {
  display: flex;
  gap: 12px;
}

.gz-order-route > span {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border: 3px solid var(--gz-brand);
  border-radius: 50%;
}

.gz-order-route > div {
  display: grid;
  gap: 7px;
}

.gz-order-route i {
  width: 2px;
  height: 16px;
  margin-left: 3px;
  background: var(--gz-line);
}

.gz-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.gz-order-meta span,
.gz-status-pill {
  padding: 7px 10px;
  border-radius: 12px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 11px;
  font-weight: 700;
}

.gz-order-offers {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.gz-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #e9f1ff;
  color: var(--gz-brand);
  font-weight: 800;
}

.gz-offer-row button {
  padding: 7px 9px;
  border: 0;
  border-radius: 9px;
  background: var(--gz-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
}

.gz-offer-row button:last-child {
  background: var(--gz-chip);
  color: var(--gz-ink-2);
}

.post-workspace-actions {
  justify-content: flex-end;
  margin-bottom: 14px;
}

@media (max-width: 920px) {
  .gz-feature-grid,
  .gz-publish-grid,
  .gz-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .gz-detail-layout {
    grid-template-columns: 1fr;
  }

  .gz-booking-card {
    position: static;
  }
}

@media (max-width: 760px) {
  html[data-theme="dark"] body,
  html[data-theme="dark"] body.homes-screen,
  html[data-theme="dark"] .topbar {
    background: var(--gz-bg);
    color: var(--gz-ink);
  }

  html[data-theme="dark"] .mobile-header-button,
  html[data-theme="dark"] .mobile-tab-bar,
  html[data-theme="dark"] .service-strip,
  html[data-theme="dark"] .search-panel,
  html[data-theme="dark"] .transport-quick-card,
  html[data-theme="dark"] .homes-search-form,
  html[data-theme="dark"] .restact-filters {
    background: var(--gz-surface);
    color: var(--gz-ink);
  }

  .account-screen.f86-product-screen .workspace-section {
    margin: 0;
    padding: 18px 16px 28px;
  }

  .gz-product-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
  }

  .gz-product-header h2 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }

  .gz-product-header p:not(.gz-kicker) {
    margin-top: 7px;
    font-size: 13px;
  }

  .gz-header-actions,
  .gz-header-actions > * {
    width: 100%;
  }

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

  .gz-feature-card {
    min-height: 142px;
    padding: 15px;
  }

  .gz-publish-card {
    min-height: 142px;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .gz-publish-card > span:nth-child(2) {
    margin-top: auto;
  }

  .gz-card-arrow {
    top: 13px;
    right: 14px;
  }

  .gz-form-card,
  .gz-section-card,
  .gz-settings-card,
  .gz-balance-card,
  .gz-invite-card,
  .gz-booking-card {
    padding: 18px;
    border-radius: 18px;
  }

  .gz-form-grid.two,
  .gz-plan-grid,
  .gz-market-filter,
  .gz-market-grid,
  .gz-itinerary {
    grid-template-columns: 1fr;
  }

  .gz-step-strip span {
    padding: 8px 4px;
    font-size: 9px;
  }

  .gz-inline-form {
    align-items: stretch;
    flex-direction: column;
  }

  .gz-inline-form > * {
    width: 100%;
  }

  .gz-balance-card > strong {
    margin-bottom: 22px;
    font-size: 38px;
  }

  .gz-plan-grid {
    display: flex;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
  }

  .gz-plan-card {
    min-width: 82vw;
    scroll-snap-align: start;
  }

  .gz-market-grid {
    display: grid;
  }

  .gz-market-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .gz-market-image {
    height: 100%;
    min-height: 154px;
  }

  .gz-market-copy {
    padding: 14px;
  }

  .gz-market-copy p {
    min-height: 0;
    -webkit-line-clamp: 1;
  }

  .gz-detail-image {
    height: 62vw;
    min-height: 230px;
    border-radius: 18px;
  }

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

  .gz-notification-row {
    align-items: flex-start;
  }

  .gz-notification-row time {
    display: none;
  }

  .gz-saved-row {
    padding: 10px;
  }

  .gz-order-card {
    padding: 16px;
  }

  .gz-action-row {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .gz-action-row > button {
    flex: 1;
  }

  .gz-offer-row {
    flex-wrap: wrap;
  }

  .gz-offer-row > div {
    flex-basis: calc(100% - 56px);
  }

  .gz-offer-row > strong {
    margin-left: 51px;
  }

  .toast {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 390px) {
  .gz-feature-grid,
  .gz-publish-grid {
    grid-template-columns: 1fr;
  }

  .gz-publish-card {
    min-height: 112px;
    flex-direction: row;
    align-items: center;
  }

  .gz-publish-card > span:nth-child(2) {
    margin-top: 0;
  }

  .gz-market-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }
}

/* f86 HomeRentDetail parity */
.f86-home-detail-body {
  margin: 0;
  min-width: 0;
  background: #eef2f7;
  color: var(--gz-ink, #142033);
}

.f86-home-detail-body *,
.f86-home-detail-body *::before,
.f86-home-detail-body *::after {
  box-sizing: border-box;
}

.f86-home-detail-body.f86-home-modal-open {
  overflow: hidden;
}

.f86-home-detail-body > .site-footer {
  display: none;
}

.f86-home-detail-page {
  min-height: 100vh;
  padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
}

.f86-home-detail-shell {
  width: min(760px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #f5f5f2;
  box-shadow: 0 0 45px rgba(20, 32, 51, 0.12);
}

.f86-home-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #dfe6ef;
}

.f86-home-gallery {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.f86-home-gallery::-webkit-scrollbar {
  display: none;
}

.f86-home-gallery img {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.f86-home-hero::after {
  position: absolute;
  inset: 0 0 auto;
  height: 104px;
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.48), transparent);
  content: '';
  pointer-events: none;
}

.f86-home-hero-top {
  position: absolute;
  z-index: 2;
  top: max(14px, env(safe-area-inset-top, 0px));
  right: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.f86-home-hero-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.f86-home-glass-button,
.f86-home-language {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: rgba(18, 28, 43, 0.42);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.f86-home-glass-button svg {
  width: 21px;
  height: 21px;
}

.f86-home-language {
  width: auto;
  padding: 0 8px;
  border-radius: 21px;
}

.f86-home-language .language-control,
.f86-home-language select {
  min-width: 46px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.f86-home-language option {
  color: #142033;
}

.f86-home-gallery-dots {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 38px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}

.f86-home-gallery-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: auto;
  transition: width 160ms ease, background 160ms ease;
}

.f86-home-gallery-dots button.active {
  width: 19px;
  background: #fff;
}

.f86-home-gallery-dots button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.f86-home-slider-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(18, 28, 43, 0.48);
  box-shadow: 0 8px 24px rgba(12, 20, 34, 0.23);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.f86-home-slider-arrow.previous {
  left: 18px;
}

.f86-home-slider-arrow.next {
  right: 18px;
}

.f86-home-slider-arrow:hover:not(:disabled) {
  background: rgba(0, 95, 251, 0.88);
  transform: translateY(-50%) scale(1.05);
}

.f86-home-slider-arrow:disabled {
  cursor: default;
  opacity: 0.3;
}

.f86-home-slider-arrow svg {
  width: 22px;
  height: 22px;
}

.f86-home-sheet {
  position: relative;
  z-index: 3;
  min-height: 400px;
  margin-top: -24px;
  padding: 22px 20px 0;
  border-radius: 24px 24px 0 0;
  background: #f5f5f2;
}

.f86-home-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.f86-home-heading-copy {
  min-width: 0;
  flex: 1;
}

.f86-home-category {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 95, 251, 0.09);
  color: var(--gz-brand, #005ffb);
  font-size: 12px;
  font-weight: 800;
}

.f86-home-category svg {
  width: 14px;
  height: 14px;
}

.f86-home-title-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
}

.f86-home-title-line h1 {
  min-width: 0;
  margin: 0;
  color: #142033;
  font-size: clamp(23px, 5.5vw, 28px);
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.f86-home-boost {
  display: inline-flex;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9f1c, #f26430);
  box-shadow: 0 5px 14px rgba(242, 100, 48, 0.28);
  color: #fff;
}

.f86-home-boost svg {
  width: 16px;
  height: 16px;
}

.f86-home-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  color: #6b7788;
  font-size: 14px;
  font-weight: 650;
}

.f86-home-location svg {
  width: 16px;
  height: 16px;
}

.f86-home-rating-pill {
  min-width: 72px;
  padding: 9px 10px;
  border: 1px solid #e3e8ef;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

.f86-home-rating-pill strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #142033;
  font-size: 15px;
}

.f86-home-rating-pill strong svg {
  width: 15px;
  color: #f5a524;
  fill: #f5a524;
}

.f86-home-rating-pill span {
  display: block;
  margin-top: 3px;
  color: #7b8798;
  font-size: 10px;
  white-space: nowrap;
}

.f86-home-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.f86-home-feature {
  display: flex;
  min-width: 0;
  min-height: 68px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid #e5e9ef;
  border-radius: 16px;
  background: #fff;
}

.f86-home-feature > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 95, 251, 0.09);
  color: var(--gz-brand, #005ffb);
}

.f86-home-feature svg {
  width: 19px;
  height: 19px;
}

.f86-home-feature div {
  min-width: 0;
}

.f86-home-feature strong,
.f86-home-feature small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-home-feature strong {
  color: #142033;
  font-size: 14px;
}

.f86-home-feature small {
  margin-top: 3px;
  color: #7b8798;
  font-size: 11px;
  font-weight: 650;
}

.f86-home-section {
  margin-top: 24px;
}

.f86-home-section h2 {
  margin: 0 0 12px;
  color: #142033;
  font-size: 18px;
  font-weight: 850;
}

.f86-home-description {
  margin: 0;
  color: #4f5d70;
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-line;
}

.f86-home-facility-group + .f86-home-facility-group {
  margin-top: 18px;
}

.f86-home-facility-group h3 {
  margin: 0 0 9px;
  color: #69768a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.f86-home-facility-card {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid #e5e9ef;
  border-radius: 14px;
  background: #fff;
}

.f86-home-facility-card > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 95, 251, 0.08);
  color: var(--gz-brand, #005ffb);
}

.f86-home-facility-card svg {
  width: 18px;
  height: 18px;
}

.f86-home-facility-card strong {
  min-width: 0;
  color: #334155;
  font-size: 12px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.f86-home-empty {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  background: #ebeef2;
  color: #6b7788;
  font-size: 13px;
  line-height: 1.5;
}

.f86-home-map-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding: 13px;
  border: 1px solid rgba(0, 95, 251, 0.16);
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(0, 95, 251, 0.09), #fff 72%);
  color: var(--gz-brand, #005ffb);
}

.f86-home-map-pin {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gz-brand, #005ffb);
  color: #fff;
}

.f86-home-map-card svg {
  width: 21px;
  height: 21px;
}

.f86-home-map-card span:nth-child(2) {
  min-width: 0;
}

.f86-home-map-card strong,
.f86-home-map-card small {
  display: block;
}

.f86-home-map-card strong {
  color: #142033;
  font-size: 14px;
}

.f86-home-map-card small {
  margin-top: 4px;
  overflow: hidden;
  color: #6b7788;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-home-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.f86-home-section-heading button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(0, 95, 251, 0.22);
  border-radius: 12px;
  background: #fff;
  color: var(--gz-brand, #005ffb);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.f86-home-section-heading button svg {
  width: 17px;
  height: 17px;
}

.f86-home-review-list {
  display: grid;
  gap: 9px;
}

.f86-home-review {
  padding: 13px;
  border: 1px solid #e5e9ef;
  border-radius: 15px;
  background: #fff;
}

.f86-home-review header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.f86-home-review header strong {
  color: #26354a;
  font-size: 13px;
}

.f86-home-review header span {
  color: #f5a524;
  letter-spacing: 1px;
}

.f86-home-review p {
  margin: 8px 0 0;
  color: #5d6979;
  font-size: 13px;
  line-height: 1.5;
}

.f86-home-content-spacer {
  height: 36px;
}

.f86-home-bottom-bar {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(760px, 100%);
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 11px 18px calc(11px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #e4e9ef;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.09);
  backdrop-filter: blur(16px);
}

.f86-home-price {
  min-width: 0;
}

.f86-home-price strong,
.f86-home-price span {
  display: block;
}

.f86-home-price strong {
  color: #142033;
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.f86-home-price span {
  margin-top: 5px;
  color: #758196;
  font-size: 11px;
  font-weight: 700;
}

.f86-home-bottom-bar > button,
.f86-home-modal-submit {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 15px;
  background: var(--gz-brand, #005ffb);
  box-shadow: 0 8px 20px rgba(0, 95, 251, 0.23);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

.f86-home-bottom-bar > button {
  min-width: 190px;
  padding: 0 22px;
}

.f86-home-bottom-bar svg {
  width: 19px;
  height: 19px;
}

.f86-home-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 18, 31, 0.58);
  backdrop-filter: blur(4px);
}

.f86-home-modal[hidden] {
  display: none;
}

.f86-home-modal-sheet {
  width: min(600px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 12px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 18, 33, 0.28);
}

.f86-home-modal-handle {
  display: block;
  width: 42px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #d7dee8;
}

.f86-home-modal-sheet > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.f86-home-modal-sheet > header > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.f86-home-modal-sheet h2,
.f86-home-modal-sheet header p {
  margin: 0;
}

.f86-home-modal-sheet h2 {
  color: #142033;
  font-size: 19px;
}

.f86-home-modal-sheet header p {
  margin-top: 3px;
  color: #728095;
  font-size: 12px;
}

.f86-home-modal-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(0, 95, 251, 0.09);
  color: var(--gz-brand, #005ffb);
}

.f86-home-modal-icon svg {
  width: 20px;
  height: 20px;
}

.f86-home-modal-sheet > header > button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #eff2f6;
  color: #526174;
  cursor: pointer;
}

.f86-home-modal-sheet > header > button svg {
  width: 18px;
  height: 18px;
}

.f86-home-rating-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.f86-home-rating-stars legend {
  width: 100%;
  margin-bottom: 8px;
  color: #5b687a;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.f86-home-rating-stars label {
  cursor: pointer;
}

.f86-home-rating-stars input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.f86-home-rating-stars label > span[aria-hidden] {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f2f4f7;
  color: #c9d0da;
  font-size: 25px;
}

.f86-home-rating-stars label.selected > span[aria-hidden] {
  background: #fff6dd;
  color: #f5a524;
}

.f86-home-field {
  display: grid;
  gap: 7px;
  color: #536174;
  font-size: 12px;
  font-weight: 800;
}

.f86-home-field input,
.f86-home-field textarea,
.f86-home-guests input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe5ed;
  border-radius: 13px;
  outline: 0;
  background: #f8fafc;
  color: #142033;
  font: inherit;
  font-size: 14px;
}

.f86-home-field input,
.f86-home-guests input {
  padding: 0 12px;
}

.f86-home-field textarea {
  min-height: 92px;
  padding: 12px;
  resize: vertical;
}

.f86-home-field input:focus,
.f86-home-field textarea:focus,
.f86-home-guests input:focus {
  border-color: var(--gz-brand, #005ffb);
  box-shadow: 0 0 0 3px rgba(0, 95, 251, 0.09);
}

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

.f86-home-guests {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px 108px;
  align-items: end;
  gap: 10px;
  margin: 14px 0;
  padding: 14px;
  border-radius: 15px;
  background: #f2f5f9;
}

.f86-home-guests > div strong,
.f86-home-guests > div span {
  display: block;
}

.f86-home-guests > div strong {
  color: #142033;
  font-size: 14px;
}

.f86-home-guests > div span {
  margin-top: 3px;
  color: #758196;
  font-size: 11px;
}

.f86-home-guests label {
  display: grid;
  gap: 5px;
  color: #536174;
  font-size: 11px;
  font-weight: 800;
}

.f86-home-booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(0, 95, 251, 0.08);
  color: #536174;
  font-size: 13px;
}

.f86-home-booking-summary strong {
  color: var(--gz-brand, #005ffb);
  font-size: 17px;
}

.f86-home-booking-terms {
  margin: 13px 0;
  color: #79869a;
  font-size: 11px;
  line-height: 1.5;
}

.f86-home-modal-submit {
  width: 100%;
  margin-top: 15px;
  padding: 0 18px;
}

.f86-home-modal-submit.loading {
  opacity: 0.68;
  cursor: progress;
}

@media (max-width: 600px) {
  .f86-home-detail-shell {
    box-shadow: none;
  }

  .f86-home-hero {
    height: 300px;
  }

  .f86-home-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .f86-home-slider-arrow.previous {
    left: 10px;
  }

  .f86-home-slider-arrow.next {
    right: 10px;
  }

  .f86-home-sheet {
    padding-right: 18px;
    padding-left: 18px;
  }

  .f86-home-modal {
    padding: 0;
  }

  .f86-home-modal-sheet {
    max-height: min(88vh, 760px);
    border-radius: 26px 26px 0 0;
  }

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

  .f86-home-guests > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 390px) {
  .f86-home-sheet {
    padding-right: 16px;
    padding-left: 16px;
  }

  .f86-home-heading {
    gap: 10px;
  }

  .f86-home-title-line h1 {
    font-size: 22px;
  }

  .f86-home-feature,
  .f86-home-facility-card {
    gap: 7px;
    padding: 9px;
  }

  .f86-home-bottom-bar {
    gap: 12px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .f86-home-bottom-bar > button {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
  }

  .f86-home-price strong {
    font-size: 20px;
  }

  .f86-home-date-grid {
    grid-template-columns: 1fr;
  }

  .f86-home-modal-sheet {
    padding-right: 16px;
    padding-left: 16px;
  }

  .f86-home-rating-stars {
    gap: 4px;
  }

  .f86-home-rating-stars label > span[aria-hidden] {
    width: 39px;
    height: 39px;
  }
}

/* f86 Driver and Traveler Announcement Details */
.f86-trip-detail-body {
  min-width: 0;
  padding-bottom: 116px;
  background: var(--gz-bg);
  color: var(--gz-ink);
}

.f86-trip-detail-page {
  min-height: calc(100vh - 116px);
}

.f86-trip-detail-shell {
  width: min(760px, 100%);
  margin: 0 auto;
}

.f86-trip-detail-header {
  position: sticky;
  z-index: 24;
  top: 0;
  display: grid;
  min-height: 66px;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 8px;
  background: color-mix(in srgb, var(--gz-bg) 94%, transparent);
  backdrop-filter: blur(16px);
}

.f86-trip-detail-header > h1 {
  margin: 0;
  color: var(--gz-ink);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

.f86-detail-round-button,
.f86-detail-header-spacer {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
}

.f86-detail-round-button {
  background: var(--gz-chip);
  color: var(--gz-ink);
  text-decoration: none;
}

.f86-trip-detail-header svg,
.f86-trip-detail-content svg,
.f86-detail-sticky svg,
.f86-trip-report-sheet svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.f86-trip-detail-header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.f86-detail-language {
  position: absolute;
  top: 47px;
  right: 0;
}

.f86-detail-language .language-control {
  min-width: 0;
}

.f86-detail-language .language-control > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.f86-detail-language .language-control select {
  min-width: 66px;
  height: 30px;
  padding: 3px 22px 3px 8px;
  border-color: var(--gz-line);
  border-radius: 10px;
  background: var(--gz-surface);
  color: var(--gz-ink-2);
  font-size: 11px;
}

.f86-trip-detail-content {
  display: grid;
  gap: 14px;
  padding: 10px 20px 34px;
}

.f86-trip-detail-hero {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 4px 0 2px;
}

.f86-trip-detail-hero-copy {
  min-width: 0;
  flex: 1;
}

.f86-detail-status {
  display: inline-flex;
  height: 28px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  border-radius: 9px;
  font-size: 11.5px;
  font-weight: 750;
}

.f86-detail-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.f86-detail-status.today {
  background: #ecfdf3;
  color: #16a34a;
}

.f86-detail-status.today i {
  background: #16a34a;
}

.f86-detail-status.planned {
  background: #fff5dc;
  color: #c77b08;
}

.f86-detail-status.planned i {
  background: #c77b08;
}

.f86-detail-status.cancelled {
  background: color-mix(in srgb, #dc2626 10%, var(--gz-surface));
  color: #dc2626;
}

.f86-detail-status.cancelled i {
  background: #dc2626;
}

html[data-theme="dark"] .f86-detail-status.today {
  background: #173126;
  color: #4ade80;
}

html[data-theme="dark"] .f86-detail-status.planned {
  background: #3f321b;
  color: #fbbf24;
}

.f86-trip-detail-hero h2 {
  margin: 12px 0 7px;
  color: var(--gz-ink);
  font-size: clamp(24px, 5vw, 31px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.7px;
}

.f86-trip-detail-hero h2 span {
  color: var(--gz-brand);
}

.f86-detail-schedule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--gz-ink-3);
  font-size: 12.5px;
  font-weight: 600;
}

.f86-detail-schedule > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.f86-detail-schedule svg {
  width: 15px;
  height: 15px;
}

.f86-detail-price-card {
  display: grid;
  min-width: 112px;
  gap: 2px;
  padding: 13px 15px;
  border-radius: 16px;
  background: var(--gz-surface);
  text-align: right;
}

.f86-detail-price-card strong {
  color: var(--gz-ink);
  font-size: 21px;
  line-height: 26px;
}

.f86-detail-price-card span {
  color: var(--gz-ink-3);
  font-size: 10.5px;
  font-weight: 600;
}

.f86-detail-route-card,
.f86-detail-host-card,
.f86-detail-note,
.f86-detail-booking-card,
.f86-detail-locked-card {
  border: 0;
  background: var(--gz-surface);
}

.f86-detail-route-card {
  display: grid;
  min-height: 136px;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  border-radius: 17px;
}

.f86-detail-timeline {
  display: grid;
  grid-template-rows: 12px minmax(34px, 1fr) 12px;
  justify-items: center;
  padding: 5px 0;
}

.f86-detail-timeline i,
.f86-detail-timeline b {
  width: 11px;
  height: 11px;
  border: 3px solid var(--gz-brand);
  border-radius: 50%;
  background: var(--gz-surface);
}

.f86-detail-timeline b {
  background: var(--gz-brand);
}

.f86-detail-timeline span {
  width: 2px;
  min-height: 38px;
  background: color-mix(in srgb, var(--gz-brand) 36%, var(--gz-line));
}

.f86-detail-stops {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 13px;
}

.f86-detail-stops > div:not(.f86-detail-waypoints) {
  display: grid;
  gap: 2px;
}

.f86-detail-stops small,
.f86-detail-waypoints small {
  color: var(--gz-ink-3);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.f86-detail-stops strong {
  overflow-wrap: anywhere;
  color: var(--gz-ink);
  font-size: 15px;
  line-height: 20px;
}

.f86-detail-waypoints {
  display: grid;
  gap: 3px;
  padding: 9px 11px;
  border-radius: 11px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 12px;
  line-height: 17px;
}

.f86-detail-host-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
}

.f86-detail-host-identity {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.f86-detail-host-identity img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gz-chip);
  object-fit: cover;
}

.f86-detail-host-identity > span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.f86-detail-host-identity strong,
.f86-detail-host-identity small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.f86-detail-host-identity strong {
  color: var(--gz-ink);
  font-size: 15px;
  line-height: 20px;
}

.f86-detail-host-identity small {
  color: var(--gz-ink-3);
  font-size: 11.5px;
}

.f86-detail-contact-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.f86-detail-contact-actions[hidden] {
  display: none;
}

.f86-detail-contact-actions a,
.f86-detail-contact-actions button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: color-mix(in srgb, var(--gz-brand) 11%, var(--gz-surface));
  color: var(--gz-brand);
  cursor: pointer;
}

.f86-detail-contact-actions svg {
  width: 18px;
  height: 18px;
}

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

.f86-detail-features > span {
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 15px;
  background: var(--gz-surface);
  color: var(--gz-brand);
}

.f86-detail-features strong {
  min-width: 0;
  color: var(--gz-ink-2);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 16px;
  overflow-wrap: anywhere;
}

.f86-detail-features svg {
  width: 19px;
  height: 19px;
}

.f86-detail-note {
  padding: 16px;
  border-radius: 16px;
}

.f86-detail-note h3,
.f86-detail-booking-card h3,
.f86-detail-locked-card h3 {
  margin: 0;
  color: var(--gz-ink);
  font-size: 16px;
  line-height: 22px;
}

.f86-detail-note p,
.f86-detail-booking-card p,
.f86-detail-locked-card p {
  margin: 7px 0 0;
  color: var(--gz-ink-2);
  font-size: 13px;
  line-height: 20px;
  white-space: pre-wrap;
}

.f86-detail-notice {
  display: grid;
  gap: 8px;
  padding: 13px;
  border-radius: 15px;
  background: color-mix(in srgb, var(--gz-brand) 8%, var(--gz-surface));
}

.f86-detail-notice > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gz-brand);
  font-size: 12.5px;
  font-weight: 700;
}

.f86-detail-notice > span.warning {
  color: #c77b08;
}

.f86-detail-notice svg {
  width: 18px;
  height: 18px;
}

.f86-detail-booking-card {
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--gz-brand) 22%, var(--gz-line));
  border-radius: 16px;
}

.f86-detail-locked-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 16px;
}

.f86-detail-locked-card[hidden] {
  display: none;
}

.f86-detail-lock-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: color-mix(in srgb, var(--gz-brand) 11%, var(--gz-surface));
  color: var(--gz-brand);
}

.f86-detail-locked-card p {
  font-size: 11.5px;
  line-height: 17px;
}

.f86-detail-locked-card > a {
  padding: 9px 11px;
  border-radius: 11px;
  background: var(--gz-brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.f86-detail-unavailable {
  padding: 14px;
  border-radius: 14px;
  background: color-mix(in srgb, #dc2626 9%, var(--gz-surface));
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.f86-detail-meta-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
}

.f86-detail-meta-actions > span,
.f86-detail-meta-actions > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gz-ink-3);
  font-size: 11.5px;
}

.f86-detail-meta-actions > button {
  padding: 8px;
  border: 0;
  background: transparent;
  color: #dc2626;
  cursor: pointer;
  font-weight: 700;
}

.f86-detail-meta-actions svg {
  width: 16px;
  height: 16px;
}

.f86-detail-sticky {
  position: fixed;
  z-index: 42;
  left: 50%;
  bottom: 18px;
  display: flex;
  width: min(720px, calc(100% - 40px));
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--gz-line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--gz-surface) 97%, transparent);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.f86-detail-sticky[hidden] {
  display: none;
}

.f86-detail-sticky-price {
  display: grid;
  min-width: 112px;
  gap: 1px;
}

.f86-detail-sticky-price strong {
  color: var(--gz-ink);
  font-size: 20px;
  line-height: 25px;
}

.f86-detail-sticky-price span {
  color: var(--gz-ink-3);
  font-size: 10.5px;
}

.f86-detail-sticky > button {
  display: flex;
  min-width: 0;
  height: 52px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: var(--gz-brand);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.f86-detail-sticky > button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.f86-detail-sticky > button.danger {
  background: color-mix(in srgb, #dc2626 12%, var(--gz-surface));
  color: #dc2626;
}

.f86-detail-offer-input {
  display: flex;
  width: 132px;
  height: 52px;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  border: 1px solid var(--gz-line);
  border-radius: 14px;
  background: var(--gz-bg);
  color: var(--gz-ink);
}

.f86-detail-offer-bar {
  justify-content: stretch;
}

.f86-detail-offer-input input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gz-ink);
  font-size: 20px;
  font-weight: 800;
}

.f86-detail-offer-input span {
  color: var(--gz-ink-2);
  font-weight: 750;
}

.f86-trip-report-reasons {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.f86-trip-report-reasons legend {
  margin-bottom: 8px;
  color: var(--gz-ink);
  font-size: 13px;
  font-weight: 750;
}

.f86-trip-report-reasons label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--gz-line);
  border-radius: 14px;
  background: var(--gz-surface);
  color: var(--gz-ink-2);
  cursor: pointer;
}

.f86-trip-report-reasons input {
  width: 17px;
  height: 17px;
  accent-color: var(--gz-brand);
}

@media (max-width: 760px) {
  .f86-trip-detail-body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .f86-trip-detail-body .site-footer {
    display: none;
  }

  .f86-trip-detail-page {
    min-height: 100vh;
  }

  .f86-trip-detail-header {
    padding-top: max(8px, env(safe-area-inset-top, 0px));
  }

  .f86-trip-detail-content {
    padding-bottom: 24px;
  }

  .f86-detail-sticky {
    bottom: 0;
    width: 100%;
    min-height: 86px;
    padding: 12px 20px max(12px, env(safe-area-inset-bottom, 0px));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    transform: translateX(-50%);
  }

  .f86-trip-report-overlay {
    padding: 0;
  }

  .f86-trip-report-sheet {
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 480px) {
  .f86-detail-language {
    display: none;
  }

  .f86-trip-detail-content {
    gap: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .f86-trip-detail-hero {
    align-items: flex-start;
  }

  .f86-trip-detail-hero h2 {
    font-size: 24px;
  }

  .f86-detail-price-card {
    min-width: 94px;
    padding: 11px 12px;
  }

  .f86-detail-price-card strong {
    font-size: 18px;
  }

  .f86-detail-features {
    gap: 7px;
  }

  .f86-detail-features > span {
    min-height: 76px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
    padding: 10px;
  }

  .f86-detail-locked-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .f86-detail-locked-card > a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .f86-detail-offer-input {
    width: 108px;
  }

  .f86-detail-sticky {
    gap: 10px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .f86-detail-sticky > button {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }
}

.gz-main-transport {
  max-width: 760px;
  padding: 12px 18px 16px;
}

.gz-main-transport-toggle {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--gz-ink);
  text-align: left;
  cursor: pointer;
}

.gz-main-transport-toggle > span:nth-child(2) {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 2px;
}

.gz-main-transport-toggle strong {
  font-size: 15px;
}

.gz-main-transport-toggle small {
  color: var(--gz-ink-2);
  font-size: 12.5px;
}

.gz-main-transport-toggle .transport-icon-shell {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
}

.transport-icon-shell .gz-feature-icon {
  width: 20px;
  height: 20px;
  background: transparent;
  color: var(--gz-amber);
}

.transport-icon-shell .gz-feature-icon::before {
  width: 18px;
  height: 18px;
}

.gz-toggle-chevron {
  color: var(--gz-ink-3);
  font-size: 25px;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.gz-main-transport-toggle[aria-expanded="false"] .gz-toggle-chevron {
  transform: rotate(0);
}

.gz-transport-form {
  width: min(720px, 100%);
  margin: 0 auto;
  border-top-color: var(--gz-amber);
}

.gz-transport-form.embedded {
  width: 100%;
  padding: 8px 2px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.gz-passenger-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--gz-amber) 28%, var(--gz-line));
  border-radius: 15px;
  background: color-mix(in srgb, var(--gz-amber) 11%, var(--gz-surface));
}

.gz-notice-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--gz-surface);
  color: var(--gz-amber);
  font-weight: 850;
}

.gz-passenger-notice strong {
  display: block;
  color: var(--gz-ink);
  font-size: 13px;
}

.gz-passenger-notice p {
  margin: 3px 0 0;
  color: var(--gz-ink-2);
  font-size: 12px;
  line-height: 1.5;
}

.gz-transport-location-group {
  position: relative;
  display: grid;
  border: 1px solid var(--gz-line);
  border-radius: 16px;
  background: var(--gz-surface);
}

.gz-place-field {
  position: relative;
  display: grid;
  gap: 2px;
  padding: 9px 48px 9px 15px;
}

.gz-place-field + .gz-place-field {
  border-top: 1px solid var(--gz-line);
}

.gz-place-field > span {
  color: var(--gz-ink-3);
  font-size: 10px;
  font-weight: 700;
}

.gz-place-field > input[type="text"],
.gz-place-field > input:not([type]) {
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gz-ink);
  font: inherit;
  font-size: 14px;
}

.gz-swap-places {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--gz-line);
  border-radius: 11px;
  background: color-mix(in srgb, var(--gz-amber) 12%, var(--gz-surface));
  color: var(--gz-amber);
  font-size: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}

.gz-place-results {
  position: absolute;
  z-index: 15;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--gz-line);
  border-radius: 14px;
  background: var(--gz-surface);
  box-shadow: 0 14px 34px rgba(20, 22, 40, 0.15);
}

.gz-place-results button {
  display: grid;
  width: 100%;
  gap: 2px;
  padding: 11px 13px;
  border: 0;
  border-bottom: 1px solid var(--gz-line);
  background: transparent;
  color: var(--gz-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.gz-place-results button:last-child {
  border-bottom: 0;
}

.gz-place-results button:hover {
  background: var(--gz-chip);
}

.gz-place-results strong {
  font-size: 13px;
}

.gz-place-results small,
.gz-place-loading {
  color: var(--gz-ink-3);
  font-size: 11px;
}

.gz-place-loading {
  display: block;
  padding: 12px;
}

.gz-transport-date-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.gz-transport-date-row .gz-field {
  margin: 0;
  padding: 9px 11px;
  border-radius: 14px;
  background: var(--gz-chip);
}

.gz-transport-date-row .gz-field input {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.gz-passenger-counter {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 8px 10px 8px 14px;
  border-radius: 14px;
  background: var(--gz-chip);
  color: var(--gz-ink);
  font-size: 13px;
  font-weight: 700;
}

.gz-passenger-counter > div {
  display: flex;
  align-items: center;
}

.gz-passenger-counter button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--gz-line);
  border-radius: 50%;
  background: var(--gz-surface);
  color: var(--gz-brand);
  font-size: 20px;
  cursor: pointer;
}

.gz-passenger-counter output {
  width: 34px;
  text-align: center;
}

.gz-choice-section {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}

.gz-choice-section legend {
  margin-bottom: 7px;
  color: var(--gz-ink);
  font-size: 12px;
  font-weight: 750;
}

.gz-choice-grid,
.gz-segmented-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.gz-choice-grid label,
.gz-segmented-control label {
  cursor: pointer;
}

.gz-choice-grid input,
.gz-segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gz-choice-grid label > span {
  display: grid;
  min-height: 58px;
  align-content: center;
  gap: 2px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--gz-chip);
}

.gz-choice-grid input:checked + span {
  border-color: var(--gz-amber);
  background: color-mix(in srgb, var(--gz-amber) 11%, var(--gz-surface));
}

.gz-choice-grid strong {
  color: var(--gz-ink);
  font-size: 13px;
}

.gz-choice-grid small {
  color: var(--gz-ink-3);
  font-size: 10px;
}

.gz-segmented-control {
  padding: 4px;
  border-radius: 14px;
  background: var(--gz-chip);
}

.gz-segmented-control label > span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--gz-ink-2);
  font-size: 12px;
  font-weight: 700;
}

.gz-segmented-control input:checked + span {
  border-color: var(--gz-line);
  background: var(--gz-surface);
  color: var(--gz-ink);
}

.gz-mode-copy,
.gz-transport-note {
  margin: 6px 0 0;
  color: var(--gz-ink-3);
  font-size: 11px;
  line-height: 1.5;
}

.gz-route-summary {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid var(--gz-line);
  border-radius: 12px;
  background: var(--gz-surface);
  color: var(--gz-ink-2);
  font-size: 12px;
}

.gz-route-summary.loading {
  opacity: 0.7;
}

.gz-transport-submit {
  width: 100%;
  margin-top: 12px;
}

.transport-meta button {
  margin-left: auto;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--gz-brand);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.gz-order-card {
  position: relative;
}

.gz-order-card.cancelled {
  opacity: 0.65;
}

.gz-order-card-top,
.gz-order-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gz-transport-badge,
.gz-order-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--gz-amber);
  font-size: 11px;
  font-weight: 800;
}

.gz-transport-badge {
  padding: 4px 8px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--gz-amber) 13%, var(--gz-surface));
}

.gz-transport-badge .gz-order-icon {
  width: 16px;
  height: 16px;
  background: transparent;
  color: var(--gz-amber);
}

.gz-transport-badge .gz-order-icon::before {
  width: 13px;
  height: 13px;
}

.gz-order-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.gz-order-status.success {
  color: #16a34a;
}

.gz-order-status.danger {
  color: #e0524f;
}

.gz-order-card > h3 {
  margin: 8px 0 0;
  color: var(--gz-ink);
  font-size: 17px;
  line-height: 1.35;
}

.gz-order-date {
  margin: 3px 0 0;
  color: var(--gz-ink-3);
  font-size: 12px;
}

.gz-order-detail-row {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid var(--gz-line);
  color: var(--gz-amber);
  font-size: 12px;
  font-weight: 700;
}

.gz-order-detail-row strong {
  color: var(--gz-ink);
}

.gz-offer-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--gz-surface);
  border-radius: 12px;
  background: #e0524f;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
}

.gz-assigned-driver {
  display: grid;
  gap: 3px;
  margin-top: 11px;
  padding: 12px;
  border-radius: 13px;
  background: var(--gz-chip);
}

.gz-assigned-driver small,
.gz-assigned-driver p {
  color: var(--gz-ink-3);
  font-size: 11px;
}

.gz-assigned-driver span {
  color: var(--gz-brand);
  font-size: 12px;
  font-weight: 700;
}

.gz-assigned-driver p {
  margin: 2px 0 0;
}

.gz-secondary-button.call {
  text-decoration: none;
}

.gz-order-error {
  color: #e0524f;
  font-size: 11px;
}

.gz-order-card .gz-action-row {
  margin-top: 10px;
}

.gz-order-card .gz-secondary-button.offers {
  border-color: color-mix(in srgb, var(--gz-amber) 28%, var(--gz-line));
  background: color-mix(in srgb, var(--gz-amber) 10%, var(--gz-surface));
  color: var(--gz-amber);
}

@media (max-width: 760px) {
  .gz-main-transport {
    padding: 6px 12px 12px;
  }

  .gz-passenger-notice {
    padding: 9px;
  }

  .gz-passenger-notice p {
    font-size: 11px;
  }

  .gz-transport-form:not(.embedded) {
    padding: 16px;
  }

  .gz-place-field {
    padding-left: 11px;
  }

  .gz-product-body .gz-order-card {
    padding: 13px;
  }

  .gz-order-card-top {
    align-items: flex-start;
  }

  .gz-order-card > h3 {
    font-size: 15px;
  }
}

/* f86 Social */
.social-service-button {
  position: relative;
}

.service-new-badge {
  position: absolute;
  z-index: 2;
  top: -3px;
  right: 2px;
  min-width: 32px;
  height: 16px;
  padding: 2px 5px;
  border: 2px solid var(--gz-surface);
  border-radius: 8px;
  background: #f26430;
  color: #fff;
  font-size: 8px;
  font-weight: 850;
  line-height: 8px;
  text-align: center;
}

.social-service-button.active {
  border-color: var(--gz-brand);
  background: var(--gz-brand);
  color: #fff;
}

.account-screen.social-product-screen {
  background: var(--gz-bg);
}

.account-screen.social-product-screen .workspace-section {
  width: min(720px, 100%);
  max-width: 720px;
  margin-bottom: 0;
  padding: 0 0 100px;
}

.social-product-screen .workspace-header {
  display: none;
}

.workspace-grid:has(.social-screen),
.workspace-grid:has(.social-detail-shell) {
  display: block;
}

.social-screen {
  min-height: calc(100vh - 68px);
  color: var(--gz-ink);
}

.social-sticky-header {
  position: sticky;
  z-index: 12;
  top: 0;
  padding: 8px 0 10px;
  background: color-mix(in srgb, var(--gz-bg) 94%, transparent);
  backdrop-filter: blur(16px);
}

.social-title-row,
.social-title-actions,
.social-post-header,
.social-post-identity,
.social-post-actions,
.social-detail-profile-row,
.social-detail-actions,
.social-comment-head {
  display: flex;
  align-items: center;
}

.social-title-row {
  min-height: 52px;
  gap: 10px;
  padding: 0 20px;
}

.social-title-row h2 {
  min-width: 0;
  flex: 1;
  margin: 0;
  color: var(--gz-ink);
  font-size: 30px;
  font-weight: 850;
  line-height: 38px;
  letter-spacing: -0.7px;
}

.social-title-actions {
  gap: 7px;
}

.social-round-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 20px;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
}

.social-round-button svg,
.social-action-button svg,
.social-detail-back svg,
.social-comment-form button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-filter-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 7px 20px 2px;
  scrollbar-width: none;
}

.social-filter-row::-webkit-scrollbar {
  display: none;
}

.social-filter-chip {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 13px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 12.5px;
  font-weight: 650;
  cursor: pointer;
}

.social-filter-chip.active {
  border-color: var(--gz-brand);
  background: var(--gz-brand);
  color: #fff;
  font-weight: 800;
}

.social-filter-chip:disabled {
  cursor: wait;
}

.social-feed {
  padding: 4px 14px 36px;
}

.social-composer-entry {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  padding: 13px 15px;
  border: 0;
  border-radius: 20px;
  background: var(--gz-surface);
  color: var(--gz-ink-3);
  box-shadow: var(--gz-shadow);
  cursor: pointer;
  text-align: left;
}

.social-composer-entry > img,
.social-comment-form > img {
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gz-chip);
  object-fit: cover;
}

.social-composer-entry > span {
  min-width: 0;
  flex: 1;
  font-size: 14.5px;
  line-height: 20px;
}

.social-composer-entry > i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--gz-brand);
  color: #fff;
}

.social-composer-entry > i svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

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

.social-post-card {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 0;
  border-radius: 20px;
  background: var(--gz-surface);
  box-shadow: var(--gz-shadow);
}

.social-avatar-button {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.social-post-avatar {
  display: block;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--social-tag);
  border-radius: 50%;
  background: var(--gz-chip);
  object-fit: cover;
}

.social-post-content {
  min-width: 0;
  flex: 1;
}

.social-post-header {
  min-height: 25px;
  gap: 7px;
}

.social-post-identity {
  min-width: 0;
  flex: 1;
  gap: 5px;
  overflow: hidden;
  white-space: nowrap;
}

.social-post-identity strong,
.social-post-identity span,
.social-post-identity time {
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-post-identity strong {
  max-width: 48%;
  flex-shrink: 1;
  color: var(--gz-ink);
  font-size: 14.5px;
  font-weight: 800;
}

.social-post-identity span {
  max-width: 30%;
  color: var(--gz-ink-3);
  font-size: 12.5px;
}

.social-post-identity time {
  flex-shrink: 0;
  color: var(--gz-ink-3);
  font-size: 12.5px;
}

.social-category-tag {
  display: inline-flex;
  max-width: 96px;
  min-height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px 8px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--social-tag) 10%, transparent);
  color: var(--social-tag);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-post-body {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gz-ink);
  cursor: pointer;
  text-align: left;
}

.social-post-title,
.social-post-copy {
  display: block;
}

.social-post-title {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 21px;
}

.social-post-copy {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 3px;
  font-size: 14.5px;
  line-height: 21px;
  white-space: pre-wrap;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.social-photo-grid {
  display: grid;
  width: 100%;
  gap: 4px;
  overflow: hidden;
  margin-top: 11px;
  border-radius: 16px;
}

.social-photo-grid.count-1 {
  height: 240px;
  grid-template-columns: 1fr;
}

.social-photo-grid.count-2 {
  height: 170px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-photo-grid.count-3 {
  height: 190px;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.social-photo-grid.count-3 .social-photo-cell:first-child {
  grid-row: 1 / 3;
}

.social-photo-cell {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: var(--gz-chip);
}

.social-photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-photo-cell i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.56);
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}

.social-post-actions {
  gap: 22px;
  margin-top: 6px;
}

.social-action-button {
  display: inline-flex;
  min-width: 34px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 2px;
  border: 0;
  background: transparent;
  color: var(--gz-ink-3);
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
}

.social-action-button.active {
  color: var(--gz-red);
}

.social-action-button svg.filled {
  fill: currentColor;
}

.social-load-more {
  display: grid;
  min-width: 120px;
  min-height: 42px;
  margin: 18px auto 0;
  padding: 8px 16px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: var(--gz-chip);
  color: var(--gz-brand);
  cursor: pointer;
  font-weight: 750;
}

.social-empty-card {
  display: grid;
  justify-items: center;
  margin-top: 26px;
  padding: 30px 28px;
  border-radius: 20px;
  background: var(--gz-surface);
  text-align: center;
}

.social-empty-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: #e9f1ff;
  color: var(--gz-brand);
}

.social-empty-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-empty-card strong {
  margin-top: 13px;
  font-size: 17px;
}

.social-empty-card p {
  max-width: 310px;
  margin: 5px 0 0;
  color: var(--gz-ink-2);
  font-size: 13.5px;
  line-height: 20px;
}

.social-empty-card button {
  min-height: 42px;
  margin-top: 16px;
  padding: 9px 18px;
  border: 0;
  border-radius: 13px;
  background: var(--gz-brand);
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}

.social-skeleton-card {
  min-height: 265px;
}

.social-skeleton-avatar,
.social-skeleton-content i {
  display: block;
  background: var(--gz-chip);
}

.social-skeleton-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
}

.social-skeleton-content {
  display: block;
  min-width: 0;
  flex: 1;
}

.social-skeleton-content i {
  height: 11px;
  margin-top: 7px;
  border-radius: 6px;
  animation: social-shimmer 1.25s ease-in-out infinite alternate;
}

.social-skeleton-content .social-skeleton-name {
  width: 42%;
  height: 13px;
  margin-top: 0;
}

.social-skeleton-content .social-skeleton-line {
  width: 92%;
  margin-top: 11px;
}

.social-skeleton-content .social-skeleton-line.short {
  width: 64%;
}

.social-skeleton-content .social-skeleton-media {
  width: 100%;
  height: 170px;
  margin-top: 12px;
  border-radius: 14px;
}

@keyframes social-shimmer {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

.social-detail-shell {
  display: grid;
  gap: 12px;
  padding: 18px 14px 80px;
}

.social-detail-back {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  gap: 4px;
  padding: 7px 11px 7px 6px;
  border: 0;
  border-radius: 12px;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
  font-weight: 750;
}

.social-detail-card {
  padding: 18px;
  border: 0;
  border-radius: 20px;
}

.social-detail-profile-row {
  justify-content: space-between;
  gap: 12px;
}

.social-detail-profile-row .profile-head {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.social-detail-actions {
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--gz-line);
}

.social-detail-comment-count {
  color: var(--gz-ink-3);
  font-size: 12.5px;
  font-weight: 700;
}

.social-detail-like-group {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.social-like-count-button {
  min-height: 32px;
  padding: 2px 4px;
  border: 0;
  background: transparent;
  color: var(--gz-ink-3);
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
}

.social-comments {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--gz-line);
}

.social-comments > h3 {
  font-size: 17px;
}

.social-comment-form {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 8px;
  border-radius: 16px;
  background: var(--gz-chip);
}

.social-comment-form input {
  min-width: 0;
  min-height: 38px;
  flex: 1;
  padding: 8px 10px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gz-ink);
}

.social-comment-form button {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: var(--gz-brand);
  color: #fff;
  cursor: pointer;
}

.social-comment-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.social-comment {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px;
  border-radius: 14px;
  background: var(--gz-chip);
}

.social-comment > div {
  min-width: 0;
  flex: 1;
}

.social-comment-head {
  gap: 7px;
}

.social-comment-head time {
  color: var(--gz-ink-3);
  font-size: 11px;
}

.social-comment p {
  margin: 3px 0 0;
  color: var(--gz-ink-2);
  font-size: 13.5px;
  line-height: 19px;
}

.social-comment-delete {
  width: 26px;
  height: 26px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gz-ink-3);
  cursor: pointer;
  font-size: 20px;
}

.gz-social-composer {
  width: min(680px, 100%);
  margin: 0 auto;
}

.gz-social-text-wrap {
  position: relative;
}

.gz-social-text-wrap textarea {
  min-height: 170px;
  padding-bottom: 38px;
  resize: vertical;
}

.gz-social-text-wrap output {
  position: absolute;
  right: 13px;
  bottom: 12px;
  color: var(--gz-ink-3);
  font-size: 11px;
  font-weight: 700;
}

.gz-social-category-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 2px 0;
  scrollbar-width: none;
}

.gz-social-category-row::-webkit-scrollbar {
  display: none;
}

.gz-social-category-row label {
  flex: 0 0 auto;
  cursor: pointer;
}

.gz-social-category-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gz-social-category-row span {
  display: block;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 17px;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  font-size: 12px;
  font-weight: 700;
}

.gz-social-category-row input:checked + span {
  border-color: var(--social-category);
  background: color-mix(in srgb, var(--social-category) 10%, var(--gz-surface));
  color: var(--social-category);
}

.gz-social-category-description {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: 13px;
  background: color-mix(in srgb, var(--social-category) 10%, var(--gz-surface));
}

.gz-social-category-description > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--social-category);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.gz-social-category-description p {
  margin: 0;
  color: var(--gz-ink-2);
  font-size: 12.5px;
  line-height: 18px;
}

.gz-social-photo-control {
  display: flex;
  min-height: 62px;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  padding: 12px 14px;
  border: 1px dashed color-mix(in srgb, var(--gz-brand) 38%, var(--gz-line));
  border-radius: 14px;
  background: color-mix(in srgb, var(--gz-brand) 5%, var(--gz-surface));
  cursor: pointer;
}

.gz-social-photo-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.gz-social-photo-control span {
  color: var(--gz-brand);
  font-weight: 800;
}

.gz-social-photo-control small {
  flex-basis: 100%;
  color: var(--gz-ink-3);
}

.gz-social-photo-preview {
  display: grid;
  height: 130px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.gz-social-photo-preview[hidden] {
  display: none;
}

.gz-social-photo-preview img {
  width: 100%;
  height: 130px;
  border-radius: 12px;
  object-fit: cover;
}

.gz-social-publish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 760px) {
  .service-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-strip .social-service-button {
    display: none;
  }

  .service-button {
    padding-right: 1px;
    padding-left: 1px;
  }

  .service-new-badge {
    top: -6px;
    right: -2px;
  }

  .account-screen.social-product-screen .workspace-section {
    width: 100%;
    padding: 0 0 calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .social-screen {
    min-height: 100vh;
  }

  .social-sticky-header {
    padding-top: max(4px, env(safe-area-inset-top, 0px));
  }

  .social-title-row {
    padding: 0 20px;
  }

  .social-feed {
    padding-right: 14px;
    padding-left: 14px;
  }

  .social-photo-grid.count-1 {
    height: 200px;
  }

  .social-detail-shell {
    padding-top: 12px;
  }

  .social-detail-card {
    padding: 15px;
  }

  .gz-social-composer {
    padding: 16px;
    border-radius: 22px;
  }

  .gz-social-metadata {
    grid-template-columns: 1fr;
  }

  .gz-social-photo-preview {
    height: 94px;
  }

  .gz-social-photo-preview img {
    height: 94px;
  }
}

.social-detail-tools {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.social-detail-tools > button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gz-chip);
  color: var(--gz-ink-2);
  cursor: pointer;
}

.social-detail-tools > button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-reply-button {
  margin-top: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gz-brand);
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 750;
}

.social-reply-block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 9px;
  padding: 9px;
  border-left: 2px solid var(--gz-brand);
  border-radius: 0 10px 10px 0;
  background: var(--gz-surface);
}

.social-reply-block > div {
  min-width: 0;
  flex: 1;
}

.social-reply-block strong {
  font-size: 12px;
}

.social-reply-block p {
  margin-top: 2px;
  font-size: 12.5px;
}

.social-reply-form {
  display: flex;
  gap: 7px;
  margin-top: 8px;
}

.social-reply-form input {
  min-width: 0;
  min-height: 36px;
  flex: 1;
  padding: 7px 10px;
  border: 1px solid var(--gz-line);
  border-radius: 11px;
  background: var(--gz-surface);
  color: var(--gz-ink);
}

.social-reply-form button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 11px;
  background: var(--gz-brand);
  color: #fff;
  cursor: pointer;
}

.social-reply-form button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.social-report-overlay {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 15, 28, 0.48);
}

.social-report-overlay[hidden] {
  display: none;
}

.social-report-sheet {
  display: grid;
  width: min(520px, 100%);
  gap: 14px;
  padding: 9px 18px max(24px, env(safe-area-inset-bottom, 0px));
  border-radius: 28px 28px 20px 20px;
  background: var(--gz-surface);
  box-shadow: 0 -18px 50px rgba(8, 15, 28, 0.2);
}

.social-report-handle {
  width: 42px;
  height: 4px;
  justify-self: center;
  border-radius: 2px;
  background: var(--gz-line);
}

.social-report-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-report-header > div {
  min-width: 0;
  flex: 1;
}

.social-report-header strong {
  font-size: 18px;
}

.social-report-header p {
  margin: 2px 0 0;
  color: var(--gz-ink-3);
  font-size: 11.5px;
}

.social-report-header > button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
  font-size: 22px;
}

.social-report-reasons {
  display: grid;
  gap: 8px;
}

.social-report-reasons label {
  cursor: pointer;
}

.social-report-reasons input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.social-report-reasons span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 11px 13px;
  border: 1.5px solid var(--gz-line);
  border-radius: 14px;
  color: var(--gz-ink-2);
  font-size: 13px;
  font-weight: 650;
}

.social-report-reasons input:checked + span {
  border-color: #e0524f;
  background: color-mix(in srgb, #e0524f 7%, var(--gz-surface));
  color: var(--gz-ink);
}

.social-report-submit {
  min-height: 49px;
  border: 0;
  border-radius: 14px;
  background: #e0524f;
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}

@media (max-width: 760px) {
  .social-report-overlay {
    padding: 0;
  }

  .social-report-sheet {
    border-radius: 28px 28px 0 0;
  }
}

.social-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.social-profile-stats span {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 12px;
  background: var(--gz-chip);
}

.social-profile-stats strong {
  color: var(--gz-ink);
  font-size: 16px;
}

.social-profile-stats small {
  overflow: hidden;
  color: var(--gz-ink-3);
  font-size: 10.5px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-follow-button {
  width: auto;
  margin: 0;
}

.social-follow-button.following {
  border: 1px solid color-mix(in srgb, var(--gz-brand) 35%, var(--gz-line));
  background: color-mix(in srgb, var(--gz-brand) 8%, var(--gz-surface));
  color: var(--gz-brand);
}

.social-profile-post {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--gz-ink);
  cursor: pointer;
  text-align: left;
}

.social-likes-overlay {
  position: fixed;
  z-index: 91;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 15, 28, 0.48);
}

.social-likes-sheet {
  display: grid;
  width: min(480px, 100%);
  max-height: min(620px, 82vh);
  gap: 13px;
  padding: 9px 18px max(24px, env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  border-radius: 28px 28px 20px 20px;
  background: var(--gz-surface);
}

.social-likes-header {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
}

.social-likes-header strong {
  min-width: 0;
  flex: 1;
  font-size: 18px;
}

.social-likes-header button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
  font-size: 22px;
}

.social-likes-list {
  display: grid;
  gap: 7px;
  min-height: 80px;
  overflow-y: auto;
}

.social-likes-list > button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 11px;
  padding: 9px;
  border: 0;
  border-radius: 13px;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
  text-align: left;
}

.social-likes-list > button > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.social-likes-list small {
  color: var(--gz-ink-3);
}

@media (max-width: 760px) {
  .social-likes-overlay {
    padding: 0;
  }

  .social-likes-sheet {
    border-radius: 28px 28px 0 0;
  }
}

/* f86 Profile Preview */
.account-screen.profile-preview-screen {
  background: var(--gz-bg);
}

.account-screen.profile-preview-screen .workspace-section {
  width: min(720px, 100%);
  max-width: 720px;
  margin-bottom: 0;
  padding: 0 0 132px;
}

.profile-preview-screen .workspace-header {
  display: none;
}

.workspace-grid:has(.profile-preview-page) {
  display: block;
}

.profile-preview-page {
  min-height: calc(100vh - 68px);
  color: var(--gz-ink);
}

.profile-preview-header {
  position: sticky;
  z-index: 18;
  top: 0;
  display: grid;
  min-height: 58px;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--gz-bg) 94%, transparent);
  backdrop-filter: blur(16px);
}

.profile-preview-header h2 {
  margin: 0;
  color: var(--gz-ink);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
}

.profile-preview-round-button,
.profile-preview-header-spacer {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
}

.profile-preview-round-button {
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
}

.profile-preview-round-button.danger {
  color: #dc2626;
}

.profile-preview-round-button svg,
.profile-preview-bottom-bar svg,
.profile-report-sheet svg,
.profile-preview-posts-heading svg,
.profile-preview-empty svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-preview-content {
  padding: 8px 20px 24px;
}

.profile-preview-identity-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border-radius: 20px;
  background: var(--gz-surface);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.07);
}

.profile-preview-avatar {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  border: 3px solid color-mix(in srgb, var(--gz-brand) 12%, var(--gz-surface));
  border-radius: 50%;
  background: var(--gz-chip);
  object-fit: cover;
}

.profile-preview-identity-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.profile-preview-identity-copy h3,
.profile-preview-about h3,
.profile-preview-posts-heading h3 {
  margin: 0;
  color: var(--gz-ink);
}

.profile-preview-identity-copy h3 {
  font-size: 20px;
  font-weight: 850;
  line-height: 26px;
  letter-spacing: -0.3px;
}

.profile-preview-identity-copy p {
  margin: 0;
  color: var(--gz-ink-2);
  font-size: 12.5px;
  line-height: 17px;
}

.profile-preview-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gz-ink);
  font-size: 12px;
}

.profile-preview-rating .trip-card-icon {
  width: 14px;
  height: 14px;
  color: #f5a623;
}

.profile-preview-rating .trip-card-icon-fill {
  fill: currentColor;
}

.profile-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-top: 16px;
}

.profile-preview-stats > span {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 2px;
  padding: 14px 6px;
  border-radius: 16px;
  background: var(--gz-surface);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.profile-preview-stats strong {
  color: var(--gz-ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 26px;
}

.profile-preview-stats small {
  overflow: hidden;
  color: var(--gz-ink-3);
  font-size: 11px;
  font-weight: 650;
  line-height: 15px;
  text-align: center;
  text-overflow: ellipsis;
}

.profile-preview-member-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--gz-surface);
  color: var(--gz-ink-2);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 18px;
}

.profile-preview-member-card .trip-card-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--gz-brand);
}

.profile-preview-about {
  margin-top: 22px;
}

.profile-preview-about h3,
.profile-preview-posts-heading h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.profile-preview-about p {
  margin: 8px 0 0;
  padding: 15px;
  border-radius: 16px;
  background: var(--gz-surface);
  color: var(--gz-ink-2);
  font-size: 14px;
  line-height: 22px;
  white-space: pre-wrap;
}

.profile-preview-posts {
  margin-top: 24px;
}

.profile-preview-posts-heading,
.profile-preview-posts-heading > span {
  display: flex;
  align-items: center;
}

.profile-preview-posts-heading {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.profile-preview-posts-heading > span {
  min-width: 0;
  gap: 8px;
  color: var(--gz-brand);
}

.profile-preview-posts-heading > strong {
  display: grid;
  min-width: 28px;
  height: 26px;
  place-items: center;
  padding: 0 8px;
  border-radius: 9px;
  background: color-mix(in srgb, var(--gz-brand) 12%, var(--gz-surface));
  color: var(--gz-brand);
  font-size: 11.5px;
}

.profile-preview-post-list {
  display: grid;
  gap: 12px;
}

.profile-preview-post-list .social-post-card {
  margin: 0;
}

.profile-preview-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  background: var(--gz-surface);
  color: var(--gz-ink-3);
}

.profile-preview-empty p {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.profile-preview-bottom-bar {
  position: fixed;
  z-index: 36;
  left: 50%;
  bottom: 18px;
  display: flex;
  width: min(680px, calc(100% - 40px));
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--gz-line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--gz-surface) 96%, transparent);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.16);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.profile-preview-follow,
.profile-preview-message,
.profile-preview-call {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.profile-preview-follow,
.profile-preview-message {
  min-width: 0;
  flex: 1;
  cursor: pointer;
}

.profile-preview-follow {
  border: 1px solid var(--gz-brand);
  background: var(--gz-brand);
  color: #fff;
}

.profile-preview-follow.following {
  background: color-mix(in srgb, var(--gz-brand) 12%, var(--gz-surface));
  color: var(--gz-brand);
}

.profile-preview-message {
  border: 1px solid var(--gz-brand);
  background: var(--gz-surface);
  color: var(--gz-brand);
}

.profile-preview-call {
  width: 52px;
  flex: 0 0 auto;
  background: color-mix(in srgb, var(--gz-brand) 12%, var(--gz-surface));
  color: var(--gz-brand);
}

.profile-report-overlay {
  position: fixed;
  z-index: 92;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 15, 28, 0.48);
}

.profile-report-overlay[hidden] {
  display: none;
}

.profile-report-sheet {
  display: grid;
  width: min(520px, 100%);
  max-height: min(760px, 92vh);
  gap: 16px;
  padding: 9px 20px max(24px, env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  border-radius: 28px 28px 20px 20px;
  background: var(--gz-surface);
  color: var(--gz-ink);
}

.profile-report-handle {
  width: 42px;
  height: 4px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--gz-line);
}

.profile-report-sheet header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 11px;
}

.profile-report-icon,
.profile-report-sheet header > button,
.profile-report-block > span:first-child {
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.profile-report-icon {
  width: 42px;
  height: 42px;
  background: color-mix(in srgb, #dc2626 10%, var(--gz-surface));
  color: #dc2626;
}

.profile-report-sheet header h3,
.profile-report-sheet header p {
  margin: 0;
}

.profile-report-sheet header h3 {
  font-size: 17px;
  line-height: 22px;
}

.profile-report-sheet header p {
  margin-top: 2px;
  color: var(--gz-ink-3);
  font-size: 12px;
  line-height: 17px;
}

.profile-report-sheet header > button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: var(--gz-chip);
  color: var(--gz-ink);
  cursor: pointer;
}

.profile-report-block {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--gz-line);
  border-radius: 16px;
  background: var(--gz-surface);
  color: var(--gz-ink);
  cursor: pointer;
  text-align: left;
}

.profile-report-block > span:first-child {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, #dc2626 10%, var(--gz-surface));
  color: #dc2626;
}

.profile-report-block > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.profile-report-block small {
  color: var(--gz-ink-3);
  font-size: 11.5px;
  line-height: 16px;
}

.profile-report-block > svg {
  width: 19px;
  height: 19px;
  color: var(--gz-ink-3);
}

.profile-report-sheet label {
  display: grid;
  gap: 8px;
  color: var(--gz-ink);
  font-size: 13px;
  font-weight: 700;
}

.profile-report-sheet textarea {
  min-height: 132px;
  resize: vertical;
  padding: 13px;
  border: 1px solid var(--gz-line);
  border-radius: 15px;
  background: var(--gz-bg);
  color: var(--gz-ink);
  font: inherit;
  line-height: 20px;
}

.profile-report-privacy {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--gz-brand) 8%, var(--gz-surface));
  color: var(--gz-ink-2);
  font-size: 12px;
  line-height: 18px;
}

.profile-report-privacy svg {
  flex: 0 0 auto;
  color: var(--gz-brand);
}

.profile-report-submit {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  background: var(--gz-brand);
  color: #fff;
  cursor: pointer;
  font-weight: 750;
}

@media (max-width: 760px) {
  .account-screen.profile-preview-screen .workspace-section {
    width: 100%;
    padding: 0 0 calc(176px + env(safe-area-inset-bottom, 0px));
  }

  .profile-preview-page {
    min-height: 100vh;
  }

  .profile-preview-header {
    padding-top: max(8px, env(safe-area-inset-top, 0px));
  }

  .profile-preview-bottom-bar {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 28px);
    padding: 9px;
    border-radius: 18px;
  }

  .profile-report-overlay {
    padding: 0;
  }

  .profile-report-sheet {
    border-radius: 28px 28px 0 0;
  }
}

@media (max-width: 390px) {
  .profile-preview-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .profile-preview-stats {
    gap: 8px;
  }

  .profile-preview-stats small {
    font-size: 10px;
  }

  .profile-preview-bottom-bar {
    gap: 7px;
  }

  .profile-preview-follow,
  .profile-preview-message {
    gap: 5px;
    font-size: 13px;
  }
}

/* Wide-screen detail layouts: f86 visual language adapted for desktop */
@media (min-width: 900px) {
  .f86-home-detail-body {
    background:
      radial-gradient(circle at 12% 8%, rgba(0, 95, 251, 0.1), transparent 28%),
      radial-gradient(circle at 88% 16%, rgba(242, 100, 48, 0.08), transparent 24%),
      #eef2f7;
  }

  .f86-home-detail-page {
    padding: 32px 24px 132px;
  }

  .f86-home-detail-shell {
    display: grid;
    width: min(1240px, 100%);
    min-height: calc(100vh - 64px);
    grid-template-columns: minmax(0, 1.16fr) minmax(460px, 0.84fr);
    align-items: start;
    margin: 0 auto;
    overflow: visible;
    border: 1px solid rgba(215, 223, 234, 0.92);
    border-radius: 30px;
    background: #f5f5f2;
    box-shadow: 0 28px 80px rgba(29, 45, 70, 0.14);
  }

  .f86-home-hero {
    position: sticky;
    top: 32px;
    height: calc(100vh - 64px);
    min-height: 680px;
    max-height: 900px;
    align-self: start;
    border-radius: 29px 0 0 29px;
  }

  .f86-home-gallery,
  .f86-home-gallery img {
    border-radius: 29px 0 0 29px;
  }

  .f86-home-hero::after {
    height: 150px;
    border-radius: 29px 0 0;
  }

  .f86-home-hero-top {
    top: 22px;
    right: 22px;
    left: 22px;
  }

  .f86-home-glass-button,
  .f86-home-language {
    height: 46px;
  }

  .f86-home-glass-button {
    width: 46px;
  }

  .f86-home-gallery-dots {
    bottom: 28px;
  }

  .f86-home-sheet {
    min-width: 0;
    min-height: calc(100vh - 64px);
    margin-top: 0;
    padding: 42px 36px 100px;
    border-radius: 0 29px 29px 0;
  }

  .f86-home-title-line h1 {
    font-size: clamp(28px, 2.35vw, 36px);
    line-height: 1.14;
  }

  .f86-home-heading {
    gap: 20px;
  }

  .f86-home-category {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .f86-home-location {
    margin-top: 10px;
    font-size: 15px;
  }

  .f86-home-rating-pill {
    min-width: 82px;
    padding: 11px 12px;
  }

  .f86-home-features {
    gap: 12px;
    margin-top: 26px;
  }

  .f86-home-feature {
    min-height: 78px;
    padding: 13px;
  }

  .f86-home-section,
  .f86-home-map-card {
    margin-top: 30px;
  }

  .f86-home-section h2 {
    font-size: 20px;
  }

  .f86-home-description {
    font-size: 14.5px;
    line-height: 1.72;
  }

  .f86-home-facility-card {
    min-height: 64px;
  }

  .f86-home-bottom-bar {
    width: min(1240px, calc(100% - 48px));
    min-height: 92px;
    gap: 24px;
    padding: 14px 24px;
    border: 1px solid rgba(215, 223, 234, 0.96);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.13);
  }

  .f86-home-price strong {
    font-size: 25px;
  }

  .f86-home-bottom-bar > button {
    width: min(300px, 32%);
    min-width: 240px;
    min-height: 56px;
  }

  .f86-home-modal {
    align-items: center;
  }

  .f86-home-modal-sheet {
    border-radius: 28px;
  }

  .f86-trip-detail-body {
    padding-bottom: 126px;
    background:
      radial-gradient(circle at 16% 5%, color-mix(in srgb, var(--gz-brand) 11%, transparent), transparent 27%),
      radial-gradient(circle at 88% 18%, rgba(242, 100, 48, 0.07), transparent 24%),
      var(--gz-bg);
  }

  .f86-trip-detail-page {
    min-height: calc(100vh - 126px);
    padding: 28px 24px 64px;
  }

  .f86-trip-detail-shell {
    width: min(1180px, 100%);
  }

  .f86-trip-detail-header {
    position: relative;
    top: auto;
    min-height: 72px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 12px 16px;
    border: 1px solid var(--gz-line);
    border-radius: 20px;
    background: color-mix(in srgb, var(--gz-surface) 97%, transparent);
    box-shadow: 0 12px 34px rgba(20, 32, 51, 0.08);
  }

  .f86-trip-detail-header > h1 {
    padding-left: 96px;
    font-size: 17px;
  }

  .f86-trip-detail-header-actions {
    gap: 9px;
  }

  .f86-detail-language {
    position: static;
  }

  .f86-detail-language .language-control select {
    height: 40px;
    min-width: 72px;
    border-radius: 12px;
    font-size: 12px;
  }

  .f86-trip-detail-content {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto auto auto;
    gap: 16px;
    padding: 20px 0 40px;
  }

  .f86-trip-detail-hero {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 178px;
    align-items: center;
    padding: 30px 34px;
    border: 1px solid color-mix(in srgb, var(--gz-brand) 14%, var(--gz-line));
    border-radius: 26px;
    background:
      linear-gradient(115deg, color-mix(in srgb, var(--gz-brand) 13%, var(--gz-surface)), var(--gz-surface) 64%),
      var(--gz-surface);
    box-shadow: 0 18px 46px rgba(20, 32, 51, 0.09);
  }

  .f86-trip-detail-hero h2 {
    margin-top: 16px;
    font-size: clamp(34px, 3.2vw, 46px);
    letter-spacing: -1.3px;
  }

  .f86-detail-schedule {
    gap: 10px 22px;
    font-size: 14px;
  }

  .f86-detail-price-card {
    min-width: 150px;
    padding: 19px 20px;
    border: 1px solid var(--gz-line);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(20, 32, 51, 0.08);
  }

  .f86-detail-price-card strong {
    font-size: 28px;
    line-height: 34px;
  }

  .f86-detail-route-card {
    grid-column: 1 / 8;
    grid-row: 2 / span 3;
    min-height: 314px;
    padding: 28px;
    border: 1px solid var(--gz-line);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(20, 32, 51, 0.07);
  }

  .f86-detail-timeline {
    grid-template-rows: 14px minmax(80px, 1fr) 14px;
    padding: 8px 0;
  }

  .f86-detail-stops {
    gap: 22px;
  }

  .f86-detail-stops small,
  .f86-detail-waypoints small {
    font-size: 11px;
  }

  .f86-detail-stops strong {
    font-size: 20px;
    line-height: 26px;
  }

  .f86-detail-waypoints {
    padding: 14px 16px;
    font-size: 13px;
    line-height: 20px;
  }

  .f86-detail-host-card {
    grid-column: 8 / -1;
    grid-row: 2;
    min-height: 90px;
    padding: 18px;
    border: 1px solid var(--gz-line);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(20, 32, 51, 0.06);
  }

  .f86-detail-host-identity img {
    width: 56px;
    height: 56px;
  }

  .f86-detail-host-identity strong {
    font-size: 16px;
  }

  .f86-detail-features {
    grid-column: 8 / -1;
    grid-row: 3;
    gap: 9px;
  }

  .f86-detail-features > span {
    min-height: 94px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    padding: 15px;
    border: 1px solid var(--gz-line);
    border-radius: 18px;
  }

  .f86-detail-features strong {
    font-size: 12px;
    line-height: 17px;
  }

  .f86-detail-note {
    grid-column: 1 / 8;
    grid-row: 5;
    padding: 20px;
    border: 1px solid var(--gz-line);
    border-radius: 20px;
  }

  .f86-detail-notice {
    grid-column: 1 / 8;
    grid-row: 6;
    padding: 18px;
    border-radius: 18px;
  }

  .f86-detail-booking-card,
  .f86-detail-locked-card,
  .f86-detail-unavailable {
    grid-column: 8 / -1;
    grid-row: 4 / span 2;
    align-self: stretch;
  }

  .f86-detail-booking-card {
    display: flex;
    min-height: 104px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
  }

  .f86-detail-meta-actions {
    grid-column: 1 / -1;
    grid-row: 7;
    min-height: 52px;
    padding: 0 6px;
  }

  .f86-detail-sticky {
    width: min(1180px, calc(100% - 48px));
    min-height: 88px;
    gap: 24px;
    padding: 14px 18px;
    border-radius: 22px;
  }

  .f86-detail-sticky-price {
    min-width: 150px;
    padding-left: 4px;
  }

  .f86-detail-sticky-price strong {
    font-size: 25px;
  }

  .f86-detail-sticky > button {
    min-height: 56px;
    flex: 0 1 360px;
    margin-left: auto;
    font-size: 16px;
  }

  .f86-detail-offer-bar > button {
    flex-basis: 420px;
  }
}
