:root {
  --primary: #263859;
  --primary-hover: #2a4d7f;
  --navy: #122445;
  --orange: #ef7722;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--navy);
}

html[dir='rtl'] body,
html[lang='ar'] body {
  font-family: 'Cairo', 'Poppins', sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0.85rem 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 36, 69, 0.06);
  transition: padding 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(18, 36, 69, 0.08);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.site-header-start {
  justify-self: start;
}

.site-header-center {
  justify-self: center;
}

.site-header-end {
  justify-self: end;
}

@media (max-width: 1023px) {
  .site-header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-header-center {
    display: none;
  }

  .site-header-end {
    justify-self: end;
  }
}

.site-logo {
  display: block;
  transition: transform 0.25s ease;
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-nav-link {
  position: relative;
  padding: 0.55rem 0.85rem;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav-link:hover {
  color: #122445;
  background: rgba(38, 56, 89, 0.06);
}

.site-nav-link.is-active {
  color: #122445;
}

.site-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 2px;
  border-radius: 99px;
  background: #ef7722;
  transform-origin: center;
  animation: navUnderline 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes navUnderline {
  from {
    transform: scaleX(0.4);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.site-lang-btn,
.site-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: #122445;
  border: 1px solid rgba(18, 36, 69, 0.12);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-lang-btn:hover,
.site-user-btn:hover {
  border-color: rgba(18, 36, 69, 0.22);
  box-shadow: 0 6px 16px rgba(18, 36, 69, 0.08);
}

.site-signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.85rem;
  background: #263859;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
  box-shadow: 0 8px 18px rgba(38, 56, 89, 0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-signin-btn:hover {
  background: #2a4d7f;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(38, 56, 89, 0.28);
}

.site-avatar {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  overflow: hidden;
  background: #897fff;
}

.site-icon-btn {
  padding: 0.5rem;
  border-radius: 0.65rem;
  color: #334155;
  transition: background 0.2s ease;
}

.site-icon-btn:hover {
  background: rgba(38, 56, 89, 0.06);
}

.site-dropdown {
  flex-direction: column;
  min-width: 9.5rem;
  padding: 0.35rem;
  background: #fff;
  border-radius: 0.85rem;
  border: 1px solid rgba(18, 36, 69, 0.08);
  box-shadow: 0 16px 40px rgba(18, 36, 69, 0.14);
}

.site-dropdown a,
.site-dropdown button {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #122445;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-dropdown a:hover,
.site-dropdown button:hover,
.site-dropdown a.is-current {
  background: #f4f6f9;
}

.site-dropdown-danger {
  color: #dc2626;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  text-align: start;
  color: #334155;
  font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  background: #f4f6f9;
  color: #122445;
}

.mobile-nav-link.is-active {
  box-shadow: inset 3px 0 0 #ef7722;
}

.site-lang-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 36, 69, 0.12);
}

.hero-section {
  min-height: 100dvh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 45, 0.58) 0%, rgba(10, 22, 45, 0.38) 38%, rgba(10, 22, 45, 0.62) 100%),
    linear-gradient(90deg, rgba(10, 22, 45, 0.48) 0%, rgba(10, 22, 45, 0.18) 52%, rgba(10, 22, 45, 0.12) 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(18, 36, 69, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 41.5rem;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.3rem;
  }
}

.hero-subtitle {
  max-width: 36rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(18, 36, 69, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.32s;
}

.dialog-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.dialog-overlay.is-visible {
  opacity: 1;
  background: rgba(18, 36, 69, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dialog-overlay.is-closing {
  opacity: 0;
  background: rgba(18, 36, 69, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}

.dialog-panel {
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.12);
  border-radius: 1rem;
  box-shadow: 0 20px 48px rgba(18, 36, 69, 0.18);
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.dialog-overlay.is-visible .dialog-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dialog-overlay.is-closing .dialog-panel {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
}

body.dialog-open {
  overflow: hidden;
}

.trip-date-menu {
  display: none;
}

.trip-date-menu.is-open {
  display: flex;
}

.dialog-panel.wide {
  max-width: 46rem;
}

.auth-view {
  display: none;
}

.auth-view.is-active {
  display: block;
  animation: authViewIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.auth-view.is-leaving {
  display: block;
  animation: authViewOut 0.22s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes authViewIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes authViewOut {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translateX(-10px);
  }
}

[dir='rtl'] .auth-view.is-active {
  animation-name: authViewInRtl;
}

[dir='rtl'] .auth-view.is-leaving {
  animation-name: authViewOutRtl;
}

@keyframes authViewInRtl {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes authViewOutRtl {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translateX(10px);
  }
}

/* ── Auth dialog ──────────────────────────────────────────── */

.auth-dialog-panel {
  position: relative;
  max-width: 26.5rem;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(38, 56, 89, 0.08);
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  box-shadow:
    0 24px 56px rgba(18, 36, 69, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
}

.auth-dialog-close {
  position: absolute;
  inset-inline-end: 1rem;
  top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: #f4f6f9;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.auth-dialog-close:hover {
  background: #e8eef8;
  color: #263859;
  transform: rotate(90deg);
}

.auth-dialog-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.auth-dialog-logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.auth-views {
  position: relative;
  min-height: 18rem;
}

.auth-dialog-head {
  text-align: center;
  margin-bottom: 1.35rem;
}

.auth-dialog-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.auth-dialog-subtitle {
  margin-top: 0.45rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.auth-form-error {
  display: none;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
}

.auth-form-error:not([hidden]) {
  display: block;
}

.auth-form--actions {
  flex-direction: row;
  gap: 0.75rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  inset-inline-start: 0.85rem;
  display: flex;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.2s ease;
}

.auth-input {
  width: 100%;
  height: 2.85rem;
  padding-inline: 2.65rem 2.65rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #fff;
  font-size: 0.9375rem;
  color: #122445;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.auth-input--solo {
  padding-inline: 1rem;
}

.auth-input--otp {
  text-align: center;
  letter-spacing: 0.35em;
  font-weight: 700;
}

.auth-input::placeholder {
  color: #94a3b8;
}

.auth-input-wrap:focus-within .auth-input-icon {
  color: #ef7722;
}

.auth-input:focus {
  outline: none;
  border-color: rgba(239, 119, 34, 0.55);
  box-shadow: 0 0 0 4px rgba(239, 119, 34, 0.12);
  background: #fff;
}

.auth-password-toggle {
  position: absolute;
  inset-inline-end: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.auth-password-toggle:hover {
  color: #263859;
  background: #f4f6f9;
}

.auth-password-toggle .auth-eye-closed {
  display: none;
}

.auth-password-toggle.is-visible .auth-eye-open {
  display: none;
}

.auth-password-toggle.is-visible .auth-eye-closed {
  display: block;
}

.auth-link {
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ef7722;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.auth-link:hover {
  color: #d6651a;
}

.auth-link--start {
  align-self: flex-start;
  text-decoration: none;
}

.auth-link--start:hover {
  text-decoration: underline;
}

.auth-link--center {
  align-self: center;
  margin-top: 0.25rem;
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 3rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, #263859 0%, #1a2744 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(38, 56, 89, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(38, 56, 89, 0.34);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-submit--inline {
  flex: 1;
  margin-top: 0;
}

.auth-btn-secondary {
  flex: 1;
  height: 3rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 0.9rem;
  background: #fff;
  color: #334155;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.auth-btn-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

.auth-switch {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
}
.auth-switch--partner {
  margin-top: 0.45rem;
}
.auth-switch a.auth-link {
  text-decoration: none;
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.auth-checkbox input {
  margin-top: 0.15rem;
  accent-color: #ef7722;
}

@media (prefers-reduced-motion: reduce) {

  .auth-view.is-active,
  .auth-view.is-leaving {
    animation: none;
  }

  .auth-dialog-close:hover {
    transform: none;
  }

  .auth-submit:hover {
    transform: none;
  }
}

.toast-stack {
  position: fixed;
  top: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(28rem, calc(100% - 2rem));
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #263859;
  box-shadow: 0 0 6.3px rgba(38, 56, 89, 0.24);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  animation: toast-in 0.22s ease;
}

.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-close {
  flex: 0 0 auto;
  margin: -0.2rem -0.35rem 0 0;
  width: 1.6rem;
  height: 1.6rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.toast-close:hover {
  color: #122445;
  background: #f1f5f9;
}

.toast.is-leaving {
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[dir="rtl"] .toast-close {
  margin: -0.2rem 0 0 -0.35rem;
}

.mobile-sidebar {
  position: fixed;
  inset: 0;
  z-index: 70;
  visibility: hidden;
  pointer-events: none;
}

.mobile-sidebar.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-sidebar-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18rem;
  background: #fff;
  border-right: 1px solid #e8edf3;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 12px 0 40px rgba(18, 36, 69, 0.12);
}

html[dir='rtl'] .mobile-sidebar-panel {
  right: 0;
  left: auto;
  border-right: 0;
  border-left: 1px solid #d1d5db;
  transform: translateX(100%);
}

.mobile-sidebar.is-open .mobile-sidebar-panel {
  transform: translateX(0);
}

.mobile-sidebar-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 36, 69, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-sidebar.is-open .mobile-sidebar-backdrop {
  opacity: 1;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  z-index: 40;
  opacity: 0;
  transform: translateY(-6px);
}

.dropdown-menu.is-open {
  display: flex;
  animation: dropdownIn 0.22s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-toggle-btn,
.filter-search-wrap {
  border-radius: 1rem;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(18, 36, 69, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, outline-color 0.25s ease, background 0.25s ease;
  overflow: visible;
}

.filter-toggle-btn:hover,
.filter-search-wrap:hover {
  box-shadow: 0 12px 32px rgba(18, 36, 69, 0.12);
}

.filter-search-wrap:focus-within {
  outline-color: rgba(38, 56, 89, 0.35);
  box-shadow: 0 12px 32px rgba(18, 36, 69, 0.14);
}

.filter-toggle-btn.is-hero,
.filter-search-wrap.is-hero {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  outline-color: rgba(255, 255, 255, 0.55);
}

.filter-search-submit {
  background: #263859;
  color: #fff;
  border-radius: 0.75rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.filter-search-submit:hover {
  background: #2a4d7f;
}

.booking-widget {
  position: relative;
  z-index: 24;
  background: transparent;
  border: 0;
  border-radius: 1.25rem;
  overflow: visible;
  overflow-anchor: none;
  box-shadow: 0 18px 50px rgba(18, 36, 69, 0.18);
}

.booking-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: inherit;
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0 round 1.25rem);
}

.booking-widget.is-exploring {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.booking-widget.is-exploring .booking-card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  clip-path: inset(0 round 1.25rem 1.25rem 0 0);
}

.booking-widget.is-panel-open {
  border-radius: 1.25rem;
}

.booking-widget.is-panel-open .booking-card {
  border-radius: 1.25rem;
  clip-path: inset(0 round 1.25rem);
}

.booking-widget.is-hero .booking-card {
  background: #fff;
}

/* List pages: explorer expands in document flow so results shift down */
.filter-form--list {
  position: relative;
  z-index: 30;
}

.booking-shell--list {
  position: sticky;
  top: 4.75rem;
  z-index: 35;
  margin-bottom: 0.25rem;
  background: #fff;
  padding-top: 0.15rem;
}

.booking-widget.is-list {
  box-shadow: 0 10px 32px rgba(18, 36, 69, 0.12);
}

.booking-widget.is-list .booking-explorer {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 2;
}

.booking-widget.is-list.is-exploring {
  background: #fff;
  overflow: hidden;
}

.booking-widget.is-list.is-exploring .booking-explorer {
  box-shadow: none;
}

.booking-widget.is-list.is-panel-open {
  overflow: hidden;
}

.page-results {
  position: relative;
  z-index: 1;
}

.booking-widget input,
.booking-widget select,
.booking-widget button {
  outline: none;
}

.booking-widget input:focus,
.booking-widget select:focus,
.booking-widget button:focus,
.booking-widget input:focus-visible,
.booking-widget select:focus-visible,
.booking-widget button:focus-visible {
  outline: none;
}

.booking-bar {
  display: flex;
  align-items: stretch;
  min-height: 4.65rem;
  overflow: hidden;
  background: transparent;
}

.booking-seg:first-child {
  border-start-start-radius: 1.25rem;
  border-end-start-radius: 1.25rem;
}

.booking-seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
  padding: 0.55rem 1rem;
  border-inline-end: 1px solid rgba(38, 56, 89, 0.08);
  transition: background 0.2s ease;
}

.booking-seg-where {
  flex: 1.7;
}

.booking-seg-who {
  flex: 0.85;
}

.booking-seg-beds {
  flex: 0.95;
}

.booking-seg-beds .booking-seg-control {
  cursor: pointer;
}

.booking-seg-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.booking-seg-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.booking-seg-icon {
  color: #ef7722;
  flex-shrink: 0;
}

.booking-seg input[name='q'],
.booking-seg-control {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #122445;
  font-size: 0.95rem;
  font-weight: 500;
  color-scheme: light;
}

.booking-seg input[type='date']::-webkit-calendar-picker-indicator {
  opacity: 0.35;
  cursor: pointer;
}

.booking-seg-when {
  position: relative;
  cursor: pointer;
}

.booking-date-panel {
  position: fixed;
  z-index: 40;
  width: 17.5rem;
  max-width: calc(100vw - 1.5rem);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 0.08s ease, visibility 0.08s ease;
}

.booking-date-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-date-trigger-wrap {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: start;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.booking-date-display {
  display: block;
  width: 100%;
  color: #122445;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-date-display.is-placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.booking-date-panel-inner {
  padding: 0.55rem 0.6rem 0.5rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.1);
  box-shadow:
    0 16px 36px rgba(18, 36, 69, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.booking-date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}

.booking-date-month {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #122445;
  letter-spacing: -0.01em;
}

.booking-date-nav {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 89, 0.1);
  background: #f8fafc;
  color: #263859;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.booking-date-nav:hover {
  background: #fff6f0;
  border-color: rgba(239, 119, 34, 0.28);
  color: #ef7722;
}

.booking-date-nav:active {
  transform: scale(0.94);
}

.booking-date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}

.booking-date-weekday {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #94a3b8;
  padding: 0.1rem 0;
}

.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.12rem;
}

.booking-date-day {
  aspect-ratio: 1;
  min-height: 1.65rem;
  height: 1.65rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #122445;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.booking-date-day:hover:not(:disabled):not(.is-selected) {
  background: #f4f6f9;
}

.booking-date-day.is-outside {
  color: #cbd5e1;
  font-weight: 500;
}

.booking-date-day.is-today:not(.is-selected) {
  color: #ef7722;
  box-shadow: inset 0 0 0 1.5px rgba(239, 119, 34, 0.45);
}

.booking-date-day.is-selected {
  background: linear-gradient(135deg, #ef7722 0%, #f59a4b 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(239, 119, 34, 0.32);
}

.booking-date-day:disabled,
.booking-date-day.is-disabled {
  color: #dbe2ea;
  cursor: not-allowed;
}

.booking-date-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
}

.booking-date-action {
  padding: 0.2rem 0.45rem;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.booking-date-action:hover {
  color: #122445;
  background: #f4f6f9;
}

.booking-date-action--primary {
  color: #ef7722;
}

.booking-date-action--primary:hover {
  color: #d96512;
  background: #fff6f0;
}

.booking-widget.is-date-open {
  overflow: visible;
}

.booking-widget.is-date-open .booking-card {
  overflow: visible;
  clip-path: none;
}

.booking-widget.is-date-open .booking-bar {
  overflow: visible;
}

html[dir='rtl'] .booking-date-nav svg {
  transform: scaleX(-1);
}

@media (prefers-reduced-motion: reduce) {
  .booking-date-panel,
  .booking-explorer-clip,
  .booking-explorer-body,
  .suggest-panel {
    transition: none;
    animation: none;
    transform: none;
  }
}

.booking-widget.is-date-open .booking-card {
  border-end-end-radius: 1.25rem;
}

.booking-seg:hover,
.booking-seg:focus-within,
.booking-more-btn:hover,
.booking-more-btn.is-active {
  background: #f8fafc;
}

.booking-stepper {
  background: transparent;
}

.booking-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.9rem;
  color: #263859;
  font-weight: 500;
  font-size: 0.875rem;
  border-inline-end: 1px solid rgba(38, 56, 89, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-more-btn.is-active {
  color: #ef7722;
}

.booking-more-btn.is-active .filter-toggle-icon {
  color: #ef7722;
}

.booking-search-btn {
  margin: 0.5rem;
  padding: 0 1.35rem;
  border-radius: 0.9rem;
  background: #263859;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(38, 56, 89, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-search-btn:hover {
  background: #2a4d7f;
  transform: translateY(-1px);
}

.booking-search-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.28);
}

.booking-widget .filter-panel-clip {
  border-radius: 0 0 1.25rem 1.25rem;
}

.booking-widget .booking-more-inner {
  padding: 0.95rem 1.1rem 1.05rem;
  background: #fff;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
  transform: none;
  opacity: 1;
  box-shadow: none;
  border-radius: 0;
  max-height: none;
  overflow: visible;
}

.booking-widget .filter-panel:not(.is-open) .booking-more-inner {
  visibility: hidden;
  pointer-events: none;
  border-top: 0;
  background: transparent;
}

.booking-widget .filter-panel-row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.9rem;
}

.booking-widget .filter-field,
.booking-widget .filter-field-price,
.booking-widget .filter-field-beds {
  min-width: 0;
  width: 100%;
  flex: none;
  padding: 0;
  border: 0;
  gap: 0.42rem;
}

.booking-widget .filter-pills {
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
}

.booking-widget .filter-field-beds .filter-pills,
.booking-widget .filter-price-presets {
  width: 100%;
}

.booking-widget .filter-panel-actions {
  width: 100%;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
}

.booking-widget .filter-live-hint {
  display: none;
}

.filter-btn-primary.is-empty {
  background: #64748b;
  border-color: #64748b;
}

.booking-explorer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 26;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
  background: transparent;
  border: 0;
  border-radius: 0 0 1.25rem 1.25rem;
  box-shadow: none;
}

.booking-widget.is-exploring .booking-explorer {
  pointer-events: auto;
  visibility: visible;
  background: #fff;
  box-shadow: 0 22px 50px rgba(18, 36, 69, 0.16);
}

.booking-explorer-clip {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.12s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-widget.is-exploring .booking-explorer-clip {
  max-height: min(18.75rem, 38vh);
}

.booking-explorer-body {
  height: min(18.75rem, 38vh);
  padding: 0.75rem 1rem 0.85rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 42%);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.1s ease,
    transform 0.12s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-widget.is-exploring .booking-explorer-body {
  opacity: 1;
  transform: none;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
}

.suggest-split {
  display: grid;
  grid-template-columns: minmax(12.5rem, 0.7fr) minmax(0, 1.45fr);
  gap: 1rem;
  height: 100%;
  min-height: 0;
  align-items: stretch;
}

.suggest-col {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 56, 89, 0.32) transparent;
  padding-inline-end: 0.2rem;
}

.suggest-col::-webkit-scrollbar {
  width: 6px;
}

.suggest-col::-webkit-scrollbar-thumb {
  background: rgba(38, 56, 89, 0.28);
  border-radius: 999px;
}

.suggest-col .suggest-label {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.45rem;
  background: linear-gradient(180deg, #f8fafc 72%, rgba(248, 250, 252, 0));
}

.suggest-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.suggest-deal-card {
  display: flex;
  gap: 0.65rem;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  border-radius: 0.8rem;
  text-align: start;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.suggest-deal-card:hover,
.suggest-deal-card.is-active {
  border-color: rgba(239, 119, 34, 0.45);
  box-shadow: 0 8px 20px rgba(18, 36, 69, 0.08);
  transform: translateY(-1px);
}

.suggest-deal-card img {
  width: 3.7rem;
  height: 3.7rem;
  object-fit: cover;
  border-radius: 0.55rem;
  flex-shrink: 0;
}

.suggest-deal-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.suggest-deal-body .suggest-item-title,
.suggest-deal-body .suggest-item-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-deal-body .suggest-item-price {
  margin-inline-start: 0;
  margin-top: auto;
}

@media (max-width: 900px) {
  .booking-bar {
    flex-wrap: wrap;
  }

  .booking-seg,
  .booking-more-btn {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(38, 56, 89, 0.08);
  }

  .booking-seg-where,
  .booking-seg {
    flex: 1 1 46%;
  }

  .booking-search-btn {
    width: calc(100% - 1rem);
  }

  .suggest-split,
  .suggest-deal-grid {
    grid-template-columns: 1fr;
  }

  .booking-explorer-body,
  .booking-widget.is-exploring .booking-explorer-clip {
    height: min(16.5rem, 46vh);
    max-height: min(16.5rem, 46vh);
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .suggest-deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.filter-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 1;
  margin-top: 0;
  position: relative;
  z-index: 2;
  transition: grid-template-rows 0.48s cubic-bezier(0.22, 1, 0.36, 1), margin-top 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-panel-clip {
  overflow: hidden;
  min-height: 0;
}

.filter-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 0.85rem;
}

.booking-widget .filter-panel,
.booking-widget .filter-panel.is-open {
  margin-top: 0;
}

.filter-panel-inner {
  padding: 0.7rem 0.75rem;
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 36, 69, 0.16);
  border: 1px solid rgba(38, 56, 89, 0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.filter-panel.is-hero .filter-panel-inner {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
}

.filter-panel.is-open .filter-panel-inner {
  transform: translateY(0);
  opacity: 1;
}

.filter-panel-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  min-width: 0;
}

.filter-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  min-width: 9.5rem;
  flex: 1 1 0;
  padding: 0.2rem 0.75rem;
  border-inline-end: 1px solid rgba(38, 56, 89, 0.08);
  opacity: 0;
  transform: translateY(6px);
}

.filter-field-guests {
  min-width: 8.5rem;
  flex: 0.7 1 0;
}

.filter-field-price {
  min-width: 16.5rem;
  flex: 1 1 100%;
  border-inline-end: 0;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
}

.filter-field-beds {
  min-width: 14rem;
}

.filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.18rem;
  border-radius: 0.75rem;
  background: #f4f6f9;
}

.filter-pill {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.4rem 0.55rem;
  border: 0;
  border-radius: 0.58rem;
  background: transparent;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.filter-pill:hover {
  color: #122445;
  background: rgba(255, 255, 255, 0.7);
}

.filter-pill.is-active {
  background: #fff;
  color: #ef7722;
  box-shadow: 0 1px 4px rgba(18, 36, 69, 0.1);
}

.filter-price-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  margin-bottom: 0.4rem;
}

.filter-preset {
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 89, 0.12);
  background: #fff;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.filter-preset:hover {
  border-color: rgba(239, 119, 34, 0.35);
  color: #122445;
}

.filter-preset.is-active {
  background: rgba(239, 119, 34, 0.1);
  border-color: rgba(239, 119, 34, 0.45);
  color: #c65d14;
}

.filter-price-range {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.filter-price-sep {
  color: #94a3b8;
  font-size: 0.85rem;
}

.filter-panel-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.35rem 0.55rem 0.35rem 0.85rem;
  margin-inline-start: auto;
  opacity: 0;
  transform: translateY(6px);
}

.filter-panel.is-open .filter-field,
.filter-panel.is-open .filter-panel-actions {
  animation: filterFieldIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.filter-panel.is-open .filter-field:nth-child(1) {
  animation-delay: 0.04s;
}

.filter-panel.is-open .filter-field:nth-child(2) {
  animation-delay: 0.07s;
}

.filter-panel.is-open .filter-field:nth-child(3) {
  animation-delay: 0.1s;
}

.filter-panel.is-open .filter-field:nth-child(4) {
  animation-delay: 0.13s;
}

.filter-panel.is-open .filter-field:nth-child(5) {
  animation-delay: 0.16s;
}

.filter-panel.is-open .filter-field:nth-child(6) {
  animation-delay: 0.19s;
}

.filter-panel.is-open .filter-field:nth-child(7) {
  animation-delay: 0.22s;
}

.filter-panel.is-open .filter-panel-actions {
  animation-delay: 0.25s;
}

@keyframes filterFieldIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-field-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-input {
  width: 100%;
  padding: 0.48rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(38, 56, 89, 0.12);
  background: #fff;
  font-size: 0.875rem;
  color: #122445;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select.filter-input {
  padding-inline-end: 2.1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%2364748b' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
}

html[dir='rtl'] select.filter-input {
  background-position: left 0.75rem center;
}

.filter-input:hover {
  border-color: rgba(38, 56, 89, 0.28);
}

.filter-input:focus,
.filter-input:focus-visible {
  outline: none;
  border-color: #ef7722;
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.16);
  background: #fff;
}

.filter-price-box {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 1;
  padding: 0 0.55rem 0 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(38, 56, 89, 0.12);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-price-box:hover {
  border-color: rgba(38, 56, 89, 0.28);
}

.filter-price-box:focus-within {
  border-color: #ef7722;
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.16);
}

.filter-price-affix {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #94a3b8;
  flex-shrink: 0;
}

.filter-price-box .filter-input {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0.48rem 0;
  border-radius: 0;
}

.filter-price-box .filter-input:focus,
.filter-price-box .filter-input:focus-visible {
  border: 0;
  box-shadow: none;
}

.filter-stepper {
  display: flex;
  align-items: center;
  border-radius: 0.55rem;
  background: #f4f6f9;
  overflow: hidden;
}

.filter-stepper-btn {
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #263859;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.filter-stepper-btn:hover {
  background: rgba(38, 56, 89, 0.06);
}

.filter-stepper-input {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  color: #122445;
  outline: none;
  min-width: 0;
}

.filter-stepper-input::-webkit-outer-spin-button,
.filter-stepper-input::-webkit-inner-spin-button,
.filter-price-box .filter-input::-webkit-outer-spin-button,
.filter-price-box .filter-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-panel-footer {
  display: none;
}

.filter-btn-primary,
.filter-btn-secondary {
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn-primary {
  background: #263859;
  color: #fff;
  border: 1px solid #263859;
}

.filter-btn-primary:hover {
  background: #2a4d7f;
}

.filter-btn-secondary {
  background: transparent;
  color: #263859;
  border: 1px solid rgba(38, 56, 89, 0.2);
}

.filter-btn-secondary:hover {
  background: rgba(38, 56, 89, 0.05);
}

.filter-toggle-btn.is-active {
  outline-color: #263859;
  box-shadow: 0 10px 28px rgba(38, 56, 89, 0.16);
  background: #fff;
}

.filter-toggle-btn.is-active .filter-toggle-icon {
  transform: rotate(90deg);
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #ef7722;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}

.filter-badge[hidden] {
  display: none;
}

.filter-panel-wrap {
  position: relative;
  z-index: 31;
}

body.filter-panel-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(18, 36, 69, 0.15);
  pointer-events: none;
}

.filter-shell.is-panel-open {
  position: relative;
  z-index: 25;
}

.filter-chips {
  animation-delay: var(--load-delay, 0s);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.12);
  color: #122445;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.filter-chip:hover {
  background: #fff6f0;
  border-color: #ef7722;
}

.filter-chip-label {
  color: #6b7280;
}

.filter-chip-value {
  font-weight: 600;
}

.filter-chip-clear {
  font-size: 0.8125rem;
  color: #ef7722;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.filter-chip-clear:hover {
  color: #d6651a;
}

@keyframes filterFadeUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-on-load {
  opacity: 0;
  animation: filterFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: var(--load-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-load {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .filter-panel,
  .filter-panel-inner,
  .filter-panel.is-open .filter-field,
  .filter-panel.is-open .filter-panel-footer {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .filter-toggle-btn.is-active .filter-toggle-icon {
    transform: none;
  }

  .dropdown-menu.is-open {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .booking-explorer,
  .booking-explorer-clip,
  .booking-explorer-body {
    transition: none;
  }

  .booking-explorer-body {
    opacity: 1;
    transform: none;
  }
}

.pagination-custom {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-custom a,
.pagination-custom span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #333;
  box-shadow: 0 0 2px rgba(38, 56, 69, 0.24);
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.pagination-custom a:hover,
.pagination-custom .is-active a,
.pagination-custom .is-active span {
  background: #2f80ed;
  color: #fff;
}

.pagination-custom .is-disabled span {
  opacity: 0.5;
  pointer-events: none;
}

.swiper-nav-btn[disabled],
.trips-carousel-nav[disabled] {
  opacity: 0.35;
  pointer-events: none;
  transform: translateY(-50%) scale(0.94);
}

/* ── Trip cards ───────────────────────────────────────────── */

.trip-card {
  --trip-card-radius: 1.35rem;
  width: 100%;
  max-width: 19rem;
  margin-inline: auto;
  background: #fff;
  border-radius: var(--trip-card-radius);
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow:
    0 4px 18px rgba(18, 36, 69, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.trip-card.w-full,
.trip-card.trip-card--grid {
  max-width: none;
}

.trip-card--carousel {
  max-width: none;
  height: 100%;
}

.trip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 119, 34, 0.22);
  box-shadow:
    0 22px 44px rgba(18, 36, 69, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.trip-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.trip-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.trip-card:hover .trip-card-img {
  transform: scale(1.08);
}

.trip-card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 36, 69, 0.04) 0%, rgba(18, 36, 69, 0.28) 100%);
  opacity: 0.55;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.trip-card:hover .trip-card-media-overlay {
  opacity: 0.72;
}

.trip-card-badges {
  position: absolute;
  inset-inline: 0.75rem;
  top: 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 2;
}

.trip-card-discount {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: #122445;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(18, 36, 69, 0.12);
}

.trip-card-discount svg {
  color: #ef7722;
}

.trip-card-favorite {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(18, 36, 69, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.trip-card-favorite:hover {
  transform: scale(1.08);
  background: #fff6f0;
}

.trip-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1rem 1.1rem;
  flex: 1;
}

.trip-card-category {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  padding: 0.28rem 0.65rem 0.28rem 0.45rem;
  border-radius: 999px;
  background: rgba(85, 123, 235, 0.1);
  border: 1px solid rgba(85, 123, 235, 0.18);
}

.trip-card-category-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #557beb;
  box-shadow: 0 0 0 3px rgba(85, 123, 235, 0.18);
}

.trip-card-category-text {
  font-size: 0.68rem;
  font-weight: 600;
  color: #263859;
  line-height: 1.2;
}

.trip-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #122445;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8rem;
}

.trip-card-category-dot.is-umrah {
  background: #c4a35a;
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.22);
}

.trip-card--umrah .trip-card-category {
  background: rgba(196, 163, 90, 0.14);
  border-color: rgba(196, 163, 90, 0.28);
}

.trip-card-stay {
  margin: -0.15rem 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  color: #8a6d32;
}

.trip-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0 0 0.65rem;
  border-bottom: 1px solid rgba(38, 56, 89, 0.08);
}

.trip-card-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: #64748b;
}

.trip-card-meta svg {
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: #94a3b8;
}

.trip-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.trip-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
}

.trip-card-price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
}

.trip-card-price-current small {
  font-size: 0.68rem;
  font-weight: 500;
  color: #64748b;
}

.trip-card-price-old {
  font-size: 0.72rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.trip-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #263859 0%, #2f4f84 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(38, 56, 89, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.trip-card-cta svg {
  transition: transform 0.28s ease;
}

.trip-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(38, 56, 89, 0.28);
}

.trip-card-cta:hover svg {
  transform: translateX(3px);
}

html[dir='rtl'] .trip-card-cta:hover svg {
  transform: translateX(-3px);
}

/* ── Carousel ─────────────────────────────────────────────── */

.trips-carousel {
  position: relative;
  width: 100%;
}

.trips-carousel-swiper {
  overflow: hidden;
  padding-block: 0.5rem;
}

.trips-carousel .swiper-slide {
  height: auto;
  opacity: 0.45;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--slide-reveal-delay, 0ms);
}

.trips-carousel.is-revealed .swiper-slide {
  opacity: 1;
  transform: none;
}

.trips-carousel.is-revealed .swiper-slide:nth-child(1) {
  --slide-reveal-delay: 0ms;
}

.trips-carousel.is-revealed .swiper-slide:nth-child(2) {
  --slide-reveal-delay: 70ms;
}

.trips-carousel.is-revealed .swiper-slide:nth-child(3) {
  --slide-reveal-delay: 140ms;
}

.trips-carousel.is-revealed .swiper-slide:nth-child(4) {
  --slide-reveal-delay: 210ms;
}

.trips-carousel.is-revealed .swiper-slide:nth-child(5) {
  --slide-reveal-delay: 280ms;
}

.trips-carousel.is-revealed .swiper-slide:nth-child(6) {
  --slide-reveal-delay: 350ms;
}

.trips-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 89, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: #263859;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.14);
  transform: translateY(-50%);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
}

.trips-carousel-nav:hover:not([disabled]) {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 36, 69, 0.18);
}

.trips-carousel-nav--prev {
  inset-inline-start: 0.5rem;
}

.trips-carousel-nav--next {
  inset-inline-end: 0.5rem;
}

.trips-section-head {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Scroll reveal ────────────────────────────────────────── */

[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-scroll-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

[data-drag-scroll] {
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

[data-drag-scroll].is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

[data-drag-scroll]>* {
  scroll-snap-align: start;
}

@media (prefers-reduced-motion: reduce) {

  [data-scroll-reveal],
  .trips-carousel .swiper-slide,
  .trip-card,
  .trip-card-img,
  .trip-card-cta,
  .trips-carousel-nav {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  [data-drag-scroll] {
    scroll-behavior: auto;
  }
}

@media (max-width: 768px) {
  .chat-thread {
    height: auto;
    min-height: 70vh;
  }

  .trips-carousel-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .filter-panel-row {
    flex-wrap: wrap;
  }

  .filter-field {
    min-width: calc(50% - 1px);
    flex: 1 1 40%;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(38, 56, 89, 0.08);
  }

  .filter-field-price {
    min-width: 100%;
    flex: 1 1 100%;
  }

  .filter-pills {
    flex-wrap: wrap;
  }

  .filter-panel-actions {
    width: 100%;
    justify-content: flex-end;
    padding: 0.65rem 0.35rem 0.25rem;
  }

  .booking-widget .filter-field,
  .booking-widget .filter-field-price,
  .booking-widget .filter-field-beds {
    min-width: 0;
    width: 100%;
    flex: none;
    border: 0;
    padding: 0;
  }

  .booking-widget .filter-panel-actions {
    padding: 0.85rem 0 0;
  }
}

.suggest-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.55rem);
  z-index: 60;
  max-height: min(22rem, 60vh);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 0.45rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(18, 36, 69, 0.08);
  box-shadow: 0 22px 55px rgba(18, 36, 69, 0.18);
  animation: suggestIn 0.12s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes suggestIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.suggest-label {
  padding: 0.45rem 0.65rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  text-align: start;
  color: #122445;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.suggest-item:hover,
.suggest-item.is-active {
  background: #f4f6f9;
}

.suggest-item img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0.55rem;
  flex-shrink: 0;
}

.suggest-item-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
}

.suggest-item-meta {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.suggest-item-price {
  margin-inline-start: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #263859;
  white-space: nowrap;
}

.suggest-empty {
  padding: 1rem 0.75rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

.suggest-pin {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #fff6f0;
  color: #ef7722;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.chat-thread {
  height: 40.625rem;
}

/* ── Quote cards (reviews scroll) ─────────────────────────── */

.quote-card {
  min-width: 22.5rem;
  max-width: 24rem;
  flex-shrink: 0;
  padding: 1.1rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 8px 24px rgba(18, 36, 69, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 36, 69, 0.12);
}

.quotes-scroll {
  cursor: grab;
}

/* ── Trip details page ────────────────────────────────────── */

.trip-details-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 28%);
}

.trip-details-page--umrah {
  background: linear-gradient(180deg, #f7f1e4 0%, #fff 34%);
}

.trip-details-page--umrah .trip-details-category {
  color: #a07828;
}

.trip-details-page--umrah .trip-details-pill--type {
  background: rgba(196, 163, 90, 0.92);
  color: #1a1408;
}

.trip-details-page--umrah .trip-details-book-btn {
  background: linear-gradient(135deg, #1a2744 0%, #3d2e12 100%);
}

.trip-details-shell {
  max-width: 85rem;
}

.trip-details-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.trip-details-back:hover {
  color: #263859;
  transform: translateX(-2px);
}

[dir='rtl'] .trip-details-back:hover {
  transform: translateX(2px);
}

.trip-details-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(6.5rem, 8rem);
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
  margin-bottom: 2rem;
}

.trip-details-gallery-main-wrap {
  position: relative;
  width: 100%;
  height: clamp(14rem, 24vw, 20rem);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(18, 36, 69, 0.14);
  background: #eef2f7;
}

.trip-details-gallery-main-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 36, 69, 0.32) 100%);
}

.trip-details-gallery-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.trip-details-gallery-main.is-changing {
  opacity: 0.72;
  transform: scale(1.03);
}

.trip-details-gallery-badges {
  position: absolute;
  inset-inline-start: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trip-details-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.trip-details-pill--dest {
  background: rgba(255, 255, 255, 0.92);
  color: #263859;
}

.trip-details-pill--type {
  background: rgba(239, 119, 34, 0.92);
  color: #fff;
}

.trip-details-gallery-thumbs-wrap {
  position: relative;
  height: clamp(14rem, 24vw, 20rem);
  border-radius: 1rem;
  overflow: hidden;
}

.trip-details-gallery-thumbs-wrap::before,
.trip-details-gallery-thumbs-wrap::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  height: 1.75rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.trip-details-gallery-thumbs-wrap::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
}

.trip-details-gallery-thumbs-wrap::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
}

.trip-details-gallery-thumbs-wrap.can-scroll-up::before,
.trip-details-gallery-thumbs-wrap.can-scroll-down::after {
  opacity: 1;
}

.trip-details-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0.15rem 0.35rem 0.15rem 0.15rem;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 119, 34, 0.45) transparent;
}

.trip-details-gallery-thumbs::-webkit-scrollbar {
  width: 5px;
}

.trip-details-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.trip-details-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(239, 119, 34, 0.45);
  border-radius: 999px;
}

.trip-details-gallery-thumbs::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 119, 34, 0.7);
}

