:root{
  --bg:#f7f8fb;
  --white:#ffffff;
  --accent:#ff5a26;
  --muted:#6b7280;
  --nav-height:72px;
  --content-max-width:1200px;
  --gutter:16px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui;
  background:var(--bg);
  color:#111;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

/* ensure main grows to push footer to bottom when content is short */
main{flex:1}

/* ================= APP BAR (DESKTOP UNCHANGED) ================= */
.appbar{
  /* full-bleed header with subtle bottom border */
  background: #fff;
  position:sticky;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  border-bottom:1px solid rgba(16,24,40,0.04);

  /* make header a flex container so brand, search and actions align correctly
     (index.html does not include a .appbar-inner wrapper) */
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 22px;
  height:var(--nav-height);
  min-height:56px;
}

/* Hotel details: centered title replacing the search input */
.hotel-title-bar{
  flex:1 1 auto;
  text-align:center;
  font-weight:800;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

@media (max-width:900px){
  .hotel-title-bar{display:none}
}

.appbar-inner{
  max-width:var(--content-max-width);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 22px;
  height:64px;
  transition:background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  font-size:18px;
  color:var(--accent);
  text-decoration:none;
  cursor:pointer;
}

.appbar .brand img{display:block}

/* Search sits between brand and actions and expands to fill available space */
.app-search{flex:1 1 auto;display:flex;align-items:center;padding:0 16px;margin:0 12px;min-width:0}
.app-search .search-input{width:100%;max-width:760px;position:relative}
.app-search input{
  width:100%;
  padding:12px 16px;
  border-radius:999px; /* pill */
  border:1px solid rgba(16,24,40,0.06);
  background:rgba(255,255,255,0.98);
  box-shadow:0 6px 18px rgba(2,6,23,0.04);
  font-size:15px;
  outline:none;
}
.app-search .search-btn{position:absolute;right:8px;top:50%;transform:translateY(-50%);border:0;background:linear-gradient(135deg,#ff7a3a,#ff5a26);color:#fff;width:40px;height:40px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center}

.brand .logo{
  width:36px;
  height:36px;
  border-radius:8px;
  background:linear-gradient(135deg,#ff7a3a,#ff5a26);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.app-search form{display:flex;gap:10px;width:100%}

.app-search input:focus{box-shadow:0 10px 30px rgba(2,6,23,0.10);border-color:rgba(16,24,40,0.12);transform:translateY(-1px)}

/* NEW: search-input wrapper + icon button */
.search-input{
  position:relative;
  display:flex;
  align-items:center;
  width:100%;
}

.search-input input{
  width:100%;
  padding-right:54px;
}

.search-btn{
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  border:0;
  background:linear-gradient(135deg,#ff7a3a,#ff5a26);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(255,90,38,0.12);
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.search-btn:hover{ transform:translateY(-2px); box-shadow:0 12px 30px rgba(255,90,38,0.18); }
.search-btn:active{ transform:translateY(0); opacity:.95 }

.search-btn svg{
  width:18px;
  height:18px;
  display:block;
}

.right-actions{
  display:flex;
  gap:8px;
  align-items:center;
}

.brand{flex:0 0 auto}
.right-actions{flex:0 0 auto}

.icon-text-btn{color:#111}
.icon-text-btn .nav-icon{color:var(--muted)}

/* when scrolled, make the appbar more opaque and slightly lifted */
.appbar.opaque{
  background: rgba(255,255,255,0.98);
  box-shadow:0 10px 30px rgba(2,6,23,0.10);
  transform:translateY(-2px);
  border:1px solid rgba(16,24,40,0.04);
}

.outline-btn{
  background:transparent;
  border:1px solid rgba(16,24,40,0.08);
  padding:8px 14px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.login-btn{background:transparent;border:1px solid rgba(16,24,40,0.08);padding:8px 14px;border-radius:10px}

.icon-text-btn{display:inline-flex;align-items:center;gap:8px;padding:6px 8px;border-radius:10px;background:transparent;border:0;font-weight:800;cursor:pointer}
.icon-text-btn .nav-icon{width:20px;height:20px;display:block;color:var(--muted)}
.icon-text-btn span{font-size:14px;color:#111}
.icon-text-btn.active{background:linear-gradient(180deg,#fff,#fbfbfe);border-radius:10px}

/* utility to force-hide elements (used by JS) */
.hidden{ display:none !important; }

/* disabled state for outline buttons */
.outline-btn[disabled]{
  opacity:0.55;
  cursor:not-allowed;
  border-color:#d1d5db;
  color:#6b7280;
}

/* header authenticated button styling */
.auth-user{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid transparent;
  background:linear-gradient(90deg,#fff,#fff);
}
.auth-user .avatar{
  width:28px;height:28px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:800;background:linear-gradient(135deg,#ff7a3a,#ff5a26)
}

/* small user button appearance (when shown in header) */
#userBtn.auth-user{padding:4px 6px;border-radius:10px;background:transparent;border:0}
#userBtn.auth-user .avatar{width:36px;height:36px;border-radius:10px;font-size:16px}

.menu-btn{
  display:none;
  background:transparent;
  border:0;
  width:44px;
  height:44px;
  border-radius:8px;
  cursor:pointer;
}

/* --------------------- default hide mobile-only elements --------------------- */
.mobile-drawer{display:none}
.mobile-backdrop{display:none}
.mobile-search{display:none}

/* ================= MOBILE FIXES ONLY ================= */
@media (max-width:720px){
  /* reduce header height variable on small screens and define mobile search height */
  :root{ --nav-height:56px; --mobile-search-h:56px; }
  .appbar{ background:#fff; border-bottom:1px solid rgba(16,24,40,0.04); }
  .appbar-inner{ padding:6px 10px; height:56px }

  .app-search{display:none}
  .right-actions{gap:6px}
  /* hide header action buttons on mobile to avoid overlap with the compact menu */
  .right-actions{display:none}
  .icon-text-btn span{display:none}
  .login-btn{display:none}

  .menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .mobile-search{
    display:block;
    /* fixed below the appbar on mobile so it doesn't float while scrolling */
    position:fixed;
    left:0;
    right:0;
    top:var(--nav-height);
    z-index:998; /* below appbar (999) but above page content */
    /* put a solid white backdrop behind the centered search on mobile */
    background: rgba(255,255,255,0.98);
    /* match horizontal inset of the header so the search aligns with nav items */
    padding:6px 12px;
    height:var(--mobile-search-h);
    display:flex;
    align-items:center;
    border-bottom-left-radius:12px;
    border-bottom-right-radius:12px;
    box-shadow:0 8px 24px rgba(2,6,23,0.06);
    border-bottom:1px solid rgba(16,24,40,0.04);
  }

  /* ensure flex children can shrink/grow correctly and input consumes available width */
  .mobile-search,
  .mobile-search .search-input,
  .mobile-search input{
    box-sizing:border-box;
    min-width:0;
  }

  /* make sure input fills the container while leaving room for the absolute button */
  .mobile-search .search-input input{
    width:100%;
    padding-right:64px; /* leave space for the button */
  }

  .mobile-search form{
    width: 100%;
    display:flex;
    gap:8px;
    align-items:center;
  }

  .mobile-search .search-input{
    flex:1;
    position:relative;
    max-width:none;
    margin:0;
    width:100%;
  }

  .mobile-search input{
    width:100%;
    padding:12px 16px;
    border-radius:999px;
    border:1px solid rgba(16,24,40,0.06);
    font-size:15px;
    padding-right:54px;
    background:rgba(255,255,255,0.95);
    box-shadow:0 8px 22px rgba(2,6,23,0.06);
  }

  .mobile-search .search-btn{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border-radius:999px;
    background:linear-gradient(135deg,#ff7a3a,#ff5a26);
    color:#fff;
    box-shadow:0 10px 28px rgba(255,90,38,0.12);
    border:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }

  .mobile-drawer{
    display:flex;
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:80%;
    max-width:320px;
    background:#fff;
    transform:translateX(100%);
    transition:transform .28s ease;
    z-index:1050; /* above header */
    padding:16px;
    flex-direction:column;
    gap:12px;
    box-shadow:-8px 0 30px rgba(2,6,23,0.12);
  }

  .mobile-drawer.open{transform:translateX(0)}

  .mobile-backdrop{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    pointer-events:none;
    transition:opacity .22s ease;
    z-index:1040; /* just below drawer, above header */
  }

  .mobile-backdrop.open{
    opacity:1;
    pointer-events:auto;
  }

  /* avoid double spacing: reserve space for both header and mobile search */
  .carousel-wrap{ 
    margin-top: calc(var(--nav-height) + var(--mobile-search-h));
   }

  /* main content sits below header + mobile search to prevent overlap */
  main{ 
    margin-top:0; 
     padding-top: 0;
  }
}

/* ================= REST ================= */
.hero{max-width:var(--content-max-width);margin:28px auto;padding:0 var(--gutter)}

.search-card{
  background:#fff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 6px 20px rgba(2,6,23,0.06);
}

.mobile-drawer .outline-btn{
  width:100%;
  text-align:center;
}

/* Drawer profile card (mobile) */
.drawer-profile{width:100%;border:1px solid #eef2f7;border-radius:14px;background:#fff;padding:12px;display:flex;flex-direction:column;gap:10px}
.drawer-profile-top{display:flex;align-items:center;gap:12px}
.drawer-avatar{width:44px;height:44px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:900;color:#fff;background:linear-gradient(135deg,#ff7a3a,#ff5a26)}
.drawer-profile-meta{min-width:0;display:flex;flex-direction:column;gap:2px}
.drawer-name{font-weight:900;color:#111;line-height:1.1}
.drawer-email{font-size:13px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}
.drawer-profile-actions{display:flex;gap:10px}
.drawer-profile-actions .outline-btn{flex:1;border:1px solid #eef2f7;padding:10px 12px;border-radius:12px;font-weight:800}

/* ================= OFFER CARDS ================= */
.offers-section{
  max-width:var(--content-max-width);
  margin:24px auto;
  padding:0 var(--gutter);
}

.offer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.offer-card{
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 6px 20px rgba(2,6,23,0.08);
  position:relative;
}

.offer-card img{
  width:100%;
  height:auto;
  display:block;
}

/* Tablet */
@media (max-width:900px){
  .offer-grid{grid-template-columns:repeat(2,1fr)}
}

/* Mobile scroll */
@media (max-width:520px){
  .offers-section{padding:0 12px}

  .offer-grid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .offer-card{
    flex:0 0 75%;
    max-width:75%;
    border-radius:14px;
    scroll-snap-align:start;
  }

  .offer-grid::-webkit-scrollbar{display:none}
}

/* ================= CAROUSEL ================= */
.carousel-wrap{
  /* full-bleed hero: stretch the carousel edge-to-edge of the viewport */
  width:100vw;
  max-width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  /* remove gap under appbar so carousel sits flush beneath header */
  margin-top:0;
  padding:0;
}

.carousel{
  position:relative;
  height:480px; /* larger banner height for more impactful hero */
  border-radius:0; /* full-bleed should have no outer radius */
  overflow:hidden;
  background:#efefef;
  box-shadow:0 8px 30px rgba(2,6,23,0.08);
}

.carousel .slide{
  position:absolute !important;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  transition:opacity 550ms ease, transform 550ms ease;
  transform:scale(0.995);
}

.carousel .slide.active{
  opacity:1;
  transform:scale(1);
}

.carousel img{
  width:100%;
  height:100%;
  object-fit:cover; /* ensure image fills hero without distortion */
  display:block;
}

.carousel-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}

.carousel-dots button{
  width:10px;
  height:10px;
  border-radius:100%;
  border:0;
  background:#ddd;
  cursor:pointer;
}

.carousel-dots button.active{
  background:var(--accent);
}

/* ================= SHIMMER (SINGLE SOURCE) ================= */
.offer-card,
.carousel .slide{
  position:relative;
  overflow:hidden;
}

.shimmer{
  position:absolute;
  inset:0;
  border-radius:16px;
  background:linear-gradient(
    90deg,
    #eeeeee 25%,
    #f5f5f5 37%,
    #eeeeee 63%
  );
  background-size:400% 100%;
  animation:shimmer 1.4s infinite linear;
}

@keyframes shimmer{
  0%{background-position:-400px 0}
  100%{background-position:400px 0}
}

@media (max-width:960px){
  .carousel{height:420px}
}

@media (max-width:720px){
  .carousel{height:320px}
}

@media (max-width:520px){
  .carousel{height:260px}
}

/* ================= BEST HOTELS ================= */
.hotels-section{
  max-width:var(--content-max-width);
  margin:28px auto 40px;
  padding:0 var(--gutter);
}

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

.hotels-header h2{
  font-size:22px;
  font-weight:800;
  margin:0;
}

.hotel-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.hotel-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(2,6,23,0.08);
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}

.hotel-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(2,6,23,0.12);
}

.hotel-img{position:relative}

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

.rating-badge{
  position:absolute;
  bottom:10px;
  right:10px;
  background:#16a34a;
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:6px 8px;
  border-radius:8px;
}

.hotel-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.hotel-title{
  font-size:15px;
  font-weight:700;
  line-height:1.3;
}

.hotel-code{
  display:inline-block;
  background:linear-gradient(180deg,#fbfbfe,#f6f7fb);
  border:1px solid #eef2f7;
  color:#374151;
  padding:6px 8px;
  border-radius:10px;
  font-size:12px;
  font-weight:700;
  margin-top:6px;
  letter-spacing:0.2px;
}

/* slightly larger on detail page when used near title */
#hotelCode.hotel-code{ display:block; margin-top:8px; font-size:13px; }

.hotel-meta{
  font-size:13px;
  color:var(--muted);
}

/* ================= SITE FOOTER ================= */
.site-footer{
  background: linear-gradient(180deg,#ffffff,#fbfbfe);
  border-top:1px solid rgba(16,24,40,0.04);
  margin-top:40px;
  padding:28px 0;
}
.site-footer .footer-inner{
  max-width:var(--content-max-width);
  margin:0 auto;
  padding:0 var(--gutter);
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  color:var(--muted);
  font-weight:600;
}
.site-footer .footer-left{flex:0 0 auto;display:flex;align-items:center;gap:10px}
.site-footer .footer-nav{flex:1 1 auto;text-align:center;display:flex;gap:18px;justify-content:center;flex-wrap:wrap}
.site-footer .footer-nav a{color:var(--muted);text-decoration:none;padding:6px 8px;border-radius:6px;font-weight:700}
.site-footer .footer-nav a:hover{color:#111}
.site-footer .footer-right{flex:0 0 auto;text-align:right;font-size:14px;color:var(--muted)}
.site-footer .social{display:flex;align-items:center;gap:8px;margin-top:6px}
.site-footer .social a{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:999px;background:transparent;border:1px solid rgba(16,24,40,0.06);color:var(--muted);text-decoration:none}
.site-footer .social a svg{width:14px;height:14px}
.site-footer .brand{color:var(--accent);font-weight:900;display:flex;align-items:center;gap:10px}
.site-footer .footer-links{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.site-footer .footer-links a{color:var(--muted);text-decoration:none;border-radius:8px;padding:8px 10px}
.site-footer .footer-links a:hover{color:#111}
.site-footer .footer-right{text-align:right;font-size:14px;color:var(--muted)}

@media(max-width:720px){
  .site-footer .footer-inner{flex-direction:column;align-items:center;text-align:center;gap:8px}
  .site-footer .footer-right{text-align:center}
  .site-footer .footer-nav{order:3}
  .site-footer .footer-right{order:2}
  .site-footer .footer-left{order:1}
}

.hotel-price{
  margin-top:6px;
  font-weight:800;
  font-size:16px;
}

.hotel-price span{
  font-weight:500;
  font-size:13px;
  color:var(--muted);
}

.book-btn{
  margin-top:auto;
  border:0;
  background:var(--accent);
  color:#fff;
  padding:12px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  transition:background .2s ease, transform .15s ease;
}

.book-btn:hover{
  background:#e94d1f;
  transform:scale(1.02);
}

/* ================= RESPONSIVE ================= */
@media (max-width:1000px){
  .hotel-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:520px){
  .hotel-grid{grid-template-columns:1fr}
  .hotel-img img{height:200px}
}

/* User modal styles */
.user-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:1000}
.user-modal[aria-hidden="false"]{display:flex}
.user-modal-backdrop{position:fixed;inset:0;background:rgba(2,6,23,0.45);z-index:1001}
.user-modal-panel{position:relative;background:#fff;border-radius:12px;max-width:420px;width:92%;box-shadow:0 18px 40px rgba(2,6,23,0.18);overflow:auto;padding:0;z-index:1002;max-height:84vh}
.user-modal-panel #userCard{padding:18px}

/* subtle entrance */
.user-modal-panel{transform:translateY(6px);transition:transform .22s ease,opacity .18s ease}
.user-modal[aria-hidden="false"] .user-modal-panel{transform:translateY(0)}

@media(max-width:520px){
  .user-modal-panel{max-width:92%;}
}

/* close button inside modal */
#userModalClose{position:absolute;right:10px;top:10px;padding:6px 8px;border-radius:8px;background:transparent;border:1px solid #e6e8eb;font-weight:700}

/* avatar in modal (neutral square with letter like header preview) */
#userAvatar{
  width:56px;
  height:56px;
  border-radius:12px;
  background:#fff;
  border:1px solid #eef2f7;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
  font-weight:800;
  font-size:18px;
}

/* ensure modal content scrolls when tall */
.user-modal-panel{overflow:auto}

/* backdrop blur and rounded close icon styles */
.user-modal-backdrop{
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(16,24,40,0.06);
  background:#fff;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(2,6,23,0.06);
}
.icon-btn svg{width:16px;height:16px;display:block}
.icon-btn:hover{transform:translateY(-1px)}

/* ensure the close icon visually stands out on mobile */
@media(max-width:520px){
  .icon-btn{width:40px;height:40px}
}

/* compact user dropdown menu */
.user-menu{position:absolute;right:12px;top:62px;background:#fff;border-radius:12px;box-shadow:0 12px 36px rgba(2,6,23,0.12);min-width:220px;padding:10px;z-index:1200;border:1px solid #eef2f7}
.user-menu.hidden{display:none}
.user-menu-header{display:flex;align-items:center;padding:6px 8px;border-bottom:1px solid #f3f4f6}
.menu-avatar{width:36px;height:36px;border-radius:8px;background:transparent;display:flex;align-items:center;justify-content:center;color:var(--muted);font-weight:700;border:1px solid rgba(16,24,40,0.06)}
.user-menu-actions{display:flex;flex-direction:column;gap:8px;padding:10px}
.user-menu-actions .outline-btn{border:1px solid #eef2f7;background:transparent;padding:8px;border-radius:10px;font-weight:700}

@media(max-width:720px){
  .user-menu{right:8px;top:56px}
}

/* Support modal */
.support-modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;z-index:1100}
.support-modal[aria-hidden="false"]{display:flex}
.support-modal-backdrop{position:fixed;inset:0;background:rgba(2,6,23,0.45);z-index:1101;backdrop-filter: blur(4px);-webkit-backdrop-filter: blur(4px)}
.support-modal-panel{position:relative;background:#fff;border-radius:14px;max-width:420px;width:92%;box-shadow:0 18px 40px rgba(2,6,23,0.18);z-index:1102;padding:18px}
.support-card{display:flex;flex-direction:column;gap:8px;padding:4px 2px 2px}
.support-title{font-weight:900;font-size:18px}
.support-sub{color:var(--muted);font-size:13px}
.support-number{font-weight:900;font-size:18px;letter-spacing:0.2px}
.support-call-btn{margin-top:8px;display:flex;align-items:center;justify-content:center;gap:10px;text-decoration:none;background:var(--accent);color:#fff;padding:12px;border-radius:12px;font-weight:800}
.support-call-btn svg{width:18px;height:18px;display:block}

/* ================= MY BOOKINGS ================= */
.page-wrap{max-width:var(--content-max-width);margin:22px auto 48px;padding:0 24px;width:100%}
.bookings-wrap{background:#fff;border:1px solid #eef2f7;border-radius:16px;box-shadow:0 10px 34px rgba(2,6,23,0.06);padding:18px;width:100%}
.bookings-header{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-bottom:14px}
.bookings-title{margin:0;font-size:22px;font-weight:900;color:#111}
.bookings-sub{color:var(--muted);font-size:13px;font-weight:700}

.bookings-list{display:flex;flex-direction:column;gap:12px;align-items:stretch}
.booking-card{border:1px solid #eef2f7;border-radius:18px;padding:16px;background:linear-gradient(180deg,#fff,#fbfbfe);position:relative;overflow:hidden;box-shadow:0 10px 30px rgba(2,6,23,0.06)}
.booking-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--accent)}
.booking-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.booking-left{display:flex;align-items:flex-start;gap:12px;min-width:0}
.booking-serial{flex:0 0 auto;min-width:38px;height:38px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:900;color:#fff;background:linear-gradient(135deg,#ff7a3a,#ff5a26);box-shadow:0 8px 18px rgba(255,90,38,0.18)}
.booking-main{min-width:0}
.booking-code{font-weight:900;font-size:16px;letter-spacing:0.2px}
.booking-meta{color:var(--muted);font-size:13px;font-weight:700;margin-top:4px}

.status-badge{display:inline-flex;align-items:center;justify-content:center;padding:8px 12px;border-radius:999px;font-weight:900;font-size:12px;border:1px solid #eef2f7;background:#fff;white-space:nowrap;text-transform:capitalize}
.status-default{border-color:#eef2f7;color:#111;background:#fff}
.status-pending{border-color:rgba(255,90,38,0.28);color:var(--accent);background:linear-gradient(180deg, rgba(255,90,38,0.10), rgba(255,90,38,0.04))}
.status-confirmed{border-color:rgba(22,163,74,0.22);color:#16a34a;background:linear-gradient(180deg, rgba(22,163,74,0.12), rgba(22,163,74,0.04))}
.status-cancelled{border-color:#eef2f7;color:var(--muted);background:linear-gradient(180deg,#fff,#fbfbfe)}

.booking-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:14px}
.booking-field{border:1px solid #eef2f7;border-radius:14px;padding:10px;background:#fff}
.booking-label{color:var(--muted);font-size:12px;font-weight:800}
.booking-value{margin-top:6px;font-weight:800;color:#111;font-size:13px;word-break:break-word}

.empty-state{border:1px dashed #e6e8eb;border-radius:16px;padding:18px;text-align:center;background:linear-gradient(180deg,#fff,#fbfbfe)}
.empty-title{font-weight:900;font-size:16px}
.empty-sub{margin-top:6px;color:var(--muted);font-size:13px;font-weight:700}

@media (max-width:720px){
  .page-wrap{padding:0 12px;margin:14px auto 40px}
  .bookings-wrap{padding:14px;border-radius:14px}
  .bookings-title{font-size:18px}
  .bookings-header{flex-direction:column;align-items:flex-start}
}

@media (max-width:520px){
  .booking-grid{grid-template-columns:1fr}
}

/* LINK */
.hotel-link{
  text-decoration:none;
  color:inherit;
  display:block;
}
.hotel-filters{
  display:flex;
  gap:10px;
}

.hotel-filters select{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #e6e8eb;
  font-weight:600;
  background:#fff;
  cursor:pointer;
}

/* No-results message: span full grid and center content horizontally */
.no-results{
  grid-column:1 / -1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px 12px;
  color:var(--muted);
  width:100%;
  max-width:720px;
  margin:0 auto;
}

/* Address line under hotel name */
.hotel-location{
  font-size:12.5px;
  color:var(--muted);
  display:flex;
  gap:6px;
  align-items:center;
}

.hotel-location span{
  white-space:nowrap;
}
@media (max-width:520px){
  .hotels-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}
