.tripy-web-app {
  --tripy-bg: #eef3ff;
  --tripy-surface: rgba(255, 255, 255, 0.94);
  --tripy-surface-strong: #ffffff;
  --tripy-border: rgba(156, 163, 175, 0.22);
  --tripy-text: #22418a;
  --tripy-muted: #64748b;
--tripy-primary: var(--main-glow);
--tripy-primary-2: var(--main-glow);
  --tripy-success: var(--main-glow);
  --tripy-shadow: 0 22px 64px rgba(15, 23, 42, 0.12);
  position: relative;
  min-height: 100vh;
  padding: 0px 0px 0px;
  background:
    radial-gradient(circle at top left, rgba(64, 120, 255, 0.16), transparent 25%),
    radial-gradient(circle at top right, rgba(60, 208, 224, 0.14), transparent 24%),
    linear-gradient(180deg, #fafcff 0%, #f4f8ff 18%, var(--tripy-bg) 100%);
  color: var(--tripy-text);
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

.tripy-web-app,
.tripy-web-app *,
.tripy-web-app *::before,
.tripy-web-app *::after {
  box-sizing: border-box;
}

.tripy-web-topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(1240px, 100%);
  margin: 0 auto 22px;
  padding: 14px 16px;
 border-radius: 0px 0px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    radial-gradient(circle at top right, rgba(111, 245, 201, 0.28), transparent 28%),
    radial-gradient(circle at top left, rgba(110, 143, 255, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(18, 29, 64, 0.96), rgba(28, 53, 109, 0.94) 52%, rgba(19, 164, 163, 0.9));
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.tripy-web-topbar::before,
.tripy-web-topbar::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.tripy-web-topbar::before {
  inset: -24px auto auto -12px;
  width: 180px;
  height: 84px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 70%);
  filter: blur(6px);
}

.tripy-web-topbar::after {
  right: 14px;
  bottom: -38px;
  width: 220px;
  height: 90px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 72%);
  filter: blur(10px);
}

.tripy-web-topbar__left,
.tripy-web-topbar__right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tripy-web-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.tripy-web-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(224, 242, 254, 0.84));
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.3);
}

.tripy-web-chip,
.tripy-web-icon-btn,
.tripy-web-card,
.tripy-web-drawer__nav a,
.tripy-web-drawer__quick,
.tripy-web-action,
.tripy-web-form button,
.tripy-web-pill,
.tripy-web-bottom-nav__link,
.tripy-web-fab-menu a,
.tripy-web-fab {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.tripy-web-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tripy-web-chip--primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.96), rgba(34, 197, 94, 0.84));
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(31, 112, 219, 0.24);
}

.tripy-web-icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.tripy-web-icon-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: #fff;
}

.tripy-web-main {
  width: min(2000px, 100%);
    margin: 0px 0px 0px 0px;
}

.tripy-web-screen {
  display: grid;
  gap: 4px;
}

.tripy-web-panel {
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--tripy-border);
  border-radius: 0px 0px 28px;
  background: var(--tripy-surface);
  box-shadow: var(--tripy-shadow);
  backdrop-filter: blur(16px);
}

.tripy-web-loading {
  display: grid;
  place-items: center;
  min-height: 50vh;
  gap: 12px;
  color: var(--tripy-muted);
}

.tripy-web-loading__spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(37, 99, 235, 0.14);
  border-top-color: var(--tripy-primary);
  border-radius: 50%;
  animation: tripy-spin 0.8s linear infinite;
}

.tripy-web-empty,
.tripy-web-message {
  padding: 28px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--tripy-muted);
}

.tripy-web-grid {
  display: grid;
  gap: 18px;
}

.tripy-web-grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tripy-web-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 24px;
  background: var(--tripy-surface-strong);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.tripy-web-card:hover,
.tripy-web-chip:hover,
.tripy-web-drawer__nav a:hover,
.tripy-web-drawer__quick:hover,
.tripy-web-action:hover,
.tripy-web-bottom-nav__link:hover,
.tripy-web-fab-menu a:hover,
.tripy-web-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.tripy-web-card__media {
  aspect-ratio: 1.28;
  background: linear-gradient(135deg, #dbeafe, #ecfeff);
}

.tripy-web-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tripy-web-card__body {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.tripy-web-card__eyebrow,
.tripy-web-meta {
  color: var(--tripy-muted);
  font-size: 13px;
  font-weight: 600;
}

.tripy-web-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
}

.tripy-web-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.tripy-web-price strong {
  font-size: 22px;
  font-weight: 800;
}

.tripy-web-price s {
  color: #94a3b8;
}

.tripy-web-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #54741c;
  font-size: 12px;
  font-weight: 800;
}

.tripy-web-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.tripy-web-drawer.is-open {
  pointer-events: auto;
}

.tripy-web-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.tripy-web-drawer.is-open .tripy-web-drawer__backdrop {
  opacity: 1;
}

.tripy-web-drawer__panel {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 18px));
  height: calc(100vh - 18px);
  margin: 9px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(14, 24, 53, 0.98);
  color: #fff;
  box-shadow: 0 30px 70px rgba(2, 8, 23, 0.36);
  transform: translateX(-104%);
  transition: transform 0.24s ease;
  overflow-y: auto;
}

.tripy-web-drawer.is-open .tripy-web-drawer__panel {
  transform: translateX(0);
}

.tripy-web-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

.tripy-web-drawer__head button {
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.tripy-web-drawer__head--card {
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(135deg, #2785b2, #5c11b3);
}

.tripy-web-drawer__profile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  width: 100%;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.tripy-web-drawer__avatar {
  width: 72px;
  height: 72px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(192, 233, 255, 0.95));
  box-shadow: 0 10px 22px rgba(11, 19, 48, 0.2);
}

.tripy-web-drawer__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}

.tripy-web-drawer__identity {
  display: grid;
  gap: 4px;
}

.tripy-web-drawer__eyebrow,
.tripy-web-drawer__meta {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.tripy-web-drawer__identity strong {
  font-size: 18px;
  line-height: 1.15;
}

.tripy-web-drawer__chevron {
  align-self: center;
  font-size: 32px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
}

.tripy-web-drawer__quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.tripy-web-drawer__quick {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: #101727;
  text-decoration: none;
  text-align: center;
}

.tripy-web-drawer__quick-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(16, 185, 129, 0.1));
}

.tripy-web-drawer__quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tripy-web-drawer__quick b {
  font-size: 13px;
}

.tripy-web-drawer__section {
  margin-top: 18px;
}

.tripy-web-drawer__section h4 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tripy-web-drawer__section-copy {
  margin: -4px 0 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 600;
}

.tripy-web-drawer__nav {
  display: grid;
  gap: 10px;
}

.tripy-web-drawer__nav--cards a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.tripy-web-drawer__nav--cards a::after {
  content: "›";
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.58);
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.tripy-web-modal-open {
  overflow: hidden;
}

.tripy-web-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}

.tripy-web-modal.is-open {
  pointer-events: auto;
}

.tripy-web-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.tripy-web-modal.is-open .tripy-web-modal__backdrop {
  opacity: 1;
}

.tripy-web-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(94, 234, 212, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(29, 52, 115, 0.96) 58%, rgba(23, 163, 184, 0.9));
  color: #fff;
  box-shadow: 0 36px 80px rgba(2, 8, 23, 0.42);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
  overflow: hidden;
}

.tripy-web-modal.is-open .tripy-web-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.tripy-web-modal__dialog::before {
  content: "";
  position: absolute;
  inset: auto -40px -54px auto;
  width: 240px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 72%);
  filter: blur(10px);
}

.tripy-web-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.tripy-web-modal__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tripy-web-modal__title {
  position: relative;
  z-index: 1;
  margin: 18px 0 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.tripy-web-modal__copy {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.tripy-web-modal__actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon--flag {
  padding: 4px;
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon--flag img {
  object-fit: cover;
  border-radius: 12px;
}

.tripy-web-drawer__tile-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tripy-web-drawer__tile-copy strong,
.tripy-web-drawer__tile-copy small {
  display: block;
}

.tripy-web-drawer__tile-copy strong {
  font-size: 15px;
  line-height: 1.15;
}

.tripy-web-drawer__tile-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.tripy-web-drawer__accordion {
  display: grid;
  gap: 12px;
}

.tripy-web-drawer-group {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.tripy-web-drawer-group summary {
  list-style: none;
  cursor: pointer;
}

.tripy-web-drawer-group summary::-webkit-details-marker {
  display: none;
}

.tripy-web-drawer-group__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.tripy-web-drawer-group__summary-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tripy-web-drawer-group__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 9px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.tripy-web-drawer-group__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tripy-web-drawer-group__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.tripy-web-drawer-group__copy strong,
.tripy-web-drawer-group__copy small {
  display: block;
}

.tripy-web-drawer-group__copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
}

.tripy-web-drawer-group__copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.tripy-web-drawer-group__chevron {
  color: rgba(255, 255, 255, 0.68);
  font-size: 22px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.22s ease;
}

.tripy-web-drawer-group[open] .tripy-web-drawer-group__chevron {
  transform: rotate(180deg);
}

.tripy-web-drawer-group__items {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.tripy-web-drawer-group__items a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.tripy-web-drawer-group__items a::after {
  content: "›";
  margin-left: auto;
  font-size: 20px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.54);
}

.tripy-web-drawer-group__primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.32), rgba(34, 197, 94, 0.22));
}

.tripy-web-form {
  display: grid;
  gap: 14px;
}

.tripy-web-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.tripy-web-form input,
.tripy-web-form select,
.tripy-web-form textarea,
.tripy-web-form button {
  font: inherit;
}

.tripy-web-form input,
.tripy-web-form select,
.tripy-web-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--tripy-text);
}

.tripy-web-form textarea {
  min-height: 124px;
  padding: 12px 14px;
  resize: vertical;
}

.tripy-web-form button,
.tripy-web-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tripy-primary), var(--tripy-primary-2));
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.tripy-web-action--ghost {
  background: rgba(15, 23, 42, 0.06);
  color: var(--tripy-text);
}

.tripy-web-link {
  border: 0;
  background: transparent;
  color: #6a4be8;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tripy-web-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tripy-account-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.tripy-account-stat {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.7);
}

.tripy-account-stat span {
  color: var(--tripy-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tripy-account-stat strong {
  font-size: 28px;
  line-height: 1;
}

.tripy-account-stat--green {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(255, 255, 255, 0.98));
}

.tripy-account-stat--blue {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 255, 255, 0.98));
}

.tripy-account-stat--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(255, 255, 255, 0.98));
}

.tripy-account-list {
  display: grid;
  gap: 14px;
}

.tripy-web-fab {
  position: fixed;
  right: 90px;
  bottom: 24px;
  z-index: 42;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, #1dcc54, #2563eb);
  color: #fff;
  box-shadow: 0 22px 40px rgba(37, 99, 235, 0.32);
  cursor: pointer;
  font-size: 40px;
}

.tripy-web-fab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease;
}

body.tripy-web-fab-open .tripy-web-fab span {
  transform: rotate(45deg);
}

.tripy-web-fab--assistant {
  bottom: 102px;
  right: 90px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #7c3aed, #06b6d4);
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
}

.tripy-web-fab-menu {
  position: fixed;
  right: 20px;
  bottom: 182px;
  z-index: 41;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.tripy-web-fab-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 58px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--tripy-text);
  text-decoration: none;
  text-align: left;
  font-weight: 700;
  box-shadow: none;
  backdrop-filter: none;
}