.trip-details-gallery-thumb {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 3.75rem;
  border: 2px solid transparent;
  border-radius: 0.8rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  scroll-snap-align: start;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.trip-details-gallery-thumb:not(.is-active) {
  opacity: 0.82;
}

.trip-details-gallery-thumb:hover {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(18, 36, 69, 0.14);
}

.trip-details-gallery-thumb.is-active {
  opacity: 1;
  border-color: #ef7722;
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.22);
}

.trip-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22.5rem);
  gap: 2rem;
  align-items: start;
}

.trip-details-header-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.trip-details-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ef7722;
}

.trip-details-save-badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #fff6f0;
  color: #d6651a;
  font-size: 0.6875rem;
  font-weight: 700;
}

.trip-details-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: #122445;
  letter-spacing: -0.02em;
}

.trip-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.trip-details-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #64748b;
}

.trip-details-meta svg {
  color: #ef7722;
  flex-shrink: 0;
}

.trip-details-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 1.75rem 0 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.06);
}

.trip-details-price-main {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.trip-details-price-current {
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #263859;
  letter-spacing: -0.02em;
}

.trip-details-price-current small {
  font-size: 0.95rem;
  font-weight: 700;
}

.trip-details-price-unit {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
}

.trip-details-price-old {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.trip-details-section {
  margin-bottom: 2rem;
}

.trip-details-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #122445;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.trip-details-about {
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}

.trip-details-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.trip-details-overview-item {
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trip-details-overview-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 36, 69, 0.08);
}

