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

:root {
  --oyo-red: #EE2E24;
  --oyo-red-dark: #D41F16;
  --oyo-red-light: #FFF0EF;
  --oyo-black: #1A1A1A;
  --oyo-gray: #6B6B6B;
  --oyo-gray-light: #9E9E9E;
  --oyo-border: #E8E8E8;
  --oyo-bg: #F7F7F7;
  --oyo-white: #FFFFFF;
  --oyo-green: #0D9F4F;
  --oyo-shadow: 0 2px 16px rgba(0,0,0,0.08);
  --oyo-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;
  --header-h: 60px;
  --bottom-nav-h: 64px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --touch-min: 44px;
  /* legacy aliases */
  --primary: var(--oyo-red);
  --primary-dark: var(--oyo-red-dark);
  --bg: var(--oyo-bg);
  --text: var(--oyo-black);
  --muted: var(--oyo-gray);
  --border: var(--oyo-border);
  --shadow: var(--oyo-shadow);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--oyo-bg);
  color: var(--oyo-black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

body.has-bottom-nav { padding-bottom: calc(var(--bottom-nav-h) + 8px); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-4); }

.hide-sm { display: inline-flex; }
.show-sm-only { display: none !important; }
.nav-mobile-only { display: none; }
.empty-state { padding: var(--space-5); color: var(--oyo-gray); text-align: center; }
.empty-state a { color: var(--oyo-red); font-weight: 600; }

.hotel-subname { font-size: 0.8rem; color: var(--oyo-gray-light); margin-top: 2px; }

/* ─── HEADER (OYO white bar) ─── */
.site-header {
  background: var(--oyo-white);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--oyo-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.site-header .header-inner { position: relative; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.5px;
  color: var(--oyo-red);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  background: var(--oyo-red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-sub {
  color: var(--oyo-black);
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--oyo-gray);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--oyo-red);
  background: var(--oyo-red-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--oyo-gray);
  background: var(--oyo-bg);
  min-height: var(--touch-min);
}

.btn-text {
  border: none;
  background: none;
  color: var(--oyo-gray);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px;
  font-family: inherit;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  align-items: center;
  justify-content: center;
}

.menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--oyo-black);
  position: relative;
}

.menu-bar::before,
.menu-bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--oyo-black);
}

.menu-bar::before { top: -6px; }
.menu-bar::after { top: 6px; }

.header-nav { flex: 1; display: flex; justify-content: center; }

.btn-login {
  padding: 10px 18px;
  border: 1.5px solid var(--oyo-red);
  color: var(--oyo-red);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  font-family: inherit;
}

.btn-login:hover {
  background: var(--oyo-red);
  color: #fff;
}

.btn-partner {
  padding: 10px 16px;
  background: var(--oyo-black);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.menu-toggle-old { display: none; }

/* Hotels page stacked search fallback */
.search-box.search-box--stacked {
  display: none;
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--oyo-shadow-lg);
  flex-direction: column;
  gap: var(--space-3);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .search-box.search-box--stacked { display: flex; }
  .search-widget.search-widget--hide-mobile { display: none; }
}

.search-box .form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--oyo-gray-light);
  margin-bottom: 4px;
  display: block;
}

.search-box input,
.search-box select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--oyo-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  min-height: var(--touch-min);
  appearance: none;
}

.search-btn {
  background: var(--oyo-red);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  min-height: var(--touch-min);
  font-family: inherit;
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(145deg, #f03a30 0%, var(--oyo-red) 42%, #b81810 100%);
  padding: var(--space-7) 0 calc(var(--space-7) + 24px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.12), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--oyo-bg);
  border-radius: 24px 24px 0 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin-bottom: var(--space-2);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: var(--space-6);
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero p:not(.hero-sub):not(.hero-eyebrow) {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  font-weight: 400;
}

/* ─── SEARCH WIDGET (OYO pill search) ─── */
.search-widget {
  background: var(--oyo-white);
  border-radius: var(--radius);
  box-shadow: var(--oyo-shadow-lg);
  display: flex;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--oyo-border);
}

.search-field {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--oyo-border);
  text-align: left;
  min-width: 0;
}

.search-field:last-of-type { border-right: none; }