.tripy-web-fab-menu__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--tripy-text);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.tripy-web-fab-menu__label::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.tripy-web-fab-menu__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid rgba(34, 197, 94, 0.8);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.tripy-web-fab-menu__icon img {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.tripy-web-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  width: min(720px, calc(100vw - 20px));
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

.tripy-web-bottom-nav__link {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 8px 4px 4px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: #94a3b8;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.tripy-web-bottom-nav__link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tripy-web-bottom-nav__link span {
  font-size: 12px;
  font-weight: 700;
}

.tripy-web-bottom-nav__link.is-active {
  color: #2f53c6;
}

.tripy-web-bottom-nav__link--tripy img {
  width: 44px;
  height: 44px;
  padding: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.tripy-web-bottom-nav__link--services img {
  width: 30px;
  height: 30px;
}

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

@media (max-width: 960px) {
  .tripy-web-app {
    padding: 0px 0px 0px;
  }

  .tripy-web-topbar {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .tripy-web-chip {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .tripy-web-topbar {
    top: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .tripy-web-topbar__right {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .tripy-web-bottom-nav {
    display: grid;
  }
}

@media (max-width: 640px) {
  .tripy-web-app {
    padding-inline: 0px;
  }

  .tripy-web-topbar {
    display: none;
  }

  .tripy-web-main {
    width: 100%;
  }

  .tripy-web-panel {
    border-radius: 0px 0px 24px;
  }

  .tripy-web-fab {
    display: none;
  }

  .tripy-web-fab-menu {
    right: 12px;
    bottom: 96px;
  }

  .tripy-web-fab-menu a {
    gap: 8px;
  }

  .tripy-web-fab-menu__label {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .tripy-web-fab-menu__icon {
    width: 54px;
    height: 54px;
  }

  .tripy-web-fab-menu__icon img {
    width: 38px;
    height: 38px;
  }

  .tripy-web-drawer__panel {
    width: calc(100vw - 14px);
    height: calc(100vh - 14px);
    margin: 7px;
    border-radius: 26px;
    padding: 14px;
  }

  .tripy-web-drawer__quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tripy-account-stats {
    grid-template-columns: 1fr;
  }

  .tripy-web-card__body {
    padding: 14px;
  }
}


#tripy-web-app[data-screen="home"] {
  padding-left: 0;
  padding-right: 0;
}

#tripy-web-app[data-screen="home"] .tripy-web-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

#tripy-web-app[data-screen="home"] {
  padding-top: 0;
}

#tripy-web-app[data-screen="home"] .tripy-web-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

#tripy-web-app[data-screen="home"] .tripy-home-hero {
  padding: 0 0 0px;
  border-radius:0px 0px 40px 40px;
}

#tripy-web-app[data-screen="home"] .tripy-home-hero__banner {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}



/* ===== Drawer parity overrides: closer to role_based_drawer.dart ===== */

.tripy-web-drawer__panel {
  background:
    linear-gradient(180deg, rgba(10, 22, 66, 0.985), rgba(11, 24, 78, 0.985)),
    radial-gradient(circle at top left, rgba(36, 211, 238, 0.12), transparent 28%);
  border-radius: 28px;
  padding: 18px;
}

.tripy-web-drawer__head--card {
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2183ae, #5605a1);
  box-shadow: 0 16px 36px rgba(20, 25, 70, 0.34);
}

.tripy-web-drawer__avatar {
  width: 74px;
  height: 74px;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(230,242,255,0.9));
}

.tripy-web-drawer__identity strong {
  font-size: 17px;
  font-weight: 800;
}

.tripy-web-drawer__quick-grid {
  padding: 12px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  margin-bottom: 14px;
}

.tripy-web-drawer__quick {
  padding: 10px 8px;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

.tripy-web-drawer__quick:hover {
  background: rgba(15, 23, 42, 0.04);
  transform: translateY(-1px);
  box-shadow: none;
}

.tripy-web-drawer__quick-icon {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.tripy-web-drawer__quick-icon--emoji {
  font-size: 24px;
  line-height: 1;
}

.tripy-web-drawer__quick b {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.tripy-web-drawer__section {
  margin-top: 14px;
}

.tripy-web-drawer__section h4 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tripy-web-drawer__nav--cards {
  gap: 12px;
}

.tripy-web-drawer__nav--cards a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.tripy-web-drawer__nav--cards a::after {
  color: rgba(255,255,255,0.62);
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.tripy-web-drawer__tile-icon--emoji {
  font-size: 24px;
  line-height: 1;
}

.tripy-web-drawer__tile-copy {
  gap: 5px;
}

.tripy-web-drawer__tile-copy strong {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.tripy-web-drawer__tile-copy small {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon--flag {
  padding: 4px;
}

.tripy-web-drawer__nav--cards .tripy-web-drawer__tile-icon--flag img {
  border-radius: 10px;
  object-fit: cover;
}

.tripy-web-menu-btn {
  margin-right: 8px;
}


/* ===== App-style account profile parity ===== */

.tripy-account-app-shell{
  width:min(680px,100%);
  margin:0 auto;
  display:grid;
  gap:18px;
}

.tripy-account-app-avatar-card{
  display:grid;
  justify-items:center;
  padding:12px 0 0;
}

.tripy-account-app-avatar-wrap{
  position:relative;
  width:138px;
  height:138px;
}

.tripy-account-app-avatar{
  width:138px;
  height:138px;
  border-radius:999px;
  background:linear-gradient(135deg,#ffffff,#f3f7ff);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(15,23,42,.08);
}

.tripy-account-app-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-account-app-avatar span{
  font-size:34px;
  font-weight:800;
  color:#2563eb;
}

.tripy-account-app-avatar-camera{
  position:absolute;
  right:2px;
  bottom:8px;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#18b8ff,#2563eb);
  color:#fff;
  box-shadow:0 10px 20px rgba(37,99,235,.28);
  cursor:pointer;
}

.tripy-account-app-completion-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) 116px;
  gap:16px;
  align-items:center;
  padding:24px;
  border-radius:24px;
  background:linear-gradient(135deg,rgba(255,225,230,.9),rgba(255,248,233,.95));
  box-shadow:0 18px 36px rgba(15,23,42,.06);
}

.tripy-account-app-completion-copy h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.25;
}

.tripy-account-app-completion-copy p{
  margin:0 0 14px;
  color:#475569;
  line-height:1.55;
}

.tripy-account-app-link{
  padding:0;
  border:0;
  background:transparent;
  color:#6a4be8;
  font-weight:800;
  cursor:pointer;
}

.tripy-account-app-progress{
  --size:108px;
  width:var(--size);
  height:var(--size);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    conic-gradient(#1dc84c calc(var(--tripy-progress) * 1%), #f3f4f6 0);
  position:relative;
}

.tripy-account-app-progress::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  background:#fff;
}

.tripy-account-app-progress__inner{
  position:relative;
  z-index:1;
  font-size:18px;
  font-weight:800;
  color:#334155;
}

.tripy-account-app-friends-card{
  display:grid;
  gap:16px;
  padding:24px;
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 36px rgba(15,23,42,.06);
}

.tripy-account-app-friends-copy h3{
  margin:0 0 8px;
  font-size:18px;
}

.tripy-account-app-friends-copy p{
  margin:0 0 8px;
  color:#475569;
}

.tripy-account-app-friends-copy small{
  color:#8a94a6;
  font-size:15px;
}

.tripy-account-app-sync-btn{
  min-height:58px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#18b8ff,#0f56bf);
  color:#fff;
  font-size:17px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 18px 28px rgba(15,86,191,.22);
}

.tripy-account-app-form{
  display:grid;
  gap:16px;
}

.tripy-account-app-section-title{
  margin-top:6px;
  color:#9ca3af;
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tripy-account-app-grid{
  display:grid;
  gap:12px;
}

.tripy-account-app-grid--2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.tripy-account-app-grid--contact{
  grid-template-columns:176px minmax(0,1fr);
}

.tripy-account-app-field{
  display:grid;
  gap:8px;
}

.tripy-account-app-field--full{
  grid-column:1/-1;
}

.tripy-account-app-field > span{
  color:#6b7280;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tripy-account-app-field input,
.tripy-account-app-field select,
.tripy-account-app-cc-btn{
  display:block;
  width:100%;
  min-height:58px;
  padding:0 18px;
  border:1.4px solid rgba(107,114,128,.45);
  border-radius:14px;
  background:rgba(255,255,255,.96);
  color:#1f2937;
  font:inherit;
  font-size:17px;
  line-height:1.2;
  box-sizing:border-box;
  outline:none;
}

.tripy-account-app-field input:focus,
.tripy-account-app-field select:focus,
.tripy-account-app-cc-btn:focus{
  border-color:#4f46e5;
  box-shadow:0 0 0 4px rgba(79,70,229,.08);
}

.tripy-account-app-field input[type="date"],
.tripy-account-app-field select{
  height:58px;
  min-height:58px;
}

.tripy-account-app-field input[type="date"]{
  -webkit-appearance:none;
  appearance:none;
  padding-right:48px;
}

.tripy-account-app-field input[type="date"]::-webkit-datetime-edit{
  padding:0;
  color:#1f2937;
}

.tripy-account-app-field input[type="date"]::-webkit-datetime-edit-fields-wrapper{
  display:flex;
  align-items:center;
  min-height:56px;
}

.tripy-account-app-field input[type="date"]::-webkit-date-and-time-value{
  text-align:left;
}

.tripy-account-app-field input[type="date"]::-webkit-calendar-picker-indicator{
  opacity:.78;
  cursor:pointer;
}

.tripy-account-app-field select{
  -webkit-appearance:none;
  appearance:none;
  padding-right:46px;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}


.tripy-account-app-input-icon{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  z-index:1;
  pointer-events:none;
  opacity:.76;
}

.tripy-account-app-field:has(.tripy-account-app-input-icon){
  position:relative;
}

.tripy-account-app-field:has(.tripy-account-app-input-icon) input{
  padding-left:46px;
  padding-right:46px;
}

.tripy-account-app-pass-toggle{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:20px;
  opacity:.76;
}

.tripy-account-app-field:has(.tripy-account-app-pass-toggle){
  position:relative;
}

.tripy-account-app-cc-btn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.tripy-account-app-hint{
  margin:-6px 0 2px;
  color:#6b7280;
  font-size:13px;
  line-height:1.45;
}

.tripy-account-app-checkrow{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 2px;
  color:#374151;
  font-weight:500;
}

.tripy-account-app-checkrow input{
  width:22px;
  height:22px;
}

.tripy-account-app-gst-block{
  display:grid;
  gap:12px;
}

.tripy-account-app-divider{
  height:1px;
  background:rgba(100,116,139,.28);
  margin:4px 0 2px;
}

.tripy-account-app-accordion{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:10px 2px;
  border:0;
  background:transparent;
  color:#111827;
  font-size:17px;
  font-weight:800;
  cursor:pointer;
}

.tripy-account-app-accordion i{
  transition:transform .22s ease;
}

.tripy-account-app-accordion:not(.is-open) i{
  transform:rotate(180deg);
}

.tripy-account-app-docs{
  display:grid;
  gap:12px;
}

.tripy-account-app-pan-state{
  display:block;
  margin-top:6px;
  font-size:12px;
  font-weight:700;
}

.tripy-account-app-pan-state.is-valid{
  color:#16a34a;
}

.tripy-account-app-pan-state.is-invalid{
  color:#dc2626;
}

.tripy-account-app-actions{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:12px;
  margin-top:8px;
}

.tripy-account-app-reset,
.tripy-account-app-save{
  min-height:56px;
  border:0;
  border-radius:18px;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}

.tripy-account-app-reset{
  background:#eef2ff;
  color:#4338ca;
}

.tripy-account-app-save{
  background:linear-gradient(135deg,#13b0ff,#6a00d4);
  color:#fff;
  box-shadow:0 16px 28px rgba(106,0,212,.22);
}

.tripy-account-app-save[disabled]{
  opacity:.7;
  cursor:wait;
}

.tripy-account-app-chip{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#fff;
  color:#475569;
  border:1px solid rgba(148,163,184,.2);
  font-size:12px;
  font-weight:800;
}

.tripy-account-app-meta-strip{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tripy-account-app-toast{
  padding:14px 16px;
  border-radius:18px;
  font-weight:700;
  box-shadow:0 16px 32px rgba(15,23,42,.08);
}

.tripy-account-app-toast--success{
  background:linear-gradient(135deg,rgba(34,197,94,.12),rgba(255,255,255,.98));
  color:#166534;
}

.tripy-account-app-toast--error{
  background:linear-gradient(135deg,rgba(239,68,68,.12),rgba(255,255,255,.98));
  color:#991b1b;
}

.tripy-account-app-sheet{
  position:fixed;
  inset:0;
  z-index:80;
}

.tripy-account-app-sheet__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.36);
  backdrop-filter:blur(4px);
}

.tripy-account-app-sheet__panel{
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(640px,100%);
  max-height:84vh;
  border-radius:28px 28px 0 0;
  background:#fff;
  box-shadow:0 -18px 44px rgba(15,23,42,.18);
  display:grid;
  gap:12px;
  padding:18px 18px 20px;
}

.tripy-account-app-sheet__head{
  text-align:center;
  font-size:18px;
  font-weight:800;
}

.tripy-account-app-sheet__search{
  width:100%;
  min-height:54px;
  padding:0 16px;
  border:1px solid rgba(107,114,128,.34);
  border-radius:14px;
  font:inherit;
}

.tripy-account-app-sheet__list{
  overflow:auto;
  display:grid;
  gap:4px;
  max-height:56vh;
}

.tripy-account-app-country-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:56px;
  border:0;
  border-radius:14px;
  background:transparent;
  padding:0 12px;
  font:inherit;
  cursor:pointer;
}

.tripy-account-app-country-row:hover{
  background:#f8fafc;
}

@media (max-width: 700px){
  .tripy-account-app-shell{
    width:min(100%, 560px);
    padding:0 14px 20px;
  }

   .tripy-account-app-field input[type="date"],
  .tripy-account-app-field select{
    font-size:16px;
  }

  .tripy-account-app-completion-card{
    grid-template-columns:minmax(0,1fr) 96px;
    padding:20px;
  }

  .tripy-account-app-progress{
    --size:96px;
  }

  .tripy-account-app-grid--2,
  .tripy-account-app-grid--contact,
  .tripy-account-app-actions{
    grid-template-columns:1fr;
  }
}

.tripy-account-app-avatar-wrap{
  position:relative;
  width:150px;
  height:150px;
  display:grid;
  place-items:center;
}

.tripy-account-app-avatar-aura{
  position:absolute;
  inset:-8px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,0) 34%),
    conic-gradient(from 0deg, rgba(32,197,255,.65), rgba(119,72,255,.65), rgba(32,197,255,.65));
  filter: blur(10px);
  opacity:.72;
  animation: tripyAvatarAura 4.8s linear infinite;
}

.tripy-account-app-avatar-glass{
  position:relative;
  width:132px;
  height:132px;
  border-radius:999px;
  padding:6px;
  background:linear-gradient(145deg, rgba(255,255,255,.95), rgba(240,246,255,.7));
  box-shadow:
    0 24px 54px rgba(37,99,235,.15),
    inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
}

.tripy-account-app-avatar{
  width:100%;
  height:100%;
  border-radius:999px;
  overflow:hidden;
  background:linear-gradient(135deg,#ffffff,#f8fbff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}

.tripy-account-app-avatar-camera{
  right:8px;
  bottom:10px;
  width:42px;
  height:42px;
  border:2px solid rgba(255,255,255,.9);
  background:linear-gradient(135deg,#1ec9ff,#135fda);
  box-shadow:0 14px 30px rgba(19,95,218,.28);
}

.tripy-account-app-avatar-wrap.is-uploading .tripy-account-app-avatar-aura{
  animation-duration: 1.1s;
  opacity: 1;
}

.tripy-account-app-avatar-wrap.is-uploading .tripy-account-app-avatar-glass::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:999px;
  border:3px solid rgba(34,197,94,.9);
  animation: tripyAvatarPulse 1s ease-in-out infinite;
}

@keyframes tripyAvatarAura {
  to { transform: rotate(360deg); }
}

@keyframes tripyAvatarPulse {
  0% { transform: scale(.96); opacity:.6; }
  50% { transform: scale(1.02); opacity:1; }
  100% { transform: scale(.96); opacity:.6; }
}

.tripy-account-app-country-row{
  gap:12px;
}

.tripy-account-app-country-row__lead{
  display:flex;
  align-items:center;
  gap:12px;
}

.tripy-account-app-country-row__lead img{
  width:30px;
  height:20px;
  object-fit:cover;
  border-radius:4px;
  box-shadow:0 2px 6px rgba(15,23,42,.12);
}

.tripy-account-app-actions{
  grid-template-columns:160px minmax(0, 1fr);
  align-items:center;
  margin-top:12px;
}

.tripy-account-app-reset{
  justify-self:start;
  padding:0 22px;
}

.tripy-account-app-save{
  width:100%;
  max-width:none;
}

.tripy-account-app-form{
  padding-bottom:24px;
}

/* remove extra visual gap if chip strip is deleted */
.tripy-account-app-meta-strip{
  display:none !important;
}

#tripy-web-app[data-screen="account"] {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

#tripy-web-app[data-screen="account"] .tripy-web-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

#tripy-web-app[data-screen="account"] .tripy-account-app-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px 24px;
}

#tripy-web-app[data-screen="account"] .tripy-page-topbar {
  border-radius: 0;
  margin-bottom: 22px;
}

#tripy-web-app[data-screen="account"] .tripy-account-app-completion-card,
#tripy-web-app[data-screen="account"] .tripy-account-app-friends-card,
#tripy-web-app[data-screen="account"] .tripy-account-app-form {
  max-width: 100%;
}

@media (max-width: 640px) {
  #tripy-web-app[data-screen="account"] .tripy-account-app-shell {
    padding: 0 14px 22px;
  }

  #tripy-web-app[data-screen="account"] .tripy-page-topbar {
    display: grid;
  }
}


.tripy-account-app-sheet__panel {
  width: min(760px, calc(100vw - 24px));
}

.tripy-account-app-sheet__list {
  overflow: auto;
  display: grid;
  gap: 6px;
  max-height: 56vh;
  padding: 4px 0 8px;
}

.tripy-account-app-country-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.tripy-account-app-country-row:hover {
  background: #f8fafc;
}

.tripy-account-app-country-row__lead {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tripy-account-app-country-row__lead img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(15,23,42,.12);
}

.tripy-account-app-field__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.tripy-account-app-field__head > span{
  color:#6b7280;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tripy-account-app-field__head .tripy-account-app-pan-state{
  margin:0;
  white-space:nowrap;
}

.tripy-pref-app-shell{
  width:100%;
  max-width:none;
  margin:0;
  padding:24px 24px 24px;
}

#tripy-web-app[data-screen="preferences"]{
  padding-left:0;
  padding-right:0;
  padding-top:0;
}

#tripy-web-app[data-screen="preferences"] .tripy-web-main{
  width:100%;
  max-width:none;
  margin:0;
}

#tripy-web-app[data-screen="preferences"] .tripy-page-topbar{
  border-radius:0;
  margin-bottom:22px;
}

@media (max-width:640px){
  .tripy-pref-app-shell{
    padding:0 14px 22px;
  }
}

.tripy-pref-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  background:#fff;
  border:1px solid #dcdcdc;
  border-radius:16px;
  padding:4px;
  box-shadow:0 3px 10px rgba(0,0,0,.06);
}

.tripy-pref-tab{
  min-height:52px;
  border:0;
  background:#fff;
  color:#2472A8;
  font-weight:700;
  border-radius:12px;
  cursor:pointer;
}

.tripy-pref-tab.is-active{
  background:linear-gradient(1deg, #446bd0 0%, #0785da 100%, #000000 100%)
  color:#fff;
  box-shadow:0 4px 10px rgba(12,174,27,.18);
}

.tripy-pref-search{
  margin:14px 0 18px;
}

.tripy-pref-search input{
  width:100%;
  min-height:58px;
  border:0;
  border-radius:16px;
  background:#fff;
  padding:0 18px;
  font:inherit;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.tripy-pref-section{
  margin-bottom:22px;
}

.tripy-pref-section h3{
  margin:0 0 14px;
  font-size:18px;
  font-weight:800;
  color:#202020;
}

.tripy-pref-tile{
  width:100%;
  min-height:84px;
  margin:0 0 12px;
  border:1px solid #e4e4e4;
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  cursor:pointer;
  text-align:left;
}

.tripy-pref-tile.is-selected{
  border:2px solid #2d9cff;
  background:#edf6ff;
  box-shadow:0 4px 12px rgba(45,156,255,.12);
  margin-top: 13px;
}

.tripy-pref-tile__lead{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.tripy-pref-tile__flag img{
  width:32px;
  height:22px;
  object-fit:cover;
  border-radius:2px;
}

.tripy-pref-currency-flag,
.tripy-pref-language-flag,
.tripy-pref-emoji-flag{
  font-size:28px;
  line-height:1;
}

.tripy-pref-tile__title{
  font-size:16px;
  font-weight:600;
  color:#1f1f1f;
}

.tripy-pref-tile__trailing{
  color:#9a9a9a;
  font-weight:700;
  margin-left:12px;
  white-space:nowrap;
}

.tripy-pref-check{
  color:#2d9cff;
  font-size:24px;
  font-weight:800;
}

@media (max-width:640px){
  .tripy-pref-app-shell{
    width:100%;
    padding:0 12px 22px;
  }
}


#tripy-web-app[data-screen="wallet"]{
  padding-left:0;
  padding-right:0;
  padding-top:0;
}

#tripy-web-app[data-screen="wallet"] .tripy-web-main{
  width:100%;
  max-width:none;
  margin:0;
}

#tripy-web-app[data-screen="wallet"] .tripy-page-topbar{
  border-radius:0;
  margin-bottom:18px;
}

.tripy-wallet-app-shell{
  width:100%;
  max-width:none;
  padding:24px 24px 24px;
}

