:root{
  --irisma-gold:#c9a96a;
  --irisma-gold-dark:#a97c38;
  --irisma-ink:#151515;
  --irisma-cream:#fffaf3;
}

#irisma-custom-hero{
  position:relative;
  width:100%;
  min-height:680px;
  overflow:hidden;
  background:#111;
  color:#fff;
  isolation:isolate;
}

.irisma-custom-slide{
  position:absolute;
  inset:0;
  opacity:0;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center;
  transform:scale(1.02);
  transition:opacity 1.15s ease;
  filter:brightness(1.16) saturate(1.06);
}

.irisma-custom-slide.is-active{
  opacity:1;
  animation:irismaCustomZoom var(--duration,12000ms) linear forwards;
}

.irisma-custom-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.46) 0%,rgba(0,0,0,.16) 48%,rgba(0,0,0,.04) 82%),
    linear-gradient(180deg,rgba(0,0,0,.02) 0%,rgba(0,0,0,.20) 100%);
}

.irisma-custom-content{
  position:relative;
  z-index:3;
  min-height:680px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:1320px;
  margin:0 auto;
  padding:88px 58px 120px;
}

.irisma-custom-copy{
  max-width:740px;
  margin-bottom:38px;
}

.irisma-custom-kicker{
  margin:0 0 12px;
  color:var(--irisma-gold);
  font:800 13px/1.2 Arial,sans-serif;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.irisma-custom-title{
  margin:0;
  font:500 clamp(48px,6vw,78px)/1 Georgia,"Times New Roman",serif;
  letter-spacing:-.035em;
  text-shadow:0 5px 24px rgba(0,0,0,.56);
}

.irisma-custom-subtitle{
  margin:17px 0 0;
  max-width:660px;
  font:600 clamp(16px,1.55vw,21px)/1.5 Arial,sans-serif;
  text-shadow:0 3px 16px rgba(0,0,0,.56);
}

.irisma-booking-bar{
  display:grid;
  grid-template-columns:1.15fr 1.15fr 1fr 210px;
  width:min(1050px,100%);
  min-height:82px;
  border:1px solid rgba(201,169,106,.55);
  border-radius:18px;
  overflow:visible;
  background:rgba(255,252,247,.97);
  box-shadow:0 20px 55px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
}

.irisma-field{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:15px 20px;
  color:var(--irisma-ink);
  border-right:1px solid rgba(201,169,106,.35);
}

.irisma-field-label{
  margin-bottom:5px;
  color:#766344;
  font:800 11px/1 Arial,sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.irisma-date-input,
.irisma-guests-button{
  width:100%;
  border:0;
  outline:0;
  padding:0;
  background:transparent;
  color:var(--irisma-ink);
  font:700 16px/1.3 Arial,sans-serif;
}

.irisma-date-input{cursor:pointer;}

.irisma-guests-button{
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  text-align:left;
}

.irisma-search-button{
  border:0;
  border-radius:0 17px 17px 0;
  background:linear-gradient(135deg,#dabd82 0%,#b98235 100%);
  color:#18130d;
  font:800 16px/1 Arial,sans-serif;
  letter-spacing:.02em;
  cursor:pointer;
}

.irisma-guests-popover{
  position:absolute;
  left:0;
  top:calc(100% + 12px);
  z-index:20;
  width:330px;
  padding:17px;
  border:1px solid rgba(201,169,106,.45);
  border-radius:16px;
  background:var(--irisma-cream);
  box-shadow:0 20px 48px rgba(0,0,0,.25);
  color:var(--irisma-ink);
}

.irisma-guests-popover[hidden]{display:none;}

.irisma-guest-row{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:16px;
  padding:11px 0;
  border-bottom:1px solid rgba(201,169,106,.22);
}

.irisma-guest-row:last-of-type{border-bottom:0;}

.irisma-guest-name{font:800 15px/1.2 Arial,sans-serif;}
.irisma-guest-note{margin-top:3px;color:#766d60;font:500 12px/1.2 Arial,sans-serif;}

.irisma-counter{
  display:flex;
  align-items:center;
  gap:10px;
}

.irisma-counter button{
  width:34px;
  height:34px;
  border:1px solid rgba(201,169,106,.6);
  border-radius:9px;
  background:#fff;
  color:var(--irisma-ink);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.irisma-counter-value{
  min-width:22px;
  text-align:center;
  font:800 15px/1 Arial,sans-serif;
}

.irisma-guests-done{
  width:100%;
  margin-top:13px;
  padding:12px;
  border:0;
  border-radius:10px;
  background:var(--irisma-ink);
  color:#fff;
  font:800 14px/1 Arial,sans-serif;
  cursor:pointer;
}

.irisma-custom-dots{
  position:absolute;
  right:32px;
  bottom:28px;
  z-index:4;
  display:flex;
  gap:8px;
}

.irisma-custom-dot{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.65);
  cursor:pointer;
  transition:width .25s ease,background .25s ease;
}

.irisma-custom-dot.is-active{
  width:30px;
  background:var(--irisma-gold);
}

@media (max-width:980px){
  #irisma-custom-hero,
  .irisma-custom-content{min-height:760px;}

  .irisma-custom-content{
    padding:80px 26px 105px;
    justify-content:flex-end;
  }

  .irisma-custom-copy{margin-bottom:28px;}

  .irisma-booking-bar{grid-template-columns:1fr 1fr;}
  .irisma-field:nth-child(2){border-right:0;}
  .irisma-field:nth-child(3){border-top:1px solid rgba(201,169,106,.35);}

  .irisma-search-button{
    min-height:76px;
    border-radius:0 0 17px 0;
    border-top:1px solid rgba(201,169,106,.35);
  }
}

@media (max-width:640px){
  #irisma-custom-hero,
  .irisma-custom-content{min-height:820px;}

  .irisma-custom-content{padding:72px 16px 92px;}
  .irisma-custom-title{font-size:clamp(42px,12vw,58px);}
  .irisma-custom-subtitle{font-size:15px;}

  .irisma-booking-bar{
    grid-template-columns:1fr;
    border-radius:15px;
  }

  .irisma-field{
    min-height:68px;
    border-right:0;
    border-bottom:1px solid rgba(201,169,106,.35);
  }

  .irisma-search-button{
    min-height:68px;
    border-radius:0 0 14px 14px;
  }

  .irisma-guests-popover{
    left:0;
    width:min(330px,calc(100vw - 32px));
  }

  .irisma-custom-dots{
    right:18px;
    bottom:18px;
  }
}

@keyframes irismaCustomZoom{
  from{transform:scale(1.02);}
  to{transform:scale(1.08);}
}

@media (prefers-reduced-motion:reduce){
  .irisma-custom-slide{
    animation:none!important;
    transition:none!important;
  }
}

/* =========================================================
   IRISMA CUSTOM HERO v7.2 — FINAL BRIGHT GOLD SYSTEM
   ========================================================= */

:root{
  --irisma-gold:#F4C84A;
  --irisma-gold-light:#FFE49A;
  --irisma-gold-dark:#D99A1D;
  --irisma-gold-shadow:#8C5C09;
  --irisma-black:#060606;
  --irisma-cream:#FFF8E8;
}

#irisma-custom-hero{
  display:block !important;
  margin-top:0 !important;
  margin-bottom:0 !important;
  padding-top:0 !important;
  border-top:0 !important;
}

#irisma-custom-hero + *{
  margin-top:0 !important;
}

body.irisma-topbar-active main,
body.irisma-topbar-active [role="main"],
body.irisma-topbar-active main > :first-child,
body.irisma-topbar-active [role="main"] > :first-child{
  margin-top:0 !important;
  padding-top:0 !important;
}

.irisma-booking-placeholder{
  width:min(1180px,100%);
  min-height:82px;
}

/* One bright gold across the entire interface. */
#irisma-global-topbar a,
#irisma-global-topbar button,
header nav a,
header nav button,
.irisma-custom-eyebrow,
.irisma-custom-subtitle,
body > .irisma-booking-bar .irisma-field-label{
  color:var(--irisma-gold) !important;
}

/* Brighten the existing uploaded Irisma logo without replacing the asset. */
header img[alt*="Irisma" i],
header img[src*="logo" i],
img[alt*="IRISMA" i],
img[src*="irisma" i]{
  filter:
    brightness(1.34)
    saturate(1.48)
    contrast(1.08)
    drop-shadow(0 0 8px rgba(244,200,74,.18)) !important;
}

/* Same font family for IRISMA LUXURY VILLAS and the subtitle. */
.irisma-custom-eyebrow,
.irisma-custom-subtitle{
  font-family:Arial, Helvetica, sans-serif !important;
  font-style:normal !important;
  font-weight:750 !important;
  color:var(--irisma-gold) !important;
  text-shadow:0 2px 12px rgba(0,0,0,.48);
}

.irisma-custom-eyebrow{
  text-transform:uppercase !important;
  letter-spacing:.12em !important;
}

.irisma-custom-subtitle{
  letter-spacing:.045em !important;
}

/* Fixed premium booking bar. */
body > .irisma-booking-bar.irisma-booking-bar-fixed{
  position:fixed !important;
  left:50% !important;
  right:auto !important;
  top:auto !important;
  bottom:12px !important;
  display:grid !important;
  grid-template-columns:1.15fr 1.15fr 1fr 210px !important;
  width:min(1180px,calc(100vw - 28px)) !important;
  max-width:1180px !important;
  min-height:82px !important;
  margin:0 !important;
  transform:translateX(-50%) translateZ(0) !important;
  isolation:isolate !important;
  overflow:visible !important;
  z-index:2147483646 !important;
  border:1px solid var(--irisma-gold) !important;
  border-radius:18px !important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,0)),
    linear-gradient(135deg,#151109 0%,#050504 100%) !important;
  box-shadow:
    0 24px 62px rgba(0,0,0,.50),
    0 4px 20px rgba(244,200,74,.34) !important;
}

body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-field{
  position:relative;
  min-height:80px;
  padding:16px 24px !important;
  background:transparent !important;
  border-right:1px solid rgba(244,200,74,.42) !important;
}

body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-field-label{
  color:var(--irisma-gold) !important;
  font-weight:900 !important;
  letter-spacing:.065em;
}

.irisma-date-button,
body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-guests-button{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  width:100% !important;
  min-height:34px !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  color:#fff !important;
  font:inherit !important;
  font-size:16px !important;
  text-align:left !important;
  cursor:pointer !important;
}

.irisma-date-icon{
  color:#fff;
  font-size:16px;
}

/* BOOK NOW and Search share the same bright gold. */
body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-search-button,
#irisma-global-topbar .irisma-topbar-book,
header .book-now,
header [class*="book"][class*="button"],
header a[href*="book"]{
  background:
    linear-gradient(180deg,rgba(255,255,255,.28),rgba(255,255,255,0) 42%),
    linear-gradient(135deg,var(--irisma-gold-light) 0%,var(--irisma-gold) 54%,var(--irisma-gold-dark) 100%) !important;
  color:#171008 !important;
  border-color:var(--irisma-gold) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.70),
    0 5px 18px rgba(244,200,74,.26) !important;
}

