@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #9b7a3f;
  --brand-dark: #765b2c;
  --brand-soft: #efe7d8;
  --ink: #1f2428;
  --muted: #697077;
  --line: #ded8ce;
  --paper: #ffffff;
  --warm: #f7f3ec;
  --footer: #26221d;
  --red: #a94442;
  --green: #18705b;
  --pp-blue: #eaf4f8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: 'Inter', 'Microsoft YaHei', system-ui, sans-serif;
  background: var(--paper);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(155,122,63,.055) 1px, transparent 1px), linear-gradient(rgba(155,122,63,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .55;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 62%);
}

.pp-mobile-body {
  background: #fff;
}

.pp-mobile-body::before,
.pp-mobile-body::after {
  display: none !important;
  content: none !important;
}

.pp-mobile-page {
  width: 100%;
  min-height: 100vh;
  background: #fff;
}

.pp-mobile-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 96px;
  padding: 12px 22px 10px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
}

.pp-profile-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.pp-profile-icon span {
  position: relative;
  width: 26px;
  height: 26px;
  border: 2px solid var(--brand);
  border-radius: 50%;
}

.pp-profile-icon span::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: white;
}

.pp-profile-icon span::after {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 3px;
  width: 14px;
  height: 8px;
  border: 2px solid var(--brand);
  border-radius: 12px 12px 0 0;
  border-bottom: 0;
}

.pp-mobile-logo {
  justify-self: center;
  color: var(--brand);
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.pp-mobile-logo strong {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 44px;
  line-height: .78;
  font-weight: 700;
}

.pp-mobile-logo span {
  display: block;
  margin-top: 5px;
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.pp-header-logout {
  justify-self: end;
  min-width: 76px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #222;
  background: #fff;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.pp-header-logout:hover {
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.pp-mobile-main {
  background: #fff;
}

.pp-account-hidden,
.pp-login-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.pp-section-select {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 0;
  background: var(--brand);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 58px;
  align-items: center;
  padding: 0 0 0 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.pp-section-select i {
  height: 54px;
  border-left: 1px solid rgba(255,255,255,.42);
  position: relative;
}

.pp-section-select i::after {
  content: '';
  position: absolute;
  left: 21px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.pp-mobile-card {
  padding: 28px 22px 30px;
  background: #fff;
  border-bottom: 1px solid #e6e1d7;
}

.pp-mobile-card h2 {
  margin: 0 0 20px;
  color: #111;
  font-family: 'Inter', 'Microsoft YaHei', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.pp-count-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 18px;
}

.pp-count-grid div {
  padding: 14px;
  border: 1px solid rgba(155,122,63,.22);
  background: #fbf9f4;
}

.pp-count-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.pp-count-grid strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.pp-card-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.pp-recharge-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.pp-recharge-label {
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.pp-recharge-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(155,122,63,.35);
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
  color: var(--ink);
}

.pp-recharge-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(155,122,63,.14);
}

.pp-qr-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0 18px;
}

.pp-qr-wrap img {
  width: min(250px, 68vw);
  height: min(250px, 68vw);
  object-fit: contain;
  background: #fff;
}
.pp-refresh-countdown {
  width: fit-content;
  margin: 14px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(138, 111, 29, 0.24);
  border-radius: 999px;
  background: #fbf7ec;
  color: #6f5a18;
  font-size: 13px;
  font-weight: 600;
}

.pp-refresh-countdown strong {
  color: #1f1f1f;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}


.pp-detail-btn {
  min-height: 36px;
  margin: 0 auto;
  padding: 8px 18px;
  border: 0;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.pp-plan-card {
  padding-top: 26px;
}

.pp-plan-card p {
  margin: 0 0 14px;
  color: #222;
  line-height: 1.7;
  font-size: 15px;
}

.pp-plan-card ul {
  margin: 0;
  padding-left: 19px;
  display: grid;
  gap: 14px;
}

.pp-plan-card li {
  color: #222;
  line-height: 1.72;
  font-size: 15px;
}

.pp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.pp-modal.is-open {
  display: block;
}

.pp-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.48);
}

.pp-modal-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 430px);
  max-height: 92vh;
  overflow: visible;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
}

.pp-digital-card {
  background: #fff;
  border-radius: 14px;
  padding: 34px 26px 30px;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  text-align: center;
}

.pp-card-logo {
  text-align: center;
  margin-bottom: 20px;
}

.pp-card-logo strong {
  display: block;
  color: var(--brand);
  font-family: 'Noto Serif SC', serif;
  font-size: 46px;
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.08em;
}

.pp-card-logo span {
  display: block;
  margin-top: 8px;
  color: #333;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pp-card-logo sup {
  font-size: 8px;
  margin-left: 2px;
}

.pp-modal-qr {
  display: flex;
  justify-content: center;
  padding: 4px 0 18px;
}

.pp-modal-qr img {
  width: min(245px, 64vw);
  height: min(245px, 64vw);
  object-fit: contain;
}

.pp-gold-line {
  width: 100%;
  height: 2px;
  margin: 0 0 23px;
  background: var(--brand);
}

.pp-digital-info {
  margin: 0;
  display: grid;
  gap: 18px;
  text-align: center;
}

.pp-digital-info dt {
  margin-bottom: 4px;
  color: #555;
  font-size: 14px;
  font-weight: 800;
}

.pp-digital-info dd {
  margin: 0;
  color: #111;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  word-break: break-word;
}


.pp-digital-info .pp-member-number,
.pp-digital-info .pp-member-number a,
.pp-member-number,
.pp-member-number a {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  text-decoration: none !important;
  pointer-events: none;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  cursor: default;
}

.pp-card-close {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--brand);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.modal-open {
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 96px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .08em;
}

.admin-brand-label {
  cursor: default;
  user-select: none;
}

.admin-shell {
  background: #f5f1ea;
}

.admin-shell::before {
  display: none;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 34px 24px;
  background: linear-gradient(180deg, #28231d, #17130f);
  border-right: 1px solid rgba(216,189,132,.25);
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.admin-sidebar .brand {
  grid-column: auto;
  justify-content: flex-start;
  color: white;
  font-size: 22px;
}

.admin-sidebar .brand-mark {
  border-color: #d8bd84;
  color: #d8bd84;
}

.admin-side-links {
  display: grid;
  gap: 12px;
}

.admin-side-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 16px;
  color: rgba(255,255,255,.84);
  text-decoration: none;
  border: 1px solid rgba(216,189,132,.20);
  background: rgba(255,255,255,.04);
  font-weight: 800;
  letter-spacing: .04em;
  transition: .18s ease;
}

.admin-side-links a:hover {
  color: #241f19;
  background: #d8bd84;
  border-color: #d8bd84;
}

.admin-side-links .logout-link {
  margin-top: 10px;
  color: #ffdddd;
  border-color: rgba(216,120,120,.35);
}

.admin-side-links .logout-link:hover {
  color: white;
  background: #9b2f2f;
  border-color: #9b2f2f;
}

.admin-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 34px 32px 48px;
}

.container.admin-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.admin-main .card,
.admin-main .table-wrap,
.admin-main .admin-scroll-list {
  width: 100%;
  max-width: none;
}

.admin-main .resizable-table {
  width: 100%;
  min-width: 100%;
}

.brand {
  grid-column: 2;
  justify-self: center;
  align-self: center;
}

.nav-front .brand {
  margin: 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: 'Noto Serif SC', serif;
  font-size: 25px;
  font-weight: 700;
}

.nav-links {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-lounge-search {
  grid-column: 1;
  height: 42px;
  position: relative;
  z-index: 10;
  min-width: 0;
  transition: .3s;
  justify-self: start;
}

.nav-lounge-search form {
  display: block;
  width: 100%;
}

.pp-official-search-button {
  appearance: none;
  height: 42px;
  min-height: 42px;
  line-height: 42px;
  background: #827127;
  border: 0;
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  border-radius: 20px;
  text-transform: none;
  letter-spacing: .03rem;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  white-space: nowrap;
}

.pp-official-search-button:hover,
.pp-official-search-button:focus-visible {
  background: #64582b;
}

.pp-official-search-input-wrapper {
  display: none;
  width: 360px;
  max-width: min(360px, calc(100vw - 36px));
  position: relative;
}

.nav-lounge-search.is-open .pp-official-search-button,
.nav-lounge-search form.is-open .pp-official-search-button {
  display: none;
}

.nav-lounge-search.is-open .pp-official-search-input-wrapper,
.nav-lounge-search form.is-open .pp-official-search-input-wrapper {
  display: block;
}

.pp-official-search-input-wrapper::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 2px solid #6f6748;
  border-radius: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}

.pp-official-search-input-wrapper::after {
  content: '';
  position: absolute;
  left: 30px;
  top: 27px;
  width: 8px;
  height: 2px;
  background: #6f6748;
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
}

.pp-official-search-input {
  appearance: none;
  width: 100%;
  height: 42px;
  border: 1px solid #6f6748;
  border-radius: 21px;
  background: #fff;
  padding: 0 18px 0 47px;
  color: #1f2428;
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.pp-official-search-input::placeholder {
  color: #a8a8a8;
  opacity: 1;
}

.nav a:not(.brand) {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.nav a:not(.brand):hover {
  color: var(--brand);
  border-color: var(--brand);
}

.nav .top-logout {
  min-height: 42px;
  padding: 10px 18px !important;
  border: 1px solid var(--brand) !important;
  color: var(--brand) !important;
  background: white;
  font-weight: 800;
}

.nav .top-logout:hover {
  background: var(--brand-soft);
  color: var(--brand-dark) !important;
}

.container {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 54px auto 0;
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 56px);
  margin-bottom: 32px;
}

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  border: 0;
  padding: 0;
  background: transparent;
}

.hero-copy {
  padding: clamp(8px, 3vw, 28px) 0 clamp(20px, 5vw, 56px);
}

.home-hero-kicker {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin: 0 0 34px;
  transform: translateY(-10px);
}

.home-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 11px 18px;
  border: 1.5px solid rgba(151, 119, 50, .62);
  background: rgba(255, 255, 255, .96);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(67, 55, 18, .08);
}

.home-lang-switch a {
  color: var(--muted);
  text-decoration: none;
}

.home-lang-switch a.active,
.home-lang-switch a:hover {
  color: var(--brand);
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero h1,
.page-title {
  margin: 0 0 24px;
  font-family: 'Noto Serif SC', serif;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 700;
}

.hero p,
.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.85;
  margin: 0 0 34px;
}

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

.btn,
button {
  appearance: none;
  min-height: 50px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: white;
  padding: 14px 26px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  transition: .18s ease;
}

.btn:hover,
button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn.secondary,
button.secondary {
  background: var(--brand);
  border-color: var(--brand);
}

.btn.ghost {
  background: white;
  color: var(--brand);
  border-color: var(--brand);
}

.btn.ghost:hover {
  background: var(--brand-soft);
}

.btn.danger,
button.danger {
  min-height: 38px;
  padding: 9px 14px;
  background: white;
  color: var(--red);
  border-color: #d8a6a4;
  font-size: 13px;
}

.device-preview {
  width: 100%;
  min-height: 520px;
  background:
    linear-gradient(rgba(31,36,40,.26), rgba(31,36,40,.30)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1200&q=80') center/cover;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
}

.device-screen {
  width: 100%;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.8);
  padding: 26px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mini-card {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.mini-card.dark {
  background: var(--footer);
  color: white;
  padding: 22px;
  border: 0;
  margin-bottom: 10px;
}

.mini-card strong {
  display: block;
  margin-top: 6px;
  font-family: 'Noto Serif SC', serif;
  font-size: 25px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border: 0;
  margin: 34px 0 80px;
  background: transparent;
}

.feature {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(222,216,206,.9);
  background: #17130f;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 60px rgba(38,34,29,.13);
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.72));
  z-index: 1;
}

.feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.feature:hover::after { transform: scale(1.08); }