.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--oyo-gray-light);
  margin-bottom: 4px;
}

.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--oyo-black);
  background: transparent;
  font-family: inherit;
  min-height: 28px;
  appearance: none;
  -webkit-appearance: none;
}

.search-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B6B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 18px;
}

.search-field .field-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--oyo-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-submit {
  background: var(--oyo-red);
  color: #fff;
  border: none;
  padding: 0 32px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  transition: background 0.15s;
  min-height: var(--touch-min);
  font-family: inherit;
}

.search-submit:hover { background: var(--oyo-red-dark); }

/* Legacy mobile search — removed from homepage; keep for other pages if needed */
.search-box {
  display: none;
}

.locality-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.locality-icon { font-size: 2rem; line-height: 1; }
.locality-card h3 { font-size: 0.95rem; margin-top: var(--space-2); font-weight: 700; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 16px;
  background: var(--oyo-white);
  border-bottom: 1px solid var(--oyo-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--oyo-gray);
}

.trust-item .icon { font-size: 1.25rem; }

/* ─── LOCALITY CHIPS ─── */
.chips-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.chips-scroll::-webkit-scrollbar { display: none; }

.chip {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1.5px solid var(--oyo-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--oyo-gray);
  background: var(--oyo-white);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.chip:hover,
.chip.active {
  border-color: var(--oyo-red);
  color: var(--oyo-red);
  background: var(--oyo-red-light);
}

/* ─── SECTIONS ─── */
.section { padding: 32px 0; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oyo-black);
}

.section-header a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oyo-red);
}

/* ─── HOTEL CARDS (OYO list style) ─── */
.hotel-list { display: flex; flex-direction: column; gap: 16px; }

.hotel-card {
  display: flex;
  background: var(--oyo-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--oyo-shadow);
  border: 1px solid var(--oyo-border);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.hotel-card:hover {
  box-shadow: var(--oyo-shadow-lg);
  transform: translateY(-2px);
}

.hotel-card-img {
  width: 240px;
  min-height: 180px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  overflow: hidden;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.hotel-card-img .badge-verified {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--oyo-green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hotel-card-body {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hotel-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.hotel-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--oyo-black);
}

.hotel-card .locality {
  font-size: 0.85rem;
  color: var(--oyo-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--oyo-green);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px 6px 6px 0;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.rating-badge--new {
  background: var(--oyo-bg);
  color: var(--oyo-gray);
  border: 1px solid var(--oyo-border);
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.amenity-tag {
  font-size: 0.75rem;
  color: var(--oyo-gray);
  background: var(--oyo-bg);
  padding: 4px 10px;
  border-radius: 4px;
}

.hotel-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}

.price-block .price-label {
  font-size: 0.75rem;
  color: var(--oyo-gray-light);
}

.price-block .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--oyo-black);
}

.price-block .price-note {
  font-size: 0.75rem;
  color: var(--oyo-gray);
}

.btn-book {
  background: var(--oyo-red);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}

.btn-book:hover { background: var(--oyo-red-dark); }

/* Grid variant for homepage */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.hotel-grid .hotel-card {
  flex-direction: column;
}

.hotel-grid .hotel-card-img {
  width: 100%;
  height: 180px;
  min-height: unset;
}

/* ─── HOTEL DETAIL (OYO property page) ─── */
.hotel-detail-hero {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #ddd, #bbb);
  overflow: hidden;
}

.hotel-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-detail-hero .back-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--oyo-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-summary {
  background: var(--oyo-white);
  margin: -24px 16px 0;
  position: relative;
  z-index: 10;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--oyo-shadow-lg);
  border: 1px solid var(--oyo-border);
  max-width: 1148px;
  margin-left: auto;
  margin-right: auto;
}

.detail-summary h1 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
  color: var(--oyo-gray);
  margin: 12px 0;
}

.detail-meta a { color: var(--oyo-red); font-weight: 600; }

.detail-dates-bar {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background: var(--oyo-bg);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.875rem;
}

.detail-dates-bar strong { color: var(--oyo-black); }