body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-search-button{
  min-height:80px !important;
  border-radius:0 17px 17px 0 !important;
}

/* Date and Guests panels remain above the bar. */
body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-date-popover,
body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-guests-popover{
  position:absolute !important;
  top:auto !important;
  bottom:calc(100% + 14px) !important;
  left:0 !important;
  z-index:2147483647 !important;
  width:340px !important;
  padding:16px !important;
  border:1px solid var(--irisma-gold) !important;
  border-radius:16px !important;
  background:
    linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,0)),
    linear-gradient(145deg,#19150f 0%,#080706 100%) !important;
  color:#fff !important;
  box-shadow:
    0 26px 64px rgba(0,0,0,.58),
    0 0 18px rgba(244,200,74,.15) !important;
}

.irisma-calendar-head{
  display:grid;
  grid-template-columns:36px 1fr 36px;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}

.irisma-calendar-head strong{
  text-align:center;
  color:#fff;
}

.irisma-calendar-head button{
  width:34px;
  height:34px;
  border:1px solid var(--irisma-gold);
  border-radius:9px;
  background:#100e0a;
  color:#fff;
  cursor:pointer;
}

.irisma-calendar-weekdays,
.irisma-calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:5px;
}

.irisma-calendar-weekdays{
  margin-bottom:6px;
  color:var(--irisma-gold);
  font-size:11px;
  font-weight:900;
  text-align:center;
  text-transform:uppercase;
}

.irisma-calendar-day{
  aspect-ratio:1;
  border:1px solid transparent;
  border-radius:8px;
  background:transparent;
  color:#fff;
  cursor:pointer;
}

.irisma-calendar-day:hover{
  border-color:var(--irisma-gold);
  background:rgba(244,200,74,.17);
}

.irisma-calendar-day.is-selected{
  background:linear-gradient(135deg,var(--irisma-gold-light),var(--irisma-gold-dark));
  color:#110c06;
  font-weight:900;
}