.trip-details-overview-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.trip-details-overview-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #263859;
}

.trip-details-included {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trip-details-included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    box-shadow 0.25s ease;
  transition-delay: var(--item-delay, 0ms);
}

.trip-details-included-item.is-revealed {
  opacity: 1;
  transform: none;
}

.trip-details-included-item:hover {
  box-shadow: 0 8px 20px rgba(18, 36, 69, 0.08);
}

.trip-details-included-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: #fff6f0;
  color: #ef7722;
  flex-shrink: 0;
}

.trip-details-sidebar-sticky {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trip-date-card {
  position: relative;
  padding: 1rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.1);
  box-shadow: 0 14px 36px rgba(18, 36, 69, 0.1);
}

.trip-date-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.65rem;
}

.trip-date-card-trigger {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: 0.95rem;
  border: 1.5px solid rgba(239, 119, 34, 0.35);
  background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
  text-align: start;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.trip-date-card-trigger:hover {
  border-color: #ef7722;
  box-shadow: 0 8px 20px rgba(239, 119, 34, 0.12);
}

.trip-date-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: #fff;
  color: #ef7722;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(239, 119, 34, 0.15);
}

.trip-date-card-body {
  flex: 1;
  min-width: 0;
}

.trip-date-card-date {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #263859;
  letter-spacing: -0.01em;
}

.trip-date-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.trip-date-card-meta strong {
  color: #ef7722;
  font-weight: 800;
}

.trip-date-card-chevron {
  display: flex;
  align-items: center;
  color: #64748b;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.trip-date-card-trigger[aria-expanded='true'] .trip-date-card-chevron {
  transform: rotate(180deg);
}

.trip-date-menu {
  position: absolute;
  inset-inline: 1rem;
  top: calc(100% - 0.35rem);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.5rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.1);
  box-shadow: 0 18px 40px rgba(18, 36, 69, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s ease;
  max-height: min(16rem, 42vh);
  overflow-y: auto;
}

.trip-date-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.trip-date-option {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid #e8eef8;
  background: #fff;
  text-align: start;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.trip-date-option:hover {
  border-color: rgba(239, 119, 34, 0.35);
  background: #fff9f5;
}

.trip-date-option.is-selected {
  border-color: #ef7722;
  background: #fff6f0;
}

.trip-date-option-date {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #263859;
}

.trip-date-option-meta {
  font-size: 0.75rem;
  color: #64748b;
}

.trip-date-see-all {
  width: 100%;
  padding: 0.65rem;
  border: 0;
  border-radius: 0.75rem;
  background: #f4f6f9;
  color: #263859;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.trip-date-see-all:hover {
  background: #e8eef8;
}

.trip-itinerary-card {
  padding: 1.1rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.1);
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.08);
}

.trip-itinerary-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #122445;
  margin-bottom: 1rem;
}

.trip-itinerary-title svg {
  color: #ef7722;
}

.trip-itinerary-list {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trip-itinerary-list::before {
  content: '';
  position: absolute;
  inset-inline-start: 1.05rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, #ef7722 0%, rgba(239, 119, 34, 0.15) 100%);
  border-radius: 999px;
}

.trip-itinerary-item {
  position: relative;
  display: flex;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--item-delay, 0ms);
}

[dir='rtl'] .trip-itinerary-item {
  transform: translateX(10px);
}

.trip-itinerary-item.is-revealed {
  opacity: 1;
  transform: none;
}

.trip-itinerary-item:last-child {
  padding-bottom: 0;
}

.trip-itinerary-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef7722 0%, #f59a4a 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(239, 119, 34, 0.35);
}

.trip-itinerary-content h3 {
  font-size: 0.875rem;
  font-weight: 800;
  color: #263859;
  margin-bottom: 0.2rem;
}

.trip-itinerary-content p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.trip-itinerary-board {
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #fffdf8 0%, #fff 70%);
  border: 1px solid rgba(196, 163, 90, 0.22);
}

.trip-details-page--umrah .trip-itinerary-board {
  box-shadow: 0 16px 36px rgba(18, 36, 69, 0.06);
}

.trip-itinerary-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trip-itinerary-block {
  position: relative;
  padding: 1rem 1.05rem 1rem 1.15rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
}

.trip-itinerary-block.is-stay {
  background: linear-gradient(135deg, #fffaf0 0%, #fff 58%);
  border-color: rgba(196, 163, 90, 0.28);
}

.trip-itinerary-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.35rem;
}

.trip-itinerary-days {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #122445;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.trip-itinerary-block.is-stay .trip-itinerary-days {
  background: #c4a35a;
  color: #1a1408;
}

.trip-itinerary-place {
  font-size: 0.92rem;
  font-weight: 800;
  color: #122445;
}

.trip-itinerary-block-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #263859;
  margin: 0.15rem 0 0.2rem;
}

.trip-itinerary-block-copy {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #64748b;
}

.trip-itinerary-activities {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0.15rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px dashed rgba(196, 163, 90, 0.35);
}

.trip-itinerary-activities li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.trip-itinerary-activities li > span {
  min-width: 3.4rem;
  margin-top: 0.12rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #c4a35a;
}

.trip-itinerary-activities strong {
  display: block;
  font-size: 0.88rem;
  color: #122445;
}

.trip-itinerary-activities p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
}

.trip-details-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #263859 0%, #1a2744 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(38, 56, 89, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.trip-details-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(38, 56, 89, 0.34);
}

.trip-details-book-btn.is-disabled,
.trip-details-book-mobile.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.trip-occupancy-hint,
.checkout-field-hint,
.trip-form-field-hint {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748b;
}

.trip-form-field-hint--warn {
  color: #b45309;
}

.trip-form-status-readout {
  margin: 0;
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(18, 36, 69, 0.1);
  background: #f8fafc;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
}

.trip-room-picker {
  margin-top: 0.85rem;
}
.trip-room-picker-list {
  display: grid;
  gap: 0.55rem;
}
.trip-room-picker-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(18, 36, 69, 0.1);
  border-radius: 0.9rem;
  background: #fff;
  text-align: start;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.trip-room-picker-card strong {
  color: #122445;
  font-size: 0.92rem;
}
.trip-room-picker-card span {
  color: #ef7722;
  font-size: 0.8rem;
  font-weight: 600;
}
.trip-room-picker-card em {
  font-style: normal;
  color: #94a3b8;
  font-size: 0.75rem;
}
.trip-room-picker-card.is-selected {
  border-color: #ef7722;
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.12);
}
  font-weight: 600;
}

.checkout-field-error {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #b42318;
}

.trip-guest-picker {
  margin: 0.85rem 0 1rem;
}

.trip-guest-picker-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.trip-guest-stepper {
  max-width: 11rem;
}

.trip-details-book-mobile {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem;
  border: 0;
  border-radius: 0.95rem;
  background: #263859;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .trip-details-gallery {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .trip-details-gallery-main-wrap,
  .trip-details-gallery-thumbs-wrap {
    height: clamp(12rem, 38vw, 17rem);
  }

  .trip-details-gallery-thumbs-wrap {
    height: auto;
    min-height: auto;
  }

  .trip-details-gallery-thumbs-wrap::before,
  .trip-details-gallery-thumbs-wrap::after {
    display: none;
  }

  .trip-details-gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.25rem 0.15rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .trip-details-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .trip-details-gallery-thumb {
    width: clamp(6.5rem, 28vw, 8.5rem);
    min-height: auto;
    scroll-snap-align: center;
  }

  .trip-details-layout {
    grid-template-columns: 1fr;
  }

  .trip-details-sidebar-sticky {
    position: static;
  }

  .trip-details-book-btn {
    display: none;
  }

  .trip-details-book-mobile {
    display: block;
  }
}

@media (max-width: 640px) {

  .trip-details-overview-grid,
  .trip-details-included {
    grid-template-columns: 1fr;
  }

  .trip-details-gallery {
    max-width: 100%;
  }

  .trip-details-gallery-main-wrap,
  .trip-details-gallery-thumbs-wrap {
    height: clamp(11rem, 44vw, 15rem);
  }

  .trip-details-gallery-thumb {
    width: clamp(5.5rem, 34vw, 7rem);
  }
}

/* ── Account pages ────────────────────────────────────────── */

.account-page {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 22%);
  min-height: 100dvh;
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.account-layout--scroll {
  align-items: stretch;
}

.account-layout--scroll .account-sidebar {
  position: sticky;
  top: 6.5rem;
  align-self: start;
}

.account-main {
  min-width: 0;
}

.account-layout--scroll .account-main {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.account-main-scroll {
  flex: 1;
  min-height: 0;
}

@media (min-width: 1025px) {
  .account-layout--scroll .account-main-scroll {
    max-height: calc(100dvh - 9.75rem);
    overflow-y: auto;
    overscroll-behavior-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    padding-inline-end: 0.5rem;
    margin-inline-end: -0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(38, 56, 89, 0.18) transparent;
  }

  .account-layout--scroll .account-main-scroll.is-scrollable:not(.is-at-top)::before,
  .account-layout--scroll .account-main-scroll.is-scrollable:not(.is-at-bottom)::after {
    content: '';
    position: sticky;
    left: 0;
    right: 0;
    display: block;
    height: 1.75rem;
    pointer-events: none;
    z-index: 2;
    flex-shrink: 0;
  }

  .account-layout--scroll .account-main-scroll.is-scrollable:not(.is-at-top)::before {
    top: 0;
    margin-bottom: -1.75rem;
    background: linear-gradient(180deg, #f8fafc 25%, transparent);
  }

  .account-layout--scroll .account-main-scroll.is-scrollable:not(.is-at-bottom)::after {
    bottom: 0;
    margin-top: -1.75rem;
    background: linear-gradient(0deg, #f8fafc 30%, transparent);
  }

  .account-layout--scroll .account-sidebar-card {
    position: static;
    top: auto;
  }
}

.account-sidebar-card {
  position: sticky;
  top: 6.5rem;
  padding: 1.1rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 14px 36px rgba(18, 36, 69, 0.08);
}

.account-sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(38, 56, 89, 0.08);
}

.account-sidebar-avatar-wrap {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(18, 36, 69, 0.12);
}

.account-sidebar-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-sidebar-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #122445;
  line-height: 1.25;
}

.account-sidebar-email {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.15rem;
  word-break: break-word;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.account-nav-link {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  text-align: start;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.account-nav-link:hover {
  background: #f4f6f9;
  color: #122445;
}

.account-nav-link.is-active {
  background: linear-gradient(135deg, #263859 0%, #1a2744 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(38, 56, 89, 0.22);
}

.account-nav-link--danger {
  color: #dc2626;
  margin-top: 0.35rem;
}

.account-nav-link--danger:hover {
  background: #fef2f2;
  color: #b91c1c;
}

.account-header {
  margin-bottom: 1.25rem;
}

.account-header--compact {
  margin-bottom: 1rem;
}

.account-title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
}

.account-subtitle {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.55;
}

.account-card {
  padding: 1.25rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 12px 32px rgba(18, 36, 69, 0.07);
}

.account-card--wide {
  padding: 1.5rem;
}

.account-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #122445;
}

.account-card-desc {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.account-profile-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.account-profile-hero-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-profile-avatar-wrap {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 10px 24px rgba(18, 36, 69, 0.14);
}

.account-profile-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-profile-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #122445;
}

.account-profile-line {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.account-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 0.85rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-btn--primary {
  background: linear-gradient(135deg, #263859 0%, #1a2744 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(38, 56, 89, 0.24);
}

.account-btn--primary:hover {
  transform: translateY(-1px);
}

.account-btn--secondary {
  background: #fff;
  color: #122445;
  border: 1.5px solid rgba(38, 56, 89, 0.14);
}

.account-btn--secondary:hover {
  background: #f8fafc;
}

.account-btn--wide {
  width: 100%;
}

.account-btn--sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.8125rem;
  border-radius: 0.75rem;
}

.account-btn--danger {
  background: #fff;
  color: #dc2626;
  border: 1.5px solid #fecaca;
}

.account-btn--danger:hover {
  background: #fef2f2;
  border-color: #f87171;
  color: #b91c1c;
}

.account-booking-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.account-booking-stat {
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 6px 18px rgba(18, 36, 69, 0.05);
}

.account-booking-stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
}

.account-booking-stat-label {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.account-booking-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-booking-card {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
  gap: 1.15rem;
  padding: 1rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.07);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.account-booking-card:hover {
  box-shadow: 0 16px 36px rgba(18, 36, 69, 0.1);
  transform: translateY(-1px);
}

.account-booking-card-media {
  position: relative;
  display: block;
  border-radius: 0.95rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
}

.account-booking-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.account-booking-card-media:hover .account-booking-card-img {
  transform: scale(1.03);
}

.account-booking-status {
  position: absolute;
  top: 0.65rem;
  inset-inline-end: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.account-booking-status--confirmed {
  background: rgba(220, 252, 231, 0.92);
  color: #15803d;
}

.account-booking-status--pending {
  background: rgba(254, 243, 199, 0.92);
  color: #b45309;
}

.account-booking-status--cancelled {
  background: rgba(254, 226, 226, 0.92);
  color: #b91c1c;
}

.account-booking-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.account-booking-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.account-booking-card-category {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 600;
}

.account-booking-card-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  padding: 0.85rem;
  border-radius: 0.9rem;
  border: 1px solid #e8eef8;
  background: #fafbfd;
}

.account-booking-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.account-booking-detail-value {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.account-booking-card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #e8eef8;
}

.account-booking-price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #122445;
}

.account-booking-price-unit {
  margin-inline-start: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.account-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.account-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Saved trips — compact cards */
.saved-trip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.saved-trip-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 4px 14px rgba(18, 36, 69, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.saved-trip-card:hover {
  border-color: rgba(239, 119, 34, 0.25);
  box-shadow: 0 8px 22px rgba(18, 36, 69, 0.08);
}

.saved-trip-card-media {
  position: relative;
  flex-shrink: 0;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.65rem;
  overflow: hidden;
  text-decoration: none;
}

.saved-trip-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.saved-trip-card-media:hover .saved-trip-card-img {
  transform: scale(1.05);
}

.saved-trip-card-badge {
  position: absolute;
  top: 0.35rem;
  inset-inline-start: 0.35rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.3rem;
  background: rgba(239, 119, 34, 0.92);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
}

.saved-trip-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.35rem;
}

.saved-trip-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.saved-trip-card-text {
  flex: 1;
  min-width: 0;
}

.saved-trip-card-category {
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.saved-trip-card-title {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
}

.saved-trip-card-title a {
  color: #122445;
  text-decoration: none;
}

.saved-trip-card-title a:hover {
  color: #ef7722;
}

.saved-trip-card-meta {
  margin: 0.2rem 0 0;
  font-size: 0.6875rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saved-trip-card-fav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #f8fafc;
  cursor: pointer;
  transition: background 0.15s ease;
}

.saved-trip-card-fav:hover {
  background: #fff3eb;
}

.saved-trip-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.saved-trip-card-price-value {
  font-size: 0.875rem;
  font-weight: 800;
  color: #122445;
}

.saved-trip-card-price-unit {
  font-size: 0.625rem;
  font-weight: 600;
  color: #94a3b8;
}

.saved-trip-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #263859;
  text-decoration: none;
  white-space: nowrap;
}

.saved-trip-card-link:hover {
  color: #ef7722;
}

.account-subtitle-count {
  color: #ef7722;
  font-weight: 600;
}

.account-grid {
  display: grid;
  gap: 1rem;
}

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

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

.account-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 8px 24px rgba(18, 36, 69, 0.06);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.account-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 36, 69, 0.1);
}

.account-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
}