/* Room cards */
.room-card {
  background: var(--oyo-white);
  border: 1px solid var(--oyo-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.room-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }

.room-card .room-meta {
  font-size: 0.85rem;
  color: var(--oyo-gray);
}

.room-card .room-price {
  text-align: right;
}

.room-card .room-price .amount {
  font-size: 1.25rem;
  font-weight: 800;
}

/* Sticky book bar (mobile) */
.sticky-book-bar {
  display: none;
  position: fixed;
  bottom: var(--bottom-nav-h);
  left: 0;
  right: 0;
  background: var(--oyo-white);
  border-top: 1px solid var(--oyo-border);
  padding: 12px 16px;
  z-index: 150;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

/* Booking overlay */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.booking-sheet {
  background: var(--oyo-white);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.booking-sheet h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.sheet-close {
  float: right;
  background: var(--oyo-bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.promo-banner h3 { font-size: 1.1rem; font-weight: 700; }
.promo-banner p { font-size: 0.875rem; opacity: 0.85; margin-top: 4px; }

/* ─── FORMS ─── */
.form-card {
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--oyo-shadow);
  border: 1px solid var(--oyo-border);
  max-width: 560px;
  margin: 0 auto;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--oyo-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--oyo-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.15s;
  min-height: var(--touch-min);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--oyo-red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--oyo-red);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 0.15s;
}

.btn:hover { background: var(--oyo-red-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--oyo-red);
  color: var(--oyo-red);
}

.btn-outline:hover { background: var(--oyo-red-light); }

.btn-block { width: 100%; }

/* ─── ALERTS ─── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.alert-success { background: #E8F5E9; color: #2E7D32; }
.alert-error { background: #FFEBEE; color: #C62828; }
.alert-info { background: #E3F2FD; color: #1565C0; }

.hidden { display: none !important; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--oyo-black);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 24px;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* ─── BOTTOM NAV (mobile OYO style) ─── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-h);
  background: var(--oyo-white);
  border-top: 1px solid var(--oyo-border);
  z-index: 200;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav-inner {
  display: flex;
  height: 100%;
}

.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--oyo-gray-light);
  text-decoration: none;
}

.bottom-nav a.active { color: var(--oyo-red); }
.bottom-nav a .nav-icon { font-size: 1.35rem; }

/* ─── TABLES (admin) ─── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--oyo-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--oyo-shadow);
}

.data-table th, .data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--oyo-border);
  font-size: 0.875rem;
}

.data-table th {
  background: var(--oyo-black);
  color: #fff;
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-pending { background: #FFF3E0; color: #E65100; }
.badge-approved { background: #E8F5E9; color: #2E7D32; }
.badge-confirmed { background: #E3F2FD; color: #1565C0; }

/* ─── LOADING SKELETON ─── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  height: 180px;
  border-radius: var(--radius);
}

/* ─── RESULTS PAGE ─── */
.results-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.filters-panel {
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--oyo-border);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.filters-panel h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--oyo-black);
}

.results-count {
  font-size: 0.875rem;
  color: var(--oyo-gray);
  margin-bottom: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hide-sm { display: none !important; }
  .show-sm-only { display: inline-flex !important; }
  .nav-mobile-only { display: list-item; }

  .search-widget {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--oyo-border);
    padding: var(--space-4);
  }

  .search-field:last-of-type { border-bottom: 1px solid var(--oyo-border); }

  .search-submit {
    width: 100%;
    padding: var(--space-4);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .header-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    justify-content: flex-start;
    display: none;
  }

  .header-nav:has(.nav-links.open),
  .nav-links.open {
    display: flex;
  }

  .menu-toggle { display: inline-flex; }

  .header-nav { display: block; position: static; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--oyo-white);
    padding: var(--space-4);
    border-bottom: 1px solid var(--oyo-border);
    box-shadow: var(--oyo-shadow);
    z-index: 199;
    gap: 4px;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    display: block;
    padding: var(--space-3) var(--space-4);
    min-height: var(--touch-min);
    border-radius: var(--radius-sm);
  }

  .logo-sub { display: none; }

  .header-actions .btn-login {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero { padding: var(--space-6) 0 calc(var(--space-6) + 16px); }

  .hotel-card { flex-direction: column; }
  .hotel-card-img { width: 100%; height: 200px; min-height: unset; }

  .results-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .page-hotels .filters-panel { position: fixed; }

  .bottom-nav { display: block; }
  body { padding-bottom: var(--bottom-nav-h); }

  .sticky-book-bar { display: flex; bottom: 0; }
  body.has-sticky-bar { padding-bottom: 120px; }

  .trust-strip { gap: var(--space-4); padding: var(--space-4); }
}

