/* StayInd Desktop Traveler Portal - Goibibo Structure + Design System UI */
:root {
  --color-indigo-900: #14224A;
  --color-indigo-800: #1E3A73;
  --color-indigo-100: #DCE4F9;
  --color-saffron-600: #C97A16;
  --color-saffron-700: #A85A00;
  --color-neutral-bg: #FFFFFF;
  --color-neutral-surface: #FFFFFF;
  --color-neutral-border: #F0EBE3;
  --color-neutral-text: #1B1A17;
  --color-neutral-muted: #56534C;
}

body {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  background-color: var(--color-neutral-bg);
  color: var(--color-neutral-text);
  -webkit-font-smoothing: antialiased;
}

/* StayInd Design System Card (24px radius, subtle dual shadow) */
.stayind-ds-card {
  border-radius: 24px;
  border: 1px solid #F0EBE3;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(27,26,23,0.04), 0 12px 32px -20px rgba(20,34,74,0.45);
  transition: transform 250ms cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 250ms ease;
}

.stayind-ds-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(27,26,23,0.05), 0 24px 44px -24px rgba(20,34,74,0.6);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STAYIND DESIGN SYSTEM BUTTONS & CTAs (Strict Pill Geometry — 999px)
   ═══════════════════════════════════════════════════════════════════════════════ */

/* 1. Primary StayInd Button (Standard 48px height) */
.stayind-btn-primary {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background-color: #14224A;
  color: #FFFFFF !important;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(20, 34, 74, 0.20);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.3, 1);
  transform: translateY(0);
}

.stayind-btn-primary:hover {
  background-color: #1E3A73;
  box-shadow: 0 6px 20px rgba(20, 34, 74, 0.30);
  transform: translateY(-1.5px);
}

.stayind-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(20, 34, 74, 0.15);
}

/* 2. Secondary StayInd Button (White with subtle border) */
.stayind-btn-secondary {
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background-color: #FFFFFF;
  color: #14224A !important;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  border: 1px solid #EDE7DE;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.15s ease;
}

.stayind-btn-secondary:hover {
  background-color: #FAF7F2;
  border-color: #C97A16;
  color: #C97A16 !important;
  transform: translateY(-1px);
}

/* 3. Compact / Small Primary Button (38px height) */
.stayind-btn-primary-sm {
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background-color: #14224A;
  color: #FFFFFF !important;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(20, 34, 74, 0.18);
  transition: all 0.15s ease;
}

.stayind-btn-primary-sm:hover {
  background-color: #1E3A73;
  box-shadow: 0 4px 12px rgba(20, 34, 74, 0.25);
  transform: translateY(-1px);
}

/* 4. Compact / Small Secondary Button (38px height) */
.stayind-btn-secondary-sm {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: #FFFFFF;
  color: #1E3A73 !important;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid #EDE7DE;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.15s ease;
}

.stayind-btn-secondary-sm:hover {
  background-color: #FAF7F2;
  border-color: #1E3A73;
  color: #14224A !important;
}

/* 5. Filter Chips (Pill 38px) */
.stayind-filter-chip {
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background-color: #FAF7F2;
  border: 1px solid #EDE7DE;
  color: #56534C;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.15s ease;
}

.stayind-filter-chip:hover {
  background-color: #F0EBE3;
  color: #14224A;
}

.stayind-filter-chip.active,
.stayind-filter-chip-active {
  background-color: #14224A !important;
  border-color: #14224A !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 8px rgba(20, 34, 74, 0.22) !important;
}

.stayind-filter-chip.active span.material-symbols-rounded,
.stayind-filter-chip-active span.material-symbols-rounded {
  color: #FFDDB8 !important;
}

/* 6. User Profile Avatar Pill */
.stayind-avatar-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #EDE7DE;
  padding: 4px 12px 4px 4px;
  border-radius: 999px;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 150ms ease;
}

.stayind-avatar-pill:hover {
  border-color: #CBD5E1;
  box-shadow: 0 2px 10px rgba(20, 34, 74, 0.08);
}

/* 7. Property Card Book Now CTA */
.stayind-card-cta {
  height: 48px;
  border-radius: 999px;
  background-color: #14224A;
  color: #FFFFFF !important;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(20, 34, 74, 0.20);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.3, 1);
  transform: translateY(0);
}

.stayind-card-cta:hover {
  background-color: #1E3A73;
  box-shadow: 0 6px 20px rgba(20, 34, 74, 0.30);
  transform: translateY(-2px);
}

.stayind-card-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(20, 34, 74, 0.15);
}

/* 8. Search Trigger Button */
.stayind-search-btn {
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  background-color: #14224A;
  color: #FFFFFF !important;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(20, 34, 74, 0.22);
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.3, 1);
  transform: translateY(0);
}

.stayind-search-btn:hover {
  background-color: #1E3A73;
  box-shadow: 0 6px 20px rgba(20, 34, 74, 0.30);
  transform: translateY(-1.5px);
}

.stayind-search-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(20, 34, 74, 0.15);
}

/* Custom Design System Checkbox Accent */
input[type="checkbox"] {
  accent-color: #14224A;
}

/* Lightbox Modal */
#desktop-gallery-modal {
  transition: opacity 250ms ease, visibility 250ms ease;
}

#desktop-gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

/* Dual Range Slider Styles */
.dual-range-container input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #14224A;
  box-shadow: 0 2px 6px rgba(20, 34, 74, 0.3);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: transform 0.1s ease;
}

.dual-range-container input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}

.dual-range-container input[type=range]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #14224A;
  box-shadow: 0 2px 6px rgba(20, 34, 74, 0.3);
  cursor: pointer;
  transition: transform 0.1s ease;
}

/* Scrollbar & Input Placeholder Utilities */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

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

input::placeholder,
textarea::placeholder {
  color: #9ca3af !important;
  font-weight: 400 !important;
  font-style: italic !important;
  opacity: 1 !important;
  font-family: 'Figtree', system-ui, sans-serif !important;
  letter-spacing: normal !important;
}

#otpCodeInput::placeholder {
  color: #9ca3af !important;
  font-weight: 300 !important;
  font-style: normal !important;
  letter-spacing: 0.3em !important;
}