.account-stat-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
}

.account-stat-hint {
  font-size: 0.8125rem;
  color: #64748b;
}

.account-empty {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px dashed rgba(38, 56, 89, 0.16);
}

.account-empty-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #122445;
}

.account-empty-text {
  margin: 0.5rem auto 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}

.account-settings-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-avatar-form {
  margin-top: 1rem;
}

.account-avatar-upload {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.account-avatar-preview {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 12px 28px rgba(18, 36, 69, 0.14);
}

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

.account-avatar-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 36, 69, 0.45);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.account-avatar-preview:hover .account-avatar-overlay {
  opacity: 1;
}

.account-avatar-input {
  font-size: 0.875rem;
}

.account-avatar-hint {
  margin: 0.5rem 0 0.85rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1rem;
}

.account-form--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
}

.account-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.account-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
}

.account-input {
  width: 100%;
  height: 2.85rem;
  padding: 0 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #fff;
  font-size: 0.9375rem;
  color: #122445;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-input--textarea {
  height: auto;
  min-height: 7rem;
  padding: 0.75rem 0.9rem;
  resize: vertical;
}

.account-input:focus {
  outline: none;
  border-color: rgba(239, 119, 34, 0.55);
  box-shadow: 0 0 0 4px rgba(239, 119, 34, 0.12);
}

.account-form-success {
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.8125rem;
  font-weight: 600;
}

.account-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.account-btn--flex {
  flex: 1;
}

.account-dialog-panel {
  max-width: 28rem;
}

.account-dialog-panel .account-form {
  margin-top: 0.5rem;
}

.account-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.account-pagination {
  margin-top: 1.25rem;
}

.account-chat {
  display: grid;
  grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr);
  min-height: 32rem;
  max-height: calc(100vh - 12rem);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow:
    0 4px 6px rgba(18, 36, 69, 0.04),
    0 20px 48px rgba(18, 36, 69, 0.1);
}

.account-chat-list {
  display: flex;
  flex-direction: column;
  border-inline-end: 1px solid rgba(38, 56, 89, 0.08);
  background: linear-gradient(180deg, #fafbfd 0%, #f4f7fb 100%);
  min-height: 0;
}

.account-chat-list-head {
  padding: 1rem 1rem 0.35rem;
}

.account-chat-list-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
}

.account-chat-list-meta {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #64748b;
}

.account-chat-online-count {
  color: #16a34a;
  font-weight: 600;
}

.account-chat-search-wrap {
  position: relative;
  padding: 0.65rem 0.85rem 0.75rem;
}

.account-chat-search-icon {
  position: absolute;
  inset-inline-start: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
}

.account-input--search-icon {
  padding-inline-start: 2.25rem;
}

.account-input--search {
  height: 2.5rem;
  font-size: 0.8125rem;
  background: #fff;
}

.account-chat-conversations {
  flex: 1;
  overflow-y: auto;
  padding: 0 0.5rem 0.65rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 56, 89, 0.15) transparent;
}

.account-chat-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0.7rem;
  margin-bottom: 0.2rem;
  border-radius: 0.95rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.account-chat-item:hover {
  background: rgba(255, 255, 255, 0.85);
}

.account-chat-item.is-active {
  background: #fff;
  box-shadow:
    0 2px 8px rgba(38, 56, 89, 0.08),
    inset 3px 0 0 #ef7722;
}

.account-chat-item.has-unread .account-chat-item-name {
  color: #0f172a;
}

.account-chat-item.has-unread .account-chat-item-preview {
  color: #334155;
  font-weight: 600;
}

.account-chat-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.account-chat-avatar-wrap--lg .account-chat-item-avatar--lg {
  width: 2.85rem;
  height: 2.85rem;
}

.account-chat-item-avatar {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(18, 36, 69, 0.12);
}

.account-chat-presence {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.account-chat-presence--online {
  background: #22c55e;
}

.account-chat-presence--away {
  background: #f59e0b;
}

.account-chat-presence--offline {
  background: #94a3b8;
}

.account-chat-item-body {
  min-width: 0;
}

.account-chat-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.account-chat-item-name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #122445;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-chat-item-name--lg {
  font-size: 0.9375rem;
}

.account-chat-item-time {
  flex-shrink: 0;
  font-size: 0.6875rem;
  color: #94a3b8;
  font-weight: 500;
}

.account-chat-item.is-active .account-chat-item-time,
.account-chat-item.has-unread .account-chat-item-time {
  color: #ef7722;
  font-weight: 700;
}

.account-chat-item-topic {
  margin-top: 0.1rem;
  font-size: 0.6875rem;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-chat-item-preview {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.35;
}

.account-chat-you {
  color: #94a3b8;
  font-weight: 500;
}

.account-chat-unread {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef7722 0%, #e85d04 100%);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(239, 119, 34, 0.35);
  align-self: center;
}

.account-chat-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #f8fafc;
}

.account-chat-panel-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(38, 56, 89, 0.08);
  background: #fff;
}

.account-chat-panel-head-body {
  flex: 1;
  min-width: 0;
}

.account-chat-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.account-chat-status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.account-chat-status--online {
  color: #16a34a;
}

.account-chat-status--online .account-chat-status-dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: chat-pulse 2s ease-in-out infinite;
}

.account-chat-status--away {
  color: #d97706;
}

.account-chat-status--away .account-chat-status-dot {
  background: #f59e0b;
}

.account-chat-status--offline {
  color: #64748b;
}

.account-chat-status--offline .account-chat-status-dot {
  background: #94a3b8;
}

@keyframes chat-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.account-chat-trip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.6875rem;
  font-weight: 600;
}

.account-chat-panel-actions {
  display: flex;
  gap: 0.35rem;
}

.account-chat-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(38, 56, 89, 0.1);
  border-radius: 0.65rem;
  background: #fff;
  color: #64748b;
  cursor: default;
}

.account-chat-thread {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(239, 119, 34, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(38, 56, 89, 0.04) 0%, transparent 45%),
    #f8fafc;
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 56, 89, 0.12) transparent;
}

.account-chat-date {
  display: flex;
  justify-content: center;
  margin: 0.35rem 0;
}

.account-chat-date span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(38, 56, 89, 0.08);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.account-chat-bubble-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  animation: chat-bubble-in 0.28s ease-out both;
}

@keyframes chat-bubble-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-chat-bubble-wrap.is-me {
  justify-content: flex-end;
}

.account-chat-bubble-wrap.is-them {
  justify-content: flex-start;
}

.account-chat-bubble-avatar {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}

.account-chat-bubble {
  max-width: min(78%, 22rem);
  padding: 0.6rem 0.85rem 0.5rem;
  border-radius: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(18, 36, 69, 0.06);
}

.account-chat-bubble-wrap.is-me .account-chat-bubble {
  background: linear-gradient(145deg, #263859 0%, #1a2744 100%);
  color: #fff;
  border-bottom-right-radius: 0.3rem;
}

.account-chat-bubble-wrap.is-them .account-chat-bubble {
  background: #fff;
  color: #122445;
  border: 1px solid rgba(38, 56, 89, 0.08);
  border-bottom-left-radius: 0.3rem;
}

.account-chat-bubble p {
  margin: 0;
  word-break: break-word;
}

.account-chat-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-top: 0.2rem;
}

.account-chat-bubble time {
  font-size: 0.625rem;
  opacity: 0.72;
  line-height: 1;
}

.account-chat-receipt {
  display: inline-flex;
  opacity: 0.75;
  line-height: 0;
}

.account-chat-receipt--read {
  color: #7dd3fc;
  opacity: 1;
}

.account-chat-receipt--delivered {
  opacity: 0.9;
}

.account-chat-typing {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  animation: chat-bubble-in 0.28s ease-out both;
}

.account-chat-typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.85rem;
  border-radius: 1.1rem;
  border-bottom-left-radius: 0.3rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 2px 8px rgba(18, 36, 69, 0.06);
}

.account-chat-typing-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #94a3b8;
  animation: chat-typing 1.2s ease-in-out infinite;
}

.account-chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.account-chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.account-chat-compose {
  padding: 0.75rem 1rem 0.85rem;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
  background: #fff;
}

.account-chat-compose-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.account-input--chat {
  flex: 1;
  height: 2.75rem;
  border-radius: 999px;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.account-input--chat:focus {
  background: #fff;
}

.account-chat-compose-hint {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.625rem;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.account-chat-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #263859 0%, #1a2744 100%);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(38, 56, 89, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.account-chat-send:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 18px rgba(38, 56, 89, 0.35);
}

.account-chat-send:active {
  transform: scale(0.97);
}

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

.account-header--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.account-btn--compact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

.account-dialog-panel--wide {
  max-width: 32rem;
}

.account-input--select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%2364748b' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-inline-end: 2rem;
}

/* Support tickets */
.account-tickets {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  min-height: 34rem;
  max-height: calc(100vh - 12rem);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 4px 6px rgba(18, 36, 69, 0.04), 0 20px 48px rgba(18, 36, 69, 0.1);
}

.account-tickets-list {
  display: flex;
  flex-direction: column;
  border-inline-end: 1px solid rgba(38, 56, 89, 0.08);
  background: linear-gradient(180deg, #fafbfd 0%, #f4f7fb 100%);
  min-height: 0;
}

.account-tickets-list-head {
  padding: 1rem 1rem 0.5rem;
}

.account-tickets-list-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #122445;
}

.account-tickets-list-meta {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: #64748b;
}

.account-tickets-open-count {
  color: #16a34a;
  font-weight: 600;
}

.account-tickets-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 0.85rem 0.65rem;
}

.account-tickets-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(38, 56, 89, 0.1);
  border-radius: 999px;
  background: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.18s ease;
}

.account-tickets-filter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.625rem;
}

.account-tickets-filter.is-active {
  background: #263859;
  border-color: #263859;
  color: #fff;
}

.account-tickets-filter.is-active span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.account-tickets-search-wrap {
  position: relative;
  padding: 0 0.85rem 0.75rem;
}

.account-tickets-search-icon {
  position: absolute;
  inset-inline-start: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
}

.account-tickets-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 0.5rem 0.65rem;
  scrollbar-width: thin;
}

.account-tickets-item {
  position: relative;
  display: block;
  padding: 0.8rem 0.75rem;
  margin-bottom: 0.25rem;
  border-radius: 0.95rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.account-tickets-item:hover {
  background: rgba(255, 255, 255, 0.9);
}

.account-tickets-item.is-active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(38, 56, 89, 0.08), inset 3px 0 0 #ef7722;
}

.account-tickets-item.has-unread .account-tickets-subject {
  font-weight: 800;
}

.account-tickets-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.account-tickets-no {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.04em;
  font-family: ui-monospace, monospace;
}

.account-tickets-no--lg {
  font-size: 0.8125rem;
  color: #475569;
}

.ticket-status {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ticket-status--lg {
  font-size: 0.6875rem;
  padding: 0.2rem 0.65rem;
}

.ticket-status--open {
  background: #dcfce7;
  color: #15803d;
}

.ticket-status--pending {
  background: #fef3c7;
  color: #b45309;
}

.ticket-status--resolved {
  background: #dbeafe;
  color: #1d4ed8;
}

.ticket-status--closed {
  background: #f1f5f9;
  color: #64748b;
}

.ticket-priority--high {
  font-size: 0.625rem;
  font-weight: 700;
  color: #dc2626;
  background: #fef2f2;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.account-tickets-subject {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #122445;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account-tickets-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.account-tickets-category {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 0.1rem 0.45rem;
  border-radius: 0.35rem;
}

.account-tickets-time {
  font-size: 0.6875rem;
  color: #94a3b8;
}

.account-tickets-preview {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-tickets-you {
  color: #94a3b8;
  font-weight: 500;
}

.account-tickets-unread {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef7722 0%, #e85d04 100%);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
}

.account-tickets-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #f8fafc;
}

.account-tickets-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(38, 56, 89, 0.08);
  background: #fff;
}

.account-tickets-panel-head-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.account-tickets-panel-subject {
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #122445;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.account-tickets-panel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: #64748b;
}

.account-tickets-panel-meta strong {
  color: #334155;
  font-weight: 600;
}

.account-tickets-meta-sep {
  color: #cbd5e1;
}

.account-tickets-support-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid rgba(38, 56, 89, 0.08);
  flex-shrink: 0;
}

.account-tickets-support-avatar {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  border-radius: 0.5rem;
  padding: 0.2rem;
  background: #fff;
}

.account-tickets-support-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #122445;
}

.account-tickets-support-label {
  font-size: 0.6875rem;
  color: #64748b;
}

.account-tickets-thread {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
}

.account-tickets-date {
  display: flex;
  justify-content: center;
}

.account-tickets-date span {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(38, 56, 89, 0.08);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.account-tickets-reply {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  animation: chat-bubble-in 0.28s ease-out both;
}

.account-tickets-reply.is-user {
  flex-direction: row-reverse;
}

.account-tickets-reply-avatar {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  border-radius: 0.45rem;
  padding: 0.15rem;
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  flex-shrink: 0;
}

.account-tickets-reply-body {
  max-width: min(85%, 28rem);
}

.account-tickets-reply.is-user .account-tickets-reply-body {
  text-align: end;
}

.account-tickets-reply-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
  font-size: 0.6875rem;
}

.account-tickets-reply.is-user .account-tickets-reply-head {
  justify-content: flex-end;
}

.account-tickets-reply-author {
  font-weight: 700;
  color: #122445;
}

.account-tickets-reply-role {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #eaf0ff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.625rem;
}

.account-tickets-reply-head time {
  color: #94a3b8;
  margin-inline-start: auto;
}

.account-tickets-reply.is-user .account-tickets-reply-head time {
  margin-inline-start: 0;
}

.account-tickets-reply-bubble {
  padding: 0.75rem 0.9rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  box-shadow: 0 2px 8px rgba(18, 36, 69, 0.06);
}

.account-tickets-reply.is-admin .account-tickets-reply-bubble {
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  border-top-left-radius: 0.3rem;
}

.account-tickets-reply.is-user .account-tickets-reply-bubble {
  background: linear-gradient(145deg, #263859 0%, #1a2744 100%);
  color: #fff;
  border-top-right-radius: 0.3rem;
  text-align: start;
}

.account-tickets-reply-bubble p {
  margin: 0;
}

.account-tickets-compose {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
  background: #fff;
}

.account-tickets-compose-inner {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
}

.account-input--reply {
  min-height: 3rem;
  max-height: 8rem;
  resize: vertical;
  border-radius: 0.85rem;
}

.account-tickets-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #263859 0%, #1a2744 100%);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(38, 56, 89, 0.28);
}

.account-tickets-compose-hint {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.625rem;
  color: #94a3b8;
}

.account-tickets-attach {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 56, 89, 0.12);
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  flex-shrink: 0;
}

.account-tickets-attach:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.account-tickets-attach-preview {
  margin-top: 0.45rem;
}

.support-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
}

.account-tickets-reply-bubble .support-attachments:first-child,
.company-support-bubble p + .support-attachments { margin-top: 0.35rem; }

.support-attach--image {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.support-attach--image img {
  display: block;
  width: 100%;
  max-height: 160px;
  object-fit: cover;
}

.support-attach--file {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.05);
  color: inherit;
  text-decoration: none;
  font-size: 0.78rem;
  max-width: 100%;
}

.company-support-bubble.is-self .support-attach--file {
  background: rgba(255, 255, 255, 0.15);
}

.account-tickets-reply.is-user .support-attach--file {
  background: rgba(255, 255, 255, 0.2);
}

.support-attach-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}

.support-attach-size {
  opacity: 0.7;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.support-attach-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.support-attach-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 0.4rem;
  background: #f1f5f9;
  border: 1px solid rgba(18, 36, 69, 0.1);
  font-size: 0.72rem;
  max-width: 140px;
}

.support-attach-chip img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.support-attach-chip-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border: none;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.account-tickets-closed-notice {
  padding: 1rem 1.15rem;
  border-top: 1px solid rgba(38, 56, 89, 0.08);
  background: #f8fafc;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
}

.account-stack > div > .w-full.relative {
  border-radius: 1.15rem;
  border: 1px solid rgba(38, 56, 89, 0.08);
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.08);
}