.badge-serviced {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--oyo-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
}

.detail-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--oyo-border);
  margin: 24px 0 16px;
  overflow-x: auto;
}

.detail-tab {
  padding: 10px 18px;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oyo-gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.detail-tab.active {
  color: var(--oyo-red);
  border-bottom-color: var(--oyo-red);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--oyo-gray);
}

.policy-accordion .faq-item { margin-bottom: 8px; }

.login-deals-banner {
  background: linear-gradient(90deg, #FFF0EF, #fff);
  border: 1px solid var(--oyo-red);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.locality-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.locality-card {
  background: var(--oyo-white);
  border: 1px solid var(--oyo-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s;
}

.locality-card:hover {
  border-color: var(--oyo-red);
  box-shadow: var(--oyo-shadow);
}

.locality-card .count {
  font-size: 0.75rem;
  color: var(--oyo-red);
  font-weight: 600;
  margin-top: 6px;
}


/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--oyo-gray);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--oyo-red);
  font-weight: 500;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb .sep { color: var(--oyo-gray-light); }

/* ─── LEGAL / STATIC PAGES ─── */
.legal-page {
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--oyo-border);
  box-shadow: var(--oyo-shadow);
  max-width: 860px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--oyo-black);
}

.legal-page .page-subtitle {
  font-size: 0.95rem;
  color: var(--oyo-gray);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--oyo-border);
}

.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--oyo-black);
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--oyo-gray);
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page .bilingual-block {
  margin-bottom: 20px;
}

.legal-page .lang-hi {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--oyo-black);
  margin-bottom: 8px;
}

.legal-page .lang-en {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--oyo-gray);
}

.legal-page .updated {
  font-size: 0.8rem;
  color: var(--oyo-gray-light);
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--oyo-border);
}

/* ─── FAQ ACCORDION ─── */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--oyo-white);
  border: 1px solid var(--oyo-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--oyo-black);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.faq-question:hover { background: var(--oyo-bg); }

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--oyo-red-light);
  color: var(--oyo-red);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s;
}

.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  border-top: 1px solid var(--oyo-border);
}

.faq-item.open .faq-answer { display: block; }

.faq-answer .lang-hi {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--oyo-black);
  margin-bottom: 10px;
}

.faq-answer .lang-en {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--oyo-gray);
}

/* ─── CHECKOUT LAYOUT ─── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

.checkout-main .form-card { max-width: none; margin: 0; }

.checkout-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.order-summary {
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--oyo-border);
  box-shadow: var(--oyo-shadow);
}

.order-summary h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--oyo-border);
}

.order-summary .hotel-thumb {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.order-summary .hotel-thumb img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--oyo-bg);
}

.order-summary .hotel-thumb h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.order-summary .hotel-thumb p {
  font-size: 0.8rem;
  color: var(--oyo-gray);
}

.order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 10px;
  color: var(--oyo-gray);
}

.order-summary .summary-row.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--oyo-black);
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px dashed var(--oyo-border);
}

.order-summary .pay-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--oyo-red-light);
  color: var(--oyo-red);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ─── CONFIRM PAGE ─── */