.irisma-calendar-day:disabled{
  color:#6f685d;
  cursor:not-allowed;
}

.irisma-calendar-empty{
  aspect-ratio:1;
}

.irisma-guest-note{
  color:#cabb9e !important;
}

.irisma-counter button{
  background:#14110d !important;
  color:#fff !important;
  border-color:var(--irisma-gold) !important;
}

.irisma-guests-done{
  background:linear-gradient(135deg,var(--irisma-gold-light),var(--irisma-gold-dark)) !important;
  color:#171008 !important;
}

@media(max-width:980px){
  body > .irisma-booking-bar.irisma-booking-bar-fixed{
    grid-template-columns:1fr 1fr !important;
    width:min(760px,calc(100vw - 20px)) !important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-search-button{
    border-radius:0 0 17px 0 !important;
  }
}

@media(max-width:640px){
  body > .irisma-booking-bar.irisma-booking-bar-fixed{
    grid-template-columns:1fr !important;
    width:calc(100vw - 14px) !important;
    bottom:7px !important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-field,
  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-search-button{
    min-height:62px !important;
    border-radius:0 !important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-date-popover,
  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-guests-popover{
    left:50% !important;
    width:min(340px,calc(100vw - 24px)) !important;
    transform:translateX(-50%) !important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 001
   ========================================================= */
:root{--irisma-gold:#F4C84A;--irisma-gold-light:#FFE49A;--irisma-gold-dark:#D99A1D;}
.irisma-custom-eyebrow,.irisma-custom-subtitle{font-family:Arial,Helvetica,sans-serif!important;font-size:clamp(15px,1.25vw,19px)!important;line-height:1.35!important;font-weight:750!important;color:var(--irisma-gold)!important;letter-spacing:.045em!important;}
.irisma-custom-eyebrow{text-transform:uppercase!important;}
#irisma-global-topbar,.irisma-global-topbar,header.is-sticky,header[class*="sticky"]{background:#050505!important;}
#irisma-global-topbar *,.irisma-global-topbar *,header.is-sticky a,header[class*="sticky"] a{color:var(--irisma-gold)!important;}
#irisma-global-topbar a[href*="all-properties"],#irisma-global-topbar a[href*="book"],header a[href*="all-properties"],header a[href*="book"]{background:linear-gradient(135deg,var(--irisma-gold-light),var(--irisma-gold-dark))!important;color:#090806!important;border-color:var(--irisma-gold)!important;}
.irisma-booking-status{position:absolute;left:50%;bottom:calc(100% + 14px);z-index:2147483647;min-width:280px;max-width:min(520px,calc(100vw - 32px));padding:11px 16px;border:1px solid var(--irisma-gold);border-radius:12px;background:#11100d;color:#fff;text-align:center;font:800 14px/1.35 Arial,sans-serif;transform:translateX(-50%);box-shadow:0 16px 44px rgba(0,0,0,.45);}
.irisma-booking-status[data-type="error"]{border-color:#d94b45;background:#3a1110;}
.irisma-calendar-day.is-unavailable{position:relative;color:#756e64!important;background:rgba(255,255,255,.025)!important;cursor:not-allowed!important;}
.irisma-calendar-day.is-unavailable::after{content:"";position:absolute;left:15%;right:15%;top:50%;height:1px;background:#c65b52;transform:rotate(-24deg);transform-origin:center;}
.irisma-calendar-day.is-unavailable:hover{border-color:transparent!important;}
@media(max-width:640px){.irisma-booking-status{bottom:calc(100% + 10px);min-width:240px;font-size:13px;}}


/* =========================================================
   IRISMA 8.0.0 — BUILD 002
   ========================================================= */

body > .irisma-booking-bar .irisma-field:has(#irisma-guests-button){
  position:relative!important;
}

body > .irisma-booking-bar .irisma-booking-status{
  left:50%!important;
  bottom:calc(100% + 14px)!important;
  width:320px;
  min-width:280px;
  transform:translateX(-50%)!important;
  z-index:2147483647!important;
}

.irisma-calendar-day.is-unavailable,
.irisma-calendar-day:disabled.is-unavailable{
  opacity:.58!important;
  text-decoration:line-through!important;
  text-decoration-thickness:2px!important;
  text-decoration-color:#e35c55!important;
  cursor:not-allowed!important;
  pointer-events:none!important;
}

.irisma-date-popover.is-loading::after{
  content:"Checking availability…";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  border-radius:inherit;
  background:rgba(8,7,6,.86);
  color:var(--irisma-gold);
  font:800 13px/1.2 Arial,sans-serif;
  z-index:5;
}

#irisma-global-topbar a[href^="tel:"],
#irisma-global-topbar a[href^="mailto:"],
.irisma-global-topbar a[href^="tel:"],
.irisma-global-topbar a[href^="mailto:"]{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:30px!important;
  padding:6px 13px!important;
  border:1px solid var(--irisma-gold)!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,var(--irisma-gold-light),var(--irisma-gold-dark))!important;
  color:#090806!important;
  font-weight:900!important;
  text-decoration:none!important;
}

.irisma-custom-kicker{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:clamp(15px,1.25vw,19px)!important;
  line-height:1.35!important;
  font-weight:750!important;
  letter-spacing:.045em!important;
  color:var(--irisma-gold)!important;
  text-transform:uppercase!important;
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 003
   ========================================================= */

#irisma-global-topbar a[href*="wa.me"],
#irisma-global-topbar a[href*="whatsapp"],
.irisma-global-topbar a[href*="wa.me"],
.irisma-global-topbar a[href*="whatsapp"]{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:30px!important;
  padding:6px 13px!important;
  border:1px solid var(--irisma-gold)!important;
  border-radius:999px!important;
  background:linear-gradient(135deg,var(--irisma-gold-light),var(--irisma-gold-dark))!important;
  color:#090806!important;
  font-weight:900!important;
  text-decoration:none!important;
}

.irisma-custom-eyebrow,
.irisma-custom-kicker,
.irisma-custom-subtitle{
  font-size:clamp(18px,1.55vw,24px)!important;
  line-height:1.25!important;
  font-weight:800!important;
  letter-spacing:.05em!important;
}

.irisma-calendar-day.is-unavailable,
.irisma-calendar-day:disabled.is-unavailable{
  position:relative!important;
  opacity:.42!important;
  color:#8b8377!important;
  background:rgba(255,255,255,.025)!important;
  text-decoration:line-through!important;
  text-decoration-thickness:2px!important;
  text-decoration-color:#ff6b63!important;
  cursor:not-allowed!important;
  pointer-events:none!important;
}

.irisma-calendar-day.is-unavailable::before{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  top:50%;
  height:2px;
  border-radius:999px;
  background:#ff6b63;
  transform:rotate(-22deg);
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 004
   ========================================================= */

/* Remove residual Lodgify whitespace above the slideshow. */
body.irisma-topbar-active #irisma-custom-hero,
body.irisma-topbar-active #irisma-custom-hero-wrapper,
body.irisma-topbar-active main > div:has(#irisma-custom-hero),
body.irisma-topbar-active [role="main"] > div:has(#irisma-custom-hero){
  margin-top:0!important;
  padding-top:0!important;
  border-top:0!important;
}

body.irisma-topbar-active header + main,
body.irisma-topbar-active header + [role="main"]{
  margin-top:0!important;
  padding-top:0!important;
}

/* Compact mobile experience: maximize visible slideshow. */
@media(max-width:640px){
  #irisma-global-topbar,
  .irisma-global-topbar{
    min-height:30px!important;
    padding:3px 6px!important;
    gap:4px!important;
    font-size:9px!important;
  }

  #irisma-global-topbar a,
  #irisma-global-topbar button,
  .irisma-global-topbar a,
  .irisma-global-topbar button{
    min-height:24px!important;
    padding:3px 7px!important;
    font-size:9px!important;
    border-radius:999px!important;
  }

  header,
  header.is-sticky,
  header[class*="sticky"]{
    min-height:52px!important;
    padding-top:4px!important;
    padding-bottom:4px!important;
  }

  header img[alt*="Irisma" i],
  header img[src*="logo" i]{
    max-height:42px!important;
    width:auto!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed{
    grid-template-columns:1fr 1fr 1fr 84px!important;
    width:calc(100vw - 10px)!important;
    min-height:48px!important;
    bottom:5px!important;
    border-radius:11px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-field{
    min-height:46px!important;
    padding:6px 8px!important;
    border-radius:0!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-field-label{
    font-size:8px!important;
    line-height:1!important;
  }

  .irisma-date-button,
  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-guests-button{
    min-height:22px!important;
    font-size:10px!important;
    gap:3px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-search-button{
    min-height:46px!important;
    padding:4px!important;
    border-radius:0 10px 10px 0!important;
    font-size:10px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-date-popover,
  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-guests-popover{
    width:min(310px,calc(100vw - 18px))!important;
    padding:11px!important;
    bottom:calc(100% + 8px)!important;
  }

  .irisma-custom-eyebrow,
  .irisma-custom-kicker,
  .irisma-custom-subtitle{
    font-size:12px!important;
  }

  .irisma-custom-title{
    font-size:clamp(28px,9vw,42px)!important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 005
   Critical loader repair
   ========================================================= */

html[data-irisma-build="8.0.0-005"] [id="home-hero.search-bar"],
html[data-irisma-build="8.0.0-005"] [class*="external-booking-widget"]{
  display:none!important;
}

#irisma-custom-hero[data-irisma-build="8.0.0-005"]{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
}

/* Remove remaining white separator around the custom hero. */
#irisma-custom-hero,
#irisma-custom-hero-wrapper,
#irisma-custom-hero-parent{
  margin-top:0!important;
  padding-top:0!important;
  border-top:0!important;
}

/* Keep the fixed custom bar visually unmistakable. */
body > .irisma-booking-bar.irisma-booking-bar-fixed{
  background:
    linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,0)),
    linear-gradient(135deg,#151109 0%,#050504 100%)!important;
  border:1px solid var(--irisma-gold)!important;
  color:#fff!important;
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 006
   ========================================================= */

/* Strong unavailable-date state. */
.irisma-calendar-day.is-unavailable,
.irisma-calendar-day:disabled.is-unavailable{
  opacity:.34!important;
  color:#aaa29a!important;
  text-decoration:line-through!important;
  text-decoration-thickness:2px!important;
  text-decoration-color:#ff6b63!important;
  background:rgba(255,255,255,.02)!important;
  cursor:not-allowed!important;
  pointer-events:none!important;
}

/* Force top bar into one compact row on phones. */
@media(max-width:640px){
  #irisma-global-topbar,
  .irisma-global-topbar{
    display:flex!important;
    flex-wrap:nowrap!important;
    align-items:center!important;
    justify-content:center!important;
    gap:3px!important;
    min-height:30px!important;
    width:100%!important;
    padding:3px!important;
    overflow:hidden!important;
    white-space:nowrap!important;
  }
  #irisma-global-topbar > *,
  .irisma-global-topbar > *{
    flex:0 1 auto!important;
    min-width:0!important;
    margin:0!important;
  }
  #irisma-global-topbar a,
  #irisma-global-topbar button,
  .irisma-global-topbar a,
  .irisma-global-topbar button{
    min-height:22px!important;
    padding:3px 5px!important;
    font-size:8px!important;
    line-height:1!important;
  }
  #irisma-global-topbar .irisma-topbar-official,
  .irisma-global-topbar .irisma-topbar-official{
    display:none!important;
  }

  /* Calendar is always completely inside the viewport. */
  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-date-popover{
    position:fixed!important;
    left:6px!important;
    right:6px!important;
    top:auto!important;
    bottom:58px!important;
    width:auto!important;
    max-width:none!important;
    max-height:calc(100dvh - 125px)!important;
    overflow:auto!important;
    transform:none!important;
    margin:0!important;
    border-radius:14px!important;
    z-index:2147483647!important;
  }
  .irisma-calendar-head{min-height:38px!important}
  .irisma-calendar-grid{gap:3px!important}
  .irisma-calendar-day{min-height:36px!important;font-size:14px!important}
  .irisma-calendar-weekdays{font-size:10px!important}
}

/* Translate/remove stubborn visual gap. */
#irisma-custom-hero{margin-top:0!important;padding-top:0!important}
#irisma-custom-hero::before{display:none!important}


/* =========================================================
   IRISMA 8.0.0 — BUILD 007
   ========================================================= */

.irisma-calendar-loading,
.irisma-calendar-error{
  display:grid!important;
  place-items:center!important;
  min-height:210px!important;
  padding:20px!important;
  color:var(--irisma-gold)!important;
  text-align:center!important;
  font-weight:800!important;
}

.irisma-calendar-error{
  gap:14px!important;
}

.irisma-calendar-retry{
  min-height:36px!important;
  padding:7px 18px!important;
  border:1px solid var(--irisma-gold)!important;
  border-radius:999px!important;
  background:var(--irisma-gold)!important;
  color:#090806!important;
  font-weight:900!important;
}

.irisma-calendar-day.is-unavailable,
.irisma-calendar-day:disabled.is-unavailable{
  position:relative!important;
  opacity:.34!important;
  color:#aaa29a!important;
  text-decoration:line-through!important;
  text-decoration-thickness:2px!important;
  text-decoration-color:#ff6b63!important;
  background:rgba(255,255,255,.02)!important;
  cursor:not-allowed!important;
  pointer-events:none!important;
}

.irisma-calendar-day.is-unavailable::after{
  content:""!important;
  position:absolute!important;
  left:15%!important;
  right:15%!important;
  top:50%!important;
  height:2px!important;
  border-radius:999px!important;
  background:#ff6b63!important;
  transform:rotate(-25deg)!important;
}

@media(max-width:640px){
  #irisma-global-topbar,
  .irisma-global-topbar{
    display:flex!important;
    flex-flow:row nowrap!important;
    align-items:center!important;
    justify-content:center!important;
    gap:2px!important;
    min-height:31px!important;
    height:31px!important;
    padding:2px 3px!important;
    overflow:hidden!important;
    white-space:nowrap!important;
  }

  #irisma-global-topbar > *,
  .irisma-global-topbar > *{
    flex:0 1 auto!important;
    min-width:0!important;
    margin:0!important;
  }

  #irisma-global-topbar a,
  #irisma-global-topbar button,
  .irisma-global-topbar a,
  .irisma-global-topbar button{
    min-height:23px!important;
    height:23px!important;
    max-width:28vw!important;
    padding:2px 5px!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    font-size:7.5px!important;
    line-height:1!important;
  }

  #irisma-global-topbar .irisma-topbar-official,
  .irisma-global-topbar .irisma-topbar-official{
    display:none!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed
  .irisma-date-popover{
    position:fixed!important;
    inset:auto 5px 57px 5px!important;
    width:auto!important;
    max-width:none!important;
    max-height:calc(100dvh - 75px)!important;
    overflow:auto!important;
    margin:0!important;
    padding:10px!important;
    transform:none!important;
    border-radius:13px!important;
    z-index:2147483647!important;
  }

  .irisma-calendar-head{
    min-height:36px!important;
  }

  .irisma-calendar-weekdays,
  .irisma-calendar-grid{
    display:grid!important;
    grid-template-columns:repeat(7,minmax(0,1fr))!important;
    width:100%!important;
  }

  .irisma-calendar-grid{
    gap:2px!important;
  }

  .irisma-calendar-day{
    width:100%!important;
    min-width:0!important;
    min-height:34px!important;
    padding:0!important;
    font-size:13px!important;
  }

  .irisma-calendar-empty{
    min-width:0!important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 008
   Final calendar/mobile overrides
   ========================================================= */

.irisma-date-popover[hidden],
.irisma-guests-popover[hidden]{
  display:none!important;
}

.irisma-calendar-loading,
.irisma-calendar-error{
  min-height:190px!important;
}

.irisma-calendar-day:disabled{
  pointer-events:none!important;
}

.irisma-calendar-day.is-unavailable{
  opacity:.30!important;
  color:#9b9288!important;
  text-decoration:line-through!important;
  text-decoration-thickness:2px!important;
  text-decoration-color:#ff665e!important;
}

@media(max-width:640px){
  html,
  body{
    overflow-x:hidden!important;
  }

  #irisma-global-topbar,
  .irisma-global-topbar{
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr) auto auto!important;
    align-items:center!important;
    gap:2px!important;
    width:100%!important;
    min-height:30px!important;
    padding:2px 3px!important;
  }

  #irisma-global-topbar a,
  #irisma-global-topbar button,
  .irisma-global-topbar a,
  .irisma-global-topbar button{
    min-width:0!important;
    max-width:none!important;
    min-height:23px!important;
    height:23px!important;
    padding:2px 4px!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:7px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed{
    grid-template-columns:1fr 1fr 1fr 72px!important;
    width:calc(100vw - 6px)!important;
    min-height:45px!important;
    bottom:3px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-field{
    min-height:43px!important;
    padding:4px 6px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-search-button{
    min-height:43px!important;
    font-size:9px!important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-date-popover{
    position:fixed!important;
    left:4px!important;
    right:4px!important;
    top:auto!important;
    bottom:52px!important;
    width:auto!important;
    max-width:none!important;
    max-height:calc(100dvh - 60px)!important;
    overflow-y:auto!important;
    transform:none!important;
    margin:0!important;
    padding:9px!important;
    box-sizing:border-box!important;
  }

  .irisma-calendar-weekdays,
  .irisma-calendar-grid{
    grid-template-columns:repeat(7,minmax(0,1fr))!important;
    gap:2px!important;
  }

  .irisma-calendar-day{
    min-width:0!important;
    width:100%!important;
    min-height:32px!important;
    aspect-ratio:auto!important;
    padding:0!important;
    font-size:12px!important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 011
   Transparent homepage header over slideshow
   ========================================================= */

/* On the homepage, place the logo/menu header over the slideshow
   so more of every photograph remains visible. The contact bar
   above it keeps its existing dark background. */
body:has(#irisma-custom-hero) header,
body:has(#irisma-custom-hero) header.is-sticky,
body:has(#irisma-custom-hero) header[class*="sticky"]{
  position:absolute !important;
  top:44px !important;
  left:0 !important;
  right:0 !important;
  z-index:10050 !important;
  margin:0 !important;
  border:0 !important;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.48) 0%,
      rgba(0,0,0,.20) 58%,
      rgba(0,0,0,0) 100%
    ) !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}

/* Keep the slideshow directly below the contact bar, behind header. */
body:has(#irisma-custom-hero) #irisma-custom-hero{
  margin-top:0 !important;
}

/* Stronger, clearer logo without changing the uploaded asset. */
body:has(#irisma-custom-hero) header img[alt*="Irisma" i],
body:has(#irisma-custom-hero) header img[src*="logo" i],
body:has(#irisma-custom-hero) header img[src*="irisma" i]{
  opacity:1 !important;
  filter:
    brightness(1.55)
    saturate(1.55)
    contrast(1.12)
    drop-shadow(0 3px 8px rgba(0,0,0,.85))
    drop-shadow(0 0 7px rgba(244,200,74,.24)) !important;
}

/* More visible menu labels over bright photographs. */
body:has(#irisma-custom-hero) header nav a,
body:has(#irisma-custom-hero) header nav button,
body:has(#irisma-custom-hero) header [class*="menu"] a,
body:has(#irisma-custom-hero) header [class*="menu"] button{
  color:#FFE49A !important;
  font-weight:900 !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 0 10px rgba(0,0,0,.82) !important;
}

/* Preserve readable language and currency controls. */
body:has(#irisma-custom-hero) header a,
body:has(#irisma-custom-hero) header button{
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 0 9px rgba(0,0,0,.78);
}

/* Mobile header overlays the hero beneath the compact top bar. */
@media(max-width:640px){
  body:has(#irisma-custom-hero) header,
  body:has(#irisma-custom-hero) header.is-sticky,
  body:has(#irisma-custom-hero) header[class*="sticky"]{
    top:31px !important;
    min-height:76px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.54) 0%,
        rgba(0,0,0,.18) 72%,
        rgba(0,0,0,0) 100%
      ) !important;
  }

  body:has(#irisma-custom-hero) header img[alt*="Irisma" i],
  body:has(#irisma-custom-hero) header img[src*="logo" i],
  body:has(#irisma-custom-hero) header img[src*="irisma" i]{
    max-height:64px !important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 012
   Booking flow, title position and unified elegant header
   ========================================================= */

/* Lower the hero titles so they do not collide with the overlaid menu. */
#irisma-custom-hero .irisma-custom-content{
  padding-top:170px !important;
}

#irisma-custom-hero .irisma-custom-copy{
  transform:translateY(34px);
}

/* A refined translucent menu treatment on every website page. */
header,
header.is-sticky,
header[class*="sticky"]{
  border-bottom:1px solid rgba(244,200,74,.38) !important;
  background:
    linear-gradient(
      180deg,
      rgba(13,13,13,.68) 0%,
      rgba(13,13,13,.40) 68%,
      rgba(13,13,13,.20) 100%
    ) !important;
  box-shadow:0 8px 26px rgba(0,0,0,.16) !important;
  backdrop-filter:blur(5px) !important;
}

/* Homepage header stays over the slideshow. */
body:has(#irisma-custom-hero) header,
body:has(#irisma-custom-hero) header.is-sticky,
body:has(#irisma-custom-hero) header[class*="sticky"]{
  position:absolute !important;
  top:44px !important;
  left:0 !important;
  right:0 !important;
  z-index:10050 !important;
}

/* Oval premium badge behind the logo instead of a rectangular block. */
header a:has(img[alt*="Irisma" i]),
header a:has(img[src*="logo" i]),
header a:has(img[src*="irisma" i]),
header div:has(> img[alt*="Irisma" i]),
header div:has(> img[src*="logo" i]),
header div:has(> img[src*="irisma" i]){
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:8px 24px !important;
  border:1px solid rgba(244,200,74,.42) !important;
  border-radius:50% / 38% !important;
  background:
    radial-gradient(
      ellipse at center,
      rgba(12,10,7,.78) 0%,
      rgba(12,10,7,.52) 64%,
      rgba(12,10,7,.12) 100%
    ) !important;
  box-shadow:
    inset 0 0 22px rgba(244,200,74,.06),
    0 8px 22px rgba(0,0,0,.22) !important;
}

/* Stronger logo and menu text on all pages. */
header img[alt*="Irisma" i],
header img[src*="logo" i],
header img[src*="irisma" i]{
  opacity:1 !important;
  filter:
    brightness(1.60)
    saturate(1.55)
    contrast(1.12)
    drop-shadow(0 3px 8px rgba(0,0,0,.92))
    drop-shadow(0 0 7px rgba(244,200,74,.26)) !important;
}

header nav a,
header nav button,
header [class*="menu"] a,
header [class*="menu"] button{
  color:#FFE49A !important;
  font-weight:900 !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,1),
    0 0 10px rgba(0,0,0,.86) !important;
}

/* Keep the minimum-stay note compact and beside the active booking flow. */
body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-booking-status{
  left:auto !important;
  right:185px !important;
  bottom:calc(100% + 10px) !important;
  min-width:300px !important;
  transform:none !important;
}

/* The Check-out calendar should remain prominent after Check-in selection. */
body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-field:nth-child(2) .irisma-date-popover{
  z-index:2147483647 !important;
}

@media(max-width:980px){
  #irisma-custom-hero .irisma-custom-content{
    padding-top:150px !important;
  }

  #irisma-custom-hero .irisma-custom-copy{
    transform:translateY(22px);
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-booking-status{
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
  }
}

@media(max-width:640px){
  body:has(#irisma-custom-hero) header,
  body:has(#irisma-custom-hero) header.is-sticky,
  body:has(#irisma-custom-hero) header[class*="sticky"]{
    top:31px !important;
  }

  #irisma-custom-hero .irisma-custom-content{
    padding-top:132px !important;
  }

  #irisma-custom-hero .irisma-custom-copy{
    transform:translateY(12px);
  }

  header a:has(img[alt*="Irisma" i]),
  header a:has(img[src*="logo" i]),
  header a:has(img[src*="irisma" i]),
  header div:has(> img[alt*="Irisma" i]),
  header div:has(> img[src*="logo" i]),
  header div:has(> img[src*="irisma" i]){
    padding:5px 14px !important;
  }

  body > .irisma-booking-bar.irisma-booking-bar-fixed .irisma-booking-status{
    position:fixed !important;
    left:50% !important;
    right:auto !important;
    bottom:57px !important;
    width:calc(100vw - 24px) !important;
    min-width:0 !important;
    transform:translateX(-50%) !important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 013
   Guided booking flow: Check-in → Check-out → Guests → Search
   ========================================================= */

body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-search-button:disabled{
  cursor:not-allowed !important;
  opacity:.48 !important;
  filter:grayscale(.38) !important;
  box-shadow:none !important;
}

body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-search-button:not(:disabled){
  opacity:1 !important;
  filter:none !important;
}

/* Keep the automatically opened Guests panel clearly above the booking bar. */
body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-guests-popover{
  z-index:2147483647 !important;
}

/* Visual cue that the guest selection must be confirmed with Done. */
body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-guests-done{
  min-height:42px !important;
  font-size:14px !important;
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 024 CLEAN
   Clean header, exact hamburger, untouched Radix dropdown
   ========================================================= */

/* Homepage header only: transparent over slideshow. */
body:has(#irisma-custom-hero) header{
  position:absolute !important;
  top:44px !important;
  left:0 !important;
  right:0 !important;
  z-index:10050 !important;
  margin:0 !important;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.36) 0%,
      rgba(0,0,0,.14) 70%,
      rgba(0,0,0,0) 100%
    ) !important;
  border-bottom:1px solid rgba(244,200,74,.24) !important;
  box-shadow:none !important;
  overflow:visible !important;
}

/* Inner pages: normal black header in document flow. */
body:not(:has(#irisma-custom-hero)) header{
  position:relative !important;
  inset:auto !important;
  width:100% !important;
  margin:0 !important;
  background:#080706 !important;
  border-bottom:1px solid rgba(244,200,74,.38) !important;
  box-shadow:0 7px 20px rgba(0,0,0,.24) !important;
  overflow:visible !important;
}

/*
  Clean logo treatment:
  only the direct clickable logo wrapper is styled.
  No broad div:has(...) selector, therefore no giant black rectangle.
*/
header a:has(> img[alt*="Irisma" i]),
header a:has(> img[src*="logo" i]),
header a:has(> img[src*="irisma" i]){
  position:relative !important;
  top:7px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:8px 22px !important;
  border:1px solid rgba(244,200,74,.46) !important;
  border-radius:999px !important;
  background:rgba(8,7,5,.78) !important;
  background-image:none !important;
  box-shadow:
    0 0 0 8px rgba(244,200,74,.055),
    0 0 0 9px rgba(244,200,74,.20),
    0 8px 20px rgba(0,0,0,.22) !important;
  overflow:visible !important;
}

header a:has(> img[alt*="Irisma" i]) img,
header a:has(> img[src*="logo" i]) img,
header a:has(> img[src*="irisma" i]) img{
  display:block !important;
  max-height:92px !important;
  width:auto !important;
  border:0 !important;
  border-radius:0 !important;
  clip-path:none !important;
  background:transparent !important;
  box-shadow:none !important;
  object-fit:contain !important;
}

/* Exact hamburger from the live Lodgify markup. */
button.g-menu.hamburger-button,
button[class*="hamburger-button" i],
header .irisma-hamburger-fixed{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:42px !important;
  min-height:42px !important;
  padding:8px !important;
  border:1px solid rgba(0,0,0,.20) !important;
  border-radius:9px !important;
  background:#ffffff !important;
  background-color:#ffffff !important;
  background-image:none !important;
  color:#111111 !important;
  box-shadow:0 3px 12px rgba(0,0,0,.18) !important;
  opacity:1 !important;
  filter:none !important;
}

button.g-menu.hamburger-button:hover,
button.g-menu.hamburger-button:focus,
button.g-menu.hamburger-button[aria-expanded="true"],
button[class*="hamburger-button" i]:hover,
header .irisma-hamburger-fixed:hover{
  background:#ffffff !important;
  background-color:#ffffff !important;
  background-image:none !important;
  color:#000000 !important;
}

button.g-menu.hamburger-button svg,
button.g-menu.hamburger-button svg *,
button[class*="hamburger-button" i] svg,
button[class*="hamburger-button" i] svg *,
header .irisma-hamburger-fixed svg,
header .irisma-hamburger-fixed svg *{
  color:#111111 !important;
  stroke:#111111 !important;
}

button.g-menu.hamburger-button span,
button[class*="hamburger-button" i] span,
header .irisma-hamburger-fixed span{
  background-color:#111111 !important;
  color:#111111 !important;
}

/*
  Radix dropdown:
  no display/visibility/position/pointer-events overrides.
  Lodgify alone controls opening and closing.
*/
body [data-radix-popper-content-wrapper] [role="menu"],
body [data-radix-popper-content-wrapper] [role="listbox"],
body [data-radix-menu-content],
body [data-radix-dropdown-menu-content]{
  background:#070605 !important;
  border:1px solid #F4C84A !important;
  border-radius:10px !important;
  color:#F4C84A !important;
  box-shadow:0 18px 46px rgba(0,0,0,.58) !important;
}

body [data-radix-popper-content-wrapper] [role="menu"] *,
body [data-radix-popper-content-wrapper] [role="listbox"] *,
body [data-radix-menu-content] *,
body [data-radix-dropdown-menu-content] *{
  color:#F4C84A !important;
  text-shadow:none !important;
}

/* Keep homepage text lower without disturbing the header structure. */
#irisma-custom-hero .irisma-custom-copy{
  position:relative !important;
  top:92px !important;
  transform:none !important;
}

#irisma-custom-hero{
  min-height:790px !important;
  padding-bottom:96px !important;
}

@media(max-width:980px){
  body:has(#irisma-custom-hero) header{
    top:44px !important;
  }

  #irisma-custom-hero .irisma-custom-copy{
    top:58px !important;
  }
}

@media(max-width:640px){
  body:has(#irisma-custom-hero) header{
    top:31px !important;
  }

  #irisma-custom-hero .irisma-custom-copy{
    top:20px !important;
  }

  header a:has(> img[alt*="Irisma" i]),
  header a:has(> img[src*="logo" i]),
  header a:has(> img[src*="irisma" i]){
    top:3px !important;
    padding:6px 14px !important;
    box-shadow:
      0 0 0 5px rgba(244,200,74,.055),
      0 0 0 6px rgba(244,200,74,.18),
      0 6px 16px rgba(0,0,0,.20) !important;
  }
}


/* =========================================================
   IRISMA 8.0.0 — BUILD 025
   Long multi-month checkout + status above Guests
   ========================================================= */

/*
  The status element is appended inside the Guests field.
  Keep it exactly above that field and no wider than it, so the Check-out
  calendar remains fully visible.
*/
body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-field:has(#irisma-guests-button){
  position:relative !important;
}

body > .irisma-booking-bar.irisma-booking-bar-fixed
.irisma-field:has(#irisma-guests-button)
.irisma-booking-status{
  left:0 !important;
  right:0 !important;
  bottom:calc(100% + 10px) !important;
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  box-sizing:border-box !important;
  padding:9px 10px !important;
  transform:none !important;
  font-size:12px !important;
  line-height:1.25 !important;
  white-space:normal !important;
  z-index:2147483647 !important;
}

.irisma-booking-status[hidden]{
  display:none !important;
}

@media(max-width:980px){
  body > .irisma-booking-bar.irisma-booking-bar-fixed
  .irisma-field:has(#irisma-guests-button)
  .irisma-booking-status{
    bottom:calc(100% + 8px) !important;
  }
}

/* =========================================================
   IRISMA 8.1.0 — MOBILE FINAL CLEAN LAYOUT
   One header, one hero, one inline booking form.
   ========================================================= */
@media (max-width:760px){
  :root{
    --irisma-mobile-black:#070707;
    --irisma-mobile-gold:#F4C84A;
    --irisma-mobile-gold-soft:#F6D77C;
  }

  html,body{
    overflow-x:hidden!important;
    background:var(--irisma-mobile-black)!important;
  }

  body:has(#irisma-custom-hero){
    padding-bottom:0!important;
  }

  /* Hide the desktop floating offer on phones. */
  #irisma-offer-card{display:none!important;}

  /* Single compact Lodgify header. */
  body:has(#irisma-custom-hero) header{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    width:100%!important;
    min-height:92px!important;
    padding:8px 16px!important;
    background:linear-gradient(180deg,#090909,#10100f)!important;
    border-top:1px solid rgba(244,200,74,.3)!important;
    border-bottom:1px solid rgba(244,200,74,.55)!important;
    box-shadow:0 10px 28px rgba(0,0,0,.32)!important;
    z-index:1000!important;
  }

  body:has(#irisma-custom-hero) header img[alt*="Irisma" i],
  body:has(#irisma-custom-hero) header img[src*="logo" i],
  body:has(#irisma-custom-hero) header img[src*="irisma" i]{
    width:auto!important;
    max-width:150px!important;
    max-height:76px!important;
    object-fit:contain!important;
    filter:brightness(1.2) saturate(1.28) drop-shadow(0 7px 14px rgba(0,0,0,.5))!important;
  }

  body:has(#irisma-custom-hero) header a:has(> img[alt*="Irisma" i]),
  body:has(#irisma-custom-hero) header a:has(> img[src*="logo" i]),
  body:has(#irisma-custom-hero) header a:has(> img[src*="irisma" i]){
    position:static!important;
    inset:auto!important;
    padding:0!important;
    background:transparent!important;
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
  }

  /* Hero is the first clean visual block. */
  #irisma-custom-hero{
    min-height:0!important;
    height:auto!important;
    margin:0!important;
    padding:0!important;
    background:#070707!important;
    overflow:visible!important;
  }

  #irisma-custom-hero .irisma-custom-slides,
  #irisma-custom-hero .irisma-custom-slide,
  #irisma-custom-hero .irisma-custom-overlay{
    height:610px!important;
    min-height:610px!important;
  }

  #irisma-custom-hero .irisma-custom-slide{
    background-position:center center!important;
    filter:brightness(.82) saturate(1.08) contrast(1.04)!important;
  }

  #irisma-custom-hero .irisma-custom-overlay{
    background:
      linear-gradient(180deg,rgba(0,0,0,.12) 0%,rgba(0,0,0,.08) 35%,rgba(0,0,0,.56) 72%,#070707 100%)!important;
  }

  #irisma-custom-hero .irisma-custom-content{
    min-height:0!important;
    padding:128px 16px 24px!important;
    justify-content:flex-start!important;
    align-items:stretch!important;
  }

  #irisma-custom-hero .irisma-custom-copy{
    position:relative!important;
    top:auto!important;
    left:auto!important;
    right:auto!important;
    width:100%!important;
    max-width:390px!important;
    margin:0 auto 42px!important;
    transform:none!important;
    text-align:center!important;
  }

  #irisma-custom-hero .irisma-custom-kicker,
  #irisma-custom-hero .irisma-custom-eyebrow{
    margin:0 0 14px!important;
    color:var(--irisma-mobile-gold)!important;
    font:850 13px/1.2 Arial,sans-serif!important;
    letter-spacing:.14em!important;
    text-align:center!important;
  }

  #irisma-custom-hero .irisma-custom-title{
    max-width:390px!important;
    margin:0 auto!important;
    color:#fff!important;
    font:500 clamp(44px,12.2vw,58px)/.96 Georgia,"Times New Roman",serif!important;
    letter-spacing:-.045em!important;
    text-align:center!important;
    text-wrap:balance!important;
    text-shadow:0 7px 28px rgba(0,0,0,.72)!important;
  }

  #irisma-custom-hero .irisma-custom-subtitle{
    max-width:355px!important;
    margin:18px auto 0!important;
    color:var(--irisma-mobile-gold-soft)!important;
    font:750 13px/1.45 Arial,sans-serif!important;
    letter-spacing:.025em!important;
    text-align:center!important;
    text-shadow:0 3px 14px rgba(0,0,0,.72)!important;
  }

  /* Booking form stays inside hero instead of covering the viewport. */
  #irisma-custom-hero .irisma-booking-placeholder{display:none!important;}

  #irisma-custom-hero .irisma-booking-bar,
  #irisma-custom-search.irisma-booking-bar-mobile-inline{
    position:relative!important;
    inset:auto!important;
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    width:100%!important;
    max-width:430px!important;
    min-height:0!important;
    margin:0 auto!important;
    transform:none!important;
    overflow:visible!important;
    border:1px solid rgba(244,200,74,.86)!important;
    border-radius:19px!important;
    background:rgba(9,9,8,.96)!important;
    box-shadow:0 20px 44px rgba(0,0,0,.52),0 0 22px rgba(244,200,74,.12)!important;
    backdrop-filter:blur(14px)!important;
    z-index:20!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-field{
    min-height:72px!important;
    padding:13px 14px!important;
    background:transparent!important;
    border-right:1px solid rgba(244,200,74,.34)!important;
    border-bottom:1px solid rgba(244,200,74,.34)!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-field:nth-child(2){
    border-right:0!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-field:nth-child(3){
    grid-column:1/-1!important;
    border-right:0!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-field-label{
    margin-bottom:7px!important;
    color:var(--irisma-mobile-gold)!important;
    font-size:10px!important;
    letter-spacing:.09em!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-date-button,
  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-guests-button{
    color:#fff!important;
    font-size:14px!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-search-button{
    grid-column:1/-1!important;
    min-height:61px!important;
    border-radius:0 0 17px 17px!important;
    background:linear-gradient(135deg,#FFE49A 0%,#F4C84A 52%,#D99A1D 100%)!important;
    color:#171008!important;
    font-size:14px!important;
    font-weight:900!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-date-popover,
  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-guests-popover{
    position:fixed!important;
    left:10px!important;
    right:10px!important;
    top:auto!important;
    bottom:10px!important;
    width:auto!important;
    max-width:none!important;
    max-height:76vh!important;
    overflow:auto!important;
    z-index:2147483647!important;
  }

  #irisma-custom-search.irisma-booking-bar-mobile-inline .irisma-booking-status{
    position:absolute!important;
    left:0!important;
    right:0!important;
    bottom:calc(100% + 8px)!important;
    width:100%!important;
    font-size:11px!important;
  }

  .irisma-custom-dots{
    display:none!important;
  }

  /* Never leave the old fixed homepage booking bar on screen. */
  body:has(#irisma-custom-hero) > .irisma-booking-bar.irisma-booking-bar-fixed{
    display:none!important;
  }

  /* Remove any known Lodgify placeholder section marked by JS. */
  [data-irisma-hidden-placeholder="1"]{display:none!important;}
}