.feature-one::after { background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=80'); }
.feature-two::after { background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80'); }
.feature-three::after { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=900&q=80'); }

.feature-icon,
.feature b,
.feature p {
  position: relative;
  z-index: 2;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border: 1px solid rgba(216,189,132,.88);
  color: #f1d9a8;
  background: rgba(38,34,29,.58);
  font-weight: 800;
  letter-spacing: .08em;
}

.feature b {
  display: block;
  color: white;
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  margin-bottom: 12px;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.feature p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

.form {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.wide-form {
  max-width: none;
}

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

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.form-grid.three button {
  align-self: end;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

input,
select {
  width: 100%;
  height: 54px;
  padding: 14px 16px;
  border: 1px solid #bfc1c4;
  background: white;
  color: var(--ink);
  font-size: 16px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(155,122,63,.16);
}

.flash {
  padding: 14px 18px;
  margin-bottom: 20px;
  background: #f7e8e7;
  color: var(--red);
  border-left: 4px solid var(--red);
  font-weight: 700;
}

.flash.success {
  background: #e7f3ef;
  color: var(--green);
  border-left-color: var(--green);
}

.flash.is-hiding {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .24s ease, transform .24s ease;
}

.dashboard-hero {
  background: var(--footer);
  color: white;
  border: 0;
}

.dashboard-hero .page-title,
.dashboard-hero p {
  color: white;
}

.dashboard-hero p { opacity: .78; }
.dashboard-hero .eyebrow { color: #d8bd84; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-bottom: 32px;
  background: white;
}

.stat {
  padding: 30px;
  border-right: 1px solid var(--line);
  background: white;
}

.stat:last-child { border-right: 0; }

.stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.stat strong {
  display: block;
  margin-top: 12px;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

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

.section-head h2,
.card h1,
.card h2 {
  margin: 0 0 8px;
  font-family: 'Noto Serif SC', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.table-wrap { overflow: hidden; }

.admin-scroll-list {
  max-height: min(62vh, 680px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  scrollbar-gutter: stable;
}

.admin-scroll-list table {
  margin: 0;
}

.admin-scroll-list th {
  position: sticky;
  top: 0;
  z-index: 2;
}

.admin-scroll-list::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.admin-scroll-list::-webkit-scrollbar-track {
  background: #f3eee5;
  border-radius: 999px;
}

.admin-scroll-list::-webkit-scrollbar-thumb {
  background: #c5a86f;
  border-radius: 999px;
  border: 2px solid #f3eee5;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.resizable-table {
  width: max-content;
  min-width: 100%;
}

.resizable-table th,
.resizable-table td {
  position: relative;
}

.column-resize-handle {
  position: absolute;
  top: 0;
  right: -4px;
  width: 8px;
  height: 100%;
  cursor: col-resize;
  z-index: 5;
  user-select: none;
  touch-action: none;
}

.column-resize-handle::after {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 3px;
  width: 2px;
  border-radius: 99px;
  background: rgba(155,122,63,.22);
}

.column-resize-handle:hover::after,
.column-resizing .column-resize-handle::after {
  background: rgba(155,122,63,.72);
}

.column-resizing {
  cursor: col-resize;
  user-select: none;
}

th {
  background: var(--warm);
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
}

tr:hover td { background: #fbf8f2; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid #8fc8b7;
  color: var(--green);
  background: #eef8f5;
  font-weight: 800;
  font-size: 13px;
}

.badge.used {
  border-color: #d8a6a4;
  color: var(--red);
  background: #fbefef;
}

.inline-form { display: inline; }

.member-card-cell {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
}

.qr-code {
  width: 72px;
  height: 72px;
  padding: 6px;
  background: white;
  border: 1px solid var(--line);
  object-fit: contain;
}

.account-data-table-shell {
  width: 100%;
  min-width: 0;
}

.account-data-element-shell {
  border: 1px solid #ebeef5;
  background: #fff;
  box-sizing: border-box;
}

.account-data-element-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid #ebeef5;
  background: #fff;
}

.account-data-table-summary {
  color: #606266;
  font-size: 13px;
  white-space: nowrap;
}

.account-data-table-summary strong {
  color: #409eff;
}

.account-data-table-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.account-data-toolbar-inline {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
  margin-left: auto;
  min-width: 0;
}

.account-data-tabs .account-data-table-summary {
  flex: 0 0 auto;
}

.account-data-table-search,
.account-data-page-size {
  height: 32px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background: #fff;
  color: #606266;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}

.account-data-table-search {
  width: 260px;
  padding: 0 12px;
}

.account-data-page-size-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #606266;
  font-size: 13px;
  white-space: nowrap;
}

.account-data-page-size {
  width: 82px;
  padding: 0 8px;
}

.account-data-super-list {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 760px);
  overflow: auto;
  border: 0;
  background: #fff;
  scrollbar-gutter: stable;
}

.account-data-super-list::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.account-data-super-list::-webkit-scrollbar-track {
  background: #f5f7fa;
}

.account-data-super-list::-webkit-scrollbar-thumb {
  background: #c0c4cc;
  border-radius: 999px;
  border: 2px solid #f5f7fa;
}

.account-data-element-table {
  width: max-content;
  min-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  background: #fff;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  font-size: 14px;
  color: #606266;
}

.account-data-element-table th,
.account-data-element-table td {
  height: 54px;
  padding: 8px 12px;
  border-right: 1px solid #ebeef5;
  border-bottom: 1px solid #ebeef5;
  background: #fff;
  color: #606266;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
}

.account-data-element-table th {
  position: sticky;
  top: 0;
  z-index: 5;
  overflow: visible;
  background: #f5f7fa;
  color: #909399;
  font-weight: 600;
}

.account-data-element-table tr:hover td {
  background: #f5f7fa;
}

.account-data-element-table .sticky-left,
.account-data-element-table .sticky-right {
  position: sticky;
  z-index: 4;
  background: #fff;
}

.account-data-element-table th.sticky-left,
.account-data-element-table th.sticky-right {
  z-index: 7;
  background: #f5f7fa;
}

.account-data-element-table .sticky-no {
  left: 0;
}

.account-data-element-table .sticky-actions {
  right: 0;
  box-shadow: -6px 0 8px rgba(0,0,0,.04);
}

.account-data-element-table .qr-code {
  width: 32px;
  height: 32px;
  padding: 2px;
  border: 1px solid #ebeef5;
  background: #fff;
}

.account-data-element-table .member-card-cell {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  max-width: 100%;
  min-width: 0;
  text-align: left;
}

.account-data-element-table .account-data-actions-cell {
  white-space: nowrap;
}

.account-data-element-table .account-data-actions-cell .inline-form {
  display: inline-flex;
  margin: 0 3px 0 0;
}

.account-data-element-table .account-data-actions-cell button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 28px;
}

.account-data-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.account-data-tag.tag-success {
  color: #67c23a;
  border-color: #e1f3d8;
  background: #f0f9eb;
}

.account-data-tag.tag-idle {
  color: #409eff;
  border-color: #d9ecff;
  background: #ecf5ff;
}

.account-data-tag.tag-warning {
  color: #f56c6c;
  border-color: #fde2e2;
  background: #fef0f0;
}

.copy-cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background: #fff;
  color: #606266;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.copy-cookie-btn:hover {
  color: #409eff;
  border-color: #c6e2ff;
  background: #ecf5ff;
}

.time-cell::before {
  content: '◷';
  margin-right: 5px;
  color: #909399;
}

.cookie-cell,
.secret-cell,
.cell-text,
.member-card-cell span,
.time-cell {
  display: block;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cookie-cell,
.secret-cell,
.cell-text,
.time-cell {
  line-height: 1.35;
}

.cookie-cell.muted {
  color: var(--muted);
  font-size: 12px;
  white-space: normal;
}

.account-data-pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 12px 14px;
  border-top: 1px solid #ebeef5;
  background: #fff;
  color: #606266;
  font-size: 13px;
}

.pager-total {
  margin-right: 8px;
}

.pager-btn {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 0;
  border-radius: 2px;
  background: #f4f4f5;
  color: #606266;
  font-size: 13px;
  cursor: pointer;
}

.pager-btn.active {
  background: #409eff;
  color: #fff;
}

.pager-btn:disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.pager-ellipsis {
  color: #909399;
  padding: 0 4px;
}

@media (max-width: 760px) {
  .account-data-element-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .account-data-toolbar-inline {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
  .account-data-table-tools {
    width: 100%;
  }
  .account-data-table-search {
    width: 100%;
  }
}

.users-table th:nth-child(1),
.users-table td:nth-child(1) { width: 56px; }
.users-table th:nth-child(2),
.users-table td:nth-child(2) { width: 90px; }
.users-table th:nth-child(3),
.users-table td:nth-child(3) { width: 90px; }
.users-table th:nth-child(4),
.users-table td:nth-child(4) { width: 70px; }
.users-table th:nth-child(5),
.users-table td:nth-child(5) { width: 240px; }
.users-table th:nth-child(6),
.users-table td:nth-child(6) { width: 180px; }
.users-table th:nth-child(7),
.users-table td:nth-child(7) { width: 90px; }
.users-table th:nth-child(8),
.users-table td:nth-child(8) { width: 90px; }
.users-table th:nth-child(9),
.users-table td:nth-child(9) { width: 180px; }
.users-table th:nth-child(10),
.users-table td:nth-child(10) { width: 120px; }

.cards-table th:nth-child(1),
.cards-table td:nth-child(1) { width: 56px; }
.cards-table th:nth-child(2),
.cards-table td:nth-child(2) { width: 190px; }
.cards-table th:nth-child(3),
.cards-table td:nth-child(3) { width: 120px; }
.cards-table th:nth-child(4),
.cards-table td:nth-child(4) { width: 130px; }
.cards-table th:nth-child(5),
.cards-table td:nth-child(5) { width: 100px; }
.cards-table th:nth-child(6),
.cards-table td:nth-child(6) { width: 100px; }
.cards-table th:nth-child(7),
.cards-table td:nth-child(7) { width: 180px; }
.cards-table th:nth-child(8),
.cards-table td:nth-child(8) { width: 180px; }
.cards-table th:nth-child(9),
.cards-table td:nth-child(9) { width: 90px; }

.split-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

body::after {
  content: '关于   帮助及信息   网络   下载 APP   © 2026';
  display: block;
  margin-top: 60px;
  padding: 44px clamp(18px, 5vw, 72px);
  background: var(--footer);
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  font-size: 13px;
  text-align: center;
}

body.admin-shell::after {
  display: none;
  content: none;
}

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr; justify-items: stretch; min-height: auto; padding-top: 18px; padding-bottom: 18px; }
  .brand, .nav-links, .nav-lounge-search { grid-column: 1; }
  .brand { grid-row: 1; justify-self: center; }
  .nav-lounge-search { grid-row: 2; }
  .nav-links { grid-row: 3; }
  .nav-lounge-search,
  .nav-lounge-search form,
  .pp-official-search-button,
  .pp-official-search-input-wrapper,
  .pp-official-search-input { width: 100%; max-width: none; }
  .nav-links { justify-content: flex-end; }
  .hero { grid-template-columns: 1fr; }
  .feature-grid, .grid, .split-actions { grid-template-columns: 1fr 1fr; }
  .form-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .admin-side-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .admin-side-links a { min-height: 42px; padding: 10px 13px; }
  .admin-main { width: 100%; padding: 24px 14px 38px; margin: 0; }
}

@media (min-width: 680px) {
  .pp-mobile-page {
    max-width: 430px;
    margin: 0 auto;
    box-shadow: 0 0 0 1px #eee, 0 24px 80px rgba(0,0,0,.08);
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); margin-top: 34px; }
  .brand { font-size: 20px; letter-spacing: .03em; }
  .nav-links { gap: 12px; }
  .nav a:not(.brand) { font-size: 13px; }
  .hero h1, .page-title { font-size: 42px; }
  .device-preview { min-height: 420px; padding: 18px; }
  .feature-grid, .grid, .split-actions, .name-row { grid-template-columns: 1fr; }
  .form-grid.four { grid-template-columns: 1fr; }
  .actions { flex-direction: column; align-items: stretch; }
  .btn, button { width: 100%; }
  .auth-card { padding-bottom: 46px; }
  .admin-sidebar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-side-links { width: 100%; display: grid; grid-template-columns: 1fr; }
}


/* Priority Pass lounge search/detail pages */
.pp-lounge-site{background:#fff;color:#202124;font-family:Arial,Helvetica,"PingFang SC","Microsoft YaHei",sans-serif}.pp-lounge-site::before,.pp-lounge-site::after{display:none!important;content:none!important}.pp-public-page{background:#fff;min-height:100vh}.pp-public-header{background:#fff;border-bottom:1px solid #e8e8e8}.pp-public-top{height:86px;display:grid;grid-template-columns:300px 1fr 300px;align-items:center;padding:0 32px}.pp-find-pill{justify-self:start;background:#8a6f1d;color:#fff;text-decoration:none;border-radius:999px;padding:13px 24px;font-weight:700;font-size:15px}.pp-brand-center{justify-self:center;text-align:center;color:#8a6f1d;text-decoration:none;line-height:1}.pp-brand-center strong,.pp-footer-logo strong{display:block;font-family:Georgia,serif;font-size:48px;line-height:.82;font-weight:700}.pp-brand-center span,.pp-footer-logo span{display:block;margin-top:8px;font-size:11px;font-weight:900;letter-spacing:.16em;color:#5a4710}.pp-public-tools{justify-self:end;display:flex;gap:24px;align-items:center;color:#222;font-size:14px}.pp-public-tools a{color:#222;text-decoration:none}.pp-public-nav{height:58px;display:flex;justify-content:center;gap:42px;align-items:center;border-top:1px solid #f0f0f0}.pp-public-nav a{color:#222;text-decoration:none;font-size:15px}.pp-lounge-main{width:min(100% - 48px,920px);margin:34px auto 0}.pp-back-link{display:inline-flex;align-items:center;gap:8px;color:#333;text-decoration:none;font-size:15px;margin-bottom:18px}.pp-detail-hero{display:grid;grid-template-columns:310px 1fr;gap:34px;align-items:start}.pp-detail-copy h1{font-size:28px;line-height:1.2;margin:20px 0 12px;color:#202124}.pp-airport-name{font-size:16px;line-height:1.55;margin:0 0 18px;color:#333}.pp-rating{color:#333}.pp-rating.big{display:flex;gap:8px;align-items:center;font-size:16px;color:#8a6f1d}.pp-rating.big span{color:#444}.pp-traveller-pill{display:inline-flex;border:1px solid #222;border-radius:999px;padding:8px 13px;margin-top:14px;font-size:14px}.pp-carousel{position:relative;height:285px;overflow:hidden;background:#ddd}.pp-carousel .slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0}.pp-carousel .s1{opacity:1;background-image:url("/static/lounge/main_image.jpg")}.pp-carousel .s2{background-image:url("/static/lounge/image_1.jpg")}.pp-carousel .s3{background-image:url("/static/lounge/image_2.jpg")}.pp-dots{position:absolute;left:0;right:0;bottom:15px;display:flex;justify-content:center;gap:9px}.pp-dots i{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.62)}.pp-dots i.active{background:#fff}.pp-accordion-wrap{margin-top:32px;border-top:1px solid #ddd}.pp-acc{border-bottom:1px solid #ddd}.pp-acc summary{list-style:none;cursor:pointer;min-height:74px;display:flex;align-items:center;justify-content:space-between;font-size:18px}.pp-acc summary::-webkit-details-marker{display:none}.pp-acc summary span{width:12px;height:12px;border-right:2px solid #222;border-bottom:2px solid #222;transform:rotate(45deg);margin-right:8px}.pp-acc[open] summary span{transform:rotate(225deg)}.pp-acc p{font-size:16px;line-height:1.65;color:#333;margin:0 0 24px;max-width:780px}.pp-hours{display:grid;gap:14px;padding:0 0 24px 0;margin:0;list-style:none;color:#333}.pp-facilities{position:relative;border-bottom:1px solid #ddd;padding:28px 0 24px}.pp-facilities h2{font-size:18px;margin:0 0 24px}.pp-fac-list{display:grid;gap:22px}.pp-fac-list p{margin:0;font-size:16px;color:#333}.pp-fac-list i{display:inline-flex;width:34px;color:#222;font-style:normal}.pp-facilities button{position:absolute;right:0;bottom:22px;width:auto;background:transparent;border:0;border-bottom:1px solid #222;color:#222;border-radius:0;padding:0 0 3px;font-weight:600}.pp-more-experiences{margin-top:56px;background:#f6f6f6;padding:56px 0 70px}.pp-more-inner{width:min(100% - 48px,920px);margin:0 auto}.pp-more-inner h2{font-size:30px;line-height:1.25;font-weight:500;margin:0 0 28px}.pp-more-card{display:block;width:286px;background:#fff;color:#222;text-decoration:none;border-radius:7px;overflow:hidden}.pp-more-photo,.pp-result-photo{display:block;height:124px;background:url("/static/lounge/main_image.jpg") center/cover no-repeat}.pp-more-card strong{display:block;padding:17px 18px 5px;font-size:17px}.pp-more-card p{padding:0 18px 20px;margin:0;color:#555;font-size:14px}.pp-footer{padding:55px 56px 28px;background:#fff}.pp-footer-logo{display:block;text-align:center;color:#8a6f1d;text-decoration:none;margin-bottom:42px}.pp-footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:42px;max-width:1120px;margin:0 auto 40px}.pp-footer h2,.pp-footer p{font-size:16px;margin:0 0 17px;color:#222}.pp-footer a{display:block;color:#333;text-decoration:none;margin:0 0 13px;font-size:14px}.pp-socials{display:flex;gap:10px;margin:0 0 24px}.pp-socials i{width:34px;height:34px;border:1px solid #8a6f1d;border-radius:50%;display:grid;place-items:center;color:#8a6f1d;font-style:normal;font-size:13px}.pp-store-row{display:flex;gap:10px}.pp-store-row b{background:#111;color:#fff;border-radius:5px;padding:10px 14px;font-size:12px}.pp-legal{border-top:1px solid #e2e2e2;padding-top:22px;display:flex;gap:24px;flex-wrap:wrap;justify-content:center;color:#555;font-size:12px}.pp-legal a{margin:0;font-size:12px}.pp-search-hero{min-height:340px;background:linear-gradient(90deg,rgba(0,0,0,.52),rgba(0,0,0,.14)),linear-gradient(135deg,#d9c89e,#836b3d 55%,#222);display:grid;place-items:center;padding:44px 22px}.pp-search-panel{width:min(100%,760px);background:#fff;padding:38px 42px;text-align:center;box-shadow:0 20px 70px rgba(0,0,0,.22)}.pp-search-kicker{color:#8a6f1d;font-weight:800;letter-spacing:.08em;margin:0 0 10px}.pp-search-panel h1{font-size:34px;line-height:1.2;margin:0 0 28px}.pp-search-box label{display:block;text-align:left;font-weight:700;margin:0 0 9px}.pp-search-box div{display:grid;grid-template-columns:1fr 130px;border:1px solid #cfcfcf}.pp-search-box input{height:52px;border:0;padding:0 16px;font-size:16px}.pp-search-box button{height:52px;width:auto;border-radius:0;background:#8a6f1d}.pp-results-wrap{width:min(100% - 48px,980px);margin:46px auto 70px}.pp-results-head h2{font-size:28px;margin:0 0 8px}.pp-results-head p{color:#555;margin:0 0 24px}.pp-result-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.pp-result-card{display:grid;grid-template-columns:190px 1fr;gap:18px;background:#fff;border:1px solid #ddd;text-decoration:none;color:#222;padding:0;min-height:170px}.pp-result-card:hover{box-shadow:0 10px 34px rgba(0,0,0,.08)}.pp-result-card .pp-result-photo{height:100%;min-height:170px}.pp-result-card .cafe{background:url("/static/lounge/cafe_main.jpg") center/cover no-repeat}.pp-more-photo{background-image:url("/static/lounge/cafe_main.jpg")}.pp-result-card div{padding:20px 18px 16px 0}.pp-result-card h3{font-size:21px;margin:0 0 10px}.pp-result-card p{margin:0 0 8px;color:#555}.pp-type{color:#8a6f1d!important;font-weight:800;font-size:13px;letter-spacing:.08em;text-transform:uppercase}.pp-result-card.muted{opacity:.88}@media(max-width:760px){.pp-public-top{height:auto;min-height:82px;grid-template-columns:1fr auto;gap:12px;padding:14px 18px}.pp-find-pill{grid-column:1/3;justify-self:stretch;text-align:center}.pp-brand-center{justify-self:start}.pp-public-tools{justify-self:end}.pp-public-nav{overflow:auto;justify-content:flex-start;gap:24px;padding:0 18px}.pp-lounge-main,.pp-more-inner,.pp-results-wrap{width:min(100% - 32px,920px)}.pp-detail-hero{display:flex;flex-direction:column-reverse;gap:22px}.pp-carousel{width:calc(100% + 32px);margin-left:-16px;height:230px}.pp-detail-copy h1{font-size:26px;margin-top:0}.pp-footer{padding:42px 22px}.pp-footer-grid{grid-template-columns:1fr 1fr}.pp-search-panel{padding:28px 20px}.pp-search-panel h1{font-size:28px}.pp-search-box div,.pp-result-card{grid-template-columns:1fr}.pp-result-card .pp-result-photo{height:150px}.pp-result-card div{padding:18px}.pp-result-grid{grid-template-columns:1fr}.pp-facilities button{position:static;margin-top:22px}.pp-more-inner h2{font-size:24px}.pp-footer-grid{grid-template-columns:1fr}.pp-legal{justify-content:flex-start}}


/* Airport-level Priority Pass listing page */
.pp-airport-page{background:#f7f7f5}.pp-airport-main{width:min(100% - 56px,1180px);margin:0 auto;padding:48px 0 80px}.pp-airport-head{padding:18px 0 28px}.pp-airport-code{margin:0 0 10px;color:#777;font-size:14px;letter-spacing:.08em;font-weight:700}.pp-airport-head h1{margin:0 0 10px;color:#171717;font-size:38px;line-height:1.16;font-weight:800}.pp-airport-head h2{margin:0 0 30px;color:#444;font-size:18px;font-weight:500}.pp-airport-controls{display:flex;align-items:center;gap:24px;flex-wrap:wrap}.pp-filter-tabs{display:flex;gap:12px;align-items:center}.pp-filter-tabs button,.pp-filter-tabs a{width:auto;border:1px solid #d4d4d4;background:#fff;color:#222;border-radius:999px;padding:11px 20px;font-size:15px;font-weight:700;text-decoration:none;display:inline-flex;align-items:center;line-height:1}.pp-filter-tabs button.active,.pp-filter-tabs a.active{background:#202020;color:#fff;border-color:#202020}.pp-filter-tabs span{margin-right:8px;color:#8a6f1d}.pp-filter-tabs a.active span{color:#fff}.pp-airport-controls>p{margin:0 0 0 auto;color:#333;font-size:15px}.pp-terminal-select{position:relative;z-index:3}.pp-terminal-select>button{width:210px;background:#fff;color:#222;border:1px solid #d8d8d8;border-radius:4px;height:48px;padding:0 16px;display:flex;align-items:center;justify-content:space-between;font-size:15px;font-weight:600}.pp-terminal-menu{position:absolute;right:0;top:54px;width:210px;background:#fff;border:1px solid #ddd;box-shadow:0 12px 32px rgba(0,0,0,.12);border-radius:2px;overflow:hidden}.pp-terminal-menu p,.pp-terminal-menu a{display:flex;justify-content:space-between;margin:0;padding:15px 18px;font-size:15px;color:#222;text-decoration:none}.pp-terminal-menu p.checked,.pp-terminal-menu a.checked{background:#f1f1f1;font-weight:800}.pp-airport-section{padding:22px 0 38px}.pp-section-intro{max-width:560px;margin:0 0 28px}.pp-section-type{margin:0 0 16px;color:#8a6f1d;font-weight:800}.pp-section-type span{display:inline-grid;place-items:center;width:28px;height:28px;margin-right:9px;border-radius:50%;background:#8a6f1d;color:#fff}.pp-section-intro h3{font-size:28px;line-height:1.2;margin:0 0 12px}.pp-section-intro>p:last-child{color:#555;margin:0;font-size:16px}.pp-airport-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:34px 26px}.pp-exp-card{display:block;background:#fff;color:#222;text-decoration:none;border-radius:0;overflow:hidden;box-shadow:0 1px 0 rgba(0,0,0,.05)}.pp-exp-card:hover{box-shadow:0 14px 34px rgba(0,0,0,.1);transform:translateY(-1px)}.pp-exp-card img{width:100%;height:190px;display:block;object-fit:cover;background:#ddd}.pp-exp-card div{padding:18px 2px 4px}.pp-exp-card h4{font-size:18px;line-height:1.35;margin:0 0 11px;font-weight:800}.pp-exp-card p{margin:0 0 10px;color:#444;font-size:14px}.pp-card-rating{color:#8a6f1d!important;font-weight:800}.airport-results .pp-airport-card h3{font-size:20px}.airport-results .pp-airport-card .pp-result-photo{background-image:url('/static/lounge/main_image.jpg')}@media(max-width:900px){.pp-airport-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.pp-airport-controls>p{margin-left:0}}@media(max-width:640px){.pp-airport-main{width:min(100% - 32px,1180px);padding-top:32px}.pp-airport-head h1{font-size:30px}.pp-airport-card-grid{grid-template-columns:1fr}.pp-terminal-select,.pp-terminal-select>button,.pp-terminal-menu{width:100%}.pp-airport-controls{display:grid;grid-template-columns:1fr}.pp-filter-tabs{overflow:auto}.pp-exp-card img{height:175px}}

.pp-terminal-menu[hidden]{display:none!important}
.pp-terminal-select>button[aria-expanded="true"] span{transform:rotate(180deg);display:inline-block}


/* Official-style category icons */
.pp-filter-tabs .pp-cat-icon{margin-right:8px;flex:0 0 auto}
.pp-cat-icon{display:inline-block;position:relative;width:18px;height:18px;color:#8a6f1d}
.pp-cat-icon-lounge{border:1.8px solid currentColor;border-radius:3px;box-sizing:border-box;background:transparent}
.pp-cat-icon-lounge::before{content:'';position:absolute;left:3px;right:3px;bottom:4px;height:4px;border:1.6px solid currentColor;border-top:0;border-radius:0 0 2px 2px}
.pp-cat-icon-lounge::after{content:'';position:absolute;left:4px;top:4px;width:8px;height:5px;border:1.6px solid currentColor;border-bottom:0;border-radius:5px 5px 0 0}
.pp-section-type .pp-cat-icon-lounge{width:26px;height:26px;margin-right:10px;color:#fff;background:#8a6f1d;border-color:#8a6f1d;vertical-align:middle}
.pp-section-type .pp-cat-icon-lounge::before,.pp-section-type .pp-cat-icon-lounge::after{color:#fff;border-color:#fff}
.pp-filter-tabs a.active .pp-cat-icon-lounge{color:#fff}
.pp-cat-icon-refresh{width:18px;height:18px;margin-right:8px;color:#8a6f1d}
.pp-cat-icon-refresh::before{content:'✦';position:absolute;inset:0;display:grid;place-items:center;font-size:17px;line-height:1;color:currentColor}
.pp-section-type .pp-cat-icon-refresh{width:28px;height:28px;margin-right:9px;border-radius:50%;background:#8a6f1d;color:#fff;vertical-align:middle}
.pp-section-type .pp-cat-icon-refresh::before{font-size:16px;color:#fff}
.pp-section-type .pp-cat-icon{display:inline-block}


/* Minimal lounge public top bar: homepage logo + account login */
.pp-lounge-topbar{background:#fff;border-bottom:1px solid rgba(0,0,0,.06);position:relative;z-index:20}
.pp-lounge-topbar-inner{width:min(100% - 48px,1180px);height:68px;margin:0 auto;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px}
.pp-lounge-topbar-left{justify-self:start}.pp-lounge-topbar-right{justify-self:end;min-width:64px;text-align:right}
.pp-account-login,.pp-top-logout{display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:0 16px;border:1px solid #d8d8d8;border-radius:999px;background:#fff;color:#222;text-decoration:none;font-size:14px;font-weight:800;box-shadow:0 1px 0 rgba(0,0,0,.02)}
.pp-account-login:hover,.pp-top-logout:hover{border-color:#8a6f1d;color:#8a6f1d}
.pp-home-logo{display:inline-flex;align-items:center;gap:10px;color:#171717;text-decoration:none;font-weight:900;letter-spacing:.02em}
.pp-home-logo-mark{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:50%;background:#8a6f1d;color:#fff;font-family:Georgia,serif;font-size:21px;line-height:1}
.pp-home-logo-text{font-size:18px;color:#171717}
@media(max-width:640px){.pp-lounge-topbar-inner{width:min(100% - 28px,1180px);height:58px;grid-template-columns:auto 1fr auto}.pp-home-logo{justify-self:center}.pp-home-logo-mark{width:30px;height:30px;font-size:18px}.pp-home-logo-text{font-size:16px}.pp-account-login,.pp-top-logout{min-height:32px;padding:0 12px;font-size:13px}.pp-lounge-topbar-right{min-width:0}}


/* Priority Pass-style collapsible lounge search */
.pp-top-search{width:min(100% - 48px,640px);margin:0 auto 18px;display:flex;justify-content:center;position:relative;z-index:19}
.pp-top-search-pill{width:min(100%,560px);height:48px;border:0;border-radius:999px;background:#8a6f1d;color:#fff;font-size:16px;font-weight:900;letter-spacing:.01em;box-shadow:none;cursor:pointer}
.pp-top-search-field{width:min(100%,560px);height:48px;background:#fff;border:1px solid #e4e0d7;box-shadow:0 1px 8px rgba(0,0,0,.08);display:flex;align-items:center;gap:12px;padding:0 16px;color:#666;box-sizing:border-box}
.pp-top-search-field[hidden],.pp-top-search-pill[hidden]{display:none!important}
.pp-top-search-field span{font-size:20px;color:#6c6c62;line-height:1;transform:rotate(-20deg);display:inline-block}
.pp-top-search-field input{border:0;outline:0;flex:1;height:42px;font-size:15px;color:#222;background:transparent}
.pp-top-search-field input::placeholder{color:#8a8a8a}
.pp-airport-page .pp-top-search{margin-bottom:6px}
@media(max-width:640px){.pp-top-search{width:min(100% - 28px,640px);margin-bottom:16px}.pp-top-search-pill,.pp-top-search-field{width:100%;height:46px}.pp-top-search-pill{font-size:15px}}


/* Official image support for lounge detail pages */
.pp-carousel-image{background:#ddd;display:block}
.pp-carousel-image img{width:100%;height:100%;object-fit:cover;display:block}
.pp-hours li{display:grid;grid-template-columns:150px 1fr;align-items:center;gap:20px}
.pp-acc ul{margin:0 0 24px 18px;padding:0;color:#333;line-height:1.7}


/* Priority Pass detail visual polish */
.pp-lounge-main{width:min(100% - 48px,1060px);margin:30px auto 0}.pp-back-link{font-size:15px;color:#1f1f1f;margin-bottom:22px}.pp-detail-hero{grid-template-columns:minmax(260px,360px) minmax(0,1fr);gap:36px;align-items:start}.pp-detail-copy h1{font-size:32px;font-weight:700;letter-spacing:-.02em;margin:18px 0 12px}.pp-airport-name{font-size:16px;line-height:1.35;margin:0 0 8px;color:#252525}.pp-rating.big{margin:18px 0 0;color:#8a6f1d}.pp-rating.big b{font-size:19px;color:#202124}.pp-traveller-pill{border-color:#222;padding:7px 14px;margin-top:18px;background:#fff}.pp-carousel{height:318px;border-radius:0;background:#eee}.pp-carousel-image img{filter:saturate(1.02);}.pp-dots{bottom:14px}.pp-dots i{width:7px;height:7px;background:rgba(255,255,255,.65)}.pp-dots i.active{background:#fff}.pp-accordion-wrap{margin-top:36px;border-top:1px solid #d9d9d9}.pp-acc{border-bottom:1px solid #d9d9d9}.pp-acc summary{min-height:76px;font-size:18px;color:#1e1f26}.pp-acc summary b{font-weight:700}.pp-acc summary span{width:11px;height:11px;border-right:1.8px solid #212121;border-bottom:1.8px solid #212121;transform:rotate(45deg)}.pp-acc[open] summary span{transform:rotate(225deg);margin-top:8px}.pp-acc p{font-size:16px;line-height:1.55;color:#333;margin:0 0 26px;max-width:820px}.pp-acc ul:not(.pp-hours){font-size:16px;line-height:1.65;margin:0 0 28px 21px;color:#333}.pp-hours{gap:0;padding:0 0 26px;margin:0;max-width:520px}.pp-hours li{display:grid;grid-template-columns:155px 1fr;gap:24px;min-height:28px;font-size:16px;color:#333}.pp-hours li span{color:#333}.pp-hours li b{font-weight:500;color:#222}.pp-hours li:nth-child(3) span,.pp-hours li:nth-child(3) b{font-weight:800}.pp-facilities{border-bottom:1px solid #d9d9d9;padding:26px 0 28px}.pp-facilities h2{font-size:18px;font-weight:700;color:#1e1f26;margin:0 0 21px}.pp-fac-list{gap:20px;max-width:560px}.pp-fac-list p{display:flex;align-items:center;gap:15px;font-size:16px;line-height:1.35;color:#333}.pp-fac-list i{width:24px;height:24px;display:inline-block;flex:0 0 24px;color:#1e1f26;position:relative;font-style:normal}.pp-facilities button{right:0;bottom:26px;font-size:15px;font-weight:700;border-bottom:1px solid #222}.pp-fac-icon.air:before,.pp-fac-icon.air:after{content:'';position:absolute;left:11px;top:2px;width:2px;height:20px;background:#1e1f26;border-radius:2px}.pp-fac-icon.air:after{transform:rotate(90deg)}.pp-fac-icon.air{transform:rotate(45deg)}.pp-fac-icon.card{border:1.7px solid #1e1f26;border-radius:3px;box-sizing:border-box}.pp-fac-icon.card:before{content:'';position:absolute;left:3px;right:3px;top:7px;height:1.7px;background:#1e1f26}.pp-fac-icon.access:before{content:'♿';position:absolute;inset:0;font-size:22px;line-height:24px;color:#1e1f26}.pp-fac-icon.flight{border:1.7px solid #1e1f26;border-radius:2px;box-sizing:border-box}.pp-fac-icon.flight:before{content:'';position:absolute;left:4px;right:4px;top:6px;height:2px;background:#1e1f26;box-shadow:0 5px 0 #1e1f26,0 10px 0 #1e1f26}.pp-fac-icon.news{border:1.7px solid #1e1f26;border-radius:2px;box-sizing:border-box}.pp-fac-icon.news:before{content:'';position:absolute;left:4px;top:4px;width:6px;height:6px;background:#1e1f26}.pp-fac-icon.news:after{content:'';position:absolute;left:12px;right:3px;top:4px;height:2px;background:#1e1f26;box-shadow:0 5px 0 #1e1f26, -8px 10px 0 #1e1f26,0 10px 0 #1e1f26}.pp-fac-icon.dot:before{content:'';position:absolute;left:8px;top:8px;width:8px;height:8px;border-radius:50%;background:#1e1f26}.pp-related-mini{margin:48px 0 70px;padding:28px 0;border-top:1px solid #eee}.pp-related-mini h2{font-size:22px;margin:0 0 16px}.pp-related-mini div{display:flex;flex-wrap:wrap;gap:10px}.pp-related-mini a{padding:10px 14px;border:1px solid #ddd;border-radius:999px;color:#222;text-decoration:none;background:#fff}@media(max-width:760px){.pp-lounge-main{width:min(100% - 32px,1060px);margin-top:24px}.pp-detail-hero{display:flex;flex-direction:column-reverse;gap:22px}.pp-carousel{width:calc(100% + 32px);margin-left:-16px;height:255px}.pp-detail-copy h1{font-size:30px;margin-top:2px}.pp-airport-name{font-size:16px;margin-bottom:7px}.pp-accordion-wrap{margin-top:28px}.pp-hours li{grid-template-columns:1fr 1fr;gap:12px}.pp-facilities button{position:static;margin-top:23px}.pp-related-mini div{display:grid}.pp-related-mini a{border-radius:8px}}


/* Facility icons: pure inline SVG, no emoji fallback */
.pp-fac-list .pp-fac-svg,.pp-facility-all-list .pp-fac-svg{width:24px;height:24px;display:inline-flex;align-items:center;justify-content:center;flex:0 0 24px;color:#1e1f26}
.pp-fac-list .pp-fac-svg svg,.pp-facility-all-list .pp-fac-svg svg{width:24px;height:24px;display:block;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;overflow:visible}
.pp-fac-list p{display:flex;align-items:center;gap:15px}
.pp-fac-list i.pp-fac-icon,.pp-facility-all-list i.pp-fac-icon{display:none!important}


/* Official-style instant airport search dropdown */
.pp-top-search.is-open{z-index:80}
.pp-top-search-field{position:relative}
.pp-top-search-field .pp-search-clear{width:24px;height:24px;border:0;border-radius:50%;background:#d9d9d9;color:#555;display:grid;place-items:center;padding:0;font-size:18px;line-height:1;font-weight:700;cursor:pointer;flex:0 0 auto}
.pp-top-search-field .pp-search-clear[hidden]{display:none!important}
.pp-live-search-panel{position:absolute;top:56px;left:50%;transform:translateX(-50%);width:min(100vw - 28px,560px);background:#fff;border:1px solid #e6e6e6;box-shadow:0 18px 44px rgba(0,0,0,.16);z-index:90;text-align:left;color:#202124;overflow:hidden}
.pp-live-search-panel[hidden]{display:none!important}
.pp-live-group h3{font-size:19px;line-height:1.3;margin:0;padding:22px 22px 18px;font-weight:900;color:#111;border-bottom:1px solid #e7e7e7}
.pp-live-row{display:grid;grid-template-columns:48px 1fr;gap:14px;align-items:center;padding:14px 20px;text-decoration:none;color:#111;border-bottom:1px solid #ececec;background:#fff}
.pp-live-row:hover{background:#f7f7f7}
.pp-live-icon{width:42px;height:42px;border-radius:50%;background:#f0f0f0;display:grid;place-items:center}
.pp-live-icon svg{width:22px;height:22px;fill:#111;display:block}
.pp-live-copy{min-width:0;display:block}
.pp-live-copy strong{display:block;font-size:15px;line-height:1.35;color:#111;font-weight:500;white-space:normal}
.pp-live-copy small{display:block;margin-top:4px;font-size:13px;line-height:1.35;color:#6b6b6b;white-space:normal}
.pp-live-en,.pp-live-cn{display:block}
.pp-live-cn{margin-top:8px;padding-top:8px;border-top:1px solid #f0f0f0}
.pp-live-cn strong{font-size:14px;color:#2a2a2a}
.pp-live-cn small{font-size:13px;color:#777}
.pp-live-empty{padding:24px 22px;color:#666;font-size:14px;border-top:1px solid #ececec}
.pp-live-empty[hidden],.pp-live-group[hidden]{display:none!important}
@media(max-width:640px){.pp-top-search.is-open{width:100%;margin:0 0 12px}.pp-top-search.is-open .pp-top-search-field{width:calc(100% - 28px);border-left:0;border-right:0;box-shadow:none}.pp-live-search-panel{top:52px;width:100%;left:0;right:0;transform:none;border-left:0;border-right:0;box-shadow:0 10px 24px rgba(0,0,0,.12)}.pp-live-row{grid-template-columns:46px 1fr;padding:13px 18px}.pp-live-group h3{padding:20px 20px 16px}}


/* Hide native search cancel button; keep only custom official-style clear button */
.pp-top-search-field input[type="search"]::-webkit-search-cancel-button,
.pp-top-search-field input[type="search"]::-webkit-search-decoration,
.pp-top-search-field input[type="search"]::-webkit-search-results-button,
.pp-top-search-field input[type="search"]::-webkit-search-results-decoration{-webkit-appearance:none;appearance:none;display:none}
.pp-top-search-field input[type="search"]{appearance:textfield;-webkit-appearance:textfield}


/* Admin display settings */
.admin-settings-summary { margin-top: 22px; }
.settings-status-row { display: flex; flex-wrap: wrap; gap: 12px; }
.settings-status { display: inline-flex; align-items: center; border-radius: 999px; padding: 9px 14px; font-size: 13px; font-weight: 800; border: 1px solid rgba(120, 92, 45, .18); }
.settings-status.on { color: #6d4d16; background: rgba(201, 164, 92, .18); }
.settings-status.off { color: #7b1d1d; background: rgba(220, 38, 38, .08); }
.settings-form { display: grid; gap: 16px; margin-top: 18px; }
.settings-toggle-card { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; padding: 18px; border: 1px solid rgba(120, 92, 45, .16); border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,244,235,.92)); cursor: pointer; }
.settings-toggle-card input { position: absolute; opacity: 0; pointer-events: none; }
.toggle-visual { width: 54px; height: 30px; border-radius: 999px; background: #d5d0c4; position: relative; transition: .2s ease; box-shadow: inset 0 1px 4px rgba(0,0,0,.12); }
.toggle-visual::after { content: ""; position: absolute; width: 24px; height: 24px; border-radius: 50%; background: #fff; left: 3px; top: 3px; box-shadow: 0 4px 12px rgba(0,0,0,.18); transition: .2s ease; }
.settings-toggle-card input:checked + .toggle-visual { background: #b78a35; }
.settings-toggle-card input:checked + .toggle-visual::after { transform: translateX(24px); }
.settings-toggle-card strong { display: block; color: #20170f; font-size: 17px; margin-bottom: 5px; }
.settings-toggle-card em { display: block; color: #7a7164; font-style: normal; line-height: 1.55; font-size: 13px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; }
.muted { color: #7a7164; margin: 8px 0 0; }
@media (max-width: 640px) { .settings-toggle-card { grid-template-columns: 1fr; } }


/* Detail bilingual text */
.pp-detail-copy h1 br { display: block; }
.pp-airport-name br { display: block; }


/* Priority Pass-style all facilities modal */
.pp-fac-list p,.pp-facility-all-list p{position:relative}.pp-free-badge{margin-left:auto;border:1px solid #9a9a9a;border-radius:999px;padding:5px 13px;font-size:13px;font-style:normal;color:#333;line-height:1.2;white-space:nowrap}.pp-facility-modal[hidden]{display:none!important}.pp-facility-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:flex-start;justify-content:center;padding:34px 24px;box-sizing:border-box;overflow:auto}.pp-facility-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.46)}.pp-facility-sheet{position:relative;width:min(100%,760px);max-height:none;overflow:visible;background:#fff;border-radius:2px;box-shadow:0 28px 90px rgba(0,0,0,.32);padding:0 44px 28px}.pp-facility-sheet header{height:70px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #e2e2e2}.pp-facility-sheet h2{font-size:24px;margin:0;color:#111;font-weight:800}.pp-facility-sheet header button{width:auto;background:transparent;border:0;color:#111;font-size:34px;line-height:1;padding:0;cursor:pointer}.pp-facility-all-list p{min-height:55px;margin:0;display:flex;align-items:center;gap:20px;border-bottom:1px solid #e6e6e6;font-size:17px;color:#222}.pp-facility-modal-open{overflow:hidden}.pp-fac-drink svg path{d:path('M7 4h10l-4 7v6l3 2H8l3-2v-6L7 4z')}.pp-fac-shoe svg path{d:path('M4 15c4 0 6-2 8-5l4 4 4 1v3H4v-3z')}.pp-fac-tv svg path{d:path('M4 6h16v11H4V6zm6 14h4')}.pp-fac-wifi svg path{d:path('M4 9a12 12 0 0 1 16 0M7 12a7 7 0 0 1 10 0M10 15a3 3 0 0 1 4 0M12 18h.01')}.pp-fac-card svg path{d:path('M3.5 5.5h17v13h-17v-13zm0 4h17M7 14.5h4')}.pp-fac-flight svg path{d:path('M4 5h16v14H4V5zm4 4h8M8 12h8M8 15h5')}.pp-fac-news svg path{d:path('M4 5h16v14H4V5zm4 4h4M8 13h8M8 16h8M14 9h2')}
.pp-fac-luggage svg path{d:path('M7 8V6a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v2m-12 0h14v12H5V8zm5 0V6h4v2')}.pp-fac-shower svg path{d:path('M7 6a5 5 0 0 1 10 0v2M5 10h14M8 14h.01M12 14h.01M16 14h.01M9 18h.01M13 18h.01')}.pp-fac-access svg path{d:path('M12 4a2 2 0 1 0 0 .1M12 8v5h4l3 5M10 11a5 5 0 1 0 5 5')}
.pp-fac-sofa svg path{d:path('M5 11V8a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3v3M4 12h16v5H4v-5zm2 5v2m12-2v2')}
@media(max-width:640px){.pp-facility-modal{align-items:flex-end;padding:0;overflow:hidden}.pp-facility-sheet{width:100%;max-height:88vh;overflow:auto;border-radius:18px 18px 0 0;padding:0 22px 18px}.pp-facility-sheet header{height:64px}.pp-facility-all-list p{min-height:58px}}


/* Official-style facilities preview rows */
.pp-fac-list .pp-fac-bullet-row .pp-fac-svg{width:24px;height:24px;position:relative}.pp-fac-list .pp-fac-bullet-row .pp-fac-svg svg{display:none}.pp-fac-list .pp-fac-bullet-row .pp-fac-svg::before{content:"";position:absolute;left:9px;top:9px;width:6px;height:6px;border-radius:50%;background:#111}.pp-fac-list .pp-fac-bullet-row{gap:15px}.pp-facilities button{cursor:pointer}


/* Fixed-open important information block above facilities */
.pp-important-info{border-bottom:1px solid #d9d9d9;padding:26px 0 28px}
.pp-important-info h2{font-size:18px;font-weight:700;color:#1e1f26;margin:0 0 21px}
.pp-important-info ul{font-size:16px;line-height:1.65;margin:0 0 0 21px;padding:0;color:#333}
.pp-important-info li{margin:0 0 8px}


/* Auto-rotating official image carousel */
.pp-carousel-image{position:relative;background:#ddd;overflow:hidden}
.pp-carousel-image .pp-carousel-slide{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;opacity:0;transition:opacity .55s ease;filter:saturate(1.02)}
.pp-carousel-image .pp-carousel-slide.is-active{opacity:1;z-index:1}
.pp-carousel-image .pp-dots{z-index:2}
.pp-carousel-image .pp-dots i{cursor:pointer}

/* Align facility preview badges to the right edge */
.pp-facilities .pp-fac-list{max-width:none;width:100%}
.pp-facilities .pp-fac-list p{width:100%;box-sizing:border-box}
.pp-facilities .pp-fac-list p > span:nth-of-type(2){flex:1 1 auto;min-width:0}
.pp-facilities .pp-fac-list .pp-free-badge{margin-left:auto;flex:0 0 auto}



/* Official-inspired lounge detail header */
.pp-detail-hero-official{display:grid;grid-template-columns:1fr;gap:28px;align-items:stretch;border-bottom:0}.pp-detail-hero-official .pp-detail-media{width:100%;height:430px;border-radius:0;background:#eee;overflow:hidden}.pp-detail-hero-official .pp-carousel-slide{object-fit:cover}.pp-detail-summary-card{position:relative;margin:0 auto;width:min(100%,940px);background:#fff;padding:34px 38px 32px;border:1px solid #ece7dc;box-shadow:0 10px 30px rgba(0,0,0,.06);z-index:2}.pp-detail-title-row{display:flex;align-items:flex-start;justify-content:space-between;gap:28px;border-bottom:1px solid #e7e2d8;padding-bottom:24px}.pp-detail-kicker{margin:0 0 12px;color:#8d6f2d;font-size:13px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.pp-detail-summary-card h1{margin:0;font-size:42px;line-height:1.08;font-weight:800;letter-spacing:-.03em;color:#111}.pp-detail-summary-card h1 br{display:block}.pp-detail-summary-card .pp-rating.big{margin:6px 0 0;display:inline-flex;align-items:center;gap:7px;white-space:nowrap;color:#9b7a21}.pp-detail-summary-card .pp-rating.big b{font-size:21px;color:#1b1b1b}.pp-detail-summary-card .pp-rating.big span{font-size:14px;color:#666}.pp-detail-meta-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 34px;padding-top:26px}.pp-detail-meta-item span{display:block;margin-bottom:8px;font-size:13px;font-weight:800;color:#887e70;letter-spacing:.04em}.pp-detail-meta-item b{display:block;font-size:16px;line-height:1.48;color:#202124;font-weight:600}.pp-detail-meta-item b br{display:block}.pp-detail-hero-official + .pp-accordion-wrap{margin-top:46px}@media(max-width:760px){.pp-detail-hero-official{gap:20px}.pp-detail-hero-official .pp-detail-media{width:calc(100% + 32px);margin-left:-16px;height:276px}.pp-detail-summary-card{width:100%;margin:0;padding:26px 22px 24px;box-shadow:0 8px 24px rgba(0,0,0,.05)}.pp-detail-title-row{display:block;padding-bottom:22px}.pp-detail-summary-card h1{font-size:31px}.pp-detail-summary-card .pp-rating.big{margin-top:18px}.pp-detail-meta-grid{grid-template-columns:1fr;gap:18px;padding-top:22px}.pp-detail-hero-official + .pp-accordion-wrap{margin-top:34px}}

/* Prevent facility preview badges from overlapping the Show All action */
.pp-facilities button[data-facilities-open]{
  position:static!important;
  display:block;
  margin:24px 0 0 auto;
  width:max-content;
}
.pp-facilities .pp-fac-list{
  padding-right:0;
}

/* Airport lounge card polish: rounded image cards and cleaner hierarchy */
.pp-airport-card-grid .pp-exp-card{
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 28px rgba(28,24,18,.08),0 1px 0 rgba(0,0,0,.04);
  transition:transform .18s ease,box-shadow .18s ease;
}
.pp-airport-card-grid .pp-exp-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 44px rgba(28,24,18,.14),0 1px 0 rgba(0,0,0,.04);
}
.pp-airport-card-grid .pp-exp-card img{
  border-radius:24px 24px 0 0;
  height:196px;
}
.pp-airport-card-grid .pp-exp-card>div{
  padding:18px 18px 20px;
}
.pp-airport-card-grid .pp-exp-card h4{
  margin:0 0 12px;
  color:#171717;
  font-size:19px;
  line-height:1.32;
  letter-spacing:-.01em;
}
.pp-airport-card-grid .pp-exp-card h4 br+*{
  color:#6d5b22;
}
.pp-airport-card-grid .pp-exp-card p{
  margin:0 0 8px;
  color:#5b5b55;
  font-size:14px;
  line-height:1.45;
}
.pp-airport-card-grid .pp-exp-card p:last-child{
  margin-bottom:0;
}
.pp-airport-card-grid .pp-card-rating{
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-bottom:10px;
  color:#8a6f1d!important;
  font-weight:900;
}
@media(max-width:640px){
  .pp-airport-card-grid .pp-exp-card{border-radius:22px}
  .pp-airport-card-grid .pp-exp-card img{height:182px;border-radius:22px 22px 0 0}
  .pp-airport-card-grid .pp-exp-card>div{padding:16px 16px 18px}
}

.pp-airport-card-grid .pp-card-title-en,
.pp-airport-card-grid .pp-card-title-cn{
  display:block;
}
.pp-airport-card-grid .pp-card-title-cn{
  margin-top:4px;
  color:#7a6726;
  font-size:15px;
  font-weight:700;
  letter-spacing:0;
}
.pp-airport-card-grid .pp-card-meta,
.pp-airport-card-grid .pp-card-hours{
  position:relative;
  padding-left:0;
}
.pp-airport-card-grid .pp-card-meta{
  color:#3f3f3a;
  font-weight:700;
}
.pp-airport-card-grid .pp-card-hours{
  color:#66615a;
}



.pp-official-search-input-wrapper { position: relative; }
.pp-official-suggest-panel { position: absolute; top: calc(100% + 12px); left: 0; right: 0; z-index: 120; background: #fff; color: #1E1F26; border: 1px solid #e5e5e5; box-shadow: 0 18px 50px rgba(0,0,0,.16); text-align: left; overflow: hidden; }
.pp-official-suggest-heading { padding: 18px 22px 12px; border-bottom: 1px solid #ececec; font-size: 20px; line-height: 1.25; font-weight: 700; }
.pp-official-suggest-row { display: flex; align-items: center; gap: 16px; padding: 16px 22px; border-bottom: 1px solid #ececec; color: #1E1F26; text-decoration: none; }
.pp-official-suggest-row:last-child { border-bottom: 0; }
.pp-official-suggest-row:hover { background: #f7f7f7; }
.pp-official-suggest-icon { width: 38px; height: 38px; border-radius: 999px; background: #ececec; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 38px; }
.pp-official-suggest-icon svg { width: 21px; height: 21px; fill: #1E1F26; display: block; }
.pp-official-suggest-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pp-official-suggest-copy strong { font-size: 16px; line-height: 1.35; font-weight: 500; color: #1E1F26; }
.pp-official-suggest-copy small { font-size: 14px; line-height: 1.35; color: #666; }
.pp-official-suggest-copy mark { background: #d9cc74; color: inherit; padding: 0; }


.pp-user-lang-switch {
  margin: 0 0 16px;
}


.pp-digital-card-inline {
  margin: 22px auto 0;
  box-shadow: none;
  border: 1px solid rgba(151, 119, 50, .22);
  width: min(100%, 380px);
}

.pp-digital-card-inline .pp-refresh-countdown {
  margin: -4px auto 16px;
  text-align: center;
  justify-content: center;
}


.pp-plan-card h2 {
  text-align: center;
}


.pp-card-lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 34px 0 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
}

.pp-card-lang-switch a {
  color: #28313d;
  text-decoration: none;
}

.pp-card-lang-switch a.active,
.pp-card-lang-switch a:hover {
  color: var(--brand);
}

.pp-card-lang-switch span {
  width: 1px;
  height: 18px;
  background: rgba(90, 90, 90, .35);
  display: inline-block;
}


.pp-refresh-countdown-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}


.pp-card-logo-official {
  margin: 8px auto 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp-card-logo-official img,
.pp-card-logo-svg {
  display: block;
  width: 142px;
  height: 68px;
  object-fit: contain;
}

/* Official Priority Pass dashboard nav clone */
.pp-mobile-body,
.pp-mobile-page,
.pp-mobile-main {
  background: #edf5fb;
}

.pp-mobile-header {
  display: none;
}

.pp-dashboard-search-row {
  background: #fff;
  padding: 18px 20px 16px;
  display: flex;
  justify-content: center;
}

.pp-dashboard-search-widget {
  width: min(100%, 330px);
  position: relative;
}

.pp-dashboard-search-widget form {
  width: 100%;
  position: relative;
}

.pp-dashboard-search-pill {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
}

.pp-dashboard-search-widget .pp-official-search-input-wrapper {
  width: 100%;
  max-width: none;
}

.pp-dashboard-search-widget.is-open,
.pp-dashboard-search-widget form.is-open {
  width: min(100%, 380px);
}

.pp-dashboard-search-widget.is-open .pp-official-search-button,
.pp-dashboard-search-widget form.is-open .pp-official-search-button {
  display: none;
}

.pp-dashboard-search-widget.is-open .pp-official-search-input-wrapper,
.pp-dashboard-search-widget form.is-open .pp-official-search-input-wrapper {
  display: block;
  width: 100%;
  max-width: none;
}

.pp-dashboard-search-widget .pp-official-search-input {
  width: 100%;
  max-width: none;
}

.pp-dashboard-search-widget .pp-official-suggest-panel {
  z-index: 500;
}

.pp-dashboard-official-shell,
.pp-dashboard-official-shell .bg-normalSky {
  background: #edf5fb;
}

.pp-dashboard-official-shell .padded-sides {
  padding-left: 20px;
  padding-right: 20px;
}

.pp-dashboard-official-shell .holder-1030 {
  max-width: 1030px;
  margin: 0 auto;
}

.pp-dashboard-official-shell .pt-dashboard-nav {
  padding-top: 30px;
}

.pp-dashboard-title-wrap,
.pp-dashboard-official-shell .relative {
  position: relative;
}

.DashboardNav_title-row__3oiii {
  min-height: 56px;
  padding-right: 116px;
}

.pp-dashboard-welcome-text {
  margin: 0;
  color: #111;
  font-family: Arial, 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
}

.pp-dashboard-welcome-text .text-default {
  color: #111;
}

.pp-dashboard-welcome-text .font-bold {
  display: block;
  margin-top: 3px;
  font-weight: 700;
}

.pp-dashboard-logout-wrap,
.pp-dashboard-official-shell .absolute.top-0.right-0 {
  position: absolute;
  top: 0;
  right: 0;
}



html[lang="en"] .pp-dashboard-welcome-text {
  font-size: 14px;
  line-height: 1.18;
}

html[lang="en"] .pp-dashboard-welcome-text .font-bold {
  font-size: 15px;
  line-height: 1.18;
}

.LogoutButton_logout-btn__v1LNR {
  min-width: 91px;
  height: 42px;
  padding: 0 17px;
  border: 1px solid #9b813b;
  border-radius: 0;
  background: #fff;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none;
}

.DashboardNav_select-wrapper__KFkpH {
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}

.DashboardNav_select-box__cP3vk {
  position: relative;
  width: 100%;
  height: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  background: #8f7a2f;
  color: #fff;
  display: block;
  padding: 0 56px 0 20px;
  text-align: left;
  font-family: Arial, 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 44px;
  text-transform: uppercase;
  cursor: default;
}

.DashboardNav_select-box__cP3vk span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.DashboardNav_select-box__cP3vk::after {
  content: '';
  position: absolute;
  top: 0;
  right: 52px;
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.55);
}

.DashboardNav_select-box__cP3vk svg {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 16px;
  height: 16px;
  fill: #fff;
  z-index: 2;
}

.DashboardNav_select-box__cP3vk path {
  fill: #fff;
}

.pp-section-select {
  display: none;
}

.pp-mobile-card {
  width: calc(100% - 40px);
  max-width: 1030px;
  margin: 0 auto;
  background: #fff;
}

.pp-mobile-card.pp-plan-card {
  margin-top: 0;
  border-bottom: 0;
  padding-top: 30px;
}

.pp-plan-card h2 {
  text-align: left;
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 26px;
}

@media (max-width: 640px) {
  .pp-dashboard-search-row { padding: 14px 20px; }
  .pp-dashboard-search-widget,
  .pp-dashboard-search-widget.is-open,
  .pp-dashboard-search-widget form.is-open { width: 100%; }
  .pp-dashboard-official-shell .padded-sides { padding-left: 20px; padding-right: 20px; }
  .DashboardNav_title-row__3oiii { min-height: 55px; padding-right: 108px; }
  .pp-dashboard-welcome-text { font-size: 17px; }
  .LogoutButton_logout-btn__v1LNR { min-width: 90px; height: 40px; padding: 0 15px; }
  .DashboardNav_select-box__cP3vk { height: 44px; min-height: 44px; line-height: 44px; font-size: 16px; }
  .pp-mobile-card { width: calc(100% - 40px); }
  .pp-plan-card h2 { font-size: 22px; }
}

/* Account dashboard screenshot fidelity pass */
.pp-dashboard-search-row + .pp-dashboard-official-shell {
  margin-top: 0;
}

.pp-dashboard-official-shell .padded-sides {
  padding-left: 20px;
  padding-right: 20px;
}

.pp-dashboard-official-shell .pt-dashboard-nav {
  padding-top: 24px;
}

.DashboardNav_title-row__3oiii {
  min-height: 56px;
  padding-right: 118px;
}

.pp-dashboard-welcome-text {
  font-size: 17px;
  line-height: 1.22;
}

.pp-dashboard-welcome-text .font-bold {
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
}

.LogoutButton_logout-btn__v1LNR {
  width: 92px;
  min-width: 92px;
  height: 40px;
  padding: 0;
  border-color: #9b813b;
  font-size: 14px;
  font-weight: 600;
}

.DashboardNav_select-box__cP3vk {
  height: 44px;
  min-height: 44px;
  line-height: 44px;
  background: #8d7a32;
  padding-left: 20px;
  padding-right: 58px;
  font-size: 16px;
  font-weight: 700;
}

.DashboardNav_select-box__cP3vk::after {
  right: 52px;
  height: 44px;
}

.DashboardNav_select-box__cP3vk svg {
  right: 18px;
  top: 14px;
}

.pp-mobile-card.pp-plan-card {
  padding-top: 28px;
}

@media (min-width: 641px) {
  .pp-dashboard-official-shell .holder-1030,
  .pp-mobile-card {
    max-width: 1030px;
  }
}

/* Official extracted DashboardNav/LogoutButton CSS */
.pp-dashboard-official-shell .pt-dashboard-nav {
  padding-top: 30px;
}

.DashboardNav_title-row__3oiii {
  padding-bottom: 20px;
  padding-right: 150px;
  min-height: 0;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -1px;
}

.pp-dashboard-welcome-text {
  margin: 0;
  font-family: Arial, 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
  letter-spacing: inherit;
  color: #111;
}

.pp-dashboard-welcome-text .font-bold {
  display: block;
  margin-top: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.pp-dashboard-logout-form {
  margin: 0;
}

.LogoutButton_logout-btn__v1LNR {
  min-width: 110px;
  height: auto;
  border: 1px solid rgb(130 113 39);
  border-radius: 0;
  background: transparent;
  padding-left: .75rem;
  padding-right: .75rem;
  font-family: Arial, 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  color: rgb(117 102 37);
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
}

.DashboardNav_select-wrapper__KFkpH {
  position: relative;
  bottom: 1.5rem;
  width: 100%;
  padding-top: 20px;
  margin-top: 0;
  padding-bottom: 0;
}

.DashboardNav_select-box__cP3vk {
  position: relative;
  display: flex;
  height: 40px;
  min-height: 40px;
  width: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  background-color: rgb(130 113 39);
  padding: 10px 50px 10px 20px;
  text-align: left;
  font-family: Arial, 'Helvetica Neue', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(255 255 255);
  appearance: none;
}

.DashboardNav_select-box__cP3vk span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.DashboardNav_select-box__cP3vk::after {
  content: '';
  position: absolute;
  z-index: 20;
  right: 40px;
  top: 4px;
  height: 32px;
  width: 1px;
  background-color: rgb(255 255 255);
}

.DashboardNav_select-box__cP3vk svg {
  position: absolute;
  z-index: 20;
  right: .75rem;
  top: .75rem;
  width: 16px;
  height: 16px;
  fill: #fff;
}

.DashboardNav_select-box__cP3vk path {
  fill: #fff;
}

@media (min-width: 1024px) {
  .DashboardNav_title-row__3oiii {
    padding-right: 170px;
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 640px) {
  .DashboardNav_title-row__3oiii {
    padding-bottom: 20px;
    padding-right: 150px;
    min-height: 0;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -1px;
  }
  .LogoutButton_logout-btn__v1LNR {
    min-width: 110px;
    height: auto;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: 12px;
    line-height: 26px;
    letter-spacing: 1px;
  }
  .DashboardNav_select-box__cP3vk {
    height: 40px;
    min-height: 40px;
    padding: 10px 50px 10px 20px;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 1px;
  }
  .DashboardNav_select-box__cP3vk::after {
    right: 40px;
    top: 4px;
    height: 32px;
  }
  .DashboardNav_select-box__cP3vk svg {
    right: .75rem;
    top: .75rem;
  }
}

/* Final official Log Out size lock */
.pp-dashboard-official-shell .pp-dashboard-logout-wrap {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
}

.pp-dashboard-official-shell .pp-dashboard-logout-form {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.pp-dashboard-official-shell .LogoutButton_logout-btn__v1LNR,
.pp-dashboard-official-shell button.LogoutButton_logout-btn__v1LNR {
  box-sizing: border-box !important;
  min-width: 110px !important;
  width: auto !important;
  height: 28px !important;
  min-height: 0 !important;
  max-height: 28px !important;
  border: 1px solid rgb(130 113 39) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 .75rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: Arial, 'Helvetica Neue', 'Microsoft YaHei', sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  letter-spacing: 1px !important;
  color: rgb(117 102 37) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  appearance: none !important;
  cursor: pointer !important;
}

.pp-dashboard-official-shell .LogoutButton_logout-btn__v1LNR:hover,
.pp-dashboard-official-shell .LogoutButton_logout-btn__v1LNR:focus {
  border-color: rgb(130 113 39) !important;
  background: transparent !important;
  color: rgb(117 102 37) !important;
}

/* searchgoldmatch1: keep official search button the same gold as account nav */
.pp-official-search-button,
.pp-official-search-button:hover,
.pp-official-search-button:focus,
.pp-official-search-button:focus-visible,
.pp-official-search-button:active,
.pp-dashboard-search-widget .pp-official-search-button,
.pp-dashboard-search-widget .pp-official-search-button:hover,
.pp-dashboard-search-widget .pp-official-search-button:focus,
.pp-dashboard-search-widget .pp-official-search-button:focus-visible,
.pp-dashboard-search-widget .pp-official-search-button:active {
  background: rgb(130 113 39) !important;
  background-color: rgb(130 113 39) !important;
}

/* mobiletopbar1: official Priority Pass-style top header */
.pp-official-mobile-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 68px;
  background: #fff;
  border-bottom: 1px solid #ececec;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  padding: 0 6px;
}
.pp-topbar-account,
.pp-topbar-menu,
.pp-topbar-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pp-topbar-account {
  width: 56px;
  height: 56px;
  justify-self: start;
  color: rgb(130 113 39);
}
.pp-topbar-account svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pp-topbar-logo {
  justify-self: center;
  width: 94px;
  height: 54px;
  overflow: hidden;
}
.pp-topbar-logo img {
  display: block;
  width: 86px;
  height: auto;
  transform: translateY(-1px);
}
.pp-topbar-menu {
  appearance: none;
  width: auto;
  min-width: 62px;
  height: 56px;
  justify-self: end;
  border: 0;
  background: transparent;
  padding: 0 8px;
  cursor: pointer;
  gap: 5px;
  color: #1d1d1d;
}
.pp-topbar-language {
  flex-direction: row;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
}
.pp-topbar-language-text {
  display: inline-block;
}
.pp-topbar-language-chevron {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav.pp-search-nav {
  position: sticky;
  top: 68px;
  z-index: 70;
  min-height: 62px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  gap: 0;
}
.pp-search-nav .nav-lounge-search {
  grid-column: auto;
  justify-self: center;
}
@media (min-width: 768px) {
  .pp-official-mobile-topbar {
    height: 74px;
    grid-template-columns: 92px 1fr 92px;
    padding: 0 16px;
  }
  .pp-topbar-logo {
    width: 112px;
    height: 60px;
  }
  .pp-topbar-logo img {
    width: 102px;
  }
  .nav.pp-search-nav {
    top: 74px;
  }
}

/* memberaccountbutton1: account icon on member card page is not a login link */
.pp-member-mobile-topbar .pp-topbar-account {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
}

/* adminuserssplitname1: member list displays surname and given name columns */



@media (max-width: 520px) {
  .pp-digital-card-inline {
    width: min(100%, 380px);
    margin-top: 12px;
  }

  .pp-digital-card {
    padding: 22px 18px 20px;
    border-radius: 12px;
  }

  .pp-card-logo {
    margin-bottom: 12px;
  }

  .pp-card-logo strong {
    font-size: 38px;
  }

  .pp-card-logo span {
    margin-top: 5px;
    font-size: 13px;
  }

  .pp-modal-qr {
    padding: 0 0 12px;
  }

  .pp-modal-qr img {
    width: min(205px, 55vw);
    height: min(205px, 55vw);
  }

  .pp-gold-line {
    margin-bottom: 14px;
  }

  .pp-digital-info {
    gap: 10px;
  }

  .pp-digital-info dt {
    margin-bottom: 2px;
    font-size: 12px;
  }

  .pp-digital-info dd {
    font-size: 15px;
    line-height: 1.16;
  }

  .pp-card-lang-switch {
    margin-top: 14px;
    font-size: 13px;
  }
}

/* 20260618cardcompactheight1 */

.pp-mobile-card .pp-member-card-title {
  margin: 0 0 16px !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

html[lang="en"] .pp-mobile-card .pp-member-card-title {
  font-size: 15px !important;
}


/* Compact Chinese account welcome text */
html[lang="zh-CN"] .pp-dashboard-welcome-text,
html[lang="zh"] .pp-dashboard-welcome-text {
  font-size: 15px !important;
  line-height: 1.18 !important;
}

html[lang="zh-CN"] .pp-dashboard-welcome-text .font-bold,
html[lang="zh"] .pp-dashboard-welcome-text .font-bold {
  font-size: 16px !important;
  line-height: 1.18 !important;
}


/* Compact digital card inner spacing */
.pp-digital-card-inline {
  margin-top: 12px;
}

.pp-digital-card-inline.pp-digital-card {
  padding-top: 18px;
}

.pp-digital-card-inline .pp-card-logo-official {
  margin: 0 auto 10px !important;
}

.pp-digital-card-inline .pp-modal-qr {
  padding: 0 0 8px !important;
}

.pp-digital-card-inline .pp-gold-line {
  margin-bottom: 12px !important;
}

@media (max-width: 520px) {
  .pp-digital-card-inline.pp-digital-card {
    padding-top: 14px !important;
    padding-bottom: 16px !important;
  }

  .pp-digital-card-inline .pp-card-logo-official {
    margin: 0 auto 6px !important;
  }

  .pp-digital-card-inline .pp-modal-qr {
    padding: 0 0 6px !important;
  }

  .pp-digital-card-inline .pp-gold-line {
    margin-bottom: 10px !important;
  }
}


/* Compact digital card member info spacing */
.pp-digital-card-inline .pp-digital-info {
  gap: 10px !important;
}

.pp-digital-card-inline .pp-digital-info dt {
  margin-bottom: 2px !important;
}

.pp-digital-card-inline .pp-card-lang-switch {
  margin-top: 12px !important;
}

@media (max-width: 520px) {
  .pp-digital-card-inline .pp-digital-info {
    gap: 6px !important;
  }

  .pp-digital-card-inline .pp-digital-info dt {
    margin-bottom: 1px !important;
  }

  .pp-digital-card-inline .pp-card-lang-switch {
    margin-top: 8px !important;
  }
}


/* Wider language switch horizontal spacing */
.pp-digital-card-inline .pp-card-lang-switch {
  gap: 22px !important;
}


/* Language switch vertical spacing */
.pp-digital-card-inline .pp-card-lang-switch {
  margin-top: 26px !important;
  margin-bottom: 8px !important;
}

@media (max-width: 520px) {
  .pp-digital-card-inline .pp-card-lang-switch {
    margin-top: 24px !important;
    margin-bottom: 8px !important;
  }
}



@media (max-width: 640px) {
  .home-hero-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    transform: translateY(-6px);
  }

  .home-lang-switch {
    padding: 10px 16px;
    font-size: 13px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: .2em;
  }
}


/* topbarlanguage-dropdown1: language menu opens before switching */
.pp-topbar-language-wrap {
  position: relative;
  justify-self: end;
  display: inline-flex;
  align-items: center;
}
.pp-topbar-language[aria-expanded="true"] .pp-topbar-language-chevron {
  transform: rotate(180deg);
}
.pp-topbar-language-chevron {
  transition: transform .16s ease;
}
.pp-topbar-language-panel {
  position: absolute;
  top: calc(100% - 4px);
  right: 0;
  z-index: 120;
  min-width: 238px;
  padding: 14px 16px 16px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  display: grid;
  gap: 14px;
  text-align: left;
}
.pp-topbar-language-panel[hidden] {
  display: none !important;
}
.pp-topbar-language-panel a {
  color: #1f1f1f;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.pp-topbar-language-panel a.active {
  color: rgb(130 113 39);
}
@media (max-width: 640px) {
  .pp-topbar-language-panel {
    right: -6px;
    min-width: 224px;
  }
}


/* user-home-search-restore1 */
.pp-member-search-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 18px 14px;
  background: #fff;
  border-bottom: 1px solid rgba(130, 113, 39, .12);
  box-sizing: border-box;
}

.pp-member-search-nav .nav-lounge-search {
  grid-column: auto;
  justify-self: stretch;
  z-index: 30;
  width: 100%;
}

.pp-member-search-nav .pp-official-search,
.pp-member-search-nav .pp-official-search-form,
.pp-member-search-nav .pp-official-search-button {
  width: 100%;
}

.pp-member-search-nav .pp-official-search-button,
.pp-member-search-nav .pp-official-search-button:hover,
.pp-member-search-nav .pp-official-search-button:focus,
.pp-member-search-nav .pp-official-search-button:focus-visible,
.pp-member-search-nav .pp-official-search-button:active {
  background: #827127;
}

.pp-member-search-nav .nav-lounge-search.is-open .pp-official-search-input-wrapper,
.pp-member-search-nav .nav-lounge-search form.is-open .pp-official-search-input-wrapper {
  display: block;
}

.pp-member-search-nav .pp-official-search-input-wrapper,
.pp-member-search-nav .pp-official-search-input,
.pp-member-search-nav .pp-official-suggest-panel {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .pp-member-search-nav {
    padding: 10px 12px 12px;
  }

  .pp-member-search-nav .pp-official-search-button {
    width: 100%;
    padding: 0 24px;
    font-size: 14px;
  }
}

/* Mobile airport intro visibility fix */
@media (max-width: 640px) {
  .pp-airport-page .pp-airport-main {
    width: min(100% - 32px, 1180px);
    padding-top: 22px;
  }

  .pp-airport-page .pp-airport-head,
  .pp-airport-page .pp-section-intro {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .pp-airport-page .pp-airport-head {
    padding: 14px 0 24px;
  }

  .pp-airport-page .pp-airport-code {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .pp-airport-page .pp-airport-head h1 {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.13;
    word-break: normal;
  }

  .pp-airport-page .pp-airport-head h2 {
    display: block;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.45;
  }

  .pp-airport-page .pp-section-intro {
    margin: 0 0 24px;
    max-width: none;
  }

  .pp-airport-page .pp-section-intro h3 {
    display: block;
    font-size: 23px;
    line-height: 1.25;
  }

  .pp-airport-page .pp-section-intro > p:last-child {
    display: block;
    font-size: 15px;
    line-height: 1.65;
  }
}

/* Mobile airport controls match official compact row */
@media (max-width: 640px) {
  .pp-airport-page .pp-airport-head h2 {
    margin-bottom: 26px;
  }

  .pp-airport-page .pp-airport-controls {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(142px, 46%);
    align-items: center;
    gap: 14px;
  }

  .pp-airport-page .pp-airport-controls .pp-filter-tabs {
    display: none !important;
  }

  .pp-airport-page .pp-airport-controls > p {
    margin: 0 !important;
    color: #222;
    font-size: 15px;
    line-height: 44px;
    white-space: nowrap;
  }

  .pp-airport-page .pp-terminal-select,
  .pp-airport-page .pp-terminal-select > button,
  .pp-airport-page .pp-terminal-menu {
    width: 100% !important;
  }

  .pp-airport-page .pp-terminal-select > button {
    height: 44px;
    min-height: 44px;
    padding: 0 12px 0 14px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 500;
  }

  .pp-airport-page .pp-terminal-menu {
    top: 48px;
    right: 0;
  }
}


.account-data-element-table th.resizable-column {
  position: sticky;
  cursor: default;
  user-select: none;
}

.account-data-element-table th.resizable-column.is-resize-edge {
  cursor: col-resize;
}

.account-data-element-table .col-resizer {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  cursor: col-resize;
  z-index: 20;
  pointer-events: auto;
  touch-action: none;
}

.account-data-element-table .col-resizer::after {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 2px;
  width: 2px;
  border-radius: 99px;
  background: rgba(90, 90, 90, .18);
}

.account-data-element-table .col-resizer:hover::after,
.column-resizing .account-data-element-table .col-resizer::after {
  background: rgba(70, 70, 70, .62);
}


/* Account data: make the super table fill the admin page area */
.admin-main:has(.account-data-page-card) {
  padding: 18px 18px 28px;
}

.account-data-page-card {
  min-height: calc(100vh - 46px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.account-data-page-card .account-data-table-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.account-data-page-card .account-data-super-list {
  flex: 1 1 auto;
  max-height: none;
  min-height: calc(100vh - 190px);
}

.account-data-page-card .account-data-element-table {
  width: 100%;
  min-width: 1666px;
}

.account-data-page-card .account-data-pager {
  flex: 0 0 auto;
}


/* Admin cards: Element UI order-table style */
.admin-main:has(.cards-element-card) { padding: 18px 18px 28px; }
.cards-element-card { width:100%; max-width:100%; min-height:calc(100vh - 46px); display:flex; flex-direction:column; overflow:hidden; box-sizing:border-box; }
.cards-element-toolbar { display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:nowrap; margin:0 0 12px; padding:0; }
.cards-element-actions, .cards-element-tools { display:inline-flex; align-items:center; gap:10px; min-width:0; }
.cards-element-tools { margin-left:auto; justify-content:flex-end; }
.cards-element-summary { color:#606266; font-size:13px; white-space:nowrap; }
.cards-element-summary strong { color:#409eff; }
.cards-list-generate, .cards-element-secondary, .cards-delete-selected, .cards-row-delete { display:inline-flex; align-items:center; justify-content:center; width:auto !important; min-width:0; height:32px; padding:0 12px; border-radius:4px; font-size:13px; font-weight:600; line-height:1; white-space:nowrap; box-shadow:none; cursor:pointer; }
.cards-list-generate { border:1px solid #a67c52; background:#a67c52; color:#fff; }
.cards-element-secondary { border:1px solid rgba(166,124,82,.42); background:#fff; color:#8a633c; }
.cards-element-search, .cards-element-page-size select { height:32px; border:1px solid #dcdfe6; border-radius:4px; background:#fff; color:#606266; font-size:13px; outline:none; box-sizing:border-box; }
.cards-element-search { width:260px; padding:0 12px; }
.cards-element-page-size { display:inline-flex; align-items:center; gap:6px; color:#1f3656; font-size:13px; font-weight:600; white-space:nowrap; }
.cards-element-page-size select { min-width:74px; padding:0 8px; }
.cards-element-shell { flex:1 1 auto; min-height:calc(100vh - 190px); max-height:none; width:100%; max-width:100%; overflow:auto; border:1px solid #ebeef5; background:#fff; box-sizing:border-box; }
.cards-element-table { width:100%; min-width:100%; table-layout:fixed; border-collapse:separate; border-spacing:0; color:#606266; font-size:13px; }
.cards-element-table th, .cards-element-table td { height:48px; padding:8px 10px; border-right:1px solid #ebeef5; border-bottom:1px solid #ebeef5; background:#fff; text-align:center; vertical-align:middle; box-sizing:border-box; }
.cards-element-table th { position:sticky; top:0; z-index:5; height:44px; background:#f5f7fa; color:#303133; font-weight:600; white-space:nowrap; cursor:default; user-select:none; }
.cards-element-table th[data-sort] { cursor:pointer; }
.cards-element-table th[data-sort]::after { content:'↕'; margin-left:5px; color:#c0c4cc; font-size:11px; }
.cards-element-table th.sorted-asc::after { content:'↑'; color:#409eff; }
.cards-element-table th.sorted-desc::after { content:'↓'; color:#409eff; }
.cards-element-table tbody tr:hover td { background:#f5f7fa; }
.cards-element-table tbody tr:nth-child(even) td { background:#fcfcfd; }
.cards-element-table tbody tr:nth-child(even):hover td { background:#f5f7fa; }
.cards-element-table .cards-sticky-left { position:sticky; left:0; z-index:4; box-shadow:6px 0 10px rgba(31,45,61,.04); }
.cards-element-table th.cards-sticky-left { z-index:7; background:#f5f7fa; }
.cards-element-table .cards-sticky-right { position:sticky; right:0; z-index:4; box-shadow:-8px 0 14px rgba(31,45,61,.06); }
.cards-element-table th.cards-sticky-right { z-index:7; background:#f5f7fa; }
.cards-cell-text, .cards-code-text, .cards-time-cell { display:inline-block; max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; vertical-align:middle; }
.cards-code-text { font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; color:#303133; }
.cards-count-pill { display:inline-flex; align-items:center; justify-content:center; min-width:54px; height:24px; padding:0 8px; border-radius:999px; background:#f4f4f5; color:#606266; font-weight:600; }
.cards-status-tag { display:inline-flex; align-items:center; justify-content:center; min-width:58px; height:24px; padding:0 8px; border-radius:4px; font-size:12px; font-weight:700; }
.cards-status-tag.is-used { background:#fef0f0; border:1px solid #fde2e2; color:#f56c6c; }
.cards-status-tag.is-idle { background:#f0f9eb; border:1px solid #e1f3d8; color:#67c23a; }
.cards-time-cell { color:#606266; }
.cards-muted { color:#909399; }
.cards-delete-selected, .cards-row-delete { border:1px solid #fbc4c4; background:#fef0f0; color:#f56c6c; }
.cards-delete-selected:hover, .cards-row-delete:hover { border-color:#f56c6c; background:#f56c6c; color:#fff; }
.cards-element-table .col-resizer { position:absolute; top:0; right:0; width:14px; height:100%; cursor:col-resize; user-select:none; touch-action:none; z-index:12; }
.cards-element-table .col-resizer::after { content:''; position:absolute; top:24%; bottom:24%; right:1px; width:1px; background:#dcdfe6; }
.cards-element-table th:hover .col-resizer::after, .cards-element-table th.resizing .col-resizer::after { background:#409eff; width:2px; }
body.cards-table-resizing { cursor:col-resize !important; user-select:none !important; }
.cards-element-pager { display:flex; align-items:center; justify-content:flex-end; gap:8px; padding-top:12px; color:#606266; font-size:13px; }
.cards-element-pager button { width:auto; min-width:32px; height:32px; padding:0 10px; border:1px solid #dcdfe6; border-radius:4px; background:#fff; color:#606266; font-size:13px; }
.cards-element-pager button:disabled { opacity:.45; cursor:not-allowed; }
@media (max-width:900px) { .cards-element-toolbar { align-items:stretch; flex-direction:column; } .cards-element-actions, .cards-element-tools { width:100%; justify-content:flex-start; flex-wrap:wrap; margin-left:0; } .cards-element-search { width:min(100%, 320px); } }