@media (max-width: 1024px) {
  .account-booking-stats {
    grid-template-columns: 1fr;
  }

  .account-booking-card {
    grid-template-columns: 1fr;
  }

  .saved-trip-list {
    grid-template-columns: 1fr;
  }

  .account-booking-card-media {
    aspect-ratio: 16 / 9;
  }

  .account-layout--scroll .account-main-scroll:not(.account-main-scroll--embedded) {
    max-height: none;
    overflow: visible;
  }

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

  .account-sidebar-card {
    position: static;
  }

  .account-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .account-nav-link--danger {
    grid-column: 1 / -1;
  }

  .account-grid--3,
  .account-grid--2 {
    grid-template-columns: 1fr;
  }

  .account-chat {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .account-chat-list {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(38, 56, 89, 0.08);
    max-height: 16rem;
  }

  .account-chat-panel {
    min-height: 24rem;
  }

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

  /* Tickets — viewport-height on small screens */
  .account-shell--tickets {
    height: calc(100dvh - 4.5rem);
    max-height: calc(100dvh - 4.5rem);
    min-height: calc(100dvh - 4.5rem);
    padding-bottom: 0.5rem;
  }

  .account-layout--scroll .account-main-scroll--embedded {
    overflow: hidden !important;
  }

  .account-tickets-page-head .account-btn {
    display: none;
  }

  .account-tickets-new-inline {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* Tickets v2 — list / detail views, viewport-height layout */
.account-page--tickets { min-height: auto; }

.account-shell--tickets {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - 5.5rem);
  max-height: calc(100dvh - 5.5rem);
  min-height: calc(100dvh - 5.5rem);
  padding-bottom: 0.75rem;
}

.account-layout--tickets {
  flex: 1;
  min-height: 0;
  align-items: stretch;
}

.account-main-scroll--embedded {
  overflow: hidden !important;
  max-height: none !important;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

.account-tickets-page-head {
  flex-shrink: 0;
  margin-bottom: 0.65rem;
}

.account-tickets-page-head .account-title {
  font-size: 1.35rem;
}

.account-tickets-page-head .account-subtitle {
  font-size: 0.8125rem;
  color: #94a3b8;
}

.account-tickets {
  flex: 1;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  grid-template-columns: unset;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(18, 36, 69, 0.06);
  overflow: hidden;
}

/* List view — chat-inbox style */
.account-tickets.is-list {
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.06);
  box-shadow: 0 1px 3px rgba(18, 36, 69, 0.04);
}

.account-tickets.is-list .account-tickets-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  border-inline-end: 0;
  background: #fff;
}

.account-tickets-list-toolbar {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1rem 0.9rem;
  border-bottom: 1px solid rgba(38, 56, 89, 0.05);
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}

.account-tickets-filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.account-tickets-filter-pills::-webkit-scrollbar {
  display: none;
}

.account-tickets-search {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.85rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid rgba(38, 56, 89, 0.06);
  color: #94a3b8;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.account-tickets-search:focus-within {
  background: #fff;
  border-color: rgba(38, 56, 89, 0.12);
  box-shadow: 0 0 0 3px rgba(38, 56, 89, 0.04);
  color: #64748b;
}

.account-tickets-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 0.875rem;
  color: #122445;
  outline: none;
}

.account-tickets-search-input::placeholder {
  color: #94a3b8;
}

.account-tickets-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.account-tickets-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(18, 36, 69, 0.04);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.account-tickets-filter-pill:hover {
  background: #e8edf3;
  color: #475569;
}

.account-tickets-filter-pill.is-active {
  background: #263859;
  color: #fff;
  border-color: #263859;
}

.account-tickets-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
}

.account-tickets-filter-pill:not(.is-active) .account-tickets-filter-count {
  background: rgba(38, 56, 89, 0.08);
  color: #64748b;
}

.account-tickets-new-inline {
  display: none;
}

.account-tickets-list {
  background: #fff;
  min-height: 0;
}

.account-tickets-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 56, 89, 0.1) transparent;
  padding: 0.5rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.account-tickets-items::-webkit-scrollbar {
  width: 4px;
}

.account-tickets-items::-webkit-scrollbar-thumb {
  background: rgba(38, 56, 89, 0.1);
  border-radius: 999px;
}

.account-tickets-chat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 0.9rem;
  border-radius: 0.95rem;
  text-decoration: none;
  color: inherit;
  background: #fafbfd;
  border: 1px solid rgba(38, 56, 89, 0.05);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.account-tickets-chat:hover {
  background: #fff;
  border-color: rgba(38, 56, 89, 0.1);
  box-shadow: 0 4px 14px rgba(18, 36, 69, 0.06);
}

.account-tickets-chat.has-unread {
  background: #fff;
  border-color: rgba(239, 119, 34, 0.18);
  box-shadow: 0 2px 10px rgba(239, 119, 34, 0.06);
}

.account-tickets-chat:active {
  transform: scale(0.995);
}

.account-tickets-chat-avatar {
  position: relative;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #eef2f7 0%, #e2e8f0 100%);
  border: 1px solid rgba(38, 56, 89, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}

.account-tickets-chat.has-unread .account-tickets-chat-avatar {
  background: linear-gradient(145deg, #263859 0%, #1a2744 100%);
  color: #fff;
  border-color: transparent;
}

.account-tickets-chat-status {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 2px solid #fafbfd;
  box-shadow: 0 0 0 1px rgba(38, 56, 89, 0.06);
}

.account-tickets-chat.has-unread .account-tickets-chat-status {
  border-color: #fff;
}

.ticket-status-dot--open { background: #22c55e; }
.ticket-status-dot--pending { background: #f59e0b; }
.ticket-status-dot--resolved { background: #3b82f6; }
.ticket-status-dot--closed { background: #94a3b8; }

.account-tickets-chat-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.account-tickets-chat-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem;
}

.account-tickets-chat-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account-tickets-chat.has-unread .account-tickets-chat-title {
  font-weight: 700;
  color: #122445;
}

.account-tickets-chat-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  flex-shrink: 0;
}

.account-tickets-chat-time {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
}

.account-tickets-chat.has-unread .account-tickets-chat-time {
  color: #ef7722;
  font-weight: 700;
}

.account-tickets-chat-preview {
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.account-tickets-chat.has-unread .account-tickets-chat-preview {
  color: #64748b;
}

.account-tickets-you {
  font-weight: 600;
  color: #64748b;
}

.account-tickets-unread {
  flex-shrink: 0;
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #ef7722;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
}

.account-tickets-chat-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.account-tickets-meta-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(38, 56, 89, 0.05);
  color: #64748b;
}

.account-tickets.is-list .account-tickets-no {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
  background: rgba(38, 56, 89, 0.05);
}

.account-tickets.is-list .account-tickets-category {
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
  background: rgba(38, 56, 89, 0.05);
  padding: 0.12rem 0.45rem;
}

.account-tickets.is-list .ticket-status {
  margin-inline-start: auto;
  font-size: 0.5625rem;
  padding: 0.15rem 0.45rem;
  text-transform: capitalize;
  letter-spacing: 0;
}

.account-tickets-chat-chevron {
  flex-shrink: 0;
  color: #cbd5e1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.account-tickets-chat:hover .account-tickets-chat-chevron {
  color: #94a3b8;
  transform: translateX(2px);
}

[dir="rtl"] .account-tickets-chat:hover .account-tickets-chat-chevron {
  transform: translateX(-2px);
}

/* Detail view — full-width conversation panel */
.account-tickets.is-detail .account-tickets-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  background: #fff;
  animation: ticket-detail-in 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

@keyframes ticket-detail-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[dir="rtl"] .account-tickets.is-detail .account-tickets-panel {
  animation-name: ticket-detail-in-rtl;
}

@keyframes ticket-detail-in-rtl {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.account-tickets-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.account-tickets-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.55rem;
  margin-inline-start: -0.55rem;
  border: 0;
  border-radius: 0.5rem;
  background: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.account-tickets-back:hover {
  background: #f1f5f9;
  color: #122445;
}

.account-tickets-panel-head {
  flex-shrink: 0;
  padding: 0.75rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(38, 56, 89, 0.06);
  background: #fff;
}

.account-tickets-panel-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.account-tickets-panel-subject {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.35rem;
  line-height: 1.35;
  color: #122445;
}

.account-tickets-panel-meta {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.account-tickets-support-badge,
.account-tickets-filters,
.account-tickets-list-head,
.account-tickets-search-icon,
.account-tickets-compose-hint {
  display: none !important;
}

.account-tickets-thread {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
  gap: 0.65rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(38, 56, 89, 0.15) transparent;
}

.account-tickets-thread::-webkit-scrollbar {
  width: 5px;
}

.account-tickets-thread::-webkit-scrollbar-thumb {
  background: rgba(38, 56, 89, 0.12);
  border-radius: 999px;
}

.account-tickets-reply {
  gap: 0;
}

.account-tickets-reply-avatar,
.account-tickets-reply-body,
.account-tickets-reply-head,
.account-tickets-reply-role {
  display: none;
}

.account-tickets-reply-bubble {
  max-width: min(88%, 26rem);
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  box-shadow: none;
}

.account-tickets-reply.is-admin .account-tickets-reply-bubble {
  background: #fff;
  border: 1px solid rgba(38, 56, 89, 0.08);
  border-bottom-left-radius: 0.2rem;
}

.account-tickets-reply.is-user .account-tickets-reply-bubble {
  background: #263859;
  color: #fff;
  border-bottom-right-radius: 0.2rem;
}

.account-tickets-reply-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.account-tickets-reply.is-user .account-tickets-reply-label {
  display: none;
}

.account-tickets-reply-bubble time {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.625rem;
  opacity: 0.65;
  text-align: end;
}

.account-tickets-compose {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(38, 56, 89, 0.06);
  background: #fff;
}

.account-input--reply {
  min-height: 2.75rem;
  max-height: 7rem;
  resize: none;
  border-radius: 0.75rem;
}

.account-tickets-send {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: none;
}

.account-tickets-closed-notice {
  flex-shrink: 0;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(38, 56, 89, 0.06);
  font-size: 0.8125rem;
  color: #64748b;
  background: #f8fafc;
}

@media (max-width: 640px) {
  .account-tickets-chat {
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0.8rem;
  }

  .account-tickets-chat-chevron {
    display: none;
  }

  .account-tickets-chat-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .account-tickets.is-detail .account-tickets-panel {
    animation: none;
  }

  .account-tickets-chat {
    transition: none;
  }

  .account-tickets-chat:active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .trip-details-gallery-main,
  .trip-date-menu,
  .trip-itinerary-item,
  .trip-details-included-item,
  .trip-details-book-btn,
  .trip-details-back {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}

/* ── Company portal app shell ───────────────────────────────── */

.company-app {
  margin: 0;
  height: 100dvh;
  background: #eef1f6;
  color: #122445;
  overflow: hidden;
}

.cp-app {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.cp-sidebar {
  width: 16.75rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0f1c36 0%, #122445 58%, #1a3058 100%);
  color: #fff;
  height: 100dvh;
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: hidden;
}

.cp-brand {
  padding: 1.35rem 1.2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cp-brand-logo img {
  height: 2.35rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.cp-brand-kicker {
  margin-top: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ef7722;
}

.cp-company {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0.85rem 0.35rem;
  padding: 0.75rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
}

.cp-company-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}

.cp-company-logo--fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef7722, #122445);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cp-company-name {
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.25;
}

.cp-company-mail {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 10.5rem;
}

.cp-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0.75rem 0.5rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.cp-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.cp-nav-link svg { flex-shrink: 0; }

.cp-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cp-nav-link.is-active {
  background: #ef7722;
  color: #fff;
  box-shadow: 0 8px 18px rgba(239, 119, 34, 0.28);
}

.cp-sidebar-foot {
  margin-top: auto;
  flex-shrink: 0;
  padding: 0.85rem 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.12);
}

.cp-nav-link--ghost { color: rgba(255, 255, 255, 0.62); }

.cp-nav-link--danger {
  color: #fecaca;
  background: rgba(220, 38, 38, 0.14);
}

.cp-nav-link--danger:hover {
  background: rgba(220, 38, 38, 0.28);
  color: #fff;
}

.cp-sidebar-brand-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.65rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.45;
}

.cp-sidebar-brand-foot img {
  height: 1.35rem;
  width: auto;
  display: block;
}

.cp-workspace {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #eef1f6;
  overflow: hidden;
}

.cp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 36, 69, 0.08);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.cp-topbar-start,
.cp-topbar-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cp-topbar-end [data-dropdown] {
  position: relative;
}

.cp-crumb {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ef7722;
}

.cp-topbar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #122445;
  line-height: 1.2;
}

.cp-menu-btn,
.cp-chip,
.cp-user,
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
}

.cp-menu-btn {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: #f1f5f9;
  color: #122445;
}

.cp-chip,
.cp-user {
  padding: 0.35rem 0.65rem 0.35rem 0.4rem;
  border-radius: 999px;
  background: #f4f6fb;
  border: 1px solid rgba(18, 36, 69, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: #122445;
}

.cp-chip img,
.cp-user img,
.cp-user-fallback {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  object-fit: cover;
}

.cp-user-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef7722, #122445);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
}

.cp-user span {
  max-width: 9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cp-content {
  flex: 1;
  min-height: 0;
  padding: 1.35rem 1.5rem 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.cp-content.is-scrollable:not(.is-at-top) {
  box-shadow: inset 0 10px 10px -10px rgba(18, 36, 69, 0.08);
}

body.cp-sidebar-locked {
  overflow: hidden;
}

.cp-btn {
  padding: 0.62rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease;
}

.cp-btn--primary { background: #122445; color: #fff; }
.cp-btn--primary:hover { background: #1b3564; transform: translateY(-1px); }
.cp-btn--secondary,
.cp-btn--ghost {
  background: #fff;
  color: #122445;
  border: 1px solid rgba(18, 36, 69, 0.12);
}
.cp-btn--danger {
  background: #fff;
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.2);
}
.cp-btn--sm { padding: 0.42rem 0.75rem; font-size: 0.78rem; }

.company-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.company-header-actions { display: flex; gap: 0.5rem; }

.company-title {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 700;
  color: #122445;
}

.company-subtitle,
.company-kicker { color: #64748b; }

.company-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ef7722;
  margin-bottom: 0.15rem;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.company-stat-card,
.company-panel {
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.07);
  border-radius: 1.05rem;
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.04);
}

.company-stat-card {
  padding: 1.05rem 1.1rem 1rem;
  position: relative;
  overflow: hidden;
  animation: cpRise 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--load-delay, 0s);
}

.company-stat-icon {
  position: absolute;
  inset-inline-end: 0.9rem;
  top: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  background: rgba(239, 119, 34, 0.12);
  color: #ef7722;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.company-stat-card--bookings .company-stat-icon {
  background: rgba(38, 56, 89, 0.12);
  color: #263859;
}

.company-stat-card--confirmed .company-stat-icon {
  background: rgba(21, 128, 61, 0.12);
  color: #15803d;
}

.company-stat-card--revenue .company-stat-icon {
  background: rgba(239, 119, 34, 0.18);
  color: #c2410c;
}

.company-stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.company-stat-value {
  margin-top: 0.45rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #122445;
}

.company-stat-hint { color: #94a3b8; font-size: 0.8rem; margin-top: 0.15rem; }

.company-grid-2 {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-panel { padding: 1.15rem 1.2rem; margin-bottom: 1rem; }

.company-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.95rem;
}

.company-panel-head h2,
.company-panel-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #122445;
}

.company-panel-head a,
.company-inline-link {
  color: #ef7722;
  font-weight: 700;
  font-size: 0.84rem;
}

.company-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 11rem;
  padding-top: 0.4rem;
}

.company-chart-subtitle {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #94a3b8;
}

.company-chart-head {
  align-items: flex-start;
  gap: 1rem;
}

.company-chart-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.company-chart-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.company-chart-total strong {
  font-size: 1.45rem;
  font-weight: 800;
  color: #122445;
}

.company-chart-total span {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
}

.company-chart-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.company-chart-trend em {
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

.company-chart-trend.is-up {
  background: rgba(21, 128, 61, 0.12);
  color: #15803d;
}

.company-chart-trend.is-down {
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
}

.company-booking-chart {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  min-height: 13.5rem;
}

/* Simple monthly bookings chart */
.company-mchart {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.5rem;
  min-height: 11rem;
  --mchart-color: #2f4f73;
  --mchart-color-hover: #243f5c;
}

.company-mchart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1.35rem;
  color: #94a3b8;
  font-size: 0.65rem;
  font-weight: 600;
}

.company-mchart-body {
  position: relative;
  min-height: 11rem;
}

.company-mchart-grid {
  position: absolute;
  inset: 0 0 1.35rem;
  pointer-events: none;
}

.company-mchart-grid span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--line-pos);
  border-top: 1px solid rgba(18, 36, 69, 0.06);
}

.company-mchart-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 100%;
  padding-bottom: 1.35rem;
}

.company-mchart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  min-width: 0;
}

.company-mchart-value {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1;
}

.company-mchart-col {
  width: 100%;
  max-width: 1.65rem;
  height: 8.5rem;
  display: flex;
  align-items: flex-end;
  border-radius: 0.35rem 0.35rem 0 0;
  background: #eef2f7;
  overflow: hidden;
}

.company-mchart-col::after {
  content: '';
  display: block;
  width: 100%;
  height: var(--bar-height, 0%);
  min-height: 0;
  border-radius: 0.35rem 0.35rem 0 0;
  background: var(--mchart-color);
  transform-origin: bottom;
  animation: companyMchartGrow 0.55s ease both;
  animation-delay: var(--bar-delay, 0s);
  transition: background 0.15s ease;
}

.company-mchart-bar.is-zero .company-mchart-col::after {
  height: 3px;
  min-height: 3px;
  background: #cbd5e1;
}

.company-mchart-bar.is-zero .company-mchart-value {
  color: #94a3b8;
}

.company-mchart-bar:hover .company-mchart-col::after,
.company-mchart-bar.is-active .company-mchart-col::after {
  background: var(--mchart-color-hover);
}

.company-mchart-month {
  font-size: 0.66rem;
  font-weight: 600;
  color: #64748b;
}