.tripy-wallet-app-balance-card{
  background:linear-gradient(135deg,#a61cff,#5d00ff);
  border-radius:24px 24px 0 0;
  padding:24px 24px 20px;
  color:#fff;
}

.tripy-wallet-app-balance-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.tripy-wallet-app-balance-card span{
  display:block;
  font-size:15px;
  opacity:.92;
  margin-bottom:8px;
}

.tripy-wallet-app-balance-card strong{
  display:block;
  font-size:32px;
  line-height:1.05;
  font-weight:800;
}

.tripy-wallet-app-refresh{
  border:0;
  background:transparent;
  color:#fff;
  font-size:34px;
  cursor:pointer;
}

.tripy-wallet-app-summary-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:linear-gradient(135deg,#a61cff,#5d00ff);
  border-top:1px solid rgba(255,255,255,.75);
}

.tripy-wallet-app-summary-box{
  min-height:118px;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  padding:18px 22px;
  text-align:left;
}

.tripy-wallet-app-summary-box + .tripy-wallet-app-summary-box{
  border-left:1px solid rgba(255,255,255,.75);
}

.tripy-wallet-app-summary-box span{
  display:block;
  font-size:15px;
  opacity:.92;
  margin-bottom:8px;
}

.tripy-wallet-app-summary-box strong{
  display:block;
  font-size:25px;
  font-weight:800;
}

.tripy-wallet-app-tabbar{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#fff;
  border-bottom:1px solid #e9e9e9;
  margin-bottom:16px;
}

.tripy-wallet-app-tab{
  min-height:68px;
  border:0;
  background:#fff;
  color:#333;
  font-size:19px;
  font-weight:500;
  cursor:pointer;
  position:relative;
}

.tripy-wallet-app-tab.is-active{
  color:#222;
  font-weight:700;
}

.tripy-wallet-app-tab.is-active::after{
  content:"";
  position:absolute;
  left:32%;
  right:32%;
  bottom:0;
  height:4px;
  border-radius:999px 999px 0 0;
  background:#7c2cff;
}

.tripy-wallet-app-date{
  margin:0 0 14px;
  font-size:18px;
  color:#1e293b;
  font-weight:700;
}

.tripy-wallet-app-ledgerbar{
  display:flex;
  gap:8px;
  overflow:auto;
  padding:0 2px 14px;
  margin-bottom:4px;
}

.tripy-wallet-app-ledgerchip{
  flex:0 0 auto;
  min-height:36px;
  border:1px solid #e2e8f0;
  background:#fff;
  color:#334155;
  border-radius:8px;
  padding:0 13px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(15,23,42,.04);
}

.tripy-wallet-app-ledgerchip.is-active{
  color:#fff;
  border-color:#1d6293;
  background:linear-gradient(135deg, #be18ff, #5d10d9);
  box-shadow:0 10px 20px rgba(29,98,147,.18);
}

.tripy-wallet-app-section{
  margin-bottom:26px;
}

.tripy-wallet-app-tx{
  display:grid;
  grid-template-columns:64px minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  background:#fff;
  border-radius:22px;
  padding:18px 20px;
  margin-bottom:14px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
  border:3px solid transparent;
}

.tripy-wallet-app-tx--credit{
  border-color:#10c22f;
}

.tripy-wallet-app-tx--debit{
  border-color:#db3b3b;
}

.tripy-wallet-app-tx__icon{
  width:50px;
  height:50px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-family:Arial, Helvetica, sans-serif;
  font-size:18px;
  font-weight:1000;
  line-height:1;
  color:#fff;
}

.tripy-wallet-app-tx--credit .tripy-wallet-app-tx__icon{
  background:linear-gradient(135deg, #9e1aff, #1d27a6);
}

.tripy-wallet-app-tx--debit .tripy-wallet-app-tx__icon{
  background:linear-gradient(135deg, #ff8041, #d72800);
}

.tripy-wallet-app-tx__body strong{
  display:block;
 font-size: 16px;
    color: #3f553e;
}

.tripy-wallet-app-tx__title{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}

.tripy-wallet-app-tx__title strong{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tripy-wallet-app-tx__title span{
  flex:0 0 auto;
  border-radius:8px;
  padding:4px 8px;
  margin-right: -15px;
  background:rgba(29,98,147,.08);
  color:#1d6293;
  font-size:10px;
  font-weight:900;
}

.tripy-wallet-app-tx__body p{
  margin:0;
  color:#6e6e6e;
  font-size:15px;
}

.tripy-wallet-app-tx__amount{
  font-size:18px;
  font-weight:800;
  white-space:nowrap;
}

.tripy-wallet-app-tx--credit .tripy-wallet-app-tx__amount{
  color:#10b128;
}

.tripy-wallet-app-tx--debit .tripy-wallet-app-tx__amount{
  color:#e04b4b;
}

.tripy-wallet-app-ref-strip{
  display:flex;
  gap:18px;
  overflow:auto;
  padding:4px 0 10px;
  margin-bottom:12px;
}

.tripy-wallet-app-ref-badge{
  min-width:120px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

.tripy-wallet-app-ref-badge__avatar,
.tripy-wallet-app-ref-card__avatar{
  width:82px;
  height:82px;
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  border:3px solid #27a3ff;
  display:grid;
  place-items:center;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  margin:0 auto 10px;
}

.tripy-wallet-app-ref-badge__avatar img,
.tripy-wallet-app-ref-card__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-wallet-app-ref-badge__avatar img,
.tripy-wallet-app-ref-card__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-wallet-app-ref-badge strong{
  display:block;
  margin-top:10px;
  font-size:18px;
  color:#1f2937;
}

.tripy-wallet-app-ref-badge span{
  display:block;
  margin-top:4px;
  font-size:16px;
  font-weight:800;
  color:#10b128;
}

.tripy-wallet-app-subtitle{
  margin:8px 0 14px;
  font-size:18px;
  font-weight:800;
  color:#0f172a;
}

.tripy-wallet-app-ref-card{
  display:grid;
  grid-template-columns:92px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  background:#fff;
  border:2px solid #8f9592;
  border-radius:20px;
  padding:16px 18px;
  margin-bottom:14px;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.tripy-wallet-app-ref-card__body strong{
  display:block;
  font-size:18px;
  color:#1f1f1f;
  margin-bottom:4px;
}

.tripy-wallet-app-ref-card__body p{
  margin:0;
  font-size:15px;
  color:#6e6e6e;
}

.tripy-wallet-app-ref-card__amount{
  font-size:18px;
  font-weight:800;
  color:#10b128;
  white-space:nowrap;
}

.tripy-wallet-app-empty{
  background:#fff;
  border-radius:20px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.tripy-wallet-app-empty__icon{
  font-size:30px;
  margin-bottom:10px;
}

.tripy-wallet-app-empty h3{
  margin:0 0 8px;
  font-size:20px;
}

.tripy-wallet-app-empty p{
  margin:0;
  color:#666;
}

@media (max-width:640px){
  .tripy-wallet-app-shell{
    padding:0 12px 22px;
  }

  .tripy-wallet-app-balance-card{
    padding:20px 18px 18px;
  }

  .tripy-wallet-app-balance-card strong{
    font-size:28px;
  }

  .tripy-wallet-app-summary-box{
    min-height:102px;
    padding:16px 14px;
  }

  .tripy-wallet-app-summary-box strong{
    font-size:22px;
  }

  .tripy-wallet-app-tab{
    min-height:58px;
    font-size:17px;
  }

  .tripy-wallet-app-tx{
    grid-template-columns:56px minmax(0,1fr);
  }

  .tripy-wallet-app-tx__amount{
    grid-column:2;
    justify-self:end;
  }

  .tripy-wallet-app-ref-card{
    grid-template-columns:78px minmax(0,1fr);
  }

  .tripy-wallet-app-ref-card__amount{
    grid-column:2;
    justify-self:end;
  }
}


.tripy-wallet-app-ref-strip{
  display:flex;
  gap:18px;
  overflow:auto;
  padding:8px 0 14px;
  margin-bottom:8px;
}

.tripy-wallet-app-ref-badge{
  min-width:120px;
  text-align:center;
}

.tripy-wallet-app-ref-card{
  display:grid;
  grid-template-columns:92px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  background:#fff;
  border:2px solid #8f9592;
  border-radius:20px;
  padding:16px 18px;
  margin-bottom:14px;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}


.tripy-web-sidepanel[hidden]{
  display:none !important;
}

.tripy-web-sidepanel{
  position:fixed;
  inset:0;
  z-index:90;
}

.tripy-web-sidepanel__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.28);
  backdrop-filter:blur(4px);
}

.tripy-web-sidepanel__sheet{
  position:absolute;
  top:0;
  right:0;
  width:min(520px, 100vw);
  height:100%;
  background: linear-gradient(180deg, #ffffff00 0%, #515f5800 100%);
  box-shadow:-18px 0 40px rgba(15,23,42,.18);
  display:flex;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .26s ease;
  overflow:hidden;
}

.tripy-web-sidepanel.is-open .tripy-web-sidepanel__sheet{
  transform:translateX(0);
}

.tripy-web-sidepanel__head{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:10px 12px 0;
}

.tripy-web-sidepanel__close{
  width:40px;
  height:40px;
  border:0;
  border-radius:999px;
  background:#fff;
  color:#111827;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.tripy-web-sidepanel__screen{
  flex:1;
  min-height:0;
  overflow:auto;
}

/* THIS is the real fix */
.tripy-web-sidepanel__screen .tripy-page-topbar,
.tripy-web-sidepanel__screen .tripy-page-topbar--floating{
  display:none !important;
  height:0 !important;
  min-height:0 !important;
  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;
  pointer-events:none !important;
}

/* remove leftover top gap from inner shells */
.tripy-web-sidepanel__screen .tripy-web-main{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding-top:0 !important;
}

.tripy-web-sidepanel__screen .tripy-wallet-app-shell,
.tripy-web-sidepanel__screen .tripy-pref-app-shell{
  padding-top:18px !important;
}

/* optional: if account ever opens in sidepanel too */
.tripy-web-sidepanel__screen .tripy-account-app-shell{
  padding-top:18px !important;
}

.tripy-home-hero__wallet,
.tripy-home-hero__prefs{
  border:0;
  cursor:pointer;
  font:inherit;
}

@media (max-width: 640px){
  .tripy-web-sidepanel__sheet{
    width:100vw;
  }
}

#tripy-web-app[data-screen="bookings"]{
  padding-left:0;
  padding-right:0;
  padding-top:0;
}

#tripy-web-app[data-screen="bookings"] .tripy-web-main{
  width:100%;
  max-width:none;
  margin:0;
}

.tripy-booking-app-shell {
        width: min(100%, clamp(320px, 100vw, 1800px));
    max-width: none;
    padding: 0px 4px 16px 4px;
}

.tripy-booking-app-stats{
  margin-bottom:14px;
}

.tripy-booking-app-stats__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-bottom:12px;
}

.tripy-booking-app-filtercard{
  background:#fff;
  border-radius:0 0 12px 12px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
  overflow:hidden;
}

.tripy-booking-app-tabs{
  background:#097A8F;
  display:flex;
  gap:0;
  overflow-x:auto;
  overflow-y:hidden;
  padding:0 10px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.tripy-booking-app-tabs::-webkit-scrollbar{ display:none; }

.tripy-booking-app-tab{
  min-height:48px;
  border:0;
  background:transparent;
  color:#fff;
  font-weight:700;
  padding:0 18px;
  cursor:pointer;
  position:relative;
  white-space:nowrap;
}

.tripy-booking-app-tab.is-active{
  color:#C9EA08;
}

.tripy-booking-app-tab.is-active::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:3px;
  background:#fff;
  border-radius:999px 999px 0 0;
}

.tripy-booking-app-chiprow{
  display:flex;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:12px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  white-space:nowrap;
}
.tripy-booking-app-chiprow::-webkit-scrollbar{ display:none; }


.tripy-booking-app-tab,
.tripy-booking-app-chip{
  flex:0 0 auto;
}

.tripy-booking-app-chip{
  border:0;
  border-radius:999px;
  background:rgba(79,255,255,.08);
  color:#242925;
  padding:10px 14px;
  white-space:nowrap;
  cursor:pointer;
}

.tripy-booking-app-chip.is-active{
  background:#0CAE1B;
  color:#fff;
}

.tripy-booking-app-highlight{
  margin:12px 12px 16px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  border:2px solid rgba(14,165,233,.14);
}

.tripy-booking-app-highlight__divider{
  height:1px;
  margin:0 14px;
  background:linear-gradient(90deg, rgba(14,165,233,0), rgba(14,165,233,.75), rgba(34,197,94,.75), rgba(34,197,94,0));
}

.tripy-booking-app-highlight__head{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px 8px;
  font-size:13px;
  font-weight:800;
  color:#111827;
}

.tripy-booking-app-suggestions{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:0 14px 14px;
}

.tripy-booking-app-suggestion{
  min-width:260px;
  background:#F9FAFB;
  border-radius:16px;
  display:flex;
  gap:10px;
  padding:10px;
  text-decoration:none;
  color:inherit;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.tripy-booking-app-suggestion__thumb{
  width:54px;
  height:54px;
  border-radius:12px;
  overflow:hidden;
  flex:0 0 54px;
  background:#E5F3FF;
}

.tripy-booking-app-suggestion__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-booking-app-suggestion__body strong{
  display:block;
  font-size:13px;
  margin-bottom:4px;
}

.tripy-booking-app-suggestion__body p{
  margin:0;
  font-size:12px;
  color:#6b7280;
}

.tripy-booking-app-list{
  display:grid;
  gap:12px;
  padding:0 12px;
}

.tripy-booking-app-card{
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.tripy-booking-app-card__media{
  position:relative;
  min-height:150px;
}

.tripy-booking-app-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-booking-app-card__status{
  position:absolute;
  top:10px;
  left:10px;
  padding:5px 10px;
  border-radius:999px;
  color:#fff;
  font-size:11px;
  font-weight:800;
}

.tripy-booking-app-card__status--success{ background:#14b84b; }
.tripy-booking-app-card__status--info{ background:#0ea5e9; }
.tripy-booking-app-card__status--danger{ background:#ef4444; }
.tripy-booking-app-card__status--warn{ background:#f59e0b; }
.tripy-booking-app-card__status--neutral{ background:#6b7280; }

.tripy-booking-app-card__body{
  padding:12px;
}

.tripy-booking-app-card__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:8px;
}

.tripy-booking-app-card__service{
  font-size:11px;
  color:#6b7280;
  font-weight:700;
  text-transform:uppercase;
}

.tripy-booking-app-card__order{
  font-size:11px;
  color:#2563eb;
  font-weight:700;
}

.tripy-booking-app-card__title{
  font-size:16px;
  font-weight:800;
  line-height:1.3;
  margin-bottom:6px;
  color:#111827;
}

.tripy-booking-app-card__meta{
  font-size:12px;
  color:#6b7280;
  margin-bottom:4px;
}

.tripy-booking-app-card__price{
  margin-top:8px;
  font-size:22px;
  font-weight:900;
  color:#111827;
}

@media (max-width: 900px){
  .tripy-booking-app-stats__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px){
 

  .tripy-booking-app-stats__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .tripy-booking-app-filtercard{
    border-radius:0 0 10px 10px;
  }

  .tripy-booking-app-tabs{
    padding:0 8px;
  }

  .tripy-booking-app-tab{
    min-height:44px;
    padding:0 14px;
    font-size:14px;
  }

  .tripy-booking-app-chiprow{
    padding:10px 8px;
    gap:6px;
  }

  .tripy-booking-app-chip{
    padding:8px 12px;
    font-size:13px;
  }

  .tripy-booking-app-highlight{
    margin:10px 0 14px;
    border-radius:14px;
  }

  .tripy-booking-app-suggestions{
    padding:0 10px 12px;
  }

  .tripy-booking-app-suggestion{
    min-width:220px;
    border-radius:12px;
    padding:8px;
  }

  .tripy-booking-app-list{
    padding:0;
    gap:10px;
  }

  .tripy-booking-app-card{
    grid-template-columns:96px minmax(0,1fr);
    border-radius:14px;
  }

  .tripy-booking-app-card__media{
    min-height:96px;
  }

  .tripy-booking-app-card__body{
    padding:10px;
  }

  .tripy-booking-app-card__title{
    font-size:14px;
    line-height:1.25;
    margin-bottom:5px;
  }

  .tripy-booking-app-card__meta{
    font-size:11px;
    margin-bottom:3px;
  }

  .tripy-booking-app-card__price{
    margin-top:6px;
    font-size:16px;
  }

  .tripy-booking-app-card__order,
  .tripy-booking-app-card__service{
    font-size:10px;
  }

  .tripy-booking-app-card__status{
    top:6px;
    left:6px;
    padding:4px 8px;
    font-size:10px;
  }
}

.tripy-booking-app-filtercard,
.tripy-booking-app-highlight,
.tripy-booking-app-list,
.tripy-booking-app-list .tripy-booking-app-card{
  animation: tripyBookingFadeIn .18s ease;
}

@keyframes tripyBookingFadeIn{
  from{
    opacity:.0;
    transform:translateY(4px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.tripy-page-topbar__title{
  font-size:20px;
  font-weight:800;
  color:#ffffff;
  text-align:center;
}

.tripy-page-topbar--floating{
  background:transparent;
  margin:0 0 12px;
  padding:0;
}

.tripy-page-topbar__edge{
  position:absolute;
  top:0;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  font-size:30px;
  font-weight:800;
  border:0;
  cursor:pointer;
  background:linear-gradient(135deg, #03030338, #48494700);
  box-shadow:0 10px 22px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.35);
}

.tripy-page-topbar__edge--back{
  left:0;
  border-radius:0 18px 18px 0;
}

.tripy-page-topbar__edge--home{
  right:0;
  border-radius:18px 0 0 18px;
}

.tripy-page-topbar__edge:hover{
  transform:translateY(-1px);
}

.tripy-page-topbar__edge:active{
  transform:translateY(0);
}


.tripy-booking-app-shell {
        width: min(100%, clamp(320px, 100vw, 1800px));
    max-width: none;
    padding: 0px 4px 0px 4px;
}

.tripy-booking-app-stats{
  margin-bottom:14px;
}

.tripy-booking-app-stats__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-bottom:12px;
}

.tripy-booking-app-filtercard{
  background:#ffffff;
  border-radius:14px;
  box-shadow:0 12px 28px rgba(34,97,167,.12);
  overflow:hidden;
  border:1px solid rgba(46,167,255,.12);
}

.tripy-booking-app-tabs{
  background:linear-gradient(135deg,#24a7ff,#0e8ca2,#5ba500);
  display:flex;
  gap:0;
  overflow-x:auto;
  overflow-y:hidden;
  padding:0 10px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.tripy-booking-app-tabs::-webkit-scrollbar{ display:none; }

.tripy-booking-app-tab{
  min-height:50px;
  border:0;
  background:transparent;
  color:#eefcff;
  font-weight:800;
  padding:0 18px;
  cursor:pointer;
  position:relative;
  white-space:nowrap;
  flex:0 0 auto;
}

.tripy-booking-app-tab.is-active{
  color:#fff8a6;
}

.tripy-booking-app-tab.is-active::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:0;
  height:3px;
  border-radius:999px 999px 0 0;
  background:#ffffff;
}

.tripy-booking-app-chiprow{
  display:flex;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:12px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  white-space:nowrap;
  background:#fff;
}

.tripy-booking-app-chiprow::-webkit-scrollbar{ display:none; }

.tripy-booking-app-chip{
  flex:0 0 auto;
  border:0;
  border-radius:12px;
  background:#edf6f7;
  color:#24323a;
  padding:10px 14px;
  white-space:nowrap;
  cursor:pointer;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
}

.tripy-booking-app-chip.is-active{
  background:linear-gradient(135deg,#10c72a,#0ab85b);
  color:#fff;
  box-shadow:0 8px 18px rgba(12,184,91,.22);
}


@media (max-width: 640px){
  .tripy-page-topbar{
    min-height:58px;
    margin:0px 0px 0px -10px;
  }

  .tripy-page-topbar__title{
    font-size:18px;
  }

  .tripy-page-topbar__edge{
    width:48px;
    height:48px;
    font-size:26px;
  }


  .tripy-booking-app-stats__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }

  .tripy-booking-app-tab{
    min-height:44px;
    padding:0 14px;
    font-size:14px;
  }

  .tripy-booking-app-chiprow{
    padding:10px 8px;
    gap:6px;
  }

  .tripy-booking-app-chip{
    padding:8px 12px;
    font-size:13px;
    border-radius:10px;
  }

  .tripy-booking-app-highlight{
    margin:10px 0 14px;
    border-radius:14px;
  }

  .tripy-booking-app-list{
    padding:0;
    gap:10px;
  }

  .tripy-booking-app-card{
    grid-template-columns:96px minmax(0,1fr);
    border-radius:14px;
  }

  .tripy-booking-app-card__media{
    min-height:96px;
  }

  .tripy-booking-app-card__body{
    padding:10px;
  }

  .tripy-booking-app-card__title{
    font-size:14px;
    line-height:1.25;
    margin-bottom:5px;
  }

  .tripy-booking-app-card__meta{
    font-size:11px;
    margin-bottom:3px;
  }

  .tripy-booking-app-card__price{
    margin-top:6px;
    font-size:16px;
  }

  .tripy-booking-app-card__order,
  .tripy-booking-app-card__service{
    font-size:10px;
  }

  .tripy-booking-app-card__status{
    top:6px;
    left:6px;
    padding:4px 8px;
    font-size:10px;
  }
}


.tripy-booking-app-topbar{
  position:relative;
  min-height:78px;
  margin:0 0 12px;
  padding:0 58px;
  background:linear-gradient(135deg,#24a7ff,#0e8ca2,#76b900);
  box-shadow:0 12px 26px rgba(26,91,173,.18);
  display:flex;
  align-items:center;
  overflow:hidden;
}

.tripy-booking-app-topbar__middle{
  width:100%;
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}

.tripy-booking-app-topbar__middle::-webkit-scrollbar{
  display:none;
}

.tripy-booking-app-tabs--top{
  background:transparent;
  padding:0;
  box-shadow:none;
  border:0;
  display:inline-flex;
  min-width:max-content;
  flex-wrap:nowrap;
}

.tripy-booking-app-tabs--top .tripy-booking-app-tab{
  min-height:52px;
  padding:0 16px;
  font-size:16px;
  flex:0 0 auto;
  white-space:nowrap;
}



.tripy-booking-app-filtercard--chips{
  margin-top:10px;
  border-radius:10px;
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  border:1px solid rgba(46,167,255,.10);
}


.tripy-page-topbar__edge{
  position:absolute;
  top:0;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  font-size:30px;
  font-weight:800;
  border:0;
  cursor:pointer;
  background:linear-gradient(135deg, #03030338, #48494700);
  box-shadow:0 12px 22px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.35);
  z-index:2;
}

.tripy-page-topbar__edge--back{
  left:0;
  border-radius:0 18px 18px 0;
}

.tripy-page-topbar__edge--home{
  right:0;
  border-radius:18px 0 0 18px;
}


@media (max-width:640px){
  .tripy-booking-app-topbar{
    min-height:64px;
    margin:0 0 0px;
    padding:0 57px;
  }

  .tripy-booking-app-topbar__middle{
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
  }

  .tripy-booking-app-tabs--top{
    display:inline-flex;
    min-width:max-content;
  }

  .tripy-booking-app-tabs--top .tripy-booking-app-tab{
    min-height:44px;
    padding:0 12px;
    font-size:13px;
    letter-spacing:0;
  }
}

@media (max-width:640px){
 



  .tripy-booking-app-filtercard--chips{
    margin-top:8px;
    border-radius:8px;
  }
}

.tripy-booking-board-hero{
  position:relative;
  overflow:hidden;
  min-height:210px;
  padding:28px 18px 18px;
  background:
    linear-gradient(135deg, rgba(7,17,31,.98), rgba(6,83,92,.96) 56%, rgba(15,159,110,.94));
  color:#fff;
  box-shadow:0 16px 38px rgba(15,23,42,.18);
}

.tripy-booking-board-hero__content{
  width:min(620px,100%);
  display:grid;
  gap:10px;
}

.tripy-booking-board-hero__eyebrow{
  width:max-content;
  max-width:100%;
  padding:8px 14px;
  border-radius:8px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  font-weight:900;
}

.tripy-booking-board-hero h1{
  margin:0;
  font-size:clamp(28px,4vw,44px);
  line-height:1.05;
  font-weight:950;
  color:#fff;
}

.tripy-booking-board-hero p{
  margin:0;
  max-width:560px;
  font-size:clamp(20px,3vw,34px);
  line-height:1.06;
  font-weight:950;
  color:#fff;
}

.tripy-booking-board-hero__stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  width:min(560px,100%);
  margin-top:28px;
}

.tripy-booking-board-stat{
  min-height:76px;
  padding:12px;
  border-radius:8px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.1);
}

.tripy-booking-board-stat span,
.tripy-booking-board-stat small{
  display:block;
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:800;
}

.tripy-booking-board-stat strong{
  display:block;
  margin-top:6px;
  color:#fff;
  font-size:22px;
  line-height:1;
  font-weight:950;
}

.tripy-booking-app-summary{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  padding:12px 10px 10px;
}

.tripy-booking-app-summary__tile{
  min-height:76px;
  padding:14px;
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 26px rgba(15,23,42,.08);
}

.tripy-booking-app-summary__tile span{
  display:block;
  color:#64748b;
  font-size:13px;
  font-weight:900;
}

.tripy-booking-app-summary__tile strong{
  display:block;
  margin-top:8px;
  font-size:22px;
  line-height:1;
  font-weight:950;
}

.tripy-booking-app-summary__tile--value strong{ color:#2563eb; }
.tripy-booking-app-summary__tile--cashback strong{ color:#db2777; }

.tripy-booking-app-highlight{
  border-radius:8px;
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 14px 32px rgba(15,23,42,.10);
}

.tripy-booking-app-card{
  display:block;
  border-radius:8px;
  overflow:hidden;
  border:1px solid rgba(226,232,240,.95);
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.tripy-booking-app-card__main{
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  min-height:170px;
  color:inherit;
  text-decoration:none;
}

.tripy-booking-app-card__media{
  min-height:170px;
}

.tripy-booking-app-card__body{
  display:flex;
  min-width:0;
  flex-direction:column;
  padding:14px 14px 12px;
}

.tripy-booking-app-card__row{
  justify-content:flex-start;
  gap:8px;
  margin-bottom:8px;
}

.tripy-booking-app-card__service,
.tripy-booking-app-card__status{
  position:static;
  display:inline-flex;
  align-items:center;
  min-height:26px;
  padding:5px 10px;
  border-radius:8px;
  font-size:11px;
  font-weight:950;
  text-transform:none;
}

.tripy-booking-app-card__service{
  color:#0f9f6e;
  background:#e9fbf2;
  border:1px solid rgba(15,159,110,.16);
}

.tripy-booking-app-card__status{
  color:#2563eb;
  background:#eef5ff;
}

.tripy-booking-app-card__status--success{ color:#0f9f6e; background:#e9fbf2; }
.tripy-booking-app-card__status--info{ color:#2563eb; background:#eef5ff; }
.tripy-booking-app-card__status--danger{ color:#dc2626; background:#fff0f0; }
.tripy-booking-app-card__status--warn{ color:#ea580c; background:#fff7ed; }
.tripy-booking-app-card__status--neutral{ color:#475569; background:#f1f5f9; }

.tripy-booking-app-card__title{
  max-width:760px;
  font-size:19px;
  line-height:1.12;
  font-weight:950;
  color:#111827;
}

.tripy-booking-app-card__meta{
  color:#94a3b8;
  font-weight:750;
}

.tripy-booking-app-card__dates{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid #e2e8f0;
}

.tripy-booking-app-card__dates span{
  display:block;
  color:#94a3b8;
  font-size:12px;
  font-weight:900;
}

.tripy-booking-app-card__dates strong{
  display:block;
  margin-top:2px;
  color:#0c65ae;
  font-size:14px;
  font-weight:950;
}

.tripy-booking-app-card__foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
  padding-top:10px;
  border-top:1px solid #e2e8f0;
}

.tripy-booking-app-card__order{
  color:#0f9f6e;
  font-size:15px;
  font-weight:950;
}

.tripy-booking-app-card__details{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 15px;
  border-radius:8px;
  color:#fff;
  background:#0cae1b;
  box-shadow:0 8px 18px rgba(12,174,27,.24);
  font-size:12px;
  font-weight:950;
}

.tripy-booking-app-utility{
     display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 20px 14px 0px 14px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    grid-auto-flow: column;
    justify-items: center;
}

.tripy-booking-app-utility__badge{
  display:grid;
  gap:3px;
  text-decoration:none;
  color:inherit;
  padding-left:28px;
  position:relative;
}

.tripy-booking-app-utility__badge::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#fff;
  font-size:12px;
  font-weight:950;
  background:#0f9f6e;
}

.tripy-booking-app-utility__badge--support::before{
  content:"?";
  background:#2563eb;
}

.tripy-booking-app-utility__badge strong{
  color:#111827;
  font-size:13px;
  font-weight:950;
}

.tripy-booking-app-utility__badge small{
  color:#2563eb;
  font-size:12px;
  font-weight:900;
}

.tripy-booking-app-utility__badge--pay small{
  color:#0f9f6e;
}

.tripy-booking-app-refundinfo{
  width:18px;
  height:18px;
  margin-left:6px;
  border:0;
  border-radius:999px;
  display:inline-grid;
  place-items:center;
  cursor:pointer;
  background:#fff7ed;
  color:#ea580c;
  font-size:12px;
  font-weight:950;
  box-shadow:0 6px 14px rgba(234,88,12,.16);
}

.tripy-booking-refund-status{
  position:fixed;
  inset:0;
  z-index:90;
  display:grid;
  place-items:center;
  padding:18px;
}

.tripy-booking-refund-status__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.52);
  backdrop-filter:blur(10px);
}

.tripy-booking-refund-status__panel{
  position:relative;
  width:min(440px,100%);
  padding:24px;
  border-radius:24px;
  background:linear-gradient(140deg,rgba(255,255,255,.98),rgba(248,250,252,.98));
  border:1px solid rgba(255,255,255,.82);
  box-shadow:0 28px 70px rgba(15,23,42,.28);
  overflow:hidden;
  animation:tripyCancelModalIn .22s ease both;
}

.tripy-booking-refund-status__panel:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,#f59e0b,#10b981,#2f80ed);
}

.tripy-booking-refund-status__icon{
  width:58px;
  height:58px;
  border-radius:20px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  color:#fff;
  font-size:26px;
  font-weight:950;
  background:linear-gradient(135deg,#f59e0b,#10b981);
  box-shadow:0 18px 30px rgba(16,185,129,.22);
}

.tripy-booking-refund-status__eyebrow{
  color:#2f80ed;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.tripy-booking-refund-status h3{
  margin:0;
  color:#0f172a;
  font-size:26px;
  line-height:1.08;
  font-weight:900;
}

.tripy-booking-refund-status p{
  margin:12px 0 22px;
  color:#64748b;
  font-size:14px;
  line-height:1.6;
  font-weight:700;
}

.tripy-booking-refund-status__btn{
  width:100%;
  border:0;
  border-radius:8px;
  padding:13px 16px;
  cursor:pointer;
  color:#fff;
  font-size:13px;
  font-weight:900;
  background:linear-gradient(135deg,#10b981,#2f80ed);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.tripy-booking-app-timeline{
  padding:0 14px 14px;
  background:#f8fafc;
}

.tripy-booking-app-timeline__title{
  padding:9px 0;
  color:#111827;
  font-size:14px;
  font-weight:950;
}

.tripy-booking-app-timeline__rail{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  padding:13px 10px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  background:#fff;
}

.tripy-booking-app-timeline__step{
  position:relative;
  display:grid;
  justify-items:center;
  gap:4px;
  text-align:center;
}

.tripy-booking-app-timeline__step:not(:last-child)::after{
  content:"";
  position:absolute;
  top:11px;
  left:calc(50% + 18px);
  width:calc(100% - 28px);
  height:2px;
  background:#dbeafe;
}

.tripy-booking-app-timeline__dot{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#94a3b8;
  background:#e2e8f0;
  font-size:12px;
  font-weight:950;
  z-index:1;
}

.tripy-booking-app-timeline__step.is-active .tripy-booking-app-timeline__dot{
  color:#fff;
  background:#0f9f6e;
}

.tripy-booking-app-timeline__step strong{
  color:#111827;
  font-size:12px;
  font-weight:950;
}

.tripy-booking-app-timeline__step small{
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#64748b;
  font-size:11px;
  font-weight:800;
}

.tripy-booking-app-suggestions{
  padding:0 14px 14px;
}

.tripy-booking-app-suggestion{
  min-width:220px;
  border-radius:8px;
  align-items:center;
  box-shadow:0 10px 22px rgba(15,23,42,.06);
}

.tripy-booking-app-suggestion__thumb{
  border-radius:8px;
  background:linear-gradient(135deg, rgba(79,70,229,.10), rgba(34,197,94,.12));
}

.tripy-booking-app-suggestion__thumb img{
  object-fit:contain;
}

.tripy-booking-app-suggestion__body strong{
  color:#111827;
  font-weight:950;
}

@media (max-width:640px){
  .tripy-booking-board-hero{
    min-height:212px;
    padding:28px 14px 16px;
  }

  .tripy-booking-board-hero__stats{
    margin-top:26px;
  }

  .tripy-booking-board-stat{
    min-height:74px;
    padding:10px;
  }

  .tripy-booking-board-stat strong{
    font-size:20px;
  }

  .tripy-booking-app-summary{
    padding:10px 12px;
  }

  .tripy-booking-app-summary__tile{
    min-height:58px;
    padding:12px;
  }

  .tripy-booking-app-summary__tile strong{
    font-size:17px;
  }

  .tripy-booking-app-card__main{
    grid-template-columns:104px minmax(0,1fr);
    min-height:188px;
  }

  .tripy-booking-app-card__media{
    min-height:188px;
  }

  .tripy-booking-app-card__body{
    padding:10px;
  }

  .tripy-booking-app-card__title{
    font-size:15px;
    line-height:1.12;
  }

  .tripy-booking-app-card__dates{
    grid-template-columns:1fr;
    gap:4px;
  }

  .tripy-booking-app-card__dates span{
    font-size:11px;
  }

  .tripy-booking-app-card__dates strong{
    font-size:12px;
  }

  .tripy-booking-app-card__details{
    min-height:32px;
    padding:0 12px;
  }

  .tripy-booking-app-utility{
    padding:10px 12px;
  }

  .tripy-booking-app-timeline{
    padding:0 12px 12px;
  }

  .tripy-booking-app-timeline__step strong{
    font-size:11px;
  }

  .tripy-booking-app-timeline__step small{
    font-size:10px;
  }
}




.tripy-booking-detail-app-hero{
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, .85fr);
  gap: 16px;
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  margin-bottom: 16px;
}

.tripy-booking-detail-app-hero__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  background: #eef4ff;
}

.tripy-booking-detail-app-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tripy-booking-detail-app-hero__status{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.tripy-booking-detail-app-hero__status--success{ background:#19bf4c; }
.tripy-booking-detail-app-hero__status--info{ background:#0ea5e9; }
.tripy-booking-detail-app-hero__status--danger{ background:#ef4444; }
.tripy-booking-detail-app-hero__status--warn{ background:#f59e0b; }
.tripy-booking-detail-app-hero__status--neutral{ background:#6b7280; }

.tripy-booking-detail-app-hero__content{
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tripy-booking-detail-app-hero__eyebrow{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 8px;
}

.tripy-booking-detail-app-hero__title{
  font-size: clamp(24px, 2.3vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  color: #111827;
  margin: 0 0 10px;
}

.tripy-booking-detail-app-hero__location{
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 14px;
}

.tripy-booking-detail-app-hero__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tripy-booking-detail-app-chip{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3151d3;
  font-size: 12px;
  font-weight: 700;
}

.tripy-booking-detail-app-hero__price{
  font-size: 34px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 16px;
}

.tripy-booking-detail-app-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.tripy-booking-detail-app-btn{
  border: 0;
  border-radius: 14px;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

.tripy-booking-detail-app-btn--ghost{
  background: #f3f4f6;
  color: #111827;
}

.tripy-booking-detail-app-btn--danger{
  background: #ff6a21;
  color: #fff;
}

.tripy-booking-detail-app-card{
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  margin-bottom: 16px;
}

.tripy-booking-detail-app-card__title{
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.tripy-booking-detail-app-cashback{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg,#1f3fbf,#3359e0,#2dc18f);
  color: #fff;
}

.tripy-booking-detail-app-cashback strong{
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.tripy-booking-detail-app-cashback p{
  margin: 0;
  opacity: .9;
  font-size: 12px;
}

.tripy-booking-detail-app-cashback span{
  font-size: 30px;
  font-weight: 900;
  white-space: nowrap;
}

.tripy-booking-detail-app-suggestions{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.tripy-booking-detail-app-suggestion{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: #f9fafb;
  text-decoration: none;
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

.tripy-booking-detail-app-suggestion__thumb{
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 14px;
  overflow: hidden;
  background: #e5eefc;
}

.tripy-booking-detail-app-suggestion__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tripy-booking-detail-app-suggestion__body{
  min-width: 0;
}

.tripy-booking-detail-app-suggestion__body strong{
  display: block;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 4px;
  color: #111827;
}

.tripy-booking-detail-app-suggestion__body p{
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.35;
  color: #6b7280;
}

.tripy-booking-detail-app-suggestion__body span{
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

@media (max-width: 900px){
  .tripy-booking-detail-app-hero{
    grid-template-columns: 1fr;
  }

  .tripy-booking-detail-app-hero__media{
    min-height: 280px;
  }

  .tripy-booking-detail-app-suggestions{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
 

  .tripy-booking-detail-app-hero{
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .tripy-booking-detail-app-hero__media{
    min-height: 220px;
    border-radius: 14px;
  }

  .tripy-booking-detail-app-hero__title{
    font-size: 18px;
    line-height: 1.16;
    margin-bottom: 8px;
  }

  .tripy-booking-detail-app-hero__location{
    font-size: 12px;
    margin-bottom: 10px;
  }

  .tripy-booking-detail-app-chip{
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .tripy-booking-detail-app-hero__price{
    font-size: 22px;
    margin-bottom: 12px;
  }

  .tripy-booking-detail-app-btn{
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
    border-radius: 12px;
  }

  .tripy-booking-detail-app-card{
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .tripy-booking-detail-app-card__title{
    font-size: 17px;
    margin-bottom: 10px;
  }

  .tripy-booking-detail-app-cashback{
    padding: 12px;
    border-radius: 14px;
  }

  .tripy-booking-detail-app-cashback span{
    font-size: 22px;
  }

  .tripy-booking-detail-app-suggestion{
    padding: 10px;
    border-radius: 14px;
  }

  .tripy-booking-detail-app-suggestion__thumb{
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 12px;
  }

  .tripy-booking-detail-app-suggestion__body strong{
    font-size: 13px;
  }

  .tripy-booking-detail-app-suggestion__body p{
    font-size: 11px;
  }

  .tripy-booking-detail-app-suggestion__body span{
    font-size: 12px;
  }
}

.tripy-booking-detail-app-shell{
  width: min(100%, 2000px);
    margin: -102px 0px 0px 0px;
    padding: 0 clamp(0px, 2vw, 0px) 24px;
}

.tripy-booking-detail-app-stage{
  position:relative;
}

.tripy-booking-detail-app-backdrop{
  position:relative;
  height:clamp(220px,34vw,520px);
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 36px rgba(0,0,0,.16);
}

.tripy-booking-detail-app-backdrop img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-booking-detail-app-sheet{
  position:relative;
  margin:-100px 80px 0 80px;
  background:#f8fbff;
  border-radius:30px 30px 22px 22px;
  box-shadow:0 -10px 40px rgba(15,23,42,.10), 0 20px 50px rgba(15,23,42,.10);
  padding:14px 0 8px;
}

.tripy-booking-detail-app-handle{
  width:58px;
  height:6px;
  border-radius:999px;
  background:#d7e0ea;
  margin:0 auto 14px;
}

.tripy-booking-detail-app-cashback-wrap{
  padding:0 14px 14px;
}

.tripy-booking-detail-app-cashback-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:24px;
  color:#fff;
  background: linear-gradient(135deg, #020617, #1d4ed8, #47123f);
  box-shadow:0 16px 26px rgba(2,6,23,.25);
}

.tripy-booking-detail-app-cashback-banner strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.tripy-booking-detail-app-cashback-banner p{
  margin:0;
  font-size:12px;
  opacity:.92;
}

.tripy-booking-detail-app-cashback-banner span{
  font-size:28px;
  font-weight:900;
  white-space:nowrap;
  color: #facc14;
}

.tripy-booking-detail-app-cashback-banner{
  position: relative;
  overflow: hidden;
  animation: tripyCashbackFloat 4.8s ease-in-out infinite;
}

.tripy-booking-detail-app-cashback-banner::after{
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 68%);
  pointer-events: none;
  animation: tripyCashbackGlow 5.4s linear infinite;
}

@keyframes tripyCashbackFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes tripyCashbackGlow {
  0%   { transform: translate3d(-10%, 0, 0); opacity: .35; }
  50%  { transform: translate3d(70%, 8%, 0); opacity: .65; }
  100% { transform: translate3d(150%, 0, 0); opacity: .35; }
}

.tripy-booking-detail-app-section{
  margin:0 14px 14px;
  background:#fff;
  padding: 20px;
  border-radius:18px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
  border:1px solid rgba(15,23,42,.05);
}

.tripy-booking-detail-app-section--hero{
  overflow:hidden;
}

.tripy-booking-detail-app-section__head{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 16px 0;
}

.tripy-booking-detail-app-section__head h2{
  margin:0;
  font-size:18px;
  font-weight:800;
  color:#1d6293;
}

.tripy-booking-detail-app-section__icon{
  font-size:18px;
}

.tripy-booking-detail-app-section__body{
  padding:14px 16px 16px;
}

.tripy-booking-detail-app-header h1{
  margin:6px 0 8px;
  font-size: clamp(22px, 3vw, 29px);
    font-weight: 700;
  line-height:1.08;
  color:#111827;
}

.tripy-booking-detail-app-header__service{
  color:#6366f1;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.tripy-booking-detail-app-header__location{
  color:#6b7280;
  font-size:14px;
  margin-bottom:12px;
}

.tripy-booking-detail-app-stars{
  color:#f59e0b;
  font-size:16px;
  letter-spacing:2px;
  margin-bottom:8px;
}

.tripy-booking-detail-app-header__statusrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.tripy-booking-detail-app-badge{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.tripy-booking-detail-app-badge--success{ background:#e8fff0; color:#10b981; }
.tripy-booking-detail-app-badge--info{ background:#edf5ff; color:#2563eb; }
.tripy-booking-detail-app-badge--danger{ background:#fff0f0; color:#ef4444; }
.tripy-booking-detail-app-badge--warn{ background:#fff8e8; color:#f59e0b; }
.tripy-booking-detail-app-badge--neutral{ background:#f3f4f6; color:#475569; }

.tripy-booking-detail-app-idchip{
  width:100%;
  border:0;
  border-radius:18px;
  padding:12px 14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  cursor:pointer;
  text-align:left;
  color:#fff;
  background:linear-gradient(135deg,#020617,#0f172a,#1d4ed8);
  box-shadow:0 14px 24px rgba(2,6,23,.28);
}

.tripy-booking-detail-app-idchip__icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.10);
}

.tripy-booking-detail-app-idchip__body{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}

.tripy-booking-detail-app-idchip__body small{
  color:#bfdbfe;
  font-size:11px;
  font-weight:700;
}

.tripy-booking-detail-app-idchip__body strong{
  color:#facc15;
  font-size:14px;
  font-weight:900;
  word-break:break-all;
}

.tripy-booking-detail-app-idchip__body em{
  color:#9ca3af;
  font-style:normal;
  font-size:10px;
}

.tripy-booking-detail-app-idchip__copy{
  margin-left:auto;
  opacity:.86;
}

.tripy-booking-detail-app-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.tripy-booking-detail-app-row:last-child{
  border-bottom:0;
}

.tripy-booking-detail-app-row span{
  color:#64748b;
  font-size:13px;
  font-weight:600;
}

.tripy-booking-detail-app-row strong{
  color:#204e6c;
  font-size:14px;
  font-weight:800;
  text-align:right;
  max-width:58%;
  word-break:break-word;
}

.tripy-booking-detail-app-row.is-emphasis strong{
  color:#0f172a;
  font-size:15px;
}

.tripy-booking-detail-app-trust{
  margin:0 14px 14px;
  padding:14px;
  border-radius:18px;
  background:linear-gradient(135deg,#ffffff 0%,#f2fbf7 48%,#eff6ff 100%);
  border:1px solid rgba(37,99,235,.08);
  box-shadow:0 12px 26px rgba(15,23,42,.08);
}

.tripy-booking-detail-app-trust__head{
  display:flex;
  align-items:center;
  gap:10px;
}

.tripy-booking-detail-app-trust__shield{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#0f9f6e;
  font-weight:900;
  background:rgba(15,159,110,.12);
}

.tripy-booking-detail-app-trust__copy{
  flex:1;
  min-width:0;
}

.tripy-booking-detail-app-trust__copy strong{
  display:block;
  color:#0f172a;
  font-size:16px;
  font-weight:900;
}

.tripy-booking-detail-app-trust__copy small{
  display:block;
  margin-top:2px;
  color:#64748b;
  font-size:11px;
  font-weight:700;
}

.tripy-booking-detail-app-trust__status{
  flex:0 0 auto;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  padding:0 10px;
  border-radius:8px;
  font-size:11px;
  font-weight:900;
}

.tripy-booking-detail-app-trust__status.is-partial{
  color:#f97316;
  background:rgba(249,115,22,.10);
  border:1px solid rgba(249,115,22,.20);
}

.tripy-booking-detail-app-trust__status.is-full{
  color:#0f9f6e;
  background:rgba(15,159,110,.10);
  border:1px solid rgba(15,159,110,.20);
}

.tripy-booking-detail-app-trust__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
  margin-top:13px;
}

.tripy-booking-detail-app-trust__metric{
  min-height:76px;
  padding:10px;
  border-radius:8px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.06);
}

.tripy-booking-detail-app-trust__metric span{
  display:block;
  font-size:17px;
  line-height:1;
  margin-bottom:7px;
}

.tripy-booking-detail-app-trust__metric small{
  display:block;
  color:#64748b;
  font-size:11px;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.tripy-booking-detail-app-trust__metric strong{
  display:block;
  margin-top:3px;
  color:#0f172a;
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.tripy-booking-detail-app-trust__metric--blue span{color:#2563eb;}
.tripy-booking-detail-app-trust__metric--green span{color:#0f9f6e;}
.tripy-booking-detail-app-trust__metric--violet span{color:#7c3aed;}
.tripy-booking-detail-app-trust__metric--orange span{color:#f97316;}

.tripy-booking-detail-app-trust p{
  margin:12px 0 0;
  padding:11px;
  border-radius:8px;
  background:rgba(15,23,42,.04);
  color:#475569;
  font-size:12px;
  line-height:1.35;
  font-weight:700;
}

@media (max-width:768px){
  .tripy-booking-detail-app-trust__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

.tripy-booking-detail-app-travellers{
  display:grid;
  gap:10px;
}

.tripy-booking-detail-app-traveller{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.tripy-booking-detail-app-traveller:last-child{ border-bottom:0; }

.tripy-booking-detail-app-traveller__emoji{
  font-size:18px;
}

.tripy-booking-detail-app-traveller strong{
  display:block;
  font-size:14px;
  color:#111827;
}

.tripy-booking-detail-app-traveller small{
  display:block;
  color:#6b7280;
  font-size:12px;
}

.tripy-booking-detail-app-actionsgrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}

.tripy-booking-detail-app-pill{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  color:inherit;
  border-radius:18px;
  padding:12px;
  box-shadow:0 8px 16px rgba(0,0,0,.08);
  background:linear-gradient(135deg,#eff6ff,#fff);
}

.tripy-booking-detail-app-pill--green{ background:linear-gradient(135deg,#ecfdf5,#fff); }
.tripy-booking-detail-app-pill--blue{ background:linear-gradient(135deg,#eff6ff,#fff); }

.tripy-booking-detail-app-pill__emoji{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  box-shadow:0 6px 12px rgba(0,0,0,.08);
}

.tripy-booking-detail-app-pill__body strong{
  display:block;
  font-size:13px;
  color:#0f172a;
}

.tripy-booking-detail-app-pill__body small{
  display:block;
  color:#6b7280;
  font-size:11px;
  margin-top:2px;
}

.tripy-booking-detail-app-support{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px;
  text-decoration:none;
  color:#fff;
  border-radius:18px;
  background:linear-gradient(135deg,#020617,#0f172a,#1e293b);
  box-shadow:0 14px 28px rgba(2,6,23,.25);
}

.tripy-booking-detail-app-support__left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.tripy-booking-detail-app-support__icon{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
}

.tripy-booking-detail-app-support strong{
  display:block;
  font-size:13px;
}

.tripy-booking-detail-app-support small{
  display:block;
  margin-top:3px;
  color:#cbd5f5;
  font-size:11px;
}

.tripy-booking-detail-app-support__cta{
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.tripy-booking-detail-app-emptycopy p{
  margin:0 0 10px;
  color:#6b7280;
  font-size:13px;
}

.tripy-booking-detail-app-friends{
  display:grid;
  gap:10px;
}

.tripy-booking-detail-app-friend{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.tripy-booking-detail-app-friend__avatar{
  width:38px;
  height:38px;
  flex:0 0 38px;
  border-radius:999px;
  overflow:hidden;
  background:#e5e7eb;
  display:grid;
  place-items:center;
  font-weight:800;
  color:#0f172a;
}

.tripy-booking-detail-app-friend__avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-booking-detail-app-friend__body strong{
  display:block;
  font-size:14px;
  color:#111827;
}

.tripy-booking-detail-app-friend__body small,
.tripy-booking-detail-app-friend__body span{
  display:block;
  color:#6b7280;
  font-size:12px;
  margin-top:2px;
}

.tripy-booking-detail-app-receiptwrap{
  margin:0 14px 14px;
}

.tripy-booking-detail-app-receipt{
  width:100%;
  border:0;
  border-radius:18px;
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:center;
  cursor:pointer;
  text-align:left;
  color:#fff;
  background:linear-gradient(135deg,#0f172a,#1d6293,#22c55e);
  box-shadow:0 14px 26px rgba(0,0,0,.18);
}

.tripy-booking-detail-app-receipt__icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.14);
}

.tripy-booking-detail-app-receipt strong{
  display:block;
  font-size:15px;
}

.tripy-booking-detail-app-receipt small{
  display:block;
  color:#dbeafe;
  font-size:11px;
  margin-top:2px;
}

.tripy-booking-detail-app-policy{
  display:grid;
  gap:10px;
}

.tripy-booking-detail-app-policy__row{
  padding:12px 14px;
  border-radius:14px;
}

.tripy-booking-detail-app-policy__row strong{
  display:block;
  font-size:14px;
  margin-bottom:4px;
}

.tripy-booking-detail-app-policy__row span{
  display:block;
  font-size:12px;
  line-height:1.45;
}

.tripy-booking-detail-app-policy__row--good{
  background:#ecfdf5;
  color:#166534;
}

.tripy-booking-detail-app-policy__row--warn{
  background:#fff7ed;
  color:#9a3412;
}

.tripy-booking-detail-app-cancelcta{
  margin-top:12px;
}

.tripy-booking-detail-app-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border:0;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
}

.tripy-booking-detail-app-btn--ghost{
  background:#f3f4f6;
  color:#111827;
}

.tripy-booking-detail-app-btn--danger{
  background:#ff6a21;
  color:#fff;
}

.tripy-booking-detail-app-rail{
  margin-bottom:14px;
}

.tripy-booking-detail-app-rail:last-child{
  margin-bottom:0;
}

.tripy-booking-detail-app-rail__title{
  font-size:14px;
  font-weight:800;
  color:#111827;
  margin-bottom:10px;
}

.tripy-booking-detail-app-rail__items{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:2px;
  scrollbar-width:none;
}

.tripy-booking-detail-app-rail__items::-webkit-scrollbar{ display:none; }

.tripy-booking-detail-app-railcard{
  min-width:220px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  text-decoration:none;
  color:inherit;
  background:#f9fafb;
  border-radius:16px;
  padding:10px;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.05);
}

.tripy-booking-detail-app-railcard__thumb{
  width:56px;
  height:56px;
  flex:0 0 56px;
  border-radius:14px;
  overflow:hidden;
  background:#e5eefc;
}

.tripy-booking-detail-app-railcard__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tripy-booking-detail-app-railcard__body strong{
  display:block;
  font-size:13px;
  line-height:1.25;
  color:#111827;
  margin-bottom:4px;
}

.tripy-booking-detail-app-railcard__body small{
  display:block;
  color:#6b7280;
  font-size:11px;
  margin-bottom:6px;
}

.tripy-booking-detail-app-railcard__body span{
  display:block;
  color:#111827;
  font-size:12px;
  font-weight:800;
}

.tripy-booking-detail-app-overlay{
  position:fixed;
  inset:0;
  z-index:70;
  background:rgba(2,6,23,.32);
  backdrop-filter:blur(6px);
  display:grid;
  place-items:center;
}

.tripy-booking-detail-app-overlay[hidden]{
  display:none !important;
}

.tripy-booking-detail-app-overlay__card{
  width:260px;
  padding:20px;
  border-radius:22px;
  background:linear-gradient(135deg,#1e1f29,#2a2b38);
  box-shadow:0 24px 48px rgba(0,0,0,.35);
  color:#fff;
  text-align:center;
}

.tripy-booking-detail-app-overlay__spinner{
  width:34px;
  height:34px;
  border-radius:999px;
  border:3px solid rgba(255,255,255,.20);
  border-top-color:#fff;
  margin:0 auto 14px;
  animation:tripySpin 1s linear infinite;
}

.tripy-booking-detail-app-overlay strong{
  display:block;
  font-size:16px;
  margin-bottom:6px;
}

.tripy-booking-detail-app-overlay small{
  display:block;
  color:rgba(255,255,255,.72);
  font-size:13px;
}

.tripy-booking-detail-app-cancelmodal{
  position:fixed;
  inset:0;
  z-index:85;
  display:grid;
  place-items:center;
  padding:18px;
}

.tripy-booking-detail-app-cancelmodal[hidden]{
  display:none !important;
}

.tripy-booking-detail-app-cancelmodal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.52);
  backdrop-filter:blur(10px);
}

.tripy-booking-detail-app-cancelmodal__panel{
  position:relative;
  width:min(440px,100%);
  border-radius:24px;
  padding:24px;
  background:
    linear-gradient(140deg,rgba(255,255,255,.96),rgba(248,250,252,.98)),
    radial-gradient(circle at 85% 0%,rgba(34,197,94,.20),transparent 30%);
  box-shadow:0 28px 70px rgba(15,23,42,.28);
  border:1px solid rgba(255,255,255,.82);
  overflow:hidden;
  animation:tripyCancelModalIn .22s ease both;
}

.tripy-booking-detail-app-cancelmodal__panel:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:5px;
  background:linear-gradient(90deg,#ef4444,#f59e0b,#22c55e,#2f80ed);
}

.tripy-booking-detail-app-cancelmodal__icon{
  width:58px;
  height:58px;
  border-radius:20px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  color:#fff;
  font-size:26px;
  font-weight:900;
  background:linear-gradient(135deg,#ef4444,#f97316);
  box-shadow:0 18px 30px rgba(239,68,68,.24);
}

.tripy-booking-detail-app-cancelmodal--success .tripy-booking-detail-app-cancelmodal__icon{
  background:linear-gradient(135deg,#10b981,#2f80ed);
  box-shadow:0 18px 30px rgba(16,185,129,.24);
}

.tripy-booking-detail-app-cancelmodal__eyebrow{
  color:#2f80ed;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.tripy-booking-detail-app-cancelmodal h3{
  margin:0;
  color:#0f172a;
  font-size:26px;
  line-height:1.08;
  font-weight:900;
}

.tripy-booking-detail-app-cancelmodal p{
  margin:12px 0 0;
  color:#64748b;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.tripy-booking-detail-app-cancelmodal__booking{
  display:grid;
  gap:5px;
  margin-top:18px;
  padding:14px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid rgba(148,163,184,.25);
}

.tripy-booking-detail-app-cancelmodal__booking span{
  color:#10b981;
  font-size:12px;
  font-weight:900;
}

.tripy-booking-detail-app-cancelmodal__booking strong{
  color:#0f172a;
  font-size:14px;
  line-height:1.35;
}

.tripy-booking-detail-app-cancelmodal__actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:22px;
}

.tripy-booking-detail-app-cancelmodal__btn{
  border:0;
  border-radius:8px;
  padding:12px 16px;
  cursor:pointer;
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.tripy-booking-detail-app-cancelmodal__btn--soft{
  background:#eef2ff;
  color:#334155;
}

.tripy-booking-detail-app-cancelmodal__btn--danger{
  background:linear-gradient(135deg,#ef4444,#dc2626);
  color:#fff;
}

.tripy-booking-detail-app-cancelmodal__btn--success{
  background:linear-gradient(135deg,#10b981,#2f80ed);
  color:#fff;
  min-width:110px;
}

@keyframes tripySpin{
  to{ transform:rotate(360deg); }
}

@keyframes tripyCancelModalIn{
  from{ opacity:0; transform:translateY(14px) scale(.98); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}

@media (max-width:640px){
  .tripy-booking-detail-app-cancelmodal__panel{
    padding:22px;
    border-radius:20px;
  }

  .tripy-booking-detail-app-cancelmodal__actions{
    flex-direction:column-reverse;
  }

  .tripy-booking-detail-app-cancelmodal__btn{
    width:100%;
  }
}

@media (max-width:900px){
  .tripy-booking-detail-app-sheet{
    width:100%;
  }
}

@media (max-width:784px){
  .tripy-booking-detail-app-shell{
    padding: 0px 6px 0px 0px;
        width: min(100%, clamp(320px, 100vw, 1800px));
        margin-left:1px;
  }


  .tripy-booking-detail-app-backdrop{
    height: 234px;
        width: 106%;
        margin: 0px 0px 0px -10px;
  }

.tripy-booking-detail-app-sheet {
    position: relative;
    margin: -55px 2px 0;
    width: min(100%, 1800px);
    background: #f8fbff;
    border-radius: 30px 30px 22px 22px;
    box-shadow: 0 -10px 40px rgba(15, 23, 42, .10), 0 20px 50px rgba(15, 23, 42, .10);
    padding: 14px 0 8px;
}

  .tripy-booking-detail-app-section{
    margin:0 10px 12px;
    border-radius:16px;
  }

  .tripy-booking-detail-app-section__head{
    padding:12px 12px 0;
  }

  .tripy-booking-detail-app-section__head h2{
    font-size:16px;
  }

  .tripy-booking-detail-app-section__body{
    padding:12px;
  }

  .tripy-booking-detail-app-header h1{
    font-size:18px;
    font-weight: 700;
    line-height:1.15;
  }

  .tripy-booking-detail-app-header__location{
    font-size:12px;
  }

  .tripy-booking-detail-app-cashback-wrap{
    padding:0 10px 12px;
  }

  .tripy-booking-detail-app-cashback-banner{
    padding:12px;
    border-radius:18px;
  }

  .tripy-booking-detail-app-cashback-banner span{
    font-size:22px;
  }

  .tripy-booking-detail-app-row{
    gap:10px;
    padding:8px 0;
  }

  .tripy-booking-detail-app-row span{
    font-size:12px;
  }

  .tripy-booking-detail-app-row strong{
    font-size:13px;
    max-width:56%;
  }

  .tripy-booking-detail-app-actionsgrid{
    grid-template-columns:1fr;
  }

  .tripy-booking-detail-app-pill{
    border-radius:14px;
    padding:10px;
  }

  .tripy-booking-detail-app-support{
    padding:12px;
    border-radius:16px;
  }

  .tripy-booking-detail-app-support__cta{
    padding:7px 12px;
    font-size:11px;
  }

  .tripy-booking-detail-app-receiptwrap{
    margin:0 10px 12px;
  }

  .tripy-booking-detail-app-receipt{
    padding:12px;
    border-radius:16px;
  }

  .tripy-booking-detail-app-railcard{
    min-width:190px;
    border-radius:14px;
  }

  .tripy-booking-detail-app-railcard__thumb{
    width:50px;
    height:50px;
    flex:0 0 50px;
  }
}


.tripy-booking-detail-app-footnote{
  margin-top:8px;
  color:#64748b;
  font-size:13px;
  font-weight:600;
}

.tripy-booking-detail-app-cancelcopy{
  margin:0 0 12px;
  color:#6b7280;
  font-size:13px;
  font-weight:500;
}

.tripy-booking-detail-app-refundtrust{
  margin:0 0 12px;
  padding:13px;
  border-radius:14px;
  background:linear-gradient(135deg,#ffffff,#f8fbff,#fff7ed);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 10px 20px rgba(15,23,42,.06);
}

.tripy-booking-detail-app-refundtrust__head{
  display:flex;
  align-items:center;
  gap:10px;
}

.tripy-booking-detail-app-refundtrust__icon{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-size:20px;
  font-weight:900;
}

.tripy-booking-detail-app-refundtrust__copy{
  flex:1;
  min-width:0;
}

.tripy-booking-detail-app-refundtrust__copy strong{
  display:block;
  color:#0f172a;
  font-size:15px;
  font-weight:900;
}

.tripy-booking-detail-app-refundtrust__copy small{
  display:block;
  margin-top:2px;
  color:#64748b;
  font-size:11px;
  font-weight:700;
}

.tripy-booking-detail-app-refundtrust__status{
  flex:0 0 auto;
  padding:6px 9px;
  border-radius:8px;
  font-size:10px;
  font-weight:900;
}

.tripy-booking-detail-app-refundtrust__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:11px;
}

.tripy-booking-detail-app-refundtrust__item{
  min-height:74px;
  padding:10px;
  border-radius:8px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(15,23,42,.06);
}

.tripy-booking-detail-app-refundtrust__item span{
  display:block;
  font-size:16px;
  line-height:1;
  margin-bottom:7px;
}

.tripy-booking-detail-app-refundtrust__item small{
  display:block;
  color:#64748b;
  font-size:11px;
  font-weight:700;
}

.tripy-booking-detail-app-refundtrust__item strong{
  display:block;
  margin-top:3px;
  color:#0f172a;
  font-size:12px;
  line-height:1.2;
  font-weight:900;
}

.tripy-booking-detail-app-refundtrust p{
  margin:10px 0 0;
  padding:10px;
  border-radius:8px;
  background:rgba(15,23,42,.04);
  color:#475569;
  font-size:11.5px;
  line-height:1.35;
  font-weight:700;
}

.tripy-booking-detail-app-refundtrust--success .tripy-booking-detail-app-refundtrust__icon,
.tripy-booking-detail-app-refundtrust--success .tripy-booking-detail-app-refundtrust__status{
  color:#0cae1b;
  background:rgba(12,174,27,.10);
}

.tripy-booking-detail-app-refundtrust--danger .tripy-booking-detail-app-refundtrust__icon,
.tripy-booking-detail-app-refundtrust--danger .tripy-booking-detail-app-refundtrust__status{
  color:#ef4444;
  background:rgba(239,68,68,.10);
}

.tripy-booking-detail-app-refundtrust--neutral .tripy-booking-detail-app-refundtrust__icon,
.tripy-booking-detail-app-refundtrust--neutral .tripy-booking-detail-app-refundtrust__status{
  color:#64748b;
  background:rgba(100,116,139,.12);
}

.tripy-booking-detail-app-cancelbox{
  background:#fff;
  border-radius:14px;
  box-shadow:0 6px 14px rgba(0,0,0,.05);
  padding:14px;
}

.tripy-booking-detail-app-cancelrow{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.tripy-booking-detail-app-cancelrow__icon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:14px;
  font-weight:900;
}

.tripy-booking-detail-app-cancelrow--ok .tripy-booking-detail-app-cancelrow__icon{
  background:#ecfdf5;
  color:#16a34a;
}

.tripy-booking-detail-app-cancelrow--no .tripy-booking-detail-app-cancelrow__icon{
  background:#fef2f2;
  color:#ef4444;
}

.tripy-booking-detail-app-cancelrow__body strong{
  display:block;
  font-size:14px;
  font-weight:800;
}

.tripy-booking-detail-app-cancelrow--ok .tripy-booking-detail-app-cancelrow__body strong{
  color:#16a34a;
}

.tripy-booking-detail-app-cancelrow--no .tripy-booking-detail-app-cancelrow__body strong{
  color:#ef4444;
}

.tripy-booking-detail-app-cancelrow__body span{
  display:block;
  margin-top:2px;
  color:#787c79;
  font-size:13px;
  font-weight:500;
}

.tripy-booking-detail-app-canceldivider{
  height:1px;
  background:#e5e7eb;
  margin:14px 0;
}

.tripy-booking-detail-app-canceltz{
  margin-top:12px;
  color:#9ca3af;
  font-size:11.5px;
  line-height:1.35;
  padding-left:2px;
}

.tripy-booking-detail-app-cancelnote{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  font-size:13px;
  font-weight:700;
}

.tripy-booking-detail-app-cancelnote--danger{
  background:rgba(239,68,68,.06);
  border:1px solid rgba(239,68,68,.22);
  color:#ef4444;
}

.tripy-booking-detail-app-cancelnote--expired{
  background:rgba(239,68,68,.05);
  border:1px solid rgba(239,68,68,.20);
  color:#ef4444;
}

.tripy-booking-detail-app-receipt{
  justify-content:space-between;
}

.tripy-booking-detail-app-receipt__arrow{
  margin-left:auto;
  font-size:26px;
  line-height:1;
  color:rgba(255,255,255,.92);
}

.tripy-booking-detail-app-receiptmodal{
  position:fixed;
  inset:0;
  z-index:80;
}

.tripy-booking-detail-app-receiptmodal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,6,23,.48);
  backdrop-filter:blur(6px);
}

.tripy-booking-detail-app-receiptmodal__panel{
  position:absolute;
  inset:20px;
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 24px 48px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
}

.tripy-booking-detail-app-receiptmodal__top{
  min-height:56px;
  display:grid;
  grid-template-columns:52px 1fr 52px;
  align-items:center;
  background:linear-gradient(135deg,#124693,#0c90ae);
  color:#fff;
}

.tripy-booking-detail-app-receiptmodal__title{
  text-align:center;
  font-size:15px;
  font-weight:700;
  padding:0 10px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.tripy-booking-detail-app-receiptmodal__btn{
  width:52px;
  height:52px;
  border:0;
  background:transparent;
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.tripy-booking-detail-app-receiptmodal__frame{
  width:100%;
  flex:1 1 auto;
  border:0;
  background:#f3f4f6;
}

@media (max-width:640px){
  .tripy-booking-detail-app-receiptmodal__panel{
    inset:8px;
    border-radius:16px;
  }

  .tripy-booking-detail-app-receiptmodal__title{
    font-size:13px;
  }

  .tripy-booking-detail-app-cancelbox{
    padding:12px;
  }

  .tripy-booking-detail-app-cancelrow__body strong{
    font-size:13px;
  }

  .tripy-booking-detail-app-cancelrow__body span{
    font-size:12px;
  }
}


.tripy-booking-detail-app-header__location{
  display:flex;
  align-items:flex-start;
  gap:6px;
  color:#6b7280;
  font-size:14px;
  margin-bottom:12px;
}

.tripy-booking-detail-app-header__location-icon{
  flex:0 0 auto;
  font-size:14px;
  line-height:1.2;
  transform:translateY(1px);
}

.tripy-partner-booking-toolbar {
    padding: 20px;
    overflow: hidden;
    border: 1px solid var(--tripy-border);
    border-radius: 0px;
    background: var(--tripy-surface);
    box-shadow: var(--tripy-shadow);
    backdrop-filter: blur(16px);
}

/* Partner app-style bookings */
.tripy-partner-booking-toolbar{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:end;
  padding:24px;
  margin-top: 30px;
  border-radius: 28px 28px 0px 0px;
}

.tripy-partner-booking-toolbar__copy{
  display:grid;
  gap:8px;
}

.tripy-partner-booking-toolbar__copy h2{
  margin:0;
  font-size:clamp(24px,3vw,34px);
}

.tripy-partner-booking-toolbar__copy p{
  margin:0;
  color:var(--tripy-muted);
}

.tripy-partner-booking-toolbar__eyebrow{
  color:#1d4ed8;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tripy-partner-booking-toolbar__filter{
  display:grid;
  gap:8px;
  min-width:210px;
}

.tripy-partner-booking-toolbar__filter span{
  color:var(--tripy-muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tripy-partner-booking-toolbar__filter select{
  min-height:48px;
  padding:0 14px;
  border:1px solid rgba(148,163,184,.22);
  border-radius:16px;
  background:#fff;
  color:var(--tripy-text);
  font-weight:800;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.tripy-partner-booking-list{
  display:grid;
  gap:16px;
}

.tripy-partner-booking-card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:start;
  padding:18px;
  border:1px solid rgba(203,213,225,.84);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(248,250,252,.96));
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  cursor:pointer;
}

.tripy-partner-booking-card--st_hotel{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(219,234,254,.88));
}

.tripy-partner-booking-card--st_tours{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(224,231,255,.9));
}

.tripy-partner-booking-card--st_activity{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(221,252,246,.9));
}

.tripy-partner-booking-card--st_rental{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(236,253,245,.9));
}

.tripy-partner-booking-card--st_cars{
  background:linear-gradient(135deg,rgba(255,255,255,.98),rgba(254,243,199,.9));
}

.tripy-partner-booking-card__left,
.tripy-partner-booking-card__right{
  display:grid;
  gap:10px;
}

.tripy-partner-booking-card__right{
  justify-items:end;
}

.tripy-partner-booking-card__id{
  color:#5a5d63;
  font-size:12px;
  letter-spacing:.03em;
  font-weight:800;
}

.tripy-partner-booking-card__title{
  color:#0a307c;
  font-size:18px;
  line-height:1.25;
  font-weight:900;
}

.tripy-partner-booking-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  font-size:13px;
  color:#334155;
}

.tripy-partner-booking-card__meta-label{
  color:#094cac;
  font-weight:800;
}

.tripy-partner-booking-card__meta strong{
  font-weight:800;
}

.tripy-partner-booking-card__amount{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border-radius:14px;
  background:#2da103;
  color:#fff;
  font-size:15px;
  font-weight:900;
  letter-spacing:.02em;
}

.tripy-partner-booking-card__actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.tripy-partner-booking-card__iconbtn{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.08);
  cursor:pointer;
}

.tripy-partner-booking-card__iconbtn--receipt{
  color:#0cae1b;
}

.tripy-partner-booking-card__status{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.tripy-partner-booking-card__status--success{ background:#e8fff0; color:#10b981; }
.tripy-partner-booking-card__status--info{ background:#edf5ff; color:#2563eb; }
.tripy-partner-booking-card__status--danger{ background:#fff0f0; color:#ef4444; }
.tripy-partner-booking-card__status--warn{ background:#fff8e8; color:#f59e0b; }
.tripy-partner-booking-card__status--neutral{ background:#f3f4f6; color:#475569; }

.tripy-partner-booking-modal{
  position:fixed;
  inset:0;
  z-index:1100;
}

.tripy-partner-booking-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.54);
  backdrop-filter:blur(4px);
}

.tripy-partner-booking-modal__panel{
  position:relative;
  z-index:1;
  width:min(760px,calc(100vw - 24px));
  max-height:min(94vh,920px);
  margin:5vh auto;
  overflow:hidden;
  border-radius:24px;
  background:#f8fafc;
  box-shadow:0 30px 70px rgba(2,8,23,.26);
}

.tripy-partner-booking-modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  background:linear-gradient(135deg,rgba(219,234,254,.9),rgba(236,253,245,.86));
}

.tripy-partner-booking-modal__panel--st_tours .tripy-partner-booking-modal__header{
  background:linear-gradient(135deg,rgba(224,231,255,.92),rgba(219,234,254,.88));
}

.tripy-partner-booking-modal__panel--st_activity .tripy-partner-booking-modal__header{
  background:linear-gradient(135deg,rgba(221,252,246,.94),rgba(224,231,255,.9));
}

.tripy-partner-booking-modal__panel--st_rental .tripy-partner-booking-modal__header{
  background:linear-gradient(135deg,rgba(236,253,245,.94),rgba(219,234,254,.88));
}

.tripy-partner-booking-modal__panel--st_cars .tripy-partner-booking-modal__header{
  background:linear-gradient(135deg,rgba(254,243,199,.94),rgba(254,249,195,.9));
}

.tripy-partner-booking-modal__service{
  color:#0f172a;
  font-size:14px;
  font-weight:900;
  letter-spacing:.04em;
}

.tripy-partner-booking-modal__bookingid{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:12px;
  background:#0cae1b;
  color:#fff;
  font-weight:900;
}

.tripy-partner-booking-modal__tabs{
  display:flex;
  gap:10px;
  padding:12px;
  background:#f8fafc;
}

.tripy-partner-booking-modal__tab{
  flex:1 1 0;
  min-height:46px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:999px;
  background:#fff;
  color:#111827;
  font-weight:800;
  cursor:pointer;
}

.tripy-partner-booking-modal__tab.is-active{
  background:#174097;
  border-color:#174097;
  color:#fff;
}

.tripy-partner-booking-modal__body{
  max-height:calc(86vh - 160px);
  overflow:auto;
  padding:0 12px 12px;
}

.tripy-partner-booking-modal__pane{ display:none; }
.tripy-partner-booking-modal__pane.is-active{ display:block; }

.tripy-partner-booking-modal__footer{
  display:flex;
  justify-content:flex-end;
  padding:0 12px 12px;
}

@media (max-width: 900px){
  .tripy-partner-booking-toolbar{
    grid-template-columns:minmax(0,1fr);
  }

  .tripy-partner-booking-toolbar__filter{
    min-width:0;
  }

  .tripy-partner-booking-card{
    grid-template-columns:minmax(0,1fr);
  }

  .tripy-partner-booking-card__right{
    justify-items:start;
  }

  .tripy-partner-booking-modal__panel{
    width:min(100vw - 14px,760px);
    margin:10px auto;
    max-height:calc(100vh - 20px);
  }

  .tripy-partner-booking-modal__body{
    max-height:calc(100vh - 190px);
  }
}


/* Partner withdrawal app-style screens */
.tripy-partner-withdraw-app{
  display:grid;
  gap:16px;
}

.tripy-partner-withdraw-app__modes{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 36px;
}

.tripy-partner-withdraw-app__mode{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  color:#174097;
  background:#ffffff;
  border:1px solid rgba(23,64,151,.14);
  box-shadow:0 10px 24px rgba(15,23,42,.06);
}

.tripy-partner-withdraw-app__mode.is-active{
  color:#ffffff;
  background:linear-gradient(135deg,#1d6293,#0cae1b);
  border-color:transparent;
}

.tripy-partner-withdraw-app__warning{
  padding:14px 16px;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(245,158,11,.14),rgba(255,255,255,.98));
  color:#9a6700;
  border:1px solid rgba(245,158,11,.18);
  font-weight:800;
}

.tripy-partner-withdraw-app__stats{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.tripy-partner-withdraw-app__stat,
.tripy-partner-withdraw-app__wallet,
.tripy-partner-withdraw-app__formcard,
.tripy-partner-history-card,
.tripy-partner-history-head,
.tripy-partner-history-empty{
  background:#ffffff;
  border-radius:22px;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
  border:1px solid rgba(226,232,240,.9);
}

.tripy-partner-withdraw-app__stat{
  padding:18px;
  display:grid;
  gap:10px;
}

.tripy-partner-withdraw-app__stat span{
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.tripy-partner-withdraw-app__stat strong{
  font-size:22px;
  line-height:1.2;
}

.tripy-partner-withdraw-app__stat--green{
  border-color:rgba(12,174,27,.22);
  box-shadow:0 18px 40px rgba(12,174,27,.10);
}

.tripy-partner-withdraw-app__stat--green span,
.tripy-partner-withdraw-app__stat--green strong{
  color:#15803d;
}

.tripy-partner-withdraw-app__stat--blue{
  border-color:rgba(29,98,147,.22);
  box-shadow:0 18px 40px rgba(29,98,147,.10);
}

.tripy-partner-withdraw-app__stat--blue span,
.tripy-partner-withdraw-app__stat--blue strong{
  color:#174097;
}

.tripy-partner-withdraw-app__wallet,
.tripy-partner-withdraw-app__formcard{
  padding:18px;
  display:grid;
  gap:14px;
}

.tripy-partner-withdraw-app__wallet-head,
.tripy-partner-history-head,
.tripy-partner-history-card__top,
.tripy-partner-history-card__foot,
.tripy-partner-withdraw-app__actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.tripy-partner-withdraw-app__wallet-head span,
.tripy-partner-withdraw-app__min{
  color:#6b7280;
  font-size:13px;
  font-weight:700;
}

.tripy-partner-withdraw-app__wallet-head strong{
  display:block;
  margin-top:4px;
  color:#b45309;
  font-size:20px;
}

.tripy-partner-withdraw-app__field{
  display:grid;
  gap:8px;
}

.tripy-partner-withdraw-app__field span{
  color:#475569;
  font-size:13px;
  font-weight:800;
}

.tripy-partner-withdraw-app__field input,
.tripy-partner-withdraw-app__field select,
.tripy-partner-withdraw-app__field textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.24);
  background:#f8fafc;
  color:#0f172a;
  outline:none;
  box-sizing:border-box;
}

.tripy-partner-withdraw-app__field textarea{
  min-height:100px;
  resize:vertical;
}

.tripy-partner-withdraw-app__field input:focus,
.tripy-partner-withdraw-app__field select:focus,
.tripy-partner-withdraw-app__field textarea:focus{
  border-color:#0cae1b;
  box-shadow:0 0 0 4px rgba(12,174,27,.10);
}

.tripy-partner-history-head,
.tripy-partner-history-empty{
  padding:18px;
}

.tripy-partner-history-head h3,
.tripy-partner-history-head p{
  margin:0;
}

.tripy-partner-history-head h3{
  color:#174097;
  font-size:22px;
}

.tripy-partner-history-head p,
.tripy-partner-history-empty{
  color:#64748b;
}

.tripy-partner-history-filters{
  display:grid;
  grid-template-columns:minmax(180px,1fr) minmax(150px,.8fr) minmax(150px,.8fr) auto;
  gap:12px;
  align-items:end;
  margin:0 0 16px;
  padding:16px 18px;
  border:1px solid rgba(23,64,151,.14);
  border-radius:18px;
  background:rgba(255,255,255,.92);
  box-shadow:0 12px 28px rgba(30,64,175,.07);
}

.tripy-partner-history-filters label{
  display:grid;
  gap:7px;
  color:#475569;
  font-size:12px;
  font-weight:800;
}

.tripy-partner-history-filters select,
.tripy-partner-history-filters input{
  width:100%;
  min-height:46px;
  padding:10px 12px;
  border:1px solid #cbd5e1;
  border-radius:13px;
  background:#fff;
  color:#17243d;
  font:inherit;
}

.tripy-partner-history-filters select:focus,
.tripy-partner-history-filters input:focus{
  outline:none;
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,.10);
}

.tripy-partner-history-filters__actions{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.tripy-partner-history-filters__actions .tripy-web-action{
  min-height:46px;
  white-space:nowrap;
}

.tripy-partner-history-list{
  display:grid;
  gap:14px;
}

.tripy-partner-history-card{
  padding:16px;
  border-width:2px;
}

.tripy-partner-history-card.is-highlight{
  border-color:#2563eb;
  box-shadow:0 20px 42px rgba(37,99,235,.16);
}

.tripy-partner-history-card__date{
  color:#92400e;
  font-weight:800;
}

.tripy-partner-history-card__status{
  display:grid;
  place-items:center;
  width:32px;
  height:32px;
  border-radius:999px;
  color:#ffffff;
  font-weight:900;
}

.tripy-partner-history-card__status--completed{
  background:#0cae1b;
}

.tripy-partner-history-card__status--pending{
  background:#bf573f;
}

.tripy-partner-history-card__status--danger{
  background:#ef4444;
}

.tripy-partner-history-card__row{
  display:flex;
  gap:8px;
  align-items:flex-start;
  margin-top:10px;
  color:#334155;
}

.tripy-partner-history-card__row span{
  font-weight:800;
}

.tripy-partner-history-card__row strong{
  font-weight:800;
}

.tripy-partner-history-card__label{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(29,98,147,.08);
  color:#174097;
  font-size:12px;
  font-weight:900;
}

.tripy-partner-history-card__delete{
  min-height:36px;
  padding:0 14px;
  border:0;
  border-radius:12px;
  background:#ef4444;
  color:#ffffff;
  font-weight:800;
  cursor:pointer;
}

.tripy-partner-withdraw-toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translate(-50%,16px);
  z-index:1300;
  min-width:280px;
  max-width:min(92vw,460px);
  padding:14px 18px;
  border-radius:18px;
  color:#ffffff;
  font-weight:800;
  opacity:0;
  transition:opacity .18s ease, transform .18s ease;
  box-shadow:0 20px 42px rgba(15,23,42,.22);
}

.tripy-partner-withdraw-toast.is-visible{
  opacity:1;
  transform:translate(-50%,0);
}

.tripy-partner-withdraw-toast--success{
  background:linear-gradient(135deg,#16a34a,#0cae1b);
}

.tripy-partner-withdraw-toast--error{
  background:linear-gradient(135deg,#dc2626,#ef4444);
}

.tripy-partner-withdraw-dialog{
  position:fixed;
  inset:0;
  z-index:1250;
}

.tripy-partner-withdraw-dialog__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.5);
  backdrop-filter:blur(4px);
}

.tripy-partner-withdraw-dialog__panel{
  position:relative;
  z-index:1;
  width:min(92vw,420px);
  margin:12vh auto 0;
  padding:22px;
  border-radius:24px;
  background:#ffffff;
  text-align:center;
  box-shadow:0 28px 64px rgba(15,23,42,.24);
}

.tripy-partner-withdraw-dialog__icon{
  width:68px;
  height:68px;
  margin:0 auto 14px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#ffffff;
  font-size:32px;
  font-weight:900;
}

.tripy-partner-withdraw-dialog__icon--success{
  background:linear-gradient(135deg,#16a34a,#0cae1b);
}

.tripy-partner-withdraw-dialog__icon--warning{
  background:linear-gradient(135deg,#f59e0b,#f97316);
}

.tripy-partner-withdraw-dialog__panel h3{
  margin:0 0 10px;
  color:#174097;
  font-size:24px;
}

.tripy-partner-withdraw-dialog__panel p{
  margin:0 0 18px;
  color:#475569;
  line-height:1.55;
}

@media (max-width: 780px){
  .tripy-partner-withdraw-app__stats{
    grid-template-columns:minmax(0,1fr);
  }

  .tripy-partner-history-head,
  .tripy-partner-withdraw-app__wallet-head,
  .tripy-partner-withdraw-app__actions,
  .tripy-partner-history-card__top,
  .tripy-partner-history-card__foot{
    flex-direction:column;
    align-items:flex-start;
  }

  .tripy-partner-history-card__delete,
  .tripy-partner-withdraw-app__actions .tripy-web-action,
  .tripy-partner-withdraw-app__wallet .tripy-web-action{
    width:100%;
    justify-content:center;
  }
}


/* Partner verification app-style screen */
.tripy-partner-verify-app{
  display:grid;
  gap:16px;
  padding-bottom:108px;
}

.tripy-partner-verify-app__tools{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.tripy-partner-verify-app__banner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    padding: 12px 18px;
    border-radius: 0px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.tripy-partner-verify-app__banner--pending{
  background:linear-gradient(135deg,#ea580c,#f59e0b);
  color:#fff;
}

.tripy-partner-verify-app__banner--verified{
  background:linear-gradient(135deg,#141515,#596c5f);
  color:#fff;
  box-shadow:0 22px 48px rgba(34,197,94,.18);
}

.tripy-partner-verify-app__banner-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.16);
  font-size:22px;
}

.tripy-partner-verify-app__medal{
  width:52px;
  height:52px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#0fc521,#088c13);
  box-shadow:0 12px 28px rgba(15,201,33,.28);
}

.tripy-partner-verify-app__medal span{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.34);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:20px;
  font-weight:900;
}

.tripy-partner-verify-app__banner-copy{
  min-width:0;
  display:grid;
  gap:4px;
  flex:1;
}

.tripy-partner-verify-app__banner-copy strong{
  font-size:18px;
  font-weight:900;
}

.tripy-partner-verify-app__banner-copy small{
  font-size:13px;
  color:rgba(255,255,255,.92);
}

.tripy-partner-verify-app__chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}

.tripy-partner-verify-app__chip--pending{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.28);
  color:#fff;
}

.tripy-partner-verify-app__chip--premium{
  background:#171715;
  border:1px solid rgba(255,255,255,.26);
  color:#f0f1e8;
}

.tripy-partner-verify-app__section{
  background:#fff;
  border:1px solid rgba(226,232,240,.95);
  border-radius:22px;
  padding:18px;
  box-shadow:0 16px 34px rgba(15,23,42,.07);
  display:grid;
  gap:14px;
}

.tripy-partner-verify-app__section-head{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.tripy-partner-verify-app__section-head strong{
  font-size:18px;
  font-weight:900;
  color:#16538a;
}

.tripy-partner-verify-app__section-pill{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.tripy-partner-verify-app__section-pill--required{
  background:#eff6ff;
  color:#0d3f4c;
}

.tripy-partner-verify-app__section-pill--optional{
  background:#f1fff7;
  color:#0d3f4c;
}

.tripy-partner-verify-app__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.tripy-partner-verify-app__field{
  display:grid;
  gap:8px;
}

.tripy-partner-verify-app__field--full{
  grid-column:1 / -1;
}

.tripy-partner-verify-app__field span{
  color:#475569;
  font-size:13px;
  font-weight:800;
}

.tripy-partner-verify-app__field input,
.tripy-partner-verify-app__field textarea{
  width:100%;
  min-height:50px;
  border:1.4px solid #cbd5e1;
  border-radius:14px;
  background:#fff;
  padding:12px 14px;
  color:#0f172a;
  outline:none;
  box-sizing:border-box;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.tripy-partner-verify-app__field textarea{
  min-height:110px;
  resize:vertical;
}

.tripy-partner-verify-app__field input:focus,
.tripy-partner-verify-app__field textarea:focus{
  border-color:#0cae1b;
  box-shadow:0 0 0 4px rgba(12,174,27,.10);
}

.tripy-partner-verify-app__field.has-error input,
.tripy-partner-verify-app__field.has-error textarea,
.tripy-partner-verify-app__photos.has-error{
  border-color:#dc2626;
}

.tripy-partner-verify-app__error{
  color:#dc2626;
  font-size:12px;
  font-weight:800;
}

.tripy-partner-verify-app__photos{
  display:grid;
  gap:10px;
}

.tripy-partner-verify-app__thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0px;
}

.tripy-partner-verify-app__thumb{
 position: relative;
    border-radius: 14px;
    overflow: hidden;
    max-height: 100px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    max-width: 200px;
}

.tripy-partner-verify-app__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tripy-partner-verify-app__thumb-remove{
  position:absolute;
  top:8px;
  right:8px;
  width:28px;
  height:28px;
  border:0;
  border-radius:999px;
  background:rgba(15,23,42,.72);
  color:#fff;
  font-size:18px;
  line-height:1;
  cursor:pointer;
}

.tripy-partner-verify-app__upload{
  min-height:114px;
  border:1.4px dashed #94a3b8;
  border-radius:16px;
  background:#fff;
  display:grid;
  place-items:center;
  gap:6px;
  text-align:center;
  cursor:pointer;
  padding:16px;
}

.tripy-partner-verify-app__upload strong{
  color:#475569;
  font-size:15px;
  font-weight:800;
}

.tripy-partner-verify-app__upload small{
  color:#64748b;
  font-weight:700;
}

.tripy-partner-verify-app__upload-icon{
  font-size:22px;
}

.tripy-partner-verify-app__sticky{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:60;
  padding:12px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(8px);
  box-shadow:0 -8px 24px rgba(15,23,42,.10);
}

.tripy-partner-verify-app__submit{
  width:min(100%,1180px);
  display:block;
  margin:0 auto;
  min-height:52px;
  border:0;
  border-radius:16px;
  background:#0cae1b;
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(12,174,27,.22);
}

.tripy-partner-verify-app__submit:disabled{
  opacity:.72;
  cursor:not-allowed;
}

.tripy-partner-verify-app__overlay{
  position:fixed;
  inset:0;
  z-index:1200;
  background:rgba(0,0,0,.28);
  display:grid;
  place-items:center;
  padding:16px;
}

.tripy-partner-verify-app__overlay-card{
  width:min(92vw,360px);
  border-radius:22px;
  background:linear-gradient(135deg,#ffffff,#f7fff9);
  border:1px solid #e8f5ec;
  box-shadow:0 24px 56px rgba(0,0,0,.18);
  padding:18px;
  text-align:center;
  display:grid;
  gap:12px;
}

.tripy-partner-verify-app__overlay-title{
  color:#0f172a;
  font-size:17px;
  font-weight:900;
}

.tripy-partner-verify-app__overlay-bar{
  width:100%;
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background:linear-gradient(135deg,#f1faf4,#e2f6e8);
  border:1px solid #dcefe4;
}

.tripy-partner-verify-app__overlay-bar span{
  display:block;
  height:100%;
  width:0;
  border-radius:999px;
  background:linear-gradient(135deg,#1e92bc,#0cae1b);
  transition:width .18s ease;
}

.tripy-partner-verify-app__overlay-percent{
  color:#0f172a;
  font-size:18px;
  font-weight:900;
}

.tripy-partner-verify-app__overlay-card small{
  color:#64748b;
  font-weight:700;
}

.tripy-partner-verify-toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translate(-50%,16px);
  z-index:1300;
  min-width:280px;
  max-width:min(92vw,460px);
  padding:14px 18px;
  border-radius:18px;
  color:#fff;
  font-weight:800;
  opacity:0;
  transition:opacity .18s ease, transform .18s ease;
  box-shadow:0 20px 42px rgba(15,23,42,.22);
}

.tripy-partner-verify-toast.is-visible{
  opacity:1;
  transform:translate(-50%,0);
}

.tripy-partner-verify-toast--success{
  background:linear-gradient(135deg,#16a34a,#0cae1b);
}

.tripy-partner-verify-toast--error{
  background:linear-gradient(135deg,#dc2626,#ef4444);
}

.tripy-partner-verify-toast--warning{
  background:linear-gradient(135deg,#f59e0b,#f97316);
}

@media (max-width: 820px){
  .tripy-partner-verify-app__grid{
    grid-template-columns:1fr;
  }

  .tripy-partner-verify-app__thumbs{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }



  .tripy-partner-verify-app__tools .tripy-web-action{
    width:100%;
    justify-content:center;
  }
}

@media (max-width: 560px){
  .tripy-partner-verify-app__thumbs{
    grid-template-columns:1fr;
  }

  .tripy-partner-verify-app__banner-copy strong{
    font-size:16px;
  }
}


.tripy-hinv {
    position: relative;
    padding-bottom: 86px;
    margin-top: 30px;
    border-radius: 28px 28px 0px 0px;
}


.tripy-auth-modal[hidden]{display:none !important;}
.tripy-auth-modal{
  position:fixed;
  inset:0;
  z-index:1400;
}
.tripy-auth-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.44);
  backdrop-filter:blur(8px);
  opacity:0;
  transition:opacity .22s ease;
}
.tripy-auth-modal__dialog{
  position:absolute;
  left:50%;
  top:50%;
  width:min(960px,calc(100vw - 24px));
  max-height:min(860px,calc(100vh - 24px));
  transform:translate(-50%,-46%) scale(.98);
  opacity:0;
  transition:transform .24s ease,opacity .24s ease;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 34px 90px rgba(15,23,42,.34);
  background:#fff;
}
.tripy-auth-modal.is-open .tripy-auth-modal__backdrop{opacity:1;}
.tripy-auth-modal.is-open .tripy-auth-modal__dialog{
  opacity:1;
  transform:translate(-50%,-50%) scale(1);
}
.tripy-auth-modal__close{
  position:absolute;
  left:16px;
  top:14px;
  z-index:4;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#9e41f1,#0d35b8);
  color:#fff;
  font-size:28px;
  font-weight: 600;
  line-height:0;
  cursor:pointer;
  box-shadow:0 14px 24px rgba(13,53,184,.28);
}
.tripy-auth-modal__mount{
  max-height:min(860px,calc(100vh - 24px));
  overflow:auto;
}
.tripy-auth-shell{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
  min-height:min(860px,calc(100vh - 24px));
  background:#fff;
}
.tripy-auth-hero{
  position:relative;
  overflow:hidden;
  min-height:300px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 62%,#eef5ff 100%);
}
.tripy-auth-hero__inner{
  position:relative;
  z-index:2;
  display:flex;
  min-height:100%;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:56px 36px 44px;
  text-align:center;
}
.tripy-auth-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(103,80,164,.14);
  color:#40365d;
  font-weight:800;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.tripy-auth-hero__title{
  margin:0;
  font-size:clamp(30px,3vw,42px);
  line-height:1.04;
  letter-spacing:-.04em;
  color:#111827;
}
.tripy-auth-hero__text{
  max-width:460px;
  margin:0;
  font-size:15px;
  line-height:1.65;
  color:#4b5563;
}
.tripy-auth-hero__map{
  position:absolute;
  inset:9% 10% auto 10%;
  height:58%;
  border-radius:999px;
  background:
    radial-gradient(circle at 50% 45%,rgba(13,53,184,.14),transparent 34%),
    radial-gradient(circle at 38% 56%,rgba(158,65,241,.12),transparent 18%),
    radial-gradient(circle at 63% 42%,rgba(19,176,255,.12),transparent 18%),
    repeating-radial-gradient(circle at center,rgba(17,24,39,.08) 0 1px,transparent 1px 18px);
  filter:blur(.3px);
  opacity:.82;
  animation:tripyAuthMapFloat 10s ease-in-out infinite;
}
.tripy-auth-hero__fx{
  position:absolute;
  border-radius:999px;
  filter:blur(10px);
  opacity:.88;
  pointer-events:none;
}
.tripy-auth-hero__fx--a{
  width:240px;
  height:240px;
  left:-40px;
  top:-30px;
  background:radial-gradient(circle at center,rgba(255,255,255,.95),rgba(255,255,255,0));
}
.tripy-auth-hero__fx--b{
  width:260px;
  height:260px;
  right:-40px;
  bottom:-30px;
  background:radial-gradient(circle at center,rgba(135,187,255,.34),rgba(135,187,255,0));
}
.tripy-auth-sheet{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:22px 26px 28px;
  background:linear-gradient(135deg,#9e41f1 0%,#0d35b8 100%);
}
.tripy-auth-tabs{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.tripy-auth-tab{
  position:relative;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.84);
  font:inherit;
  font-size:14px;
  font-weight:800;
  letter-spacing:.14em;
  cursor:pointer;
}
.tripy-auth-tab.is-active{color:#fff;}
.tripy-auth-tab.is-active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:34px;
  height:3px;
  border-radius:999px;
  background:#ffc107;
}
.tripy-auth-sheet__body{
  position:relative;
  flex:1;
  min-height:0;
  overflow:auto;
  padding:10px 2px 4px;
}
.tripy-auth-options,
.tripy-auth-form{
  display:grid;
  gap:12px;
}
.tripy-auth-option{
  display:grid;
  grid-template-columns:56px minmax(0,1fr) 18px;
  align-items:center;
  gap:14px;
  width:100%;
  min-height:76px;
  padding:12px 14px;
  border:0;
  border-radius:24px;
  background:rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 12px 24px rgba(0,0,0,.12);
  color:#fff;
  text-align:left;
  cursor:pointer;
}
.tripy-auth-option__icon{
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 20px rgba(15,23,42,.12);
}
.tripy-auth-option__icon img{width:24px;height:24px;object-fit:contain;}
.tripy-auth-emoji{font-size:24px;color:#111827;font-weight:800;}
.tripy-auth-option__copy{display:grid;gap:4px;min-width:0;}
.tripy-auth-option__copy strong{font-size:15px;line-height:1.2;}
.tripy-auth-option__copy small{font-size:12.5px;line-height:1.45;color:rgba(255,255,255,.84);}
.tripy-auth-option__chevron{font-size:28px;line-height:1;color:rgba(255,255,255,.84);}
.tripy-auth-option--google{
  grid-template-columns:56px minmax(0,1fr);
  grid-template-areas:
    "icon copy"
    "slot slot";
}
.tripy-auth-option--google .tripy-auth-option__icon{grid-area:icon;}
.tripy-auth-option--google .tripy-auth-option__copy{grid-area:copy;}
.tripy-auth-google-slot{
  grid-area:slot;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-left:70px;
  min-height:44px;
}
.tripy-auth-google-slot > div{
  max-width:100%;
}
.tripy-auth-google-slot iframe{
  max-width:100%;
}
.tripy-auth-google-slot__error{
  font-size:12px;
  line-height:1.45;
  color:rgba(255,255,255,.84);
}
.tripy-auth-back{margin-bottom:6px;}
.tripy-auth-back button,
.tripy-auth-link{
  border:0;
  background:transparent;
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.tripy-auth-inline-end{display:flex;justify-content:flex-end;}
.tripy-auth-inline-actions{display:flex;justify-content:flex-end;gap:10px;}
.tripy-auth-link--pill{
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}
.tripy-auth-field{
  display:grid;
  gap:8px;
}
.tripy-auth-field span{
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
}
.tripy-auth-field input{
  width:100%;
  min-height:58px;
  border:0;
  outline:none;
  border-radius:30px;
  background:rgba(255,255,255,.96);
  box-shadow:0 14px 24px rgba(15,23,42,.16);
  padding:0 18px;
  color:#1f2937;
  font:inherit;
  font-size:15px;
  font-weight:600;
}
.tripy-auth-phone-grid{
  display:grid;
  grid-template-columns:128px minmax(0,1fr);
  gap:12px;
}
.tripy-auth-field--grow{min-width:0;}
.tripy-auth-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#fff;
  font-size:13px;
  line-height:1.45;
}
.tripy-auth-check input{margin-top:3px;accent-color:#ffc107;}
.tripy-auth-terms,
.tripy-auth-copy{
  color:rgba(255,255,255,.92);
  font-size:12.5px;
  line-height:1.55;
}
.tripy-auth-rolebar{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
.tripy-auth-role{
  min-height:52px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.tripy-auth-role.is-active{
  background:#fff;
  color:#1a5d8e;
  box-shadow:0 14px 26px rgba(255,255,255,.18);
}
.tripy-auth-feedback{
  margin-bottom:12px;
  border-radius:18px;
  padding:14px 16px;
  font-size:13px;
  line-height:1.5;
  font-weight:700;
}
.tripy-auth-feedback--success{background:rgba(34,197,94,.18);color:#e9ffe8;}
.tripy-auth-feedback--error{background:rgba(239,68,68,.18);color:#fff1f1;}
.tripy-auth-feedback--hint{background:rgba(255,255,255,.12);color:#eef2ff;}
.tripy-auth-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  width:min(220px,100%);
  margin:6px auto 0;
  border:1px solid rgba(255,255,255,.7);
  border-radius:999px;
  background:linear-gradient(135deg,#8e2de2,#4a00e0);
  box-shadow:0 18px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.28);
  color:#fff;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}
.tripy-auth-cta[disabled],
.tripy-auth-link--pill[disabled]{opacity:.72;cursor:wait;}
.tripy-auth-loading{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  align-content:center;
  gap:10px;
  background:rgba(10,15,37,.42);
  backdrop-filter:blur(5px);
  color:#fff;
  text-align:center;
}
.tripy-auth-loading__spinner{
  width:54px;
  height:54px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.22);
  border-top-color:#fff;
  animation:tripyAuthSpin .9s linear infinite;
}
.tripy-auth-loading strong{font-size:15px;}
.tripy-auth-loading small{font-size:12.5px;color:rgba(255,255,255,.86);}

@keyframes tripyAuthSpin{to{transform:rotate(360deg);}}
@keyframes tripyAuthMapFloat{
  0%,100%{transform:translateY(0) scale(1);}
  50%{transform:translateY(-10px) scale(1.02);}
}

@media (max-width: 980px){
  .tripy-auth-shell{grid-template-columns:1fr;}
  .tripy-auth-hero{min-height:240px;}
}
@media (max-width: 720px){
  .tripy-auth-modal__dialog{
    width:100vw;
    max-height:100vh;
    height:100vh;
    border-radius:0;
    transform:translate(-50%,0) scale(1);
    top:0;
  }
  .tripy-auth-modal.is-open .tripy-auth-modal__dialog{
    transform:translate(-50%,0) scale(1);
    top:0;
  }
  .tripy-auth-modal__mount,
  .tripy-auth-shell{min-height:100vh;max-height:100vh;}
  .tripy-auth-modal__close{top:10px;left:12px;}
  .tripy-auth-hero__inner{padding:54px 20px 28px;}
  .tripy-auth-sheet{padding:18px 16px 26px;}
  .tripy-auth-phone-grid{grid-template-columns:112px minmax(0,1fr);}
}

.tripy-auth-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.tripy-auth-hero__inner {
  position: relative;
  z-index: 2;
  animation: tripyAuthFadeUp 0.85s cubic-bezier(.22,1,.36,1);
}

.tripy-auth-hero__title--premium {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 18px 0 14px;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: #0f172a;
}

.tripy-auth-hero__title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: tripyAuthWordIn 0.8s cubic-bezier(.22,1,.36,1) forwards;
}

.tripy-auth-hero__title-line--accent {
  position: relative;
  width: fit-content;
  background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 38%, #2563eb 72%, #22c55e 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    tripyAuthWordIn 0.8s cubic-bezier(.22,1,.36,1) forwards 0.14s,
    tripyAuthGradientFlow 6s ease-in-out infinite 1s;
}

.tripy-auth-hero__title-line--accent::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -10px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,0.22), rgba(37,99,235,0.22), rgba(34,197,94,0.18));
  filter: blur(8px);
  opacity: 0;
  animation: tripyAuthGlowIn 0.8s ease forwards 0.4s;
}

.tripy-auth-hero__text--premium {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.72);
  opacity: 0;
  transform: translateY(16px);
  animation: tripyAuthFadeSoft 0.75s ease forwards 0.28s;
}

.tripy-auth-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: tripyAuthFadeSoft 0.75s ease forwards 0.42s;
}

.tripy-auth-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  background: rgba(255,255,255,0.56);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 10px 24px rgba(37,99,235,0.08);
  color: #334155;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
}

.tripy-auth-hero__fx--a,
.tripy-auth-hero__fx--b,
.tripy-auth-hero__fx--c {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  z-index: 0;
}

.tripy-auth-hero__fx--a {
  top: -40px;
  left: -30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, rgba(124,58,237,0.08) 42%, transparent 72%);
  animation: tripyAuthFloatA 7s ease-in-out infinite;
}

.tripy-auth-hero__fx--b {
  right: -40px;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, rgba(34,197,94,0.08) 48%, transparent 74%);
  animation: tripyAuthFloatB 8s ease-in-out infinite;
}

.tripy-auth-hero__fx--c {
  left: 24%;
  bottom: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.14) 46%, transparent 72%);
  animation: tripyAuthPulse 5.6s ease-in-out infinite;
}

.tripy-auth-hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  animation: tripyAuthFadeSoft 0.7s ease forwards 0.08s;
}

.tripy-auth-hero__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  box-shadow: 0 0 0 6px rgba(124,58,237,0.08);
}

.tripy-auth-sheet {
  animation: tripyAuthSheetIn 0.75s cubic-bezier(.22,1,.36,1);
}

@keyframes tripyAuthWordIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tripyAuthFadeSoft {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tripyAuthFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tripyAuthGlowIn {
  from {
    opacity: 0;
    transform: scaleX(0.65);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes tripyAuthGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes tripyAuthFloatA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, 14px, 0) scale(1.06); }
}

@keyframes tripyAuthFloatB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-14px, -18px, 0) scale(1.08); }
}

@keyframes tripyAuthPulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes tripyAuthSheetIn {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.tripy-auth-hero__chip:nth-child(1) { animation: tripyAuthFadeSoft 0.7s ease forwards 0.48s; }
.tripy-auth-hero__chip:nth-child(2) { animation: tripyAuthFadeSoft 0.7s ease forwards 0.56s; }
.tripy-auth-hero__chip:nth-child(3) { animation: tripyAuthFadeSoft 0.7s ease forwards 0.64s; }
.tripy-auth-hero__chip:nth-child(4) { animation: tripyAuthFadeSoft 0.7s ease forwards 0.72s; }



/* GLOBAL INTERACTION GLOW */
.tripy-web-card__title:hover,
.tripy-web-action:hover,
.tripy-web-drawer__nav a:hover,
.tripy-web-bottom-nav__link:hover,
.tripy-service-tab:hover,
.tripy-account-filter:hover {
  text-shadow: var(--main-glow);
}

.tripy-activity-slots__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.tripy-web-sidepanel__screen #tripy-web-app[data-screen="wallet"] .tripy-page-topbar,
.tripy-web-sidepanel__screen #tripy-web-app[data-screen="preferences"] .tripy-page-topbar {
  display: none !important;
}

.tripy-web-sidepanel__screen #tripy-web-app[data-screen="wallet"] .tripy-wallet-app-shell,
.tripy-web-sidepanel__screen #tripy-web-app[data-screen="preferences"] .tripy-pref-app-shell {
  padding-top: 18px !important;
}

.tripy-web-sidepanel__screen .tripy-pref-section__title{
  color:#fff !important;
}


.tripy-booking-app-utility__badge--pay::before {
  content: none !important;
  display: none !important;
}

.tripy-booking-app-utility__badge {
  display: inline-flex;
  align-items: stretch;
  gap: 10px;
}

.tripy-booking-app-utility__icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.tripy-booking-app-utility__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.tripy-booking-app-utility__icon--verified {
  color: #0f9f6e;
  background: rgba(15, 159, 110, 0.10);
  box-shadow: 0 8px 18px rgba(15, 159, 110, 0.18);
}

.tripy-booking-app-utility__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}


/* Tripyatra profile verification */
.tripy-account-verify-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tripy-account-verify-input input {
  padding-right: 106px !important;
  width: 100%;
}

.tripy-account-verify-pill {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  z-index: 2;
}

.tripy-account-verify-pill:hover {
  transform: translateY(-50%) scale(1.03);
}

.tripy-account-verify-pill:disabled {
  opacity: .72;
  cursor: wait;
}

.tripy-account-verify-pill.is-verified {
  color: #166534;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  box-shadow: 0 10px 24px rgba(22, 163, 74, .16);
}

.tripy-account-verify-pill.is-pending {
  color: #1d4ed8;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .15);
}

.tripy-account-verify-pill.is-busy i {
  animation: tripyVerifySpin .75s linear infinite;
}

@keyframes tripyVerifySpin {
  to {
    transform: rotate(360deg);
  }
}

.tripy-profile-otp-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
}

.tripy-profile-otp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .52);
  backdrop-filter: blur(12px);
}

.tripy-profile-otp-card {
  position: relative;
  width: min(430px, 100%);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .30);
  padding: 26px 22px 22px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, .55);
  animation: tripyOtpUp .22s ease-out;
}

@keyframes tripyOtpUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }

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

.tripy-profile-otp-card__x {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.tripy-profile-otp-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, #a4ff00, #8d940c);
  display: grid;
  place-items: center;
  font-size: 27px;
  box-shadow: 0 18px 35px rgba(37, 99, 235, .28);
  margin-bottom: 14px;
}

.tripy-profile-otp-card h3 {
  margin: 0 42px 6px 0;
  font-size: 23px;
  font-weight: 950;
  color: #0f172a;
}

.tripy-profile-otp-card p {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.45;
  font-weight: 650;
}

.tripy-profile-otp-input {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 20px;
  background: #f8fafc;
  text-align: center;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 12px;
  outline: 2px solid transparent;
  transition: outline-color .18s ease, box-shadow .18s ease;
}

.tripy-profile-otp-input:focus {
  outline-color: #bfdbfe;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, .10);
}

.tripy-profile-otp-submit {
  width: 100%;
  height: 54px;
  margin-top: 16px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #312e81);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(17, 24, 39, .22);
}

.tripy-ai-top-chip {
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 700;
}

.tripy-ai-top-chip.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}



.tripy-ai-active-slot {
  display: flex;
  align-items: center;
  min-width: 92px;
}


.tripy-ai-top-chip.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  animation: tripyActiveChipIn 220ms ease-out;
}

.tripy-ai-switch-chip {
  opacity: 0.88;
}

@keyframes tripyActiveChipIn {
  from {
    opacity: 0;
    transform: translateX(-8px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.tripy-ai-active-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  animation: tripyActiveTitleIn 220ms ease-out;
}

.tripy-ai-active-title__text {
  display: inline-block;
}

@keyframes tripyActiveTitleIn {
  from {
    opacity: 0;
    transform: translateX(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.tripy-ai-panel__actions--split {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.tripy-ai-panel__brand {
  min-width: 0;
}

.tripy-ai-brand-name,
.tripy-ai-active-title {
  min-width: 0;
  white-space: nowrap;
}

.tripy-ai-right-slot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
  flex-wrap: nowrap;
}

.tripy-ai-top-chip,
.tripy-ai-panel__ghost.tripy-ai-top-chip {
  height: 32px;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

.tripy-ai-switch-chip {
  max-width: 92px;
}

#tripy-web-agent-top-new {
  max-width: 92px;
}

#tripy-web-agent-voice-toggle {
  max-width: 72px;
}

#tripy-web-agent-live-close {
  max-width: 62px;
}

.tripy-ai-panel__close {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}
/* Booking-detail production footer parity */
.tripy-booking-footer{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px;padding:58px 36px 72px;background:linear-gradient(135deg,#f3fff9 0%,#edf8ff 50%,#dff4ff 100%);border-top:1px solid rgba(35,92,153,.12);font-family:DM Sans,Arial,sans-serif}
.tripy-booking-footer__card{min-width:0;background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(248,252,255,.88));border:1px solid rgba(36,79,130,.12);border-radius:18px;padding:18px;box-shadow:0 12px 30px rgba(42,73,117,.09)}
.tripy-booking-footer__card h2{display:flex;align-items:center;gap:9px;margin:0 0 14px;color:#102444;font-size:16px;font-weight:900}
.tripy-booking-footer__card h2 span{color:#27d673;font-size:13px;text-shadow:0 0 12px rgba(39,214,115,.65)}
.tripy-booking-footer__links{display:grid;gap:10px}
.tripy-booking-footer__links a{display:block;padding:12px 14px;border:1px solid rgba(31,76,129,.12);border-radius:13px;background:linear-gradient(145deg,#fff,#f4f9ff);color:#29415f;text-decoration:none;font-size:14px;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.tripy-booking-footer__links a:hover{transform:translateY(-2px);border-color:rgba(24,163,101,.34);box-shadow:0 10px 22px rgba(36,95,145,.12)}
.tripy-booking-footer__socials{display:flex;gap:10px;flex-wrap:wrap}
.tripy-booking-footer__socials a{display:grid;place-items:center;width:44px;height:44px;border-radius:14px;border:1px solid rgba(31,76,129,.14);background:linear-gradient(145deg,#fff,#eef7ff);color:#132b4e;text-decoration:none;font-weight:900;font-size:18px;box-shadow:0 8px 18px rgba(32,77,126,.08)}
@media(max-width:980px){.tripy-booking-footer{grid-template-columns:repeat(2,minmax(0,1fr));padding:40px 22px 56px}}
@media(max-width:620px){.tripy-booking-footer{grid-template-columns:1fr;gap:16px;padding:28px 14px 44px}.tripy-booking-footer__card{padding:15px}}

/* TripYatra reusable Wallet / Preferences / Bookings side screen */
body.tripy-web-sidepanel-open{
  overflow:hidden !important;
}

.tripy-web-sidepanel{
  position:fixed;
  inset:0;
  z-index:2147482500;
  pointer-events:none;
}

.tripy-web-sidepanel[hidden]{display:none !important;}

.tripy-web-sidepanel__backdrop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  padding:0;
  background:linear-gradient(135deg,rgba(4,12,28,.35),rgba(10,32,38,.58));
  backdrop-filter:blur(8px) saturate(1.15);
  opacity:0;
  transition:opacity .26s ease;
  cursor:pointer;
}

.tripy-web-sidepanel__sheet{
  position:absolute;
  top:10px;
  right:10px;
  bottom:10px;
  width:min(720px,calc(100vw - 28px));
  height:auto;
  border:1px solid rgba(255,255,255,.72);
  border-radius:32px;
  background:linear-gradient(145deg,rgba(255,255,255,.98) 0%,rgba(242,249,255,.98) 52%,rgba(229,246,239,.98) 100%);
  box-shadow:-24px 0 64px rgba(5,20,48,.28),inset 0 1px 0 rgba(255,255,255,.95);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transform:translateX(calc(100% + 24px)) scale(.985);
  opacity:.96;
  transition:transform .28s cubic-bezier(.22,1,.36,1),opacity .22s ease,width .2s ease;
}

.tripy-web-sidepanel[data-screen="preferences"] .tripy-web-sidepanel__sheet{width:min(680px,calc(100vw - 28px));}
.tripy-web-sidepanel[data-screen="wallet"] .tripy-web-sidepanel__sheet{width:min(760px,calc(100vw - 28px));}
.tripy-web-sidepanel[data-screen="bookings"] .tripy-web-sidepanel__sheet{width:min(920px,calc(100vw - 28px));}

.tripy-web-sidepanel.is-open{pointer-events:auto;}
.tripy-web-sidepanel.is-open .tripy-web-sidepanel__backdrop{opacity:1;}
.tripy-web-sidepanel.is-open .tripy-web-sidepanel__sheet{transform:translateX(0) scale(1);opacity:1;}

.tripy-web-sidepanel__head{
  position:relative;
  z-index:2;
  min-height:66px;
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:flex-start;
  padding:10px 18px;
  background:linear-gradient(110deg,#101c3b 0%,#123b50 55%,#0a7f4d 100%);
  border-bottom:1px solid rgba(255,255,255,.3);
  box-shadow:0 8px 22px rgba(5,20,48,.14);
}

.tripy-web-sidepanel__title{
  color:#fff;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.02em;
}

.tripy-web-sidepanel__close{
  flex:0 0 44px;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:999px;
  background:linear-gradient(145deg,rgba(255,255,255,.28),rgba(255,255,255,.08));
  color:#fff;
  font:900 34px/1 Arial,sans-serif;
  display:grid;
  place-items:center;
  padding:0 0 0px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.38);
  transition:transform .18s ease,background .18s ease;
}

.tripy-web-sidepanel__close:hover{transform:translateX(-2px) scale(1.04);background:linear-gradient(145deg,rgba(57,255,20,.58),rgba(0,184,63,.32));}

.tripy-web-sidepanel__frame{
  display:block;
  flex:1;
  min-width:0;
  min-height:0;
  width:100%;
  height:100%;
  border:0;
  background:#edf5ff;
  opacity:0;
  transition:opacity .18s ease;
}

html.tripy-sidepanel-embedded,
body.tripy-sidepanel-embedded{
  min-width:0 !important;
  width:100% !important;
  overflow-x:hidden !important;
  background:linear-gradient(150deg,#eef5ff 0%,#f9fcff 52%,#eaf9ef 100%) !important;
}

body.tripy-sidepanel-embedded .tripy-web-drawer,
body.tripy-sidepanel-embedded .tripy-public-footer,
body.tripy-sidepanel-embedded .tripy-web-fab,
body.tripy-sidepanel-embedded .tripy-web-fab-menu,
body.tripy-sidepanel-embedded .tripy-web-sidepanel,
body.tripy-sidepanel-embedded .tripy-page-topbar,
body.tripy-sidepanel-embedded .tripy-page-topbar--floating{
  display:none !important;
}

body.tripy-sidepanel-embedded #tripy-web-app,
body.tripy-sidepanel-embedded .tripy-web-main,
body.tripy-sidepanel-embedded .tripy-web-screen,
body.tripy-sidepanel-embedded .tripy-account-screen{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  min-height:100% !important;
  margin:0 !important;
  padding:0 !important;
}

body.tripy-sidepanel-embedded .tripy-wallet-app-shell,
body.tripy-sidepanel-embedded .tripy-pref-app-shell{
  padding:18px 18px 28px !important;
}

/* Electric-green two-tone Preferences states */
.tripy-pref-tabs{
  background:linear-gradient(145deg,#ffffff 0%,#f7fafc 48%,#e9eef4 100%) !important;
  border:1px solid rgba(255,255,255,.92) !important;
  box-shadow:0 12px 28px rgba(15,23,42,.10),inset 0 1px 0 #fff !important;
}

.tripy-pref-tab{
  background:linear-gradient(145deg,#ffffff 0%,#f8fbff 52%,#edf2f7 100%) !important;
  color:#145b88 !important;
  border:1px solid rgba(222,231,239,.72) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.96),0 4px 10px rgba(15,23,42,.04) !important;
  transition:transform .18s ease,box-shadow .18s ease,filter .18s ease !important;
}

.tripy-pref-tab:hover{transform:translateY(-1px);filter:brightness(1.02);}

.tripy-pref-tab.is-active {
    background: linear-gradient(135deg, #1c5009 0%, #0d9820 46%, #169e47 100%) !important;
    color: #fff !important;
    border-color: rgb(67 78 7 / 88%) !important;
    box-shadow: 0 10px 22px rgba(0, 201, 61, .28), inset 0 1px 0 rgba(255, 255, 255, .48), inset 0 -1px 0 rgba(0, 115, 46, .24) !important;
    text-shadow: 0 1px 2px rgba(0, 80, 30, .34) !important;
}

.tripy-pref-tile{
  background:linear-gradient(145deg,#ffffff 0%,#fafcff 50%,#edf2f6 100%) !important;
  border:1px solid rgba(219,228,236,.9) !important;
  box-shadow:0 8px 20px rgba(15,23,42,.07),inset 0 1px 0 rgba(255,255,255,.98) !important;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease !important;
}

.tripy-pref-tile:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(15,23,42,.11),inset 0 1px 0 #fff !important;}

.tripy-pref-tile.is-selected{
  background:linear-gradient(135deg, #4d2ac0 0%, #13388c 48%, #1d85c4 100%) !important;
  border:2px solid rgba(72,255,45,.92) !important;
  box-shadow:0 14px 30px rgba(0,196,62,.26),inset 0 1px 0 rgba(255,255,255,.5),inset 0 -1px 0 rgba(0,108,40,.22) !important;
}

.tripy-pref-tile.is-selected .tripy-pref-tile__title,
.tripy-pref-tile.is-selected .tripy-pref-tile__trailing,
.tripy-pref-tile.is-selected .tripy-pref-check{
  color:#fff !important;
  text-shadow:0 1px 2px rgba(0,80,28,.34);
}

@media (max-width:760px){
  .tripy-web-sidepanel__sheet,
  .tripy-web-sidepanel[data-screen="preferences"] .tripy-web-sidepanel__sheet,
  .tripy-web-sidepanel[data-screen="wallet"] .tripy-web-sidepanel__sheet,
  .tripy-web-sidepanel[data-screen="bookings"] .tripy-web-sidepanel__sheet{
    inset:0;
    width:100vw;
    max-width:none;
    height:100dvh;
    border-radius:0;
    border:0;
  }
  .tripy-web-sidepanel__head{min-height:60px;padding:8px 12px;}
  body.tripy-sidepanel-embedded .tripy-wallet-app-shell,
  body.tripy-sidepanel-embedded .tripy-pref-app-shell{padding:12px 10px 24px !important;}
}

@media(max-width:980px){.tripy-partner-history-filters{grid-template-columns:repeat(2,minmax(0,1fr))}.tripy-partner-history-filters__actions{grid-column:1/-1}}
@media(max-width:640px){.tripy-partner-history-filters{grid-template-columns:1fr}.tripy-partner-history-filters__actions{grid-column:auto}.tripy-partner-history-filters__actions .tripy-web-action{width:100%}}

@media(max-width:640px){
  .tripy-partner-history-filters{grid-template-columns:1fr}
  .tripy-partner-history-filters__actions{grid-column:auto;display:grid}
  .tripy-partner-history-filters__actions .tripy-web-action{width:100%}
}


/*
 * TripYatra preference dual gradients — 2026-07-27
 *
 * Inactive controls retain a premium white gradient.
 * Active controls use the established TripYatra green gradient.
 */

.tripy-pref-tab{
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #eef4ff 100%
    );
}

.tripy-pref-tab.is-active{
  background:
    linear-gradient(
      145deg,
      #5cff21 0%,
      #00b943 100%
    );
  color:#fff;
  border-color:rgba(0,185,67,.55);
  box-shadow:
    0 12px 28px rgba(0,185,67,.22);
}

.tripy-pref-tile{
  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f1f5ff 100%
    );
}

.tripy-pref-tile.is-selected{
  background:
    linear-gradient(
      145deg,
      #5cff21 0%,
      #00b83f 100%
    );
  color:#fff;
  border-color:rgba(0,184,63,.55);
  box-shadow:
    0 14px 30px rgba(0,184,63,.2);
}

.tripy-pref-tile.is-selected .tripy-pref-tile__title{
  color:#fff;
}

.tripy-pref-tile.is-selected .tripy-pref-tile__meta,
.tripy-pref-tile.is-selected .tripy-pref-tile__subtitle{
  color:rgba(255,255,255,.86);
}


/* TripYatra referral avatar parity — 2026-07-27 */
.tripy-wallet-app-ref-badge__avatar,
.tripy-wallet-app-ref-card__avatar{
  position:relative;
  color:#0f172a;
}

.tripy-wallet-app-ref-badge .tripy-wallet-app-ref-avatar__initials,
.tripy-wallet-app-ref-card .tripy-wallet-app-ref-avatar__initials{
  grid-area:1 / 1;
  display:grid;
  width:100%;
  height:100%;
  margin:0;
  place-items:center;
  font-size:30px;
  line-height:1;
  font-weight:900;
  color:#0f172a;
  background:linear-gradient(145deg,#e0f2fe,#ede9fe);
}

.tripy-wallet-app-ref-badge__avatar img,
.tripy-wallet-app-ref-card__avatar img{
  position:relative;
  z-index:1;
  grid-area:1 / 1;
}
