:root{
  --bg:#f7f1e4;
  --bg-soft:#fcf7ef;
  --card:#fffaf1;
  --card-2:#faf4ea;
  --text:#24452f;
  --muted:#6f735f;
  --line:#e7dbc7;
  --accent:#d9772b;
  --accent-dark:#ba611e;
  --gold:#b79255;
  --chocolate:#6b4a2f;
  --green-dark:#203a29;
  --chip:#f0e6d6;
  --shadow:0 14px 35px rgba(88,58,28,.10);
  --shadow-strong:0 24px 60px rgba(49,33,16,.18);
  --radius:22px;
  --maxw:1220px;
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

html.modal-lock,
body.modal-lock{
  overflow:hidden !important;
  height:100%;
  touch-action:none;
}

body{
  margin:0;
  font-family:'Lato',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.55), transparent 30%),
    linear-gradient(180deg,#fcf7ef 0%, #f7f1e4 100%);
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}

h1,h2,h3,h4,.logo,.primary,.btn,.btnBig,.exchangeBtn,.statCard strong,.chip,.iconTextBtn{
  font-family:'Montserrat',sans-serif;
}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:22px 18px 70px;
}

.eyebrow{
  display:inline-block;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(252,247,239,.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.topbarInner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:18px;
}
.logo{
  font-weight:800;
  font-size:28px;
  letter-spacing:.02em;
  transition:transform .18s ease;
}
.logo:hover{transform:translateY(-1px)}
.logo span{color:var(--gold)}

.nav{
  display:flex;
  gap:14px;
  color:var(--muted);
  font-size:15px;
}
.nav a{
  position:relative;
  transition:color .18s ease;
}
.nav a:hover{color:var(--chocolate)}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}
.nav a:hover::after{transform:scaleX(1)}

.actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.burger{
  display:none;
  width:42px;
  height:42px;
  border:none;
  border-radius:12px;
  background:#fff4e6;
  color:var(--text);
  cursor:pointer;
}

/* buttons */
.ghost,.primary,.btn,.btnBig,.exchangeBtn,.iconBtn,.googleBtn,.iconTextBtn,.plainIcon,.smallBtn{
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    color .18s ease,
    border-color .18s ease;
}

.ghost{
  border:1px solid var(--line);
  background:#fffaf1;
  color:var(--text);
  padding:11px 16px;
  border-radius:999px;
  cursor:pointer;
}
.ghost:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.primary,.btn,.btnBig,.exchangeBtn{
  border:none;
  background:var(--accent);
  color:#fff8ef;
  padding:12px 18px;
  border-radius:16px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-shadow:0 10px 22px rgba(217,119,43,.22);
}
.primary:hover,.btn:hover,.btnBig:hover,.exchangeBtn:hover{
  transform:scale(1.04);
  background:var(--accent-dark);
}

.reserveGrow:hover,
.reservePulse:hover{
  transform:scale(1.08);
}

.smallBtn{
  padding:10px 14px;
  font-size:14px;
}

.iconBtn{
  width:48px;
  height:48px;
  border:none;
  background:var(--accent);
  color:#fff;
  border-radius:16px;
  cursor:pointer;
}
.iconBtn:hover{
  transform:scale(1.06);
  background:var(--accent-dark);
}