.company-mchart-bar:hover .company-mchart-month,
.company-mchart-bar.is-active .company-mchart-month {
  color: #122445;
}

@keyframes companyMchartGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.company-chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 1.55rem;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 600;
}

.company-chart-plot {
  position: relative;
  min-height: 13.5rem;
}

.company-chart-gridlines {
  position: absolute;
  inset: 0 0 1.55rem;
  pointer-events: none;
}

.company-chart-gridlines span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--line-pos);
  border-top: 1px dashed rgba(18, 36, 69, 0.08);
}

.company-bars--bookings {
  position: relative;
  z-index: 1;
  height: calc(100% - 0.2rem);
  padding-bottom: 1.55rem;
}

.company-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.company-bar:focus-visible {
  outline: 2px solid rgba(239, 119, 34, 0.45);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.company-bar-track {
  width: 100%;
  max-width: 2rem;
  height: 9.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.company-bar-fill {
  width: 100%;
  height: var(--bar-height, 0%);
  min-height: 0;
  border-radius: 999px 999px 0.4rem 0.4rem;
  background: linear-gradient(180deg, #ff9a4d 0%, #ef7722 42%, #122445 100%);
  box-shadow: 0 10px 18px rgba(239, 119, 34, 0.18);
  transform-origin: bottom;
  animation: companyBarGrow 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--bar-delay, 0s);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.company-bar.is-empty .company-bar-fill {
  height: 0.28rem;
  min-height: 0.28rem;
  opacity: 0.22;
  box-shadow: none;
}

.company-bar-value {
  font-size: 0.72rem;
  font-weight: 700;
  color: #122445;
  min-height: 1rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.company-bar:not(.is-empty) .company-bar-value,
.company-bar.is-active .company-bar-value {
  opacity: 1;
  transform: none;
}

.company-bar:hover .company-bar-fill,
.company-bar.is-active .company-bar-fill {
  filter: brightness(1.06);
  box-shadow: 0 12px 22px rgba(239, 119, 34, 0.24);
}

.company-bar-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% - 0.15rem);
  transform: translate(-50%, 6px);
  min-width: 6.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.65rem;
  background: #122445;
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3;
}

.company-bar-tooltip strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.1;
}

.company-bar-tooltip em {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.64rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}

.company-bar:hover .company-bar-tooltip,
.company-bar.is-active .company-bar-tooltip,
.company-bar:focus-visible .company-bar-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.company-bar-label {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 600;
}

.company-status-panel .company-panel-head {
  align-items: flex-start;
}

.company-status-total {
  font-size: 1.35rem;
  font-weight: 800;
  color: #122445;
  line-height: 1;
}

.company-status-list--bookings {
  margin-top: 0.35rem;
}

.company-status-list--bookings li {
  grid-template-columns: 7rem minmax(0, 1fr) auto;
}

.company-status-legend {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(18, 36, 69, 0.06);
}

.company-status-legend-item {
  flex: 1;
  text-align: center;
  padding: 0.45rem 0.35rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.company-status-legend-item--confirmed {
  background: rgba(21, 128, 61, 0.1);
  color: #15803d;
}

.company-status-legend-item--pending {
  background: rgba(239, 119, 34, 0.12);
  color: #c2410c;
}

.company-status-legend-item--cancelled {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}

@keyframes companyBarGrow {
  from {
    transform: scaleY(0);
    opacity: 0.35;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes cpRise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.company-status-list { display: flex; flex-direction: column; gap: 0.85rem; }

.company-status-list li {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.company-status-meter {
  height: 0.42rem;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.company-status-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #ef7722;
}

.company-status {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
  background: #eef2f7;
  color: #334155;
}

.company-status--active,
.company-status--confirmed { background: rgba(21, 128, 61, 0.12); color: #15803d; }
.company-status--pending { background: rgba(239, 119, 34, 0.14); color: #c2410c; }
.company-status--draft,
.company-status--all { background: #eef2f7; color: #475569; }
.company-status--paid,
.company-status--verified { background: rgba(21, 128, 61, 0.12); color: #15803d; }
.company-status--processing,
.company-status--submitted { background: rgba(14, 165, 233, 0.14); color: #0369a1; }
.company-status--failed,
.company-status--cancelled,
.company-status--rejected { background: rgba(185, 28, 28, 0.12); color: #b91c1c; }
.company-status--refunded { background: rgba(124, 58, 237, 0.12); color: #6d28d9; }
.company-status--unpaid { background: #eef2f7; color: #475569; }

.company-table-wrap { overflow-x: auto; }
.company-table { width: 100%; border-collapse: collapse; }

.company-table th {
  text-align: start;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
  padding: 0.55rem 0.5rem;
}

.company-table td {
  padding: 0.82rem 0.5rem;
  border-top: 1px solid rgba(18, 36, 69, 0.06);
  color: #122445;
  font-size: 0.9rem;
  vertical-align: top;
}

.company-table tbody tr:hover { background: #f8fafc; }
.company-table a { color: #122445; font-weight: 700; }
.company-muted { display: block; color: #64748b; font-size: 0.78rem; }

.company-dl {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-dl li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: #64748b;
}
.company-dl strong { color: #122445; }

.company-payout-title-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.company-payout-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.company-payout-banner {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
  background: var(--cp-surface, #fff);
  border: 1px solid var(--cp-border, #e2e8f0);
}
.company-payout-banner--failed,
.company-payout-banner--cancelled {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.22);
  color: #b91c1c;
}
.company-payout-banner--paid {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.22);
  color: #15803d;
}
.company-payout-banner--processing {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.24);
}

.company-toolbar {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem;
  background: #fff;
  border-radius: 0.95rem;
  border: 1px solid rgba(18, 36, 69, 0.07);
}

.company-input {
  width: 100%;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(18, 36, 69, 0.12);
  border-radius: 0.7rem;
  background: #fff;
  color: #122445;
}

.company-toolbar .company-input { max-width: 18rem; }

.company-trip-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.company-trip-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.company-trip-stat strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #122445;
  line-height: 1;
}

.company-trip-stat span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

.company-trip-stat:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 119, 34, 0.25);
}

.company-trip-stat.is-active {
  background: linear-gradient(180deg, #fff7f0 0%, #fff 100%);
  border-color: rgba(239, 119, 34, 0.35);
  box-shadow: 0 10px 24px rgba(239, 119, 34, 0.1);
}

.company-filters {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(18, 36, 69, 0.07);
  box-shadow: 0 10px 28px rgba(18, 36, 69, 0.04);
}

.company-filters-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.company-search-field {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.15rem 0.85rem;
  border: 1px solid rgba(18, 36, 69, 0.12);
  border-radius: 0.8rem;
  background: #f8fafc;
}

.company-search-field svg { color: #94a3b8; flex-shrink: 0; }

.company-input--search {
  border: 0;
  background: transparent;
  padding-inline: 0;
  box-shadow: none;
}

.company-filters-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.company-filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

.company-filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.company-results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.company-results-copy {
  color: #64748b;
  font-size: 0.86rem;
}

.company-results-copy strong { color: #122445; }

.company-view-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
}

.company-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: #64748b;
  cursor: pointer;
}

.company-view-btn.is-active {
  background: #122445;
  color: #fff;
}

.company-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px dashed rgba(18, 36, 69, 0.12);
}

.company-empty-state-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f8fafc;
  color: #64748b;
}

.company-empty-state h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #122445;
}

.company-empty-state p {
  margin-top: 0.35rem;
  color: #64748b;
}

.company-empty-state-actions {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.company-trip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.company-trip-card {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(18, 36, 69, 0.07);
  box-shadow: 0 10px 24px rgba(18, 36, 69, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-trip-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.company-trip-media-badges {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.company-trip-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.company-trip-badge--offer {
  background: rgba(239, 119, 34, 0.92);
  color: #fff;
}

.company-trip-badge--warn {
  background: rgba(185, 28, 28, 0.9);
  color: #fff;
}

.company-trip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(18, 36, 69, 0.08);
}

.company-trip-img { width: 100%; height: 10.5rem; object-fit: cover; transition: transform 0.35s ease; }
.company-trip-card:hover .company-trip-img { transform: scale(1.04); }
.company-trip-body { padding: 0.95rem 1rem 1.05rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.company-trip-top { display: flex; justify-content: space-between; gap: 0.5rem; align-items: center; }
.company-trip-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.company-trip-price { font-weight: 800; color: #122445; font-size: 0.9rem; white-space: nowrap; }
.company-trip-body h3 { font-weight: 700; color: #122445; line-height: 1.3; }
.company-trip-body h3 a { color: inherit; }
.company-trip-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #64748b;
  font-size: 0.84rem;
}
.company-trip-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 600;
}
.company-trip-type {
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
}
.company-trip-capacity-wrap { margin-top: 0.15rem; }
.company-trip-capacity-head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: #64748b;
  margin-bottom: 0.3rem;
}
.company-trip-capacity {
  height: 0.38rem;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}
.company-trip-capacity span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef7722, #122445);
}
.company-trip-actions { display: flex; gap: 0.45rem; margin-top: auto; padding-top: 0.45rem; }

.company-trip-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.company-trip-row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.07);
  border-radius: 1rem;
  box-shadow: 0 8px 22px rgba(18, 36, 69, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.company-trip-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 36, 69, 0.07);
}

.company-trip-row-media {
  position: relative;
  display: block;
  border-radius: 0.8rem;
  overflow: hidden;
}

.company-trip-row-media img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  display: block;
}

.company-trip-row-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.company-trip-row-head h3 {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #122445;
}

.company-trip-row-meta,
.company-trip-row-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  color: #64748b;
  font-size: 0.8rem;
}

.company-trip-row-stats {
  margin-top: 0.45rem;
}

.company-trip-row-stats .company-trip-capacity {
  width: 6.5rem;
}

.company-trip-row-stats em {
  font-style: normal;
  font-size: 0.72rem;
  color: #94a3b8;
}

.company-trip-row-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.company-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.company-field { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.82rem; font-weight: 600; color: #475569; }
.company-field--full { grid-column: 1 / -1; }
.company-field[hidden],
.checkout-field[hidden] { display: none !important; }

.trip-type-pills {
  display: flex;
  gap: 0.25rem;
  padding: 0.18rem;
  border-radius: 0.75rem;
  background: #f4f6f9;
}

.trip-type-pill {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.55rem 0.45rem;
  border: 0;
  border-radius: 0.58rem;
  background: transparent;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.trip-type-pill:hover {
  color: #122445;
  background: rgba(255, 255, 255, 0.7);
}

.trip-type-pill.is-active {
  background: #fff;
  color: #ef7722;
  box-shadow: 0 1px 4px rgba(18, 36, 69, 0.1);
}

[data-form-theme='admin'] .trip-type-pills {
  background: var(--adm-input-bg);
  border: 1px solid var(--adm-border);
}

[data-form-theme='admin'] .trip-type-pill {
  color: var(--adm-text-muted);
}

[data-form-theme='admin'] .trip-type-pill:hover {
  color: var(--adm-heading);
  background: rgba(255, 255, 255, 0.04);
}

[data-form-theme='admin'] .trip-type-pill.is-active {
  background: var(--adm-surface);
  color: var(--adm-accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.company-check { display: flex; align-items: center; gap: 0.5rem; margin: 1rem 0; color: #334155; }
.company-form-actions,
.company-status-form { display: flex; gap: 0.6rem; align-items: center; }

.company-trip-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-form-section {
  padding: 1.15rem 1.2rem;
}

.company-form-section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.company-form-section-head h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #122445;
}

.company-form-section-head p {
  margin-top: 0.25rem;
  color: #94a3b8;
  font-size: 0.8rem;
}

.company-form-grid--stack { grid-template-columns: 1fr; }

.company-textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.company-form-actions--footer {
  justify-content: flex-end;
  margin-top: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
}

.company-form-actions--footer .trip-form-submit-secondary { order: 2; }
.company-form-actions--footer .trip-form-submit-primary { order: 3; }

.company-form-actions--sticky {
  position: sticky;
  bottom: 0.75rem;
  z-index: 5;
  padding: 0.85rem 1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 36, 69, 0.08);
  box-shadow: 0 12px 30px rgba(18, 36, 69, 0.08);
  backdrop-filter: blur(10px);
}

.company-media-limits {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-align: end;
}

.company-media-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 10.5rem;
  padding: 1.25rem;
  border: 1.5px dashed rgba(18, 36, 69, 0.16);
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.company-media-dropzone.is-dragover {
  border-color: rgba(239, 119, 34, 0.55);
  background: #fff7f0;
  transform: translateY(-1px);
}

.company-media-dropzone-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(18, 36, 69, 0.06);
  color: #122445;
}

.company-media-dropzone-title { font-weight: 700; color: #122445; }
.company-media-dropzone-copy { color: #94a3b8; font-size: 0.82rem; }

.trip-date-editor-list,
.trip-itinerary-editor-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.trip-date-editor-card,
.trip-itinerary-editor-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
}
.trip-date-editor-head,
.trip-itinerary-editor-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.trip-date-editor-badge,
.trip-itinerary-editor-day { font-size: 0.75rem; font-weight: 700; color: #2563eb; text-transform: uppercase; }
.trip-date-editor-remove { background: none; border: none; color: #ef4444; font-size: 1.25rem; cursor: pointer; }
.trip-date-editor-grid,
.trip-itinerary-editor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.trip-itinerary-editor-grid--stay { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trip-itinerary-editor-label {
  margin: 0.35rem 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.trip-itinerary-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
}
.trip-itinerary-editor-card.is-stay {
  background: #fffaf0;
  border-color: rgba(196, 163, 90, 0.35);
}
.trip-itinerary-editor-card.is-activity {
  background: #f8fafc;
}
.trip-form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.trip-form-field span { font-size: 0.78rem; color: #64748b; font-weight: 500; }
.trip-form-field--full { grid-column: 1 / -1; }

.dest-picker {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.dest-picker-control { position: relative; }
.dest-picker-menu {
  position: absolute;
  z-index: 40;
  inset-inline: 0;
  top: calc(100% + 0.35rem);
  max-height: min(28rem, 70vh);
  overflow: auto;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}
.dest-picker-group {
  margin: 0.35rem 0 0.15rem;
  padding: 0.45rem 0.7rem 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #64748b;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.dest-picker-group:first-child {
  margin-top: 0;
}
.dest-picker-menu[hidden] { display: none !important; }
.dest-picker--compact .dest-picker-menu { top: calc(100% + 0.25rem); }
.dest-picker-option {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border: 0;
  background: transparent;
  border-radius: 0.6rem;
  text-align: start;
  cursor: pointer;
  color: #122445;
}
.dest-picker-option small {
  color: #94a3b8;
  font-size: 0.72rem;
}
.dest-picker-option:hover,
.dest-picker-option.is-active { background: #f1f5f9; }
.dest-picker-option--other { color: #2563eb; font-weight: 600; }
.dest-picker-empty {
  margin: 0;
  padding: 0.45rem 0.7rem;
  color: #94a3b8;
  font-size: 0.8rem;
}
.dest-picker-other { display: flex; }
.trip-form-empty { font-size: 0.85rem; color: #94a3b8; margin: 0 0 0.75rem; }
.trip-json-field { display: none !important; }

.trip-price-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.28rem;
  margin-bottom: 1rem;
  width: fit-content;
  max-width: 100%;
  background: #f1f5f9;
  border-radius: 999px;
}
.trip-price-mode label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}
.trip-price-mode label input { position: absolute; opacity: 0; pointer-events: none; }
.trip-price-mode label.is-on {
  background: #122445;
  color: #fff;
  box-shadow: 0 6px 16px rgba(18, 36, 69, 0.16);
}
.trip-room-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.trip-room-type-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.trip-room-type-card.is-on {
  background: #fff;
  border-color: rgba(239, 119, 34, 0.45);
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.08);
}
.trip-room-type-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  margin: 0;
}
.trip-room-type-toggle input {
  margin-top: 0.2rem;
  accent-color: #ef7722;
}
.trip-room-type-toggle strong {
  display: block;
  color: #122445;
  font-size: 0.95rem;
}
.trip-room-type-toggle em {
  display: block;
  font-style: normal;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
}
.trip-room-type-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.trip-date-editor-head-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.trip-date-editor-link {
  background: none;
  border: none;
  padding: 0;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.trip-date-editor-link:hover { text-decoration: underline; }
.trip-date-customize {
  margin-top: 0.65rem;
  color: #64748b;
}
.trip-date-duration {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}
.trip-date-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}
.trip-date-chip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: baseline;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.75rem;
  color: #64748b;
}
.trip-date-chip strong {
  color: #122445;
  font-size: 0.78rem;
}
.trip-date-prices {
  margin-top: 0.85rem;
}
.trip-date-prices-label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.trip-date-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.trip-date-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trip-date-empty {
  padding: 1rem 0.15rem 0.35rem;
}
.trip-date-empty-title {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #122445;
}
.trip-date-rooms {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e2e8f0;
}
.trip-date-room-row {
  display: grid;
  grid-template-columns: minmax(4.5rem, 6rem) repeat(auto-fit, minmax(7rem, 1fr));
  gap: 0.6rem;
  align-items: end;
}
.trip-date-room-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #122445;
  padding-bottom: 0.45rem;
}

@media (max-width: 720px) {
  .trip-room-type-grid,
  .trip-room-type-fields,
  .trip-date-room-row,
  .trip-date-price-grid {
    grid-template-columns: 1fr;
  }
  .trip-date-room-name { padding-bottom: 0; }
}

.company-media-feedback {
  margin-top: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.company-media-feedback.is-error { background: rgba(185, 28, 28, 0.08); color: #b91c1c; }
.company-media-feedback.is-success { background: rgba(21, 128, 61, 0.08); color: #15803d; }

.company-media-progress {
  margin-top: 0.65rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.company-media-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ef7722, #122445);
  transition: width 0.2s ease;
}

.company-media-block { margin-top: 1rem; }

.company-media-block-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.company-media-block-head h3 { font-size: 0.92rem; font-weight: 700; color: #122445; }
.company-media-block-head span { font-size: 0.75rem; color: #94a3b8; font-weight: 600; }

.company-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
  gap: 0.75rem;
}

.company-media-item {
  position: relative;
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 36, 69, 0.08);
  background: #f8fafc;
}

.company-media-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.company-media-cover {
  position: absolute;
  top: 0.45rem;
  inset-inline-start: 0.45rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(18, 36, 69, 0.82);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
}

.company-media-item-actions {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  gap: 0.25rem;
  padding: 0.45rem;
  background: linear-gradient(0deg, rgba(15, 28, 54, 0.82), transparent);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.company-media-item:hover .company-media-item-actions,
.company-media-item:focus-within .company-media-item-actions { opacity: 1; }

.company-media-action {
  border: 0;
  border-radius: 0.45rem;
  padding: 0.28rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: #122445;
  cursor: pointer;
}

.company-media-action--danger { color: #b91c1c; }

.company-media-list { display: flex; flex-direction: column; gap: 0.65rem; }

.company-media-video-item {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(18, 36, 69, 0.08);
  background: #f8fafc;
}

.company-media-video-item video {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.7rem;
  background: #000;
}

.company-media-video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.company-media-video-meta strong { color: #122445; font-size: 0.86rem; }
.company-media-empty { color: #94a3b8; font-size: 0.82rem; padding: 0.35rem 0; }

.company-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.75rem;
}

.company-detail-gallery img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.9rem;
}

.company-detail-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 0.85rem;
}

.company-detail-videos video {
  width: 100%;
  border-radius: 0.9rem;
  background: #000;
}

.company-booking-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.company-booking-stat {
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
}

.company-booking-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #122445;
  line-height: 1.1;
}

.company-booking-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
}

.company-booking-tabs { margin-bottom: 1rem; }

.company-header--compact {
  margin-bottom: 0.85rem;
}

.company-header-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.company-header-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  color: #122445;
  white-space: nowrap;
}

.company-header-pill--muted {
  color: #64748b;
  background: #f8fafc;
}

.company-booking-tabs--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.company-booking-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
  font-size: 0.76rem;
  font-weight: 600;
  color: #64748b;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.company-booking-tab strong {
  font-size: 0.76rem;
  font-weight: 800;
  color: #122445;
}

.company-booking-tab:hover {
  border-color: rgba(239, 119, 34, 0.25);
}

.company-booking-tab.is-active {
  background: #fff7f0;
  border-color: rgba(239, 119, 34, 0.35);
  color: #c2410c;
}

.company-booking-tab.is-active strong {
  color: #c2410c;
}

.company-booking-filters--compact {
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.75rem;
}

.company-booking-filters--compact .company-filters-form {
  gap: 0.55rem;
}

.company-trip-filter-toolbar {
  grid-template-columns: minmax(9rem, 1.2fr) repeat(4, minmax(6.5rem, 0.9fr)) auto;
}

.company-trip-filters-advanced {
  padding-top: 0.15rem;
}

.company-trip-filters-advanced .company-filters-row--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-booking-filter-toolbar {
  display: grid;
  grid-template-columns: minmax(10rem, 1.5fr) repeat(3, minmax(7rem, 1fr)) auto;
  gap: 0.5rem;
  align-items: end;
}

.company-booking-filter-dates {
  display: grid;
  grid-template-columns: minmax(7rem, 0.9fr) minmax(8rem, 0.9fr) minmax(8rem, 0.9fr) minmax(0, 1.4fr);
  gap: 0.5rem;
  align-items: end;
}

.company-search-field--compact {
  padding: 0.1rem 0.65rem;
  min-height: 2.35rem;
}

.company-filter-field--compact span {
  font-size: 0.68rem;
}

.company-input--sm {
  min-height: 2.35rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
}

.company-filters-actions--inline {
  align-self: end;
  padding-bottom: 0.05rem;
}

.company-booking-presets--inline {
  align-self: end;
  padding-bottom: 0.15rem;
}

.company-table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(18, 36, 69, 0.06);
}

.company-table-toolbar .company-results-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #64748b;
}

.company-booking-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.company-preset-btn {
  border: 1px solid rgba(18, 36, 69, 0.1);
  background: #f8fafc;
  color: #475569;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.company-preset-btn.is-active,
.company-preset-btn:hover {
  border-color: rgba(239, 119, 34, 0.35);
  background: #fff7f0;
  color: #c2410c;
}

.company-filters-row--compact {
  grid-template-columns: 1fr 1fr;
}

.company-booking-table .company-table tbody tr {
  transition: background 0.16s ease;
}

.company-booking-row:hover {
  background: #f8fafc;
}

.company-booking-customer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.company-booking-avatar {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ef7722, #122445);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.company-booking-avatar--lg {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 0.95rem;
}

.company-booking-id {
  font-weight: 800;
  color: #122445;
}

.company-booking-hint {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.company-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.company-pagination--footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(18, 36, 69, 0.06);
  background: #fafbfd;
}

.company-page-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.company-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(18, 36, 69, 0.1);
  background: #fff;
  color: #122445;
  font-size: 0.82rem;
  font-weight: 700;
}

.company-page-btn.is-active {
  background: #122445;
  color: #fff;
  border-color: #122445;
}

.company-page-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.company-page-ellipsis {
  color: #94a3b8;
  padding: 0 0.15rem;
}

.company-booking-detail-head {
  align-items: flex-start;
}

.company-booking-detail-intro {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.company-status--lg {
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
}

.company-booking-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.company-booking-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.company-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(18, 36, 69, 0.06);
}

.company-detail-list li span {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

.company-detail-list li strong {
  color: #122445;
  text-align: end;
}

.company-detail-list a {
  color: #122445;
}

.company-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.company-booking-trip-card {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.company-booking-trip-card img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.8rem;
}

.company-booking-trip-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #122445;
}

.company-booking-trip-card p {
  color: #64748b;
  font-size: 0.84rem;
  margin-top: 0.15rem;
}

.company-booking-trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.45rem;
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 600;
}

.company-status-form--stack {
  flex-direction: column;
  align-items: stretch;
}

.company-booking-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.company-booking-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.company-booking-status-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 24px rgba(18, 36, 69, 0.04);
}

.company-booking-status-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.45rem;
}

.company-booking-status-card p {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #64748b;
}

.company-booking-privacy {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.8rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.5;
}

.company-cancel-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.company-cancel-form .company-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.company-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.company-timeline-item {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.75rem;
  padding-bottom: 1rem;
  position: relative;
}

.company-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 1rem;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

html[dir='rtl'] .company-timeline-item:not(:last-child)::before {
  left: auto;
  right: 0.45rem;
}

.company-timeline-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #cbd5e1;
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}

.company-timeline-item.is-latest .company-timeline-dot {
  background: #ef7722;
  box-shadow: 0 0 0 4px rgba(239, 119, 34, 0.18);
}

.company-timeline-item strong {
  color: #122445;
  font-size: 0.9rem;
}

.company-timeline-item p {
  color: #64748b;
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.company-timeline-item em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.72rem;
  color: #94a3b8;
}

.company-detail-hero { position: relative; border-radius: 1.1rem; overflow: hidden; margin-bottom: 1rem; }
.company-detail-hero img { width: 100%; height: 16.5rem; object-fit: cover; }
.company-detail-hero .company-status { position: absolute; top: 1rem; inset-inline-start: 1rem; }

.company-meta-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; margin-bottom: 1rem; }
.company-meta-grid span { display: block; font-size: 0.75rem; color: #64748b; }
.company-copy { color: #334155; line-height: 1.6; }
.company-copy.muted { color: #64748b; }
.company-alert { background: rgba(185, 28, 28, 0.08); color: #b91c1c; padding: 0.75rem 0.9rem; border-radius: 0.75rem; margin-bottom: 0.9rem; }
.company-empty { color: #64748b; padding: 1.5rem 0; }

.company-chat {
  display: grid;
  grid-template-columns: minmax(16rem, 20rem) minmax(0, 1fr);
  min-height: calc(100dvh - 8.5rem);
  background: #fff;
  border-radius: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(18, 36, 69, 0.07);
}

.company-chat-list { border-inline-end: 1px solid rgba(18, 36, 69, 0.08); overflow: auto; }
.company-chat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(18, 36, 69, 0.06);
  color: #122445;
}
.company-chat-item.is-active { background: rgba(239, 119, 34, 0.08); }
.company-chat-item.has-unread strong::after {
  content: '';
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-inline-start: 0.4rem;
  border-radius: 999px;
  background: #ef7722;
}
.company-chat-item span,
.company-chat-item em {
  font-size: 0.8rem;
  color: #64748b;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.company-chat-thread { display: flex; flex-direction: column; min-height: 28rem; }
.company-chat-head { padding: 1rem 1.1rem; border-bottom: 1px solid rgba(18, 36, 69, 0.08); }
.company-chat-head h2 { font-weight: 700; color: #122445; }
.company-chat-messages {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: auto;
  background: #f8fafc;
}
.company-chat-date { text-align: center; font-size: 0.75rem; color: #94a3b8; }
.company-chat-bubble {
  max-width: 78%;
  background: #fff;
  padding: 0.7rem 0.85rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(18, 36, 69, 0.06);
}
.company-chat-bubble.is-self {
  margin-inline-start: auto;
  background: #122445;
  color: #fff;
  border: 0;
}
.company-chat-bubble span { display: block; margin-top: 0.3rem; font-size: 0.72rem; opacity: 0.7; }
.company-chat-compose {
  display: flex;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(18, 36, 69, 0.08);
}

/* ── Company support tickets ─────────────────────────────── */

.company-header-pill--alert {
  background: #fff7f0;
  border-color: rgba(239, 119, 34, 0.35);
  color: #c2410c;
}

.company-support-page {
  animation: companySupportEnter 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes companySupportEnter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.company-support-table .company-support-row {
  transition: background 0.15s ease;
}

.company-support-row:hover { background: #f8fafc; }
.company-support-row.has-unread .company-support-subject-link { font-weight: 800; }

.company-support-ticket-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: #122445;
}

.company-support-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #ef7722;
  flex-shrink: 0;
}

.company-support-subject-link {
  color: #122445;
  font-weight: 600;
}

.company-support-subject-link:hover { color: #ef7722; }

.company-support-no {
  font-weight: 800;
  color: #64748b;
  font-size: 0.76rem;
}

.company-ticket-status,
.company-ticket-priority,
.company-ticket-category {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
}

.company-ticket-status--open { background: #dcfce7; color: #166534; }
.company-ticket-status--pending { background: #ffedd5; color: #c2410c; }
.company-ticket-status--resolved { background: #e0e7ff; color: #3730a3; }
.company-ticket-status--closed { background: #f1f5f9; color: #64748b; }

.company-ticket-priority--urgent { background: #fee2e2; color: #b91c1c; }
.company-ticket-priority--high { background: #ffedd5; color: #c2410c; }
.company-ticket-priority--normal { background: #f1f5f9; color: #475569; }
.company-ticket-priority--low { background: #f8fafc; color: #94a3b8; }

.company-ticket-category {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid rgba(18, 36, 69, 0.06);
}

/* Detail page */
.company-support-detail-page {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: calc(100dvh - 9rem);
}

.company-support-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.company-support-detail-top-main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.company-support-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  transition: color 0.15s ease;
}

.company-support-back:hover { color: #ef7722; }

.company-support-detail-title .company-title {
  margin-top: 0.15rem;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
}

.company-support-detail-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.company-support-detail-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.company-support-inline-form .company-input--sm {
  min-width: 8.5rem;
}

.company-support-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.company-support-meta-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
  font-size: 0.72rem;
  color: #64748b;
  transition: border-color 0.15s ease, background 0.15s ease;
}

a.company-support-meta-chip:hover {
  border-color: rgba(239, 119, 34, 0.3);
  background: #fffaf5;
}

.company-support-meta-chip strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #122445;
}

.company-support-chat-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.company-support-messages {
  flex: 1;
  min-height: 22rem;
  max-height: calc(100dvh - 20rem);
  overflow: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f8fafc;
}

.company-support-date {
  text-align: center;
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
}

.company-support-bubble {
  max-width: min(34rem, 72%);
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
  border-radius: 0.95rem;
  padding: 0.75rem 0.9rem;
  animation: companyBubbleIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes companyBubbleIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.company-support-bubble header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
}

.company-support-bubble header strong { color: #122445; font-weight: 700; }
.company-support-bubble header time { color: #94a3b8; }
.company-support-bubble p { color: #334155; line-height: 1.55; font-size: 0.9rem; }

.company-support-bubble.is-self {
  margin-inline-start: auto;
  background: #122445;
  border-color: #122445;
  color: #fff;
}

.company-support-bubble.is-self header strong,
.company-support-bubble.is-self header time,
.company-support-bubble.is-self p { color: #fff; }
.company-support-bubble.is-self header time { opacity: 0.75; }

.company-support-compose {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(18, 36, 69, 0.08);
  background: #fff;
}

.company-support-compose-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.65rem;
}

.company-support-compose-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.company-support-attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(18, 36, 69, 0.12);
  background: #f8fafc;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.company-support-attach-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.company-support-compose textarea {
  width: 100%;
  resize: none;
  min-height: 2.8rem;
}

.company-support-closed {
  padding: 1rem;
  background: #f8fafc;
  border-top: 1px solid rgba(18, 36, 69, 0.08);
  color: #64748b;
  font-size: 0.84rem;
  text-align: center;
}

.company-support-compose-hint {
  padding: 0 1rem 0.85rem;
  font-size: 0.72rem;
  color: #94a3b8;
}

.company-support-admin-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.company-support-admin-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
}

.company-support-admin-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  object-fit: contain;
  background: #fff7f0;
  padding: 0.25rem;
}

.company-support-admin-card strong {
  display: block;
  font-size: 0.84rem;
  color: #122445;
}

.company-support-admin-card span {
  font-size: 0.72rem;
  color: #64748b;
}

.company-support-bubble-admin {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.company-support-bubble-admin img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  object-fit: contain;
  background: #fff7f0;
  padding: 0.15rem;
  flex-shrink: 0;
}

.company-support-bubble:not(.is-self) {
  max-width: min(38rem, 80%);
}

.company-support-form-page .company-title { margin-top: 0.5rem; }

.company-support-new-panel {
  max-width: 42rem;
  padding: 1.25rem;
}

.company-form-grid--support {
  grid-template-columns: 1fr 1fr;
}

.company-settings-fields .company-form-actions,
.company-settings-password-form .company-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 36, 69, 0.06);
}

/* ── Company settings ────────────────────────────────────── */

.company-settings-page {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-settings-profile,
.company-settings-password,
.company-settings-docs {
  padding: 1.2rem 1.25rem;
}

.company-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.company-doc-card {
  border: 1px solid rgba(18, 36, 69, 0.08);
  border-radius: 1rem;
  padding: 0.9rem;
  background: #f8fafc;
}
.company-doc-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  margin: 0 0 0.65rem;
}
.company-doc-current {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}
.company-doc-current img {
  width: 100%;
  height: 7.5rem;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid #e2e8f0;
}
.company-doc-current span {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 600;
}
.company-doc-hint {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
}
@media (max-width: 720px) {
  .company-docs-grid { grid-template-columns: 1fr; }
  .company-booking-status-grid,
  .company-booking-detail-stats { grid-template-columns: 1fr; }
}

.company-settings-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.company-logo-picker {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.company-logo-picker-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(18, 36, 69, 0.1);
  background: #f8fafc;
}

.company-logo-picker-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-logo-picker-preview.is-empty {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #fff7f0, #eef2ff);
  border-style: dashed;
}

.company-logo-picker-fallback {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #122445;
}

.company-logo-picker-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
}

.company-logo-picker-spinner {
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid rgba(18, 36, 69, 0.12);
  border-top-color: #ef7722;
  border-radius: 999px;
  animation: companyLogoSpin 0.7s linear infinite;
}

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

.company-logo-picker-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 0.65rem;
  border: 1.5px dashed rgba(18, 36, 69, 0.14);
  border-radius: 0.85rem;
  background: #fafbfd;
  color: #64748b;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease;
}

.company-logo-picker-dropzone:hover,
.company-logo-picker-dropzone.is-dragover {
  border-color: rgba(239, 119, 34, 0.45);
  background: #fff7f0;
  color: #c2410c;
}

.company-logo-picker-dropzone p {
  font-size: 0.78rem;
  font-weight: 700;
  color: #122445;
}

.company-logo-picker-dropzone span {
  font-size: 0.68rem;
}

.company-logo-picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.company-logo-picker-feedback {
  font-size: 0.72rem;
  font-weight: 600;
  color: #b91c1c;
}

.company-logo-picker-feedback.is-success {
  color: #166534;
}

.company-settings-fields {
  min-width: 0;
}

.company-settings-alert {
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.company-settings-alert--error {
  background: rgba(185, 28, 28, 0.08);
  color: #b91c1c;
}

.company-settings-alert--success {
  background: rgba(22, 101, 52, 0.08);
  color: #166534;
}

.company-settings-password-form {
  max-width: 28rem;
}

.cp-sidebar-backdrop {
  display: none;
  pointer-events: none;
}

.cp-sidebar-backdrop:not([hidden]) {
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .company-stats,
  .company-trip-grid,
  .company-grid-2,
  .company-form-grid,
  .company-meta-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cp-sidebar {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    height: 100dvh;
    transform: translateX(-105%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 12px 0 40px rgba(15, 28, 54, 0.28);
    z-index: 45;
  }
  html[dir='rtl'] .cp-sidebar { transform: translateX(105%); }
  .company-app.is-sidebar-open .cp-sidebar { transform: none; }
  .cp-menu-btn { display: flex; }
  .company-app.is-sidebar-open .cp-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 28, 54, 0.45);
    z-index: 30;
  }
  .company-chat { grid-template-columns: 1fr; min-height: auto; }
  .company-support-detail-top { flex-direction: column; }
  .company-support-messages { max-height: calc(100dvh - 24rem); }
  .company-settings-layout { grid-template-columns: 1fr; }
  .company-logo-picker-preview { max-width: 11rem; }
  .cp-user span { display: none; }
  .company-stats,
  .company-trip-grid,
  .company-form-grid,
  .company-meta-grid,
  .company-grid-2 { grid-template-columns: 1fr; }
  .company-trip-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-filters-row { grid-template-columns: 1fr 1fr; }
  .company-trip-row {
    grid-template-columns: 1fr;
  }
  .company-trip-row-media img { height: 10rem; }
  .company-trip-row-actions {
    flex-direction: row;
  }
  .company-results-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .company-header { flex-direction: column; }
  .cp-content { padding: 1rem 0.9rem 1.5rem; }
  .company-booking-chart,
  .company-mchart {
    grid-template-columns: 1.5rem minmax(0, 1fr);
    min-height: 10rem;
  }
  .company-chart-plot { min-height: 11.5rem; }
  .company-mchart-body { min-height: 10rem; }
  .company-mchart-col { height: 7rem; max-width: 1.35rem; }
  .company-chart-meta { align-items: flex-start; }
  .company-status-list--bookings li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .company-status-legend { flex-direction: column; }
  .company-media-video-item { grid-template-columns: 1fr; }
  .company-form-section-head { flex-direction: column; }
  .company-media-limits { text-align: start; }
  .company-booking-filter-toolbar,
  .company-booking-filter-dates,
  .company-trip-filter-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .company-booking-filter-toolbar .company-search-field,
  .company-trip-filter-toolbar .company-search-field {
    grid-column: 1 / -1;
  }

  .company-filters-actions--inline {
    grid-column: 1 / -1;
  }

  .company-booking-presets--inline {
    grid-column: 1 / -1;
  }

  .company-header-meta { justify-content: flex-start; }

  .company-booking-detail-grid,
  .company-booking-detail-stats,
  .company-booking-status-grid,
  .company-payout-kpis,
  .company-booking-stats { grid-template-columns: 1fr 1fr; }
  .company-booking-trip-card { grid-template-columns: 1fr; }
  .company-filters-row--compact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .company-booking-status-grid,
  .company-booking-detail-stats { grid-template-columns: 1fr; }
}
.checkout-page { background: linear-gradient(180deg, #f8fafc 0%, #fff 28%); }
.checkout-shell { max-width: 72rem; }
.max-w-220 { max-width: 42rem; }
.checkout-header { margin: 1.5rem 0 2rem; }
.checkout-kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #ef7722; margin-bottom: 0.35rem; }
.checkout-title { font-size: clamp(1.75rem, 4vw, 2.35rem); font-weight: 800; color: #122445; line-height: 1.15; }
.checkout-subtitle { margin-top: 0.5rem; color: #64748b; font-size: 1rem; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr); gap: 1.5rem; align-items: start; }
.checkout-card { background: #fff; border: 1px solid #e8edf3; border-radius: 1rem; padding: 1.25rem; box-shadow: 0 10px 30px rgba(18, 36, 69, 0.05); margin-bottom: 1rem; }
.checkout-card-title { font-size: 1.05rem; font-weight: 700; color: #122445; margin-bottom: 1rem; }
.checkout-trip-head { display: flex; gap: 1rem; align-items: center; }
.checkout-trip-image { width: 5.5rem; height: 5.5rem; border-radius: 0.85rem; object-fit: cover; flex-shrink: 0; }
.checkout-trip-meta { color: #64748b; font-size: 0.875rem; margin-top: 0.2rem; }
.checkout-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: start;
}
.checkout-field { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.checkout-field--rooms { grid-column: 1 / -1; }
.checkout-label { font-size: 0.72rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; }
.checkout-input {
  width: 100%;
  min-height: 2.75rem;
  border: 1px solid #dbe3ec;
  border-radius: 0.75rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  color: #122445;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-input--select {
  padding-right: 2.35rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem;
  cursor: pointer;
}
html[dir='rtl'] .checkout-input--select {
  padding-right: 0.9rem;
  padding-left: 2.35rem;
  background-position: left 0.85rem center;
}
.checkout-input:focus { outline: none; border-color: #ef7722; box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.12); }
.checkout-rooms-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.checkout-stepper {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  border: 1px solid #dbe3ec;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.checkout-stepper-btn {
  width: 2.75rem;
  min-height: 2.75rem;
  border: 0;
  background: #f8fafc;
  color: #263859;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.checkout-stepper-btn:hover:not(:disabled) { background: #eef2f7; color: #122445; }
.checkout-stepper-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.checkout-stepper-input {
  width: 2.75rem;
  min-width: 2.75rem;
  border: 0;
  border-inline: 1px solid #dbe3ec;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #122445;
  padding: 0.65rem 0;
  background: #fff;
  -moz-appearance: textfield;
}
.checkout-stepper-input::-webkit-outer-spin-button,
.checkout-stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.checkout-field--rooms .checkout-field-hint {
  margin: 0;
  flex: 1;
  min-width: min(100%, 16rem);
}
.checkout-aside-sticky { position: sticky; top: 6.5rem; }
.checkout-summary-lines { display: grid; gap: 0.65rem; }
.checkout-summary-lines div { display: flex; justify-content: space-between; gap: 1rem; color: #475569; font-size: 0.92rem; }
.checkout-summary-total { padding-top: 0.75rem; margin-top: 0.35rem; border-top: 1px dashed #dbe3ec; font-weight: 700; color: #122445 !important; font-size: 1rem !important; }
.checkout-methods { display: grid; gap: 0.55rem; }
.checkout-method { display: flex; align-items: center; gap: 0.65rem; padding: 0.8rem 0.95rem; border: 1.5px solid #e2e8f0; border-radius: 0.85rem; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.checkout-method.is-selected { border-color: #ef7722; background: #fff9f5; transform: translateY(-1px); }
.checkout-method input { accent-color: #ef7722; }
.checkout-method-label { font-weight: 600; color: #122445; }
.checkout-payout-panel { margin-top: 1rem; padding: 0.95rem; border-radius: 0.85rem; background: #f8fafc; border: 1px dashed #dbe3ec; opacity: 0; transform: translateY(6px); transition: opacity 0.25s, transform 0.25s; }
.checkout-payout-panel.is-visible { opacity: 1; transform: translateY(0); }
.checkout-payout-title { font-weight: 700; color: #263859; margin-bottom: 0.35rem; }
.checkout-payout-lines { color: #475569; font-size: 0.9rem; margin: 0.35rem 0 0.65rem 1rem; }
.checkout-payout-note { font-size: 0.82rem; color: #64748b; line-height: 1.5; }
.checkout-transfer-card { padding: 1.35rem 1.4rem 1.5rem; }
.checkout-transfer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.15rem;
  margin-bottom: 1.15rem;
}
.checkout-field--full { grid-column: 1 / -1; }
.checkout-proof-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.checkout-dropzone {
  position: relative;
  display: block;
  min-height: 6.75rem;
  border: 1.5px dashed #cbd5e1;
  border-radius: 0.9rem;
  padding: 1.1rem 1.15rem;
  cursor: pointer;
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.checkout-dropzone:hover {
  border-color: #f59e0b;
  background: #fffaf5;
  box-shadow: 0 8px 24px rgba(239, 119, 34, 0.08);
}
.checkout-dropzone.has-file {
  border-style: solid;
  border-color: #86efac;
  background: #f0fdf4;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.08);
}
.checkout-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.checkout-dropzone-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 4.5rem;
  pointer-events: none;
  text-align: start;
}
.checkout-dropzone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.checkout-dropzone:hover .checkout-dropzone-icon {
  color: #ef7722;
  border-color: #fdba74;
  background: #fff7ed;
}
.checkout-dropzone.has-file .checkout-dropzone-icon {
  color: #16a34a;
  border-color: #86efac;
  background: #dcfce7;
}
.checkout-dropzone-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.checkout-dropzone-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #122445;
  line-height: 1.3;
}
.checkout-dropzone-hint {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #64748b;
  word-break: break-word;
}
.checkout-dropzone.has-file .checkout-dropzone-title { color: #166534; }
.checkout-dropzone.has-file .checkout-dropzone-hint {
  color: #15803d;
  font-weight: 600;
}
.checkout-transfer-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.15rem;
}
.checkout-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e8edf3;
  border-radius: 0.85rem;
  background: #f8fafc;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569;
  margin: 0;
  cursor: pointer;
}
.checkout-checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #ef7722;
}
.checkout-submit {
  margin-top: 0;
  min-height: 3.1rem;
  text-decoration: none;
}
.checkout-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}
.checkout-itinerary-list { margin-top: 0.25rem; }
.checkout-confirmation-card { background: #fff; border: 1px solid #e8edf3; border-radius: 1.1rem; padding: 2rem; box-shadow: 0 16px 40px rgba(18, 36, 69, 0.08); text-align: center; }
.checkout-confirmation-icon { width: 4rem; height: 4rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.checkout-confirmation-icon.is-pending { background: #fff7ed; color: #ef7722; }
.checkout-confirmation-icon.is-verified { background: #ecfdf5; color: #059669; }
.checkout-confirmation-icon.is-rejected { background: #fef2f2; color: #dc2626; }
.checkout-confirmation-meta { display: grid; gap: 0.75rem; text-align: left; margin: 1.5rem 0; padding: 1rem; background: #f8fafc; border-radius: 0.85rem; }
.checkout-confirmation-meta div { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; color: #475569; }
.checkout-confirmation-meta dt { font-weight: 600; }
.checkout-confirmation-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.checkout-proof-preview { margin: 1rem 0; text-align: left; }
.checkout-proof-image { max-width: 100%; border-radius: 0.75rem; border: 1px solid #e2e8f0; margin-top: 0.5rem; }
.checkout-payment-badge { display: inline-flex; padding: 0.2rem 0.55rem; border-radius: 999px; font-size: 0.78rem; font-weight: 700; text-transform: capitalize; }
.checkout-payment-badge--submitted { background: #fff7ed; color: #c2410c; }
.checkout-payment-badge--verified { background: #ecfdf5; color: #047857; }
.checkout-payment-badge--rejected { background: #fef2f2; color: #b91c1c; }
.checkout-payment-badge--unpaid { background: #f1f5f9; color: #475569; }
.checkout-resubmit-form { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; text-align: left; }
.checkout-reject-note { color: #b91c1c; font-size: 0.88rem; margin-bottom: 0.75rem; }
.account-booking-payment { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.35rem; }
@media (max-width: 960px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-aside-sticky { position: static; }
  .checkout-field-grid { grid-template-columns: 1fr; }
  .checkout-transfer-grid { grid-template-columns: 1fr; }
}

.site-partner-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.4rem;
  color: #122445;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}
.site-partner-link:hover { color: #ef7722; }

.partner-page {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(239, 119, 34, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 48%, #f8fafc 100%);
}
.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}
.partner-aside {
  padding: 1.5rem 0.25rem 1rem;
}
.partner-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(239, 119, 34, 0.12);
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.partner-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
  color: #122445;
  margin: 0 0 0.85rem;
}
.partner-lead {
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1.4rem;
  max-width: 36rem;
}
.partner-points {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.partner-points li {
  display: flex;
  gap: 0.7rem;
  color: #334155;
  line-height: 1.5;
}
.partner-points span {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #122445;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  margin-top: 0.1rem;
}
.partner-signin { color: #64748b; font-size: 0.92rem; }
.partner-link {
  background: none;
  border: none;
  color: #ef7722;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}
.partner-card {
  background: #fff;
  border: 1px solid rgba(18, 36, 69, 0.08);
  border-radius: 1.4rem;
  padding: 1.5rem 1.45rem 1.6rem;
  box-shadow: 0 24px 50px rgba(18, 36, 69, 0.08);
}
.partner-card-title {
  margin: 0;
  font-size: 1.2rem;
  color: #122445;
}
.partner-card-copy {
  margin: 0.35rem 0 1.15rem;
  color: #94a3b8;
  font-size: 0.88rem;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.partner-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}
.partner-field--full { grid-column: 1 / -1; }
.partner-input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: #122445;
  background: #f8fafc;
}
.partner-input:focus {
  outline: none;
  border-color: rgba(239, 119, 34, 0.55);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 119, 34, 0.12);
}
.partner-textarea { min-height: 5.5rem; resize: vertical; }
.partner-password { position: relative; }
.partner-password .partner-input { padding-inline-end: 2.6rem; }
.partner-password .auth-password-toggle {
  position: absolute;
  inset-inline-end: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
}
.partner-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0 0.9rem;
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.partner-divider::before,
.partner-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.partner-check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 1rem 0 1.1rem;
  color: #475569;
  font-size: 0.84rem;
}
.partner-check a { color: #ef7722; font-weight: 600; }
.partner-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.1rem;
  border: none;
  border-radius: 0.95rem;
  background: #ef7722;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(239, 119, 34, 0.28);
}
.partner-submit:hover { background: #dd6a18; }
.partner-docs-hint {
  margin: -0.2rem 0 0.85rem;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.5;
}
.partner-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.partner-upload {
  position: relative;
}
.partner-upload-ui {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.1rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px dashed #cbd5e1;
  border-radius: 0.85rem;
  background: #f8fafc;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.partner-upload-ui em {
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.partner-upload:hover .partner-upload-ui,
.partner-upload.has-file .partner-upload-ui {
  border-color: #ef7722;
  background: #fff9f5;
  color: #122445;
}
.cp-verify-banner {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-size: 0.88rem;
  line-height: 1.5;
}
.cp-verify-banner.is-rejected {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}
.cp-payout-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 0 1.25rem;
  padding: 1.2rem 1.3rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  color: #9a3412;
  border: 2px solid #fb923c;
  box-shadow: 0 12px 28px rgba(239, 119, 34, 0.14);
}
.cp-payout-banner-icon {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #ea580c;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}
.cp-payout-banner-copy {
  min-width: 0;
}
.cp-payout-banner-copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #9a3412;
}
.cp-payout-banner-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #7c2d12;
}
.cp-payout-banner-btn {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #122445;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}
.cp-payout-banner-btn:hover { background: #0f1c36; }
.site-payout-banner {
  background: #fff7ed;
  border-bottom: 2px solid #fdba74;
  color: #9a3412;
}
.site-payout-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  max-width: 85rem;
  margin: 0 auto;
  padding: 0.85rem 1.1rem;
}
.site-payout-banner-inner strong {
  font-size: 0.95rem;
}
.site-payout-banner-inner span {
  flex: 1 1 16rem;
  font-size: 0.88rem;
  line-height: 1.45;
}
.site-payout-banner-inner a {
  font-weight: 700;
  color: #122445;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.company-settings-alert--warning {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}
.partner-payout-note {
  margin: 0.35rem 0 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .partner-layout,
  .partner-grid { grid-template-columns: 1fr; }
  .partner-card { padding: 1.2rem 1.05rem 1.3rem; }
}

.umrah-page {
  padding-bottom: 3rem;
}

.umrah-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.35rem;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(196, 163, 90, 0.22) 0%, transparent 46%),
    linear-gradient(135deg, #122445 0%, #1a2f4d 58%, #2a2416 100%);
  color: #fff;
}

.umrah-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8d19a;
}

.umrah-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.umrah-lead {
  max-width: 38rem;
  margin: 0.7rem 0 1.15rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.umrah-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.umrah-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8efd8;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.umrah-chip:hover,
.umrah-chip.is-active {
  background: #c4a35a;
  border-color: #c4a35a;
  color: #1a1408;
}

.checkout-refund-form {
  margin-top: 1.5rem;
  padding: 1.25rem 1.25rem 1.35rem;
  text-align: start;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 1.05rem;
}
.checkout-refund-head { margin-bottom: 1.1rem; }
.checkout-refund-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ef7722;
}
.checkout-refund-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #122445;
}
.checkout-refund-hint {
  margin: 0.4rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
}
.checkout-refund-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}
.checkout-money {
  display: flex;
  align-items: center;
  position: relative;
}
.checkout-money .checkout-input {
  padding-inline-end: 3.4rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.checkout-money em {
  position: absolute;
  inset-inline-end: 0.9rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  pointer-events: none;
}
.checkout-textarea { min-height: 5.5rem; resize: vertical; }
.checkout-refund-dest {
  margin-top: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 0.9rem;
  display: grid;
  gap: 0.85rem;
}
.checkout-refund-dest-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #122445;
}
.checkout-refund-bank {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.checkout-refund-form [hidden] { display: none !important; }
.checkout-refund-form .checkout-submit { width: 100%; margin-top: 1.1rem; }
.checkout-refund-status {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  text-align: start;
  border-radius: 0.95rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
}
.checkout-refund-status strong {
  display: block;
  margin: 0.15rem 0 0.35rem;
  color: #122445;
  font-size: 1rem;
}
.checkout-refund-status p { margin: 0; color: #64748b; font-size: 0.9rem; line-height: 1.45; }
.checkout-refund-status--requested,
.checkout-refund-status--processing,
.checkout-refund-status--approved {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.22);
}
.checkout-refund-status--declined {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
}
.checkout-refund-status--refunded {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.22);
}
.checkout-refund-closed {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  text-align: start;
  border-radius: 0.9rem;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.45;
}
@media (max-width: 720px) {
  .checkout-refund-grid,
  .checkout-refund-bank { grid-template-columns: 1fr; }
}

.checkout-payment-badge--requested,
.checkout-payment-badge--processing,
.checkout-payment-badge--approved {
  background: rgba(56, 189, 248, 0.16);
  color: #0369a1;
}

.checkout-payment-badge--declined {
  background: rgba(239, 68, 68, 0.14);
  color: #b91c1c;
}

.checkout-payment-badge--refunded {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
}

@media (max-width: 720px) {
  .umrah-hero { padding: 1.1rem 1rem 1.2rem; }
  .trip-itinerary-editor-grid--stay { grid-template-columns: 1fr; }
  .trip-itinerary-activities li { grid-template-columns: 1fr; gap: 0.2rem; }
}