.confirm-card {
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--oyo-border);
  box-shadow: var(--oyo-shadow-lg);
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.confirm-card .confirm-icon {
  width: 72px;
  height: 72px;
  background: #E8F5E9;
  color: var(--oyo-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.confirm-card h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.confirm-ref {
  display: inline-block;
  background: var(--oyo-bg);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  color: var(--oyo-red);
  margin: 16px 0 24px;
  letter-spacing: 0.5px;
}

.confirm-details {
  text-align: left;
  background: var(--oyo-bg);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.confirm-details p {
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: var(--oyo-gray);
}

.confirm-details strong { color: var(--oyo-black); }

/* ─── CONTACT CARDS ─── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--oyo-white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--oyo-border);
  box-shadow: var(--oyo-shadow);
  text-align: center;
}

.contact-card .contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--oyo-gray);
  line-height: 1.6;
}

.contact-card a {
  color: var(--oyo-red);
  font-weight: 600;
}

/* ─── 404 PAGE ─── */
.page-404 {
  text-align: center;
  padding: 60px 20px;
}

.page-404 .error-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--oyo-red);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-404 p {
  color: var(--oyo-gray);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.page-404 .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── LOCALITY HERO ─── */
.locality-hero {
  background: var(--oyo-white);
  border-bottom: 1px solid var(--oyo-border);
  padding: 24px 0;
}

.locality-hero h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.locality-hero .locality-desc {
  font-size: 0.95rem;
  color: var(--oyo-gray);
  line-height: 1.7;
  max-width: 720px;
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-sidebar { position: static; }
  .legal-page { padding: 20px; }
}

/* ─── PHOTO GALLERY ─── */
.photo-gallery { margin-bottom: 0; }
.gallery-main { height: 320px; overflow: hidden; background: #111; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; padding: 10px 16px; overflow-x: auto; background: var(--oyo-white); }
.gallery-thumb { flex: 0 0 72px; height: 54px; border: 2px solid transparent; border-radius: 8px; overflow: hidden; padding: 0; cursor: pointer; background: none; }
.gallery-thumb.active { border-color: var(--oyo-red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─── DETAIL TABS ─── */
.detail-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--oyo-border); margin-bottom: 20px; overflow-x: auto; }
.detail-tab { padding: 12px 18px; border: none; background: none; font-weight: 600; font-size: 0.9rem; color: var(--oyo-gray); cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; }
.detail-tab.active { color: var(--oyo-red); border-bottom-color: var(--oyo-red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.amenity-item { display: flex; align-items: center; gap: 8px; padding: 12px; background: var(--oyo-bg); border-radius: 8px; font-size: 0.85rem; font-weight: 500; }

.map-embed { margin-top: 16px; }
.map-link { display: inline-block; margin-top: 8px; font-size: 0.85rem; color: var(--oyo-red); font-weight: 600; }

/* ─── REVIEWS ─── */
.review-card { padding: 16px; background: var(--oyo-white); border: 1px solid var(--oyo-border); border-radius: 12px; margin-bottom: 12px; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-rating { color: var(--oyo-green); font-weight: 700; }
.review-form { background: var(--oyo-bg); padding: 20px; border-radius: 12px; margin-top: 20px; }

/* ─── MAP VIEW ─── */
.view-toggle { display: inline-flex; gap: 0; margin-bottom: 0; border: 1.5px solid var(--oyo-border); border-radius: var(--radius-sm); overflow: hidden; }
.view-toggle button { padding: 8px 14px; border: none; background: var(--oyo-white); border-radius: 0; font-weight: 600; font-size: 0.85rem; cursor: pointer; font-family: inherit; min-height: var(--touch-min); color: var(--oyo-gray); }
.view-toggle button + button { border-left: 1px solid var(--oyo-border); }
.view-toggle button.active { background: var(--oyo-red); color: #fff; }
.map-view { height: 480px; border-radius: 12px; overflow: hidden; border: 1px solid var(--oyo-border); }
.map-view iframe { width: 100%; height: 100%; border: 0; }

.filter-range { width: 100%; margin: 8px 0; }
.coupon-banner { background: linear-gradient(90deg, #FFF0EF, #fff); border: 1px dashed var(--oyo-red); border-radius: 12px; padding: 14px 18px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.coupon-chip { display: inline-block; background: var(--oyo-red); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 0.8rem; font-weight: 700; margin-right: 6px; }

.booking-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.booking-tab { padding: 10px 20px; border: 1px solid var(--oyo-border); background: var(--oyo-white); border-radius: 50px; font-weight: 600; cursor: pointer; }
.booking-tab.active { background: var(--oyo-red); color: #fff; border-color: var(--oyo-red); }

.partner-steps { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.partner-step { flex: 1; min-width: 80px; text-align: center; padding: 10px; border-radius: 8px; background: var(--oyo-bg); font-size: 0.75rem; font-weight: 600; color: var(--oyo-gray); }
.partner-step.active { background: var(--oyo-red); color: #fff; }
.partner-step.done { background: var(--oyo-green); color: #fff; }

.coupon-input-row { display: flex; gap: 8px; margin-top: 12px; }
.coupon-input-row input { flex: 1; }
.coupon-applied { color: var(--oyo-green); font-size: 0.85rem; font-weight: 600; margin-top: 8px; }

/* ─── HOTELS LISTING PAGE ─── */
.page-hotels .hero { display: none; }

.hotels-topbar {
  background: var(--oyo-white);
  border-bottom: 1px solid var(--oyo-border);
  padding: var(--space-4) 0;
}

.hotels-topbar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.hotels-topbar h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.search-summary-line {
  font-size: 0.8rem;
  color: var(--oyo-gray);
  line-height: 1.4;
}

.btn-edit-search {
  flex-shrink: 0;
  border: 1.5px solid var(--oyo-border);
  background: var(--oyo-white);
  color: var(--oyo-red);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  min-height: var(--touch-min);
}

.search-drawer {
  border-top: 1px solid var(--oyo-border);
  background: var(--oyo-bg);
  padding: var(--space-4) 0;
}

.search-widget--listing {
  box-shadow: var(--oyo-shadow);
}

.hotels-chips-bar {
  background: var(--oyo-white);
  border-bottom: 1px solid var(--oyo-border);
  padding: var(--space-2) 0;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
}

.hotels-chips-bar .chips-scroll { padding: var(--space-2) 0; }

.hotels-results-section { padding-top: var(--space-4); }

.filters-panel-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.filters-panel-head h2 { font-size: 1.1rem; font-weight: 700; }

.filters-close {
  border: none;
  background: var(--oyo-bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
}

.filter-group { margin-bottom: var(--space-5); }

.filter-group h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--oyo-gray-light);
  margin-bottom: var(--space-3);
}

.price-preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-hint { font-size: 0.8rem; color: var(--oyo-gray); margin-top: var(--space-2); }

.amenity-filter-list { display: flex; flex-direction: column; gap: var(--space-2); }

.filter-check {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  min-height: var(--touch-min);
  cursor: pointer;
}

.filters-apply-mobile { display: none; margin-top: var(--space-4); }

.filters-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 250;
}

.results-control-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.btn-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--oyo-border);
  background: var(--oyo-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  min-height: var(--touch-min);
}

.sort-select--compact {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  margin-left: auto;
}

.compact-banner {
  padding: 10px 14px;
  margin-bottom: var(--space-3);
  font-size: 0.8rem;
}

.coupon-banner--compact {
  padding: 10px 14px;
  margin-bottom: var(--space-3);
  font-size: 0.8rem;
  flex-direction: column;
  align-items: flex-start;
}

.coupon-banner--compact small { color: var(--oyo-gray); }

.btn-sm {
  padding: 6px 12px !important;
  font-size: 0.75rem !important;
  min-height: auto !important;
}

.empty-state-card {
  text-align: center;
  padding: var(--space-7) var(--space-4);
  background: var(--oyo-white);
  border-radius: var(--radius);
  border: 1px solid var(--oyo-border);
}

.empty-state-card .empty-icon { font-size: 2.5rem; margin-bottom: var(--space-3); }

.empty-state-card h3 { margin-bottom: var(--space-2); }

.empty-state-card p { color: var(--oyo-gray); margin-bottom: var(--space-4); }

.hotel-card-actions { flex-direction: row !important; align-items: center !important; }

@media (max-width: 900px) {
  .btn-filter-toggle { display: inline-flex; }

  .filters-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 260;
    max-height: 78vh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
  }

  .filters-panel.open { transform: translateY(0); }

  .filters-panel-head { display: flex; }

  .filters-backdrop:not(.hidden) { display: block; }

  .filters-apply-mobile { display: block; }

  body.filters-open { overflow: hidden; }

  .results-layout { display: block; }

  .hotel-card-footer {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
  }

  .price-block .price { font-size: 1.15rem; }

  .btn-book { padding: 10px 20px; white-space: nowrap; }

  .view-toggle button { font-size: 0.8rem; padding: 8px 12px; }

  .hotels-results-section { padding-bottom: calc(var(--bottom-nav-h) + var(--space-4)); }
}