.iconTextBtn{
  border:1px solid var(--line);
  background:#fffdf8;
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.iconTextBtn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.plainIcon{
  width:40px;
  height:40px;
  border:none;
  background:#fff;
  border-radius:12px;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.plainIcon:hover{transform:scale(1.05)}

.plainClose{
  border:none;
  background:none;
  font-size:28px;
  cursor:pointer;
  color:var(--text);
}

/* hero + search */
.hero{
  padding:18px 0 8px;
}
.heroTitle h1{
  margin:8px 0 10px;
  font-size:54px;
  line-height:1.02;
  color:var(--text);
  letter-spacing:-1px;
}
.heroTitle p{
  margin:0;
  color:var(--muted);
  max-width:780px;
  font-size:20px;
  line-height:1.45;
}

.searchbar{
  margin-top:22px;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:10px;
  padding:16px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
}

.field label,.bookField label{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:7px;
}

.field input,
.bookField input,
.loginForm input,
.loginForm select,
.checkoutForm input,
.checkoutForm select,
.checkoutForm textarea{
  width:100%;
  border:1px solid #ddcfb8;
  background:#fffdf9;
  color:var(--text);
  padding:13px 14px;
  border-radius:16px;
  outline:none;
}

.field input:focus,
.bookField input:focus,
.loginForm input:focus,
.loginForm select:focus,
.checkoutForm input:focus,
.checkoutForm select:focus,
.checkoutForm textarea:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(183,146,85,.10);
}

.fakeInput{
  width:100%;
  border:1px solid #ddcfb8;
  background:#fffdf9;
  color:var(--text);
  padding:13px 14px;
  border-radius:16px;
  outline:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.fakeInput:hover{border-color:var(--gold)}
.fakeInput.full{width:100%}

.guestRow{
  display:flex;
  gap:8px;
  align-items:center;
}

.hint,.fieldHint,.note,.bookingId{
  color:var(--muted);
  font-size:12px;
}

/* main grid */
.grid{
  display:grid;
  grid-template-columns:1.25fr .9fr;
  gap:18px;
  align-items:start;
  margin-top:12px;
}
.left{min-width:0}
.right{
  position:sticky;
  top:88px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:10px 0 14px;
  color:var(--muted);
}
.rating{
  display:flex;
  gap:8px;
  align-items:center;
}
.stars{color:#111}
.score{font-weight:800;color:#111}

.filtersBar{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}
.chip{
  border:1px solid var(--line);
  background:var(--chip);
  color:var(--chocolate);
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
}
.chip:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}
.chip.isActive{
  background:var(--green-dark);
  color:#fff5e8;
  border-color:var(--green-dark);
}
.filterTrigger i{margin-right:6px}

/* cards */
.list{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.card{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:16px;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transform:translateY(0);
  transition:transform .22s ease, box-shadow .22s ease;
}
.card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-strong);
}

.thumb{
  position:relative;
  min-height:210px;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.thumbBtns{
  position:absolute;
  top:10px;
  left:10px;
  display:flex;
  gap:8px;
}
.circleBtn{
  width:36px;
  height:36px;
  border:none;
  border-radius:999px;
  background:rgba(255,250,241,.94);
  box-shadow:var(--shadow);
  cursor:pointer;
}
.circleBtn:hover{transform:scale(1.06)}

.body{padding:16px 16px 16px 0}
.row{
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.row h3{
  margin:0;
  font-size:32px;
}
.like{
  white-space:nowrap;
  color:var(--muted);
}
.like .pct{
  font-weight:800;
  color:#111;
}
.sub{
  margin-top:6px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--muted);
}
.dot{opacity:.55}
.desc{
  margin:12px 0;
  font-size:20px;
  line-height:1.45;
}
.amenities{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.amenity,.badge{
  padding:8px 12px;
  border-radius:999px;
  background:var(--chip);
  border:1px solid var(--line);
  color:var(--chocolate);
  font-size:14px;
}
.bottom{
  margin-top:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.price{
  display:flex;
  align-items:baseline;
  gap:7px;
}
.money{
  font-size:34px;
  font-weight:800;
  color:var(--chocolate);
}
.from,.per{color:var(--muted)}

/* side */
.mapWrap,.info,.flowCard,.exchangeBox,.bookCard,.authCard,.statCard,.bookingCard,.emptyState,.checkoutCard,.summaryCard,.thankCard{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.map{
  height:420px;
  border-radius:24px;
  overflow:hidden;
}
.info{padding:18px}
.info h2,.sectionHead h2,.dashboardHero h1,.checkoutTitle{
  margin:0 0 10px;
}
.info ul{
  margin:0;
  padding-left:18px;
  line-height:1.65;
  color:var(--muted);
  font-size:16px;
}

/* sections */
.guestFlow,.exchangeSection,.dashboardSection,.checkoutSection,.thankSection{
  margin-top:40px;
}
.sectionHead p{
  color:var(--muted);
  font-size:18px;
  max-width:800px;
}

.flowCards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.flowCard{padding:22px}
.flowCard i{
  font-size:26px;
  color:var(--accent);
  margin-bottom:12px;
}
.flowCard h3{margin:0 0 8px}
.flowCard p{margin:0;color:var(--muted)}

.exchangeBox{
  padding:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.exchangeBox p{color:var(--muted)}

/* modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:120;
  overflow:hidden;
}
.modal.isOpen{display:block}
.modalBackdrop{
  position:absolute;
  inset:0;
  background:rgba(33,28,20,.50);
  animation:fadeIn .2s ease;
}
.modalPanel{
  position:relative;
  background:var(--card);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.26);
  animation:popIn .22s ease;
}
.modalPanelWide{
  max-width:1240px;
  width:calc(100% - 32px);
  margin:20px auto;
  max-height:calc(100dvh - 40px);
  overflow:hidden;
}
.modalClose{
  position:absolute;
  top:12px;
  left:12px;
  z-index:30;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:#fff;
  font-size:24px;
  cursor:pointer;
}

.siteModalGrid{
  display:grid;
  grid-template-columns:1.35fr .85fr;
  height:calc(100dvh - 40px);
  max-height:calc(100dvh - 40px);
}
.siteModalGrid > *{min-height:0}

.siteMain{
  padding:18px;
  min-height:0;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}
.siteSidebar{
  padding:18px;
  min-height:0;
  overflow-y:auto;
  overflow-x:hidden;
  border-left:1px solid var(--line);
  background:var(--card-2);
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}

.siteContent{padding:18px 4px 0}
.siteHeaderLine{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.siteHeaderLine h2{
  margin:0 0 6px;
  font-size:42px;
}
.siteHeaderActions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.gallery{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.gallery > img{
  width:100%;
  height:360px;
  object-fit:cover;
}
.galleryStrip{
  display:flex;
  gap:10px;
  padding:12px;
  overflow:auto;
  background:#fffaf3;
  border-top:1px solid var(--line);
}
.galleryStrip img{
  width:126px;
  height:88px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  border:1px solid var(--line);
  transition:transform .16s ease;
}
.galleryStrip img:hover{transform:scale(1.03)}

.modalMeta{
  color:var(--muted);
  margin-bottom:10px;
}
.siteContent p{
  font-size:18px;
  line-height:1.6;
}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.contentBlocks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:24px;
}
.contentBlock{
  border-top:1px solid var(--line);
  padding-top:14px;
}
.contentBlock h3{
  margin:0 0 10px;
  font-size:28px;
}
.iconList{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.iconList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
}
.iconList i{
  color:var(--chocolate);
  margin-top:2px;
}

/* book card */
.bookCard{padding:18px}
.bookTop{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:8px;
}
.bookPrice{
  display:flex;
  gap:7px;
  align-items:flex-end;
}
.bookMoney{
  font-size:36px;
  font-weight:800;
  color:var(--chocolate);
}
.bookFrom,.bookPer,.bookTiny{color:var(--muted)}
.bookDates{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.bookField{margin-top:12px}

.extras{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.extras label{
  display:flex;
  gap:8px;
  align-items:center;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#f7efdf;
  color:var(--text);
  cursor:pointer;
}
.extras label:hover{background:#f3e7d3}

.priceBreakdown{
  margin-top:14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fffdf9;
}
.priceBreakdown > div{
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  color:var(--muted);
}
.priceBreakdown .total{
  margin-top:6px;
  padding-top:10px;
  border-top:1px solid var(--line);
  color:var(--text);
  font-weight:700;
}
.clickableFee{cursor:pointer}
.clickableFee:hover{color:var(--accent-dark)}

.btnBig{
  width:100%;
  margin-top:14px;
}
.toast{
  margin-top:12px;
  display:none;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
}
.toast.isShow{display:block}

/* small modals */
.smallModal{
  position:fixed;
  inset:0;
  display:none;
  z-index:140;
}
.smallModal.isOpen{display:block}
.smallModalBackdrop{
  position:absolute;
  inset:0;
  background:rgba(33,28,20,.34);
  animation:fadeIn .18s ease;
}
.smallModalPanel{
  position:relative;
  max-width:420px;
  margin:120px auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-strong);
  padding:22px;
  animation:popIn .18s ease;
}
.smallModalPanel h4{
  margin:0 0 10px;
  font-size:26px;
}
.smallClose{
  position:absolute;
  top:8px;
  left:12px;
}

.sharePanel .shareGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:14px;
}
.shareAction{
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:16px 10px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}
.shareAction:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}
.shareAction i{
  font-size:18px;
  color:var(--accent);
}

/* chat */
.chatFloatingBtn{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:90;
  width:58px;
  height:58px;
  border:none;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  box-shadow:0 16px 34px rgba(217,119,43,.32);
  cursor:pointer;
}
.chatFloatingBtn:hover{
  transform:scale(1.08);
  background:var(--accent-dark);
}

.chatPanel{max-width:420px}
.chatHeader h4{margin:0 0 4px}
.chatHeader p{
  margin:0 0 12px;
  color:var(--muted);
}
.chatMessages{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:12px;
  max-height:280px;
  overflow:auto;
}
.chatMsg{
  max-width:82%;
  padding:12px 14px;
  border-radius:18px;
  line-height:1.4;
}
.chatMsg.host{
  align-self:flex-start;
  background:#f2eadb;
  color:var(--text);
}
.chatMsg.guest{
  align-self:flex-end;
  background:#e8f0e7;
  color:var(--green-dark);
}
.chatComposer{
  display:flex;
  gap:10px;
  margin-top:14px;
}
.chatComposer input{
  flex:1;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px 14px;
}

/* filters modal */
.filtersModal{
  position:fixed;
  inset:0;
  display:none;
  z-index:130;
}
.filtersModal.isOpen{display:block}
.filtersBackdrop{
  position:absolute;
  inset:0;
  background:rgba(33,28,20,.42);
  animation:fadeIn .2s ease;
}
.filtersPanel{
  position:relative;
  max-width:640px;
  margin:70px auto;
  background:var(--card);
  border-radius:28px;
  box-shadow:var(--shadow-strong);
  overflow:hidden;
  animation:popIn .22s ease;
}
.filtersHead{
  display:flex;
  align-items:center;
  gap:18px;
  padding:18px 22px;
  border-bottom:1px solid var(--line);
}
.filtersHead h3{
  margin:0;
  font-size:30px;
}
.filtersBody{
  padding:20px 22px;
  max-height:70vh;
  overflow:auto;
}
.filterGroup + .filterGroup{
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid var(--line);
}
.filterGroup h4{
  margin:0 0 12px;
  font-size:22px;
}
.filterOptions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.filterOption{
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fffdf8;
  padding:14px 16px;
  cursor:pointer;
}
.filterOption:hover{
  border-color:var(--gold);
  box-shadow:var(--shadow);
}
.filterOption input{accent-color:var(--accent)}
.filterOption i{
  color:var(--chocolate);
  font-size:20px;
}
.filtersFoot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 22px 22px;
  border-top:1px solid var(--line);
}

/* range picker */
.rangePicker{
  position:fixed;
  inset:0;
  display:none;
  z-index:150;
}
.rangePicker.isOpen{display:block}
.rangePickerBackdrop{
  position:absolute;
  inset:0;
  background:rgba(33,28,20,.36);
}
.rangePickerPanel{
  position:relative;
  max-width:760px;
  margin:90px auto;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow-strong);
  padding:20px;
  animation:popIn .22s ease;
}
.rangeHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.rangeMonthsTitle{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  text-align:center;
}
.rangeMonthsTitle strong{
  font-family:'Montserrat',sans-serif;
  font-size:24px;
}
.rangeMonths{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:18px;
}
.calendarMonth{min-width:0}
.weekHead{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
  color:var(--muted);
  font-size:13px;
  margin-bottom:10px;
  text-align:center;
}
.calendarGrid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:6px;
}
.calDay{
  position:relative;
  height:42px;
  border:none;
  border-radius:999px;
  background:transparent;
  cursor:pointer;
  color:var(--text);
}
.calDay:hover{background:#efe4cf}
.calDay.empty{
  visibility:hidden;
  pointer-events:none;
}
.calDay.in-range{
  background:#e2decc;
  border-radius:0;
}
.calDay.range-start,
.calDay.range-end{
  background:#5c6838;
  color:#fff;
  border-radius:999px;
}
.calDay.range-start::before,
.calDay.range-end::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  background:#e2decc;
  z-index:-1;
}
.calDay.range-start::before{
  left:50%;
  right:-3px;
}
.calDay.range-end::before{
  left:-3px;
  right:50%;
}
.calDay.range-start.range-end::before{display:none}
.rangeFoot{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}

/* auth */
.authBody{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
}
.authShell{
  width:100%;
  max-width:1180px;
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:20px;
}
.authLeft{padding:36px}
.authLeft h1{
  margin:10px 0;
  font-size:56px;
}
.authLeft p{
  color:var(--muted);
  font-size:20px;
  max-width:520px;
}
.authCard{padding:28px}
.authCard h2{margin-top:0}
.loginForm{
  display:grid;
  gap:12px;
}
.alertError{
  margin-bottom:14px;
  padding:12px 14px;
  border-radius:14px;
  background:#fff1ef;
  color:#8a3228;
  border:1px solid #efc7c0;
}
.googleBtn{
  width:100%;
  margin-top:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  padding:13px 14px;
  border-radius:16px;
  cursor:pointer;
}
.googleBtn:hover{transform:scale(1.03)}
.authSummary{
  margin-top:18px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fffdf8;
}
.authSummary h3{margin:0 0 10px}

/* dashboard */
.dashboardWrap{padding-top:26px}
.dashboardHero{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:18px;
}
.dashboardHero h1{
  font-size:48px;
  margin:8px 0 6px;
}
.dashboardHero p{
  margin:0;
  color:var(--muted);
}
.niceHero{
  padding:8px 0 10px;
}
.dashboardHeroActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.dashboardStats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.statCard{padding:20px}
.statCard span{
  display:block;
  color:var(--muted);
  margin-bottom:8px;
}
.statCard strong{
  font-size:36px;
  color:var(--chocolate);
}

.dashboardGrid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:18px;
  margin-top:22px;
}

.bookingGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.bookingCard{padding:20px}
.bookingTop{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:start;
}
.bookingTop h3{margin:0}
.statusBadge{
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}
.status-pending,
.statusBadge.status-pending{
  background:#fff2dd;
  color:#9a661f;
}
.status-confirmed,
.statusBadge.status-confirmed{
  background:#e8f0e7;
  color:var(--green-dark);
}
.bookingMeta{
  margin-top:14px;
  display:grid;
  gap:8px;
  color:var(--muted);
}
.bookingActions{
  display:flex;
  gap:8px;
  margin-top:16px;
}
.emptyState{
  padding:28px;
  text-align:center;
}
.emptyState h3{margin-top:0}
.emptyState p{color:var(--muted)}

.profileCard .profileMini{
  display:flex;
  gap:12px;
  align-items:center;
}
.avatarCircle{
  width:54px;
  height:54px;
  border-radius:999px;
  background:#e8f0e7;
  color:var(--green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-family:'Montserrat',sans-serif;
  font-size:22px;
}
.profileMini p{
  margin:4px 0 0;
  color:var(--muted);
}
.miniFacts{
  list-style:none;
  padding:0;
  margin:16px 0 0;
  display:grid;
  gap:10px;
}
.miniFacts li{
  display:flex;
  gap:10px;
  color:var(--muted);
  align-items:flex-start;
}

/* checkout / thank you */
.checkoutLayout{
  display:grid;
  grid-template-columns:1.15fr .75fr;
  gap:20px;
}
.checkoutForm{
  display:grid;
  gap:16px;
}
.checkoutCard{padding:24px}
.checkoutGrid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.checkoutSectionTitle{
  margin:0 0 8px;
  font-size:30px;
}
.summaryCard{
  position:sticky;
  top:90px;
  padding:22px;
}
.summaryRow{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
  color:var(--muted);
}
.summaryRow.total{
  margin-top:8px;
  padding-top:12px;
  border-top:1px solid var(--line);
  color:var(--text);
  font-weight:700;
}

.thankSection{
  display:flex;
  justify-content:center;
}
.thankCard{
  max-width:760px;
  width:100%;
  padding:34px;
  text-align:center;
}
.thankIcon{
  width:84px;
  height:84px;
  margin:0 auto 18px;
  border-radius:999px;
  background:#e8f0e7;
  color:var(--green-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
}
.thankCard h1{
  margin:0 0 12px;
  font-size:46px;
}
.thankCard p{
  color:var(--muted);
  font-size:18px;
}
.thankActions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:18px;
}

/* leaflet */
.leaflet-popup-content-wrapper{
  border-radius:18px;
  box-shadow:var(--shadow);
}
.leaflet-popup-content{margin:14px 16px}
.mapPopup h4{
  margin:0 0 6px;
  font-size:18px;
}
.mapPopup p{
  margin:0 0 10px;
  color:var(--muted);
}
.mapPopup .primary{
  padding:10px 12px;
  font-size:14px;
}

/* animations */
@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}
@keyframes popIn{
  from{
    opacity:0;
    transform:translateY(10px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

/* mobile menu */
.mobileMenu{
  position:fixed;
  inset:0;
  display:none;
  z-index:110;
}
.mobileMenu.isOpen{display:block}
.mobileMenuBackdrop{
  position:absolute;
  inset:0;
  background:rgba(33,28,20,.38);
}
.mobileMenuPanel{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:min(82vw, 360px);
  background:var(--card);
  border-right:1px solid var(--line);
  box-shadow:var(--shadow-strong);
  padding:18px;
  animation:slideMenu .22s ease;
}
@keyframes slideMenu{
  from{transform:translateX(-100%)}
  to{transform:translateX(0)}
}
.mobileClose{
  border:none;
  background:none;
  font-size:34px;
  cursor:pointer;
}
.mobileMenuHead{
  padding:6px 0 18px;
  border-bottom:1px solid var(--line);
}
.mobileNav{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-top:16px;
}
.mobileNav a{
  padding:12px 10px;
  border-radius:14px;
  color:var(--text);
}
.mobileNav a:hover{background:#f4ead7}

/* responsive desktop/tablet */
@media (max-width: 1120px){
  .grid{grid-template-columns:1fr}
  .right{position:static}
  .flowCards{grid-template-columns:1fr 1fr}
  .dashboardGrid{grid-template-columns:1fr}
  .dashboardStats{grid-template-columns:1fr}
  .bookingGrid{grid-template-columns:1fr}
  .checkoutLayout{grid-template-columns:1fr}
  .authShell{grid-template-columns:1fr}
}

/* mobile modal hard fix */
@media (max-width: 1120px){
  .modal{
    position:fixed;
    inset:0;
    overflow:hidden;
  }

  .modalPanel,
  .modalPanelWide{
    position:absolute;
    inset:0;
    width:100%;
    height:100dvh;
    max-width:none;
    max-height:none;
    margin:0;
    border-radius:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    background:var(--card);
  }

  .modalClose{
    position:absolute;
    top:12px;
    left:12px;
    z-index:50;
  }

  .siteModalGrid{
    display:block;
    height:100%;
    max-height:100%;
    overflow:hidden;
  }

  .siteMain{
    height:100%;
    min-height:0;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
    touch-action:pan-y;
    padding:68px 14px 24px;
  }

  .siteSidebar{
    overflow:visible;
    border-left:none;
    border-top:1px solid var(--line);
    background:var(--card-2);
    padding:14px;
    margin-top:16px;
  }

  .gallery > img{height:240px}
  .galleryStrip{
    gap:8px;
    padding:10px;
  }
  .galleryStrip img{
    width:92px;
    height:72px;
  }

  .siteHeaderLine{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .siteHeaderLine h2{font-size:34px}
  .contentBlocks{
    grid-template-columns:1fr;
    gap:12px;
  }
}

/* responsive smaller */
@media (max-width: 860px){
  .desktopNav{display:none}
  .burger{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .heroTitle h1{font-size:42px}
  .searchbar{grid-template-columns:1fr}
  .card{grid-template-columns:1fr}
  .body{padding:16px}
  .row h3{font-size:28px}
  .desc{font-size:18px}
  .flowCards{grid-template-columns:1fr}
  .filterOptions{grid-template-columns:1fr}
  .rangeMonths{grid-template-columns:1fr}
  .rangeMonthsTitle{grid-template-columns:1fr}
  .topbarInner{padding:14px 16px}
  .actions .ghost{display:none}
  .filtersPanel{
    margin:24px 12px;
  }
  .rangePickerPanel{
    margin:26px 12px;
  }
  .smallModalPanel{
    margin:90px 12px;
  }
}

.modalPanel.modalPanelWide {
    margin-top: 10px ! IMPORTANT;
}.gallery > img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}
.thumb {
    max-height: 310px;
}input[type="checkbox"] {
    max-width: 13px;
}

.smallClose {
    background: #d9772b ! IMPORTANT;
    width: 36px;
    border-radius: 360px;
    left: -40px;
}



@media screen and (max-width:800px){
    
    .gallery > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}


    
    
    
}


@media (max-width: 560px){
  .container{padding:18px 14px 90px}
  .heroTitle h1{font-size:34px}
  .heroTitle p{font-size:17px}
  .topbarInner{padding:12px 14px}
  .logo{font-size:22px}
  .row{flex-direction:column}
  .money{font-size:30px}
  .dashboardHero{flex-direction:column;align-items:start}
  .dashboardHero h1{font-size:34px}
  .authLeft{padding:8px}
  .authLeft h1{font-size:38px}
  .checkoutGrid2{grid-template-columns:1fr}
  .sharePanel .shareGrid{grid-template-columns:1fr 1fr}
}
ul.miniFacts li {
    display: flex;
    align-items: center;
}
ul.miniFacts {
    margin-top: 15px;
}
section.info.profileCard {
    margin-bottom: 20px;
}

@media (max-width: 1120px){
  .modal{
    position: fixed;
    inset: 0;
    overflow: hidden;
  }

  .modalPanel,
  .modalPanelWide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100dvh;
    max-width: none;
    max-height: none;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    display: block;
    background: var(--card);
  }

  .modalClose{
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 50;
  }

  .siteModalGrid{
    display: block;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 68px 14px 24px;
  }

  .siteMain{
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 0;
  }

  .siteSidebar{
    overflow: visible;
    border-left: none;
    border-top: 1px solid var(--line);
    background: var(--card-2);
    padding: 14px 0 0;
    margin-top: 16px;
  }

  .gallery > img{
    height: 240px;
  }

  .galleryStrip{
    gap: 8px;
    padding: 10px;
  }

  .galleryStrip img{
    width: 92px;
    height: 72px;
  }

  .siteHeaderLine{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .siteHeaderLine h2{
    font-size: 34px;
  }

  .contentBlocks{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bookCard{
    padding: 16px;
  }
}
