﻿.tabs-highlight{
  border-radius:14px;
  box-shadow:0 0 0 3px rgba(29,158,117,0.18), 0 0 18px rgba(29,158,117,0.28);
  background:rgba(29,158,117,0.05);
  transition:all .2s ease;
}

.tabs-highlight .stab{
  border-color:#2F6BFF;
  box-shadow:0 0 10px rgba(29,158,117,0.18);
}

/* ===== BOTONES DE CATEGORÍA ===== */
.stab{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid #E2E8F0;
  background:#FF8C4D;
  font-weight:600;
  color:#334155;
  cursor:pointer;
  transition:all .25s ease;
}

.stab:hover{
  background:#EEF4FA;
  transform:translateY(-1px);
}

.stab.active{
  background:linear-gradient(135deg,#1D4ED8,#0F3C68);
  color:#fff;
  border:none;
  box-shadow:0 8px 20px rgba(29,78,216,0.3);
}

.stab.active::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  box-shadow:0 0 0 4px rgba(15,110,86,0.15);
  opacity:.6;
}

.stab:active{
  transform:scale(0.96);
}

*{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#1D9E75;--green-dark:#0F6E56;--green-deep:#085041;
  --green-light:#E1F5EE;--green-mid:#9FE1CB;
  --orange:#D85A30;--orange-light:#F5C4B3;
  --text:#1a1a18;--text2:#4a4a46;--text3:#888780;
  --bg:#F4F7F9;;--surface:#fff;--surface2:#f5f5f0;
  --border:rgba(0,0,0,0.08);--border-med:rgba(0,0,0,0.14);
  --r:14px;--r2:8px;--r3:24px;
  --shadow:0 2px 12px rgba(0,0,0,0.07);--shadow-lg:0 8px 40px rgba(0,0,0,0.13);
  --blue:#1D4ED8;
--blue-dark:#0F3C68;
--yellow:#F4C542;
--orange-strong:#F97316;
--text-dark:#1E293B;
--bg-soft:#F4F7F9;
}
html{scroll-behavior:smooth}
body{font-family:'Plus Jakarta Sans',sans-serif;color:var(--text);background:var(--bg);font-size:15px;line-height:1.6;min-height:100vh}

/* ── NAV ── */

/* BOTONES NAV - ESTADO NORMAL (BLANCOS) */
nav button{
  background:#fff !important;
  color:#1E3A5F !important;
  border:1.5px solid #E5E7EB !important;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
}

/* BOTÓN ACTIVO (AZUL) */
nav button.active{
  background: linear-gradient(135deg, #2F6BFF, #1E4DB7) !important;
  color:#fff !important;
  border:none !important;
  box-shadow:0 8px 20px rgba(47,107,255,0.3);
}

nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;

  height:100px;
  padding:0 28px;

  background:#E0E0E0;
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,60,104,0.08);
  box-shadow:0 2px 10px rgba(15,60,104,0.04);

  display:flex;
  align-items:center;
  justify-content:space-between;
}
nav{
  overflow:visible; /* 👈 ESTO ES LO QUE LO DESBLOQUEA */
}
.logo{
  display:flex;
  align-items:center;
  position:relative;
  height:100px;
}

.logo-img{
  height:150px;
  width:auto;
  max-width:250px;
  object-fit:contain;
  display:block;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav-link{
  padding:10px 18px;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  border:none;
  background:transparent;
  color:#0F3C68;
  transition:all .2s ease;
  font-family:'Plus Jakarta Sans',sans-serif;
}

.nav-link:hover{
  background:#EEF4FA;
  color:#0F3C68;
}

.nav-link.active{
  background:#DFF3EC;
  color:#0F6E56;
  box-shadow:0 4px 10px rgba(15,110,86,0.10);
}

.nav-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

/* ── PERFIL DROPDOWN ── */
.nav-user-wrap{
  position:relative;
}
.nav-user-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 18px;
  border-radius:999px;
  border:1.5px solid #D5DEE8;
  background:#fff;
  color:#0F3C68;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:border-color .2s,box-shadow .2s;
}
.nav-user-btn:hover{
  border-color:#1D4ED8;
  box-shadow:0 2px 8px rgba(29,78,216,0.12);
}
.nav-caret{
  font-size:10px;
  opacity:.6;
  transition:transform .2s;
}
.nav-user-wrap.open .nav-caret{
  transform:rotate(180deg);
}
.nav-user-dropdown{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:210px;
  background:#fff;
  border:1.5px solid #E5E7EB;
  border-radius:16px;
  box-shadow:0 12px 40px rgba(15,60,104,0.14);
  padding:8px;
  z-index:9999;
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px);
  transition:opacity .2s,transform .2s,visibility 0s linear .2s;
}
.nav-user-wrap.open .nav-user-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  transition:opacity .2s,transform .2s,visibility 0s linear 0s;
}
.dropdown-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  color:#1E293B;
  cursor:pointer;
  transition:background .15s;
}
.dropdown-item:hover{
  background:#F1F5F9;
}
.dropdown-item.dropdown-danger{
  color:#DC2626;
}
.dropdown-item.dropdown-danger:hover{
  background:#FEF2F2;
}
.dropdown-divider{
  height:1px;
  background:#E5E7EB;
  margin:6px 8px;
}

.btn-outline{
  padding:11px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  border:1.5px solid #D5DEE8;
  background:#ffffff;
  color:#0F3C68;
  transition:all .2s ease;
  font-family:'Plus Jakarta Sans',sans-serif;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  appearance:none;
  -webkit-appearance:none;
  box-shadow:none;
}

.btn-outline:hover{
  border-color:#B7C8DA;
  background:#F8FBFF;
  color:#0F3C68;
  transform:translateY(-1px);
}

.btn-fill{
  background:linear-gradient(135deg,#1D4ED8,#0F3C68);
  color:#fff;
  border:none;
  border-radius:999px;
  padding:11px 22px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:all .2s ease;
  font-family:'Plus Jakarta Sans',sans-serif;
  box-shadow:0 6px 15px rgba(29,78,216,0.25);
}

.btn-fill:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(29,78,216,0.35);
}
/* ── PAGES ── */
#pages-wrap{
  position:relative;
  min-height:100vh;
}



.page{
  position:absolute;
  inset:0;
  padding-top:100px;
  min-height:100vh;
  width:100%;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(18px);
  overflow:hidden;
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility 0s linear .35s;
}

.page.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
  overflow:visible;
  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility 0s linear 0s;
}

/* ══════════════════════
   HOME PAGE
══════════════════════ */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background:
    linear-gradient(
      rgba(15,60,104,0.65),
      rgba(15,60,104,0.75)
    ),
    url("../assets/pintohome.jpg") center/cover no-repeat;
    
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35); /* puedes ajustar */
  z-index:0;
}
.hero > *{
  position:relative;
  z-index:1;
}

.hero h1{
  font-family:'Fraunces',serif;
  font-size:64px;
  font-weight:400;
  line-height:1.08;
  margin:0 auto 1rem;
  max-width:860px;
  text-align:center;
}

.hero h1::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:var(--yellow);
  margin:12px auto 0;
  border-radius:4px;
}
.hero .cta-text{
  color:#F4C542;
  font-weight:600;
}
.hero h1 em{
  font-style:italic;
  color:#B8F0DD;
}
.hero p,
.hero-subtext{
  font-size:22px;
  opacity:.96;
  margin:0 auto 2.4rem;
  max-width:760px;
  text-align:center;
  line-height:1.6;
}
.hero-soft{
  display:inline-block;
  font-size:.95em;
  font-weight:300;
}

.hero-subtext{
  font-size:17px;
  opacity:.95;
  margin:0 auto 2.5rem;
  max-width:620px;
  text-align:center;
  line-height:1.8;
}

/* Search widget */
.search-widget{
  position:relative;
  z-index:10;
  max-width:1240px;
  width:100%;
  margin:0 auto;
  padding:28px;
  border-radius:30px;
  overflow:visible;

  background:rgba(255,255,255,0.95);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  border:1px solid rgba(255,255,255,0.25);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.06) inset;

}
.search-widget > *{
  position:relative;
  z-index:1;
}
.search-widget > *{
  position:relative;
  z-index:1;
}
.search-fields{
  display:grid;
  grid-template-columns:1.35fr 1fr 1fr 1fr 170px;
  gap:14px;
  align-items:end;
}


.sf label{
  display:block;
  width:100%;
  text-align:center;
  font-size:14px;
  font-weight:800;
  color:#1D4ED8;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
  line-height:1.2;
}

.sf input,
.sf select{
  width:100%;
  height:70px;
  border-radius:20px;
  border:1.5px solid #DCE4EE;
  padding:0 20px;
  font-size:18px;
  transition:all .2s ease;
  background:rgba(255,255,255,0.92);
}

.sf input:focus,
.sf select:focus{
  border-color:#F4C542;
  box-shadow:0 0 0 4px rgba(244,197,66,0.15);
}
.btn-search{
  width:100%;
  height:70px;
  padding:0 24px;
  border-radius:22px;
  align-self:stretch;
  justify-self:stretch;

  background:linear-gradient(135deg,#1D4ED8,#0F3C68);
  color:#fff;
  font-weight:800;
  font-size:20px;
  border:none;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 10px 25px rgba(29,78,216,0.30);
  transition:all .2s ease;
}

.btn-search:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(29,78,216,0.40);
}
/* Destinos dropdown */
.dest-dropdown{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  background:#fff;
  border-radius:18px;
  border:1px solid #e2e8f0;
  box-shadow:0 18px 40px rgba(0,0,0,0.14);
  z-index:9999;
  max-height:320px;
  overflow-y:auto;
  display:none;
}
.dest-dropdown.open{display:block}
.dest-dropdown.open{display:block}
.dest-opt:last-child{border-bottom:none}
.dest-opt:hover{background:var(--green-light)}
.dest-opt-img{width:40px;height:40px;border-radius:6px;object-fit:cover;background:var(--surface2)}
.dest-opt-info h4{font-size:13px;font-weight:600;color:var(--text)}
.dest-opt-info p{font-size:11px;color:var(--text3)}

/* Calendario custom */
.cal-popup{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  background:#fff;
  border-radius:18px;
  border:1px solid #e2e8f0;
  box-shadow:0 18px 40px rgba(0,0,0,0.14);
  z-index:9999;
  padding:1rem;
  min-width:300px;
  display:none;
}
.cal-popup.open{display:block}
.cal-nav{background:none;border:1px solid var(--border);border-radius:6px;padding:4px 8px;cursor:pointer;font-size:16px;transition:background .15s}
.cal-nav:hover{background:var(--surface2)}
.cal-month{font-size:14px;font-weight:600;color:var(--text)}
.cal-days-head{display:grid;grid-template-columns:repeat(7,1fr);gap:2px;margin-bottom:4px}
.cal-dh{text-align:center;font-size:11px;font-weight:600;color:var(--text3);padding:4px 0}
.cal-days{display:grid;grid-template-columns:repeat(7,1fr);gap:2px}
.cal-d{text-align:center;padding:7px 4px;font-size:13px;border-radius:6px;cursor:pointer;transition:all .15s;border:none;background:none;font-family:inherit;color:var(--text)}
.cal-d.available{background:#dcfce7;color:#166534;font-weight:500}
.cal-d.available:hover{background:#bbf7d0;color:#14532d}
.cal-d.selected{background:var(--green);color:#fff;font-weight:700;box-shadow:0 2px 8px rgba(15,110,86,.35)}
.cal-d.in-range{background:var(--green-light);color:var(--green-dark)}
.cal-d.today{font-weight:700;color:var(--orange)}
.cal-d.disabled{color:var(--text3);opacity:.35;cursor:not-allowed}
.cal-d.blocked{background:#fee2e2;color:#dc2626;cursor:not-allowed;text-decoration:line-through;opacity:.85}
.cal-d.blocked::after{content:'';display:block;width:6px;height:6px;background:#dc2626;border-radius:50%;margin:1px auto 0}
.cal-d.empty{cursor:default}

/* Huéspedes popup */
.guest-popup{
  position:absolute;
  top:calc(100% + 6px) !important;
  bottom:auto !important;
  left:0 !important;
  right:auto !important;
  transform:none !important;
  background:#fff;
  border-radius:var(--r);
  border:1.5px solid var(--border);
  box-shadow:var(--shadow-lg);
  z-index:9999;
  padding:1rem;
  min-width:320px;
  display:none;
}
.guest-popup.open{display:block}

.guest-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
}

.guest-row:last-child{border-bottom:none}

.guest-label{
  flex:1;
  min-width:0;
}

.guest-label h4{
  font-size:13px;
  font-weight:600;
  margin-bottom:2px;
}

.guest-label p{
  font-size:11px;
  color:var(--text3);
  line-height:1.35;
}

.guest-ctrl{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.gcbtn{width:28px;height:28px;border-radius:50%;border:1.5px solid var(--border-med);background:none;font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .15s;font-family:inherit}
.gcbtn:hover{border-color:var(--green);color:var(--green)}
.gcbtn:disabled{opacity:.3;cursor:not-allowed}
.gcval{font-size:14px;font-weight:600;min-width:16px;text-align:center}

/* Trust bar */
.trust-bar{display:grid;grid-template-columns:repeat(4,1fr);background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.trust-item{padding:1.1rem;text-align:center;border-right:1px solid var(--border)}
.trust-item:last-child{border-right:none}
.trust-icon{font-size:22px;margin-bottom:5px}
.trust-val{font-size:13px;font-weight:600;color:var(--text)}
.trust-sub{font-size:11px;color:var(--text3)}

/* Secciones */
section{padding:2.5rem 2rem}
.sec-header{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:1.5rem}
.sec-title{font-family:'Fraunces',serif;font-size:26px;font-weight:300}
.sec-link{font-size:13px;font-weight:600;color:var(--green);cursor:pointer;border:none;background:none;text-decoration:none}
.sec-link:hover{color:var(--green-dark)}

/* Ciudad cards */
.ciudad-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.ciudad-card{border-radius:var(--r);overflow:hidden;cursor:pointer;position:relative;height:190px;transition:transform .25s,box-shadow .25s}
.ciudad-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.ciudad-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s}
.ciudad-card:hover img{transform:scale(1.06)}
.ciudad-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.78) 0%,rgba(0,0,0,.05) 55%,transparent 100%)}
.ciudad-info{position:absolute;bottom:0;left:0;right:0;padding:12px 14px;color:#fff}
.ciudad-info h3{font-family:'Fraunces',serif;font-size:18px;font-weight:400;margin-bottom:2px}
.ciudad-info p{font-size:11px;opacity:.9;font-weight:500}
.ciudad-badge{position:absolute;top:10px;right:10px;background:rgba(0,0,0,.5);backdrop-filter:blur(6px);color:#fff;font-size:10px;font-weight:600;padding:4px 10px;border-radius:20px;border:1px solid rgba(255,255,255,.2);letter-spacing:.03em}
.ciudad-price{position:absolute;bottom:12px;right:14px;color:#fff;font-size:13px;font-weight:700}

/* CTA anfitrión */
.cta-host{background:linear-gradient(135deg,#2d2766,#534AB7);border-radius:var(--r);padding:2.5rem;display:flex;justify-content:space-between;align-items:center;margin:0 2rem 2rem;color:#fff}
.cta-host h2{font-family:'Fraunces',serif;font-size:26px;font-weight:300;margin-bottom:6px}
.cta-host p{font-size:14px;opacity:.82}
.btn-cta{padding:12px 24px;background:#D85A30;color:#fff;border:none;border-radius:20px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;transition:all .2s;white-space:nowrap}
.btn-cta:hover{background:#b84820;transform:translateY(-2px)}

/* Fab WhatsApp */
.fab{position:fixed;bottom:24px;right:24px;background:#25D366;color:#fff;border:none;border-radius:24px;padding:12px 20px;font-size:14px;font-weight:600;cursor:pointer;z-index:999;display:flex;align-items:center;gap:8px;box-shadow:0 4px 20px rgba(37,211,102,.4);font-family:inherit;transition:all .2s}
.fab:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(37,211,102,.5)}
#sf-dest,
#sf-checkin,
#sf-checkout,
#sf-guests{
  position:relative;
}

#sf-dest .dest-dropdown{
  left:0;
  right:0;
}

#sf-checkin .cal-popup{
  left:0;
}

#sf-checkout .cal-popup{
  left:0;
}

#sf-guests .guest-popup{
  left:0;
}
/* ══════════════════════
   ALOJAMIENTOS PAGE
══════════════════════ */
.aloj-header{background: linear-gradient(135deg, #1E4DB7, #2F6BFF);;color:#fff;padding:2rem;padding-top:1.5rem}
.aloj-header h1{font-family:'Fraunces',serif;font-size:28px;font-weight:300;margin-bottom:.25rem}
.aloj-header p{font-size:14px;opacity:.8}
.aloj-search-bar{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);border-radius:var(--r2);padding:.75rem 1rem;display:flex;align-items:center;gap:10px;margin-top:1rem;cursor:pointer;font-size:14px;color:rgba(255,255,255,.85)}

.aloj-body{display:grid;grid-template-columns:280px 1fr;gap:0;min-height:calc(100vh - 64px)}
.aloj-sidebar{padding:1.25rem;border-right:1px solid var(--border);background:var(--surface)}
.aloj-main{padding:1.25rem;background:var(--bg)}

.filter-section{margin-bottom:1.5rem}
.filter-title{font-size:12px;font-weight:700;color:var(--text3);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.75rem}
.filter-chips{display:flex;flex-wrap:wrap;gap:6px}
.fchip{padding:5px 12px;border-radius:20px;font-size:12px;font-weight:500;cursor:pointer;border:1.5px solid var(--border);background:var(--surface);color:var(--text2);transition:all .15s}
.fchip.on{
  background:#FFF4E6;
  color:#FF7A00;
  border-color:#FFC078;
  box-shadow: 0 8px 22px rgba(255, 140, 0, 0.28);
}
.fchip:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(0,0,0,0.10);
}.price-range{display:flex;flex-direction:column;gap:8px}
.price-inputs{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.price-field{display:flex;flex-direction:column;gap:5px}
.price-label{font-size:11px;font-weight:700;color:var(--text3);text-transform:uppercase;letter-spacing:.5px}
.price-inputs input{width:100%;padding:8px 10px;border-radius:var(--r2);border:1.5px solid var(--border);font-size:13px;font-family:inherit;color:var(--text);box-sizing:border-box;background:var(--bg)}
.rating-filter{display:flex;gap:6px}
.rfbtn{
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:600;
  cursor:pointer;
  border:1.5px solid var(--border);
  background:#fff;
  color:var(--text2);
  transition:all .2s ease;
}
.rfbtn.on{
  background:#FFF8F0; /* fondo muy suave */
  color:#FF8C00;
  border-color:#FFD8A8;

  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.25);
}
.apply-btn{
  width:100%;
  padding:10px;
  background: linear-gradient(135deg, #1E4DB7, #2F6BFF);
  color:#fff;
  border:none;
  border-radius:var(--r2);
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  font-family:inherit;
  transition:all .2s ease;
}
.apply-btn:hover{
  background: linear-gradient(135deg, #163F99, #2557E6);
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(0,0,0,0.15);
}.rfbtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.results-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.results-count{font-size:14px;font-weight:600;color:var(--text)}
.sort-sel{padding:7px 12px;border-radius:var(--r2);border:1.5px solid var(--border);font-size:13px;font-family:inherit;color:var(--text);background:var(--surface);cursor:pointer}
.aloj-view-btn{padding:6px 14px;border-radius:20px;font-size:12px;font-weight:600;border:1.5px solid var(--border);background:var(--surface);color:var(--text2);cursor:pointer;transition:all .2s}
.aloj-view-btn.active{background:#0F6E56;color:#fff;border-color:#0F6E56}

.hotel-list{display:flex;flex-direction:column;gap:12px}
.hcard{background:var(--surface);border-radius:var(--r);border:1px solid var(--border);overflow:hidden;display:grid;grid-template-columns:220px 1fr;cursor:pointer;transition:all .2s}
.hcard:hover{border-color:var(--green-mid);box-shadow:var(--shadow)}
.hcard-img{height:165px;position:relative;overflow:hidden}
.hcard-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.hcard:hover .hcard-img img{transform:scale(1.05)}
.hcard-img-fb{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:42px}
.fav-btn{position:absolute;top:10px;right:10px;width:30px;height:30px;background:rgba(255,255,255,.92);border-radius:50%;border:none;font-size:15px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s}
.fav-btn:hover{transform:scale(1.15)}
.hcard-badge{position:absolute;top:10px;left:10px;background:var(--orange);color:#fff;font-size:10px;font-weight:700;padding:3px 8px;border-radius:20px}
.hcard-body{padding:14px;display:flex;flex-direction:column}
.hcard-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:6px}
.hcard-name{font-family:'Fraunces',serif;font-size:17px;font-weight:400;color:var(--text);line-height:1.2}
.hcard-rating{display:flex;flex-direction:column;align-items:flex-end;gap:2px}
.rating-score{
  background: linear-gradient(135deg, #1E4DB7, #2F6BFF);
  color:#fff;
  font-size:13px;
  font-weight:700;
  padding:3px 9px;
  border-radius:6px
}.rating-label{font-size:10px;color:var(--text3);font-weight:500}
.hcard-loc{font-size:12px;color:var(--text3);margin-bottom:8px;display:flex;align-items:center;gap:4px}
.hcard-feats{display:flex;gap:4px;flex-wrap:wrap;margin-bottom:auto}
.ftag{font-size:11px;padding:3px 8px;border-radius:20px;background:var(--surface2);color:var(--text2);border:1px solid var(--border)}
.hcard-footer{display:flex;justify-content:space-between;align-items:flex-end;margin-top:10px;padding-top:10px;border-top:1px solid var(--border)}
.hcard-price{display:flex;flex-direction:column}
.price-old{font-size:12px;color:var(--text3);text-decoration:line-through}
.price-now{font-size:20px;font-weight:700;color:var(--green-dark)}
.price-night{font-size:11px;color:var(--text3);font-weight:400}
.price-urgency{font-size:11px;color:var(--orange);font-weight:600;margin-top:2px}
.btn-res{padding:9px 18px;background: linear-gradient(135deg, #2F6BFF,  #1E4DB7);border:none;border-radius:var(--r2);font-size:13px;font-weight:600;cursor:pointer;font-family:inherit;transition:all .2s}
.btn-res:hover{
  background: linear-gradient(135deg, #163F99, #2557E6);
  transform:translateY(-1px)
}.stars-row{color:#EF9F27;font-size:12px;margin-bottom:4px}
/* ══════════════════════
   PROPERTY DETAIL PAGE
   
══════════════════════ */
/* ══════════════════════
   MY BOOKINGS PAGE
══════════════════════ */
.prop-availability-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.prop-availability-chip{
  padding:10px 14px;
  border-radius:999px;
  background:#FFF1F2;
  color:#BE123C;
  border:1px solid #FBCFE8;
  font-size:13px;
  font-weight:700;
}

.bookings-hero{
  padding:7rem 2rem 2rem;
  background:linear-gradient(135deg, rgba(15,60,104,0.94), rgba(29,78,216,0.88));
  color:#fff;
}

.bookings-hero-inner{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.bookings-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  margin-bottom:14px;
  font-size:13px;
  font-weight:600;
}

.bookings-hero h1{
  font-family:'Fraunces',serif;
  font-size:46px;
  font-weight:300;
  line-height:1.08;
  margin-bottom:10px;
}

.bookings-hero p{
  max-width:760px;
  opacity:.94;
  font-size:18px;
}

.bookings-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:2rem;
}
.bookings-userbar{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:20px 22px;
  box-shadow:var(--shadow);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.bookings-userlabel{
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--text3);
  margin-bottom:4px;
}

#bookings-welcome{
  font-family:'Fraunces',serif;
  font-size:30px;
  font-weight:300;
  line-height:1.1;
  margin-bottom:4px;
}

#bookings-userinfo{
  color:var(--text3);
  font-size:14px;
}
.bookings-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:1.5rem;
}

.booking-tab{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid #DCE4EE;
  background:#fff;
  color:#334155;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:all .2s ease;
}

.booking-tab.active{
  background:linear-gradient(135deg,#1E4DB7,#2F6BFF);
  color:#fff;
  border-color:transparent;
  box-shadow:0 8px 20px rgba(29,78,216,0.25);
}

.bookings-list{
  display:grid;
  gap:18px;
}

.booking-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:280px 1fr;
}

.booking-card-img{
  min-height:220px;
  background:#EEF4FA;
}

.booking-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.booking-card-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

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

.booking-card-title{
  font-family:'Fraunces',serif;
  font-size:28px;
  font-weight:300;
  line-height:1.15;
}

.booking-card-sub{
  font-size:14px;
  color:var(--text3);
  margin-top:4px;
}

.booking-status{
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
}

.booking-status.confirmed{
  background:#E8F7EF;
  color:#0F6E56;
}

.booking-status.past{
  background:#EEF4FA;
  color:#1E4DB7;
}

.booking-status.cancelled{
  background:#FFF1F2;
  color:#BE123C;
}

.booking-status.pending{
  background:#fef9c3;
  color:#854d0e;
}

.booking-meta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.booking-meta-item{
  background:#F8FBFF;
  border:1px solid #DCE4EE;
  border-radius:16px;
  padding:12px 14px;
}

.booking-meta-item span{
  display:block;
  font-size:12px;
  color:var(--text3);
  margin-bottom:4px;
}

.booking-meta-item strong{
  font-size:15px;
}

.booking-summary{
  background:#F8FBFF;
  border:1px solid #DCE4EE;
  border-radius:16px;
  padding:14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.booking-summary-total{
  font-size:18px;
  font-weight:800;
  color:#0F3C68;
}

.booking-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.booking-empty{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:3rem 2rem;
  text-align:center;
  color:var(--text3);
  box-shadow:var(--shadow);
}

.booking-empty h3{
  font-size:22px;
  color:var(--text);
  margin:10px 0 6px;
}

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

  .booking-meta{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .bookings-hero{
    padding:6.5rem 1rem 1.5rem;
  }

  .bookings-hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .bookings-hero h1{
    font-size:34px;
  }

  .bookings-hero p{
    font-size:16px;
  }

  .bookings-wrap{
    padding:1rem;
  }

  .booking-card-body{
    padding:16px;
  }

  .booking-card-title{
    font-size:24px;
  }

  .booking-meta{
    grid-template-columns:1fr;
  }

  .booking-card-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .booking-actions{
    flex-direction:column;
  }
}


.prop-hero{
  padding:7rem 2rem 2rem;
  background:linear-gradient(135deg, rgba(15,60,104,0.94), rgba(29,78,216,0.88));
  color:#fff;
}

.prop-hero-inner{
  max-width:1240px;
  margin:0 auto;
}

.prop-breadcrumb{
  margin-bottom:16px;
}

.prop-back{
  background:rgba(255,255,255,0.14);
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
}

.prop-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.prop-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.prop-badge{
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.18);
}

#prop-title{
  font-family:'Fraunces',serif;
  font-size:46px;
  font-weight:300;
  line-height:1.08;
  margin-bottom:10px;
}

.prop-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
  opacity:.95;
}

.prop-top-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.prop-wrap{
  padding:2rem;
}

.prop-layout{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.45fr .6fr;
  gap:24px;
  align-items:start;
}

.prop-main{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.prop-gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:10px;
}

.prop-gallery-item{
  border-radius:20px;
  overflow:hidden;
  min-height:180px;
  background:#EEF4FA;
}

.prop-gallery-item.main{
  grid-row:span 2;
  min-height:370px;
}

.prop-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.prop-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.prop-box-head{
  margin-bottom:14px;
}

.prop-box-head h2{
  font-family:'Fraunces',serif;
  font-size:30px;
  font-weight:300;
}

.prop-amenities-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.prop-amenity{
  padding:12px 14px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
  font-size:14px;
  font-weight:600;
}

.prop-facts-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.prop-fact{
  padding:14px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.prop-fact span{
  font-size:13px;
  color:var(--text3);
}

.prop-fact strong{
  font-size:16px;
}

.prop-map{
  margin-top:14px;
  height:320px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid #DCE4EE;
  z-index:0;
}

.prop-map-note{
  margin-top:8px;
  font-size:12px;
  color:var(--text3);
}

.prop-policies{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.prop-policy{
  padding:14px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
}

.prop-policy h4{
  font-size:14px;
  margin-bottom:4px;
}

.prop-policy p{
  font-size:13px;
  color:var(--text3);
}

.prop-reviews-summary{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.prop-score-big{
  width:84px;
  height:84px;
  border-radius:20px;
  background:linear-gradient(135deg,#1E4DB7,#2F6BFF);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:800;
}

.prop-score-label{
  font-size:20px;
  font-weight:700;
}

.prop-score-sub{
  font-size:13px;
  color:var(--text3);
}

.prop-review-bars{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}

.review-bar{
  display:grid;
  grid-template-columns:130px 1fr 40px;
  gap:10px;
  align-items:center;
}

.review-track{
  height:10px;
  border-radius:999px;
  background:#E8EEF6;
  overflow:hidden;
}

.review-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(135deg,#1E4DB7,#2F6BFF);
}

.prop-reviews-list{
  display:grid;
  gap:12px;
}

.prop-review{
  padding:16px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
}

.prop-review-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
}

.prop-review-name{
  font-weight:700;
}

.prop-review-date{
  font-size:12px;
  color:var(--text3);
}

.prop-review-text{
  font-size:14px;
  color:var(--text2);
}

.prop-side{
  position:sticky;
  top:120px;
}

.prop-booking-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow-lg);
}

.prop-price-wrap{
  margin-bottom:18px;
}

.prop-price-old{
  font-size:13px;
  color:var(--text3);
  text-decoration:line-through;
  min-height:18px;
}

.prop-price-now{
  font-size:32px;
  font-weight:800;
  color:#0F3C68;
}

.prop-price-now span{
  font-size:14px;
  font-weight:500;
  color:var(--text3);
}

.prop-side-block{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}

.prop-side-block label{
  font-size:12px;
  font-weight:700;
  color:var(--text3);
  text-transform:uppercase;
}

.prop-side-block input{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1.5px solid #DCE4EE;
  background:#fff;
  font-size:14px;
  font-family:inherit;
}
.prop-side-field{
  position:relative;
}
.prop-side-btn{
  width:100%;
  margin-top:6px;
  justify-content:center;
}

.prop-side-notes{
  display:grid;
  gap:8px;
  margin-top:16px;
  font-size:13px;
  color:var(--text2);
}

@media(max-width:1000px){
  .prop-layout{
    grid-template-columns:1fr;
  }

  .prop-side{
    position:static;
  }
}

@media(max-width:700px){
  .prop-hero{
    padding:6.5rem 1rem 1.5rem;
  }

  .prop-top{
    flex-direction:column;
    align-items:flex-start;
  }

  #prop-title{
    font-size:34px;
  }

  .prop-wrap{
    padding:1rem;
  }

  .prop-gallery{
    grid-template-columns:1fr 1fr;
  }

  .prop-gallery-item.main{
    grid-column:1/-1;
    grid-row:auto;
    min-height:240px;
  }

  .prop-amenities-grid,
  .prop-facts-grid,
  .prop-policies{
    grid-template-columns:1fr;
  }

  .review-bar{
    grid-template-columns:1fr;
    gap:6px;
  }
}
/* ══════════════════════
   AUTH PAGE
══════════════════════ */
.auth-wrap{min-height:calc(100vh - 64px);display:grid;grid-template-columns:1fr 1fr}
.auth-left{
  background: linear-gradient(135deg, rgba(10,30,60,0.9), rgba(10,30,60,0.7));
  padding:3rem;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.auth-left::before{content:'';position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1613395877344-13d4a8e0d49e?w=800&q=80') center/cover;opacity:.10}
.auth-left-content{
  position:relative;
  z-index:1;
  max-width:760px;
  width:100%;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.auth-left h2{
  font-family:'Fraunces', serif;
  font-size:60px;
  font-weight:300;
  line-height:1.08;
  margin-bottom:1.2rem;
  text-align:center;
  color:#fff;
}
.auth-left h2 em{
  font-style:italic;
  color:#C8F5E9;
}
.auth-left p{
  font-size:20px;
  line-height:1.7;
  opacity:.95;
  margin-bottom:2.2rem;
  max-width:760px;
  text-align:center;
}
.auth-perks{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:100%;
  max-width:760px;
  margin:0 auto;
}
.auth-perk{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:20px;
  line-height:1.45;
  text-align:left;
}
.perk-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.18);
  font-size:18px;
  flex-shrink:0;
}.auth-right{padding:3rem;display:flex;flex-direction:column;justify-content:center;background:var(--surface)}
.auth-left h2::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  background:#F4C542;
  margin:16px auto 0;
  border-radius:999px;
}.auth-right p{font-size:14px;color:var(--text3);margin-bottom:2rem}
.auth-tabs{display:flex;gap:0;margin-bottom:2rem;border-radius:var(--r2);overflow:hidden;border:1.5px solid var(--border)}
.atab{flex:1;padding:10px;text-align:center;font-size:14px;font-weight:600;cursor:pointer;border:none;background:transparent;color:var(--text3);transition:all .2s;font-family:inherit}
.atab.active{
  background: linear-gradient(135deg, #2F6BFF, #1E4DB7);
  color:#fff;}
  .auth-form{display:flex;flex-direction:column;gap:14px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-group{display:flex;flex-direction:column;gap:5px}
.form-group.full{grid-column:1/-1}
.form-group label{font-size:12px;font-weight:600;color:var(--text2)}
.form-group input,.form-group select{padding:11px 14px;border-radius:var(--r2);border:1.5px solid var(--border);font-size:14px;font-family:inherit;color:var(--text);background:var(--surface2);transition:border-color .2s}
.form-group input:focus,.form-group select:focus{outline:none;border-color:var(--green);background:#fff}
.form-hint{font-size:11px;color:var(--text3)}
.auth-submit{
  padding:13px;
  background: linear-gradient(135deg, #2F6BFF, #1E4DB7);
  color:#fff;
  border:none;
  border-radius:var(--r2);
  font-weight:600;
  transition:.25s;
}
.auth-switch a{
  color:#2F6BFF;
  font-weight:600;
  text-decoration:none;
}
.auth-submit:hover{
  background: linear-gradient(135deg, #F97316, #FDBA74);
  transform: translateY(-1px);
}.auth-divider{display:flex;align-items:center;gap:12px;color:var(--text3);font-size:12px}
.auth-divider::before,.auth-divider::after{content:'';flex:1;height:1px;background:var(--border)}
.social-btns{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.social-btn{padding:10px;border-radius:var(--r2);border:1.5px solid var(--border);background:var(--surface);font-size:13px;font-weight:500;cursor:pointer;font-family:inherit;display:flex;align-items:center;justify-content:center;gap:8px;transition:all .2s}
.social-btn:hover{
  border-color:#FFB266;
  background:#FFF3E6;
  color:#F97316;
}.auth-switch{text-align:center;font-size:13px;color:var(--text3)}
.auth-switch a{
  color:#2F6BFF;
}
.auth-host-note{
  background:#FFF3E6;
  color:#F97316;
}
/* ══════════════════════
   MODAL DE RESERVA
══════════════════════ */
.modal-bg{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:2000;display:none;align-items:center;justify-content:center;padding:1rem}
.modal-bg.open{display:flex}
.modal{background:var(--surface);border-radius:var(--r);max-width:460px;width:100%;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg)}
.modal-head{padding:1.25rem 1.5rem;border-bottom:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;position:sticky;top:0;background:var(--surface)}
.modal-title{font-family:'Fraunces',serif;font-size:20px;font-weight:400}
.modal-close{background:none;border:none;font-size:20px;cursor:pointer;color:var(--text3);width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:background .15s}
.modal-close:hover{background:var(--surface2)}
.modal-body{padding:1.5rem;display:flex;flex-direction:column;gap:16px}
.modal-hotel-info{background:var(--surface2);border-radius:var(--r2);padding:12px;display:flex;gap:12px;align-items:center}
.modal-hotel-img{width:56px;height:56px;border-radius:8px;object-fit:cover;background:var(--green-light);display:flex;align-items:center;justify-content:center;font-size:24px;flex-shrink:0}
.modal-hotel-name{font-weight:600;font-size:15px;margin-bottom:2px}
.modal-hotel-sub{font-size:12px;color:var(--text3)}
.dates-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.date-box{background:var(--surface2);border-radius:var(--r2);padding:10px 12px;border:1.5px solid var(--border)}
.date-box{
  position:relative;
  cursor:pointer;
}

.modal .cal-popup,
.modal .guest-popup{
  top:calc(100% + 8px);
  left:0;
  z-index:10020;
}
.date-box-label{font-size:10px;font-weight:700;color:var(--text3);text-transform:uppercase;margin-bottom:3px}
.date-box-val{font-size:14px;font-weight:600;color:var(--text)}
.pay-methods{display:flex;flex-direction:column;gap:8px}
.pmethod{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:var(--r2);border:1.5px solid var(--border);cursor:pointer;transition:all .15s}
.pmethod:hover{border-color:var(--green-mid);background:var(--green-light)}
.pmethod.sel{border-color:var(--green);background:var(--green-light)}
.pmethod input[type=radio]{accent-color:var(--green)}
.pmethod-icon{width:40px;height:28px;border-radius:4px;font-size:11px;font-weight:700;display:flex;align-items:center;justify-content:center}
.pmethod-info h4{font-size:13px;font-weight:600}
.pmethod-info p{font-size:11px;color:var(--text3)}
.summary-block{background:var(--surface2);border-radius:var(--r2);padding:14px}
.sum-line{display:flex;justify-content:space-between;font-size:13px;color:var(--text2);padding:4px 0}
.sum-total{display:flex;justify-content:space-between;font-size:15px;font-weight:700;border-top:1px solid var(--border);padding-top:10px;margin-top:6px}
.cancel-note{font-size:12px;color:var(--green-dark);background:var(--green-light);border-radius:var(--r2);padding:10px;display:flex;gap:8px;border:1px solid var(--green-mid)}
.confirm-btn{padding:13px;background:var(--green);color:#fff;border:none;border-radius:var(--r2);font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;transition:all .2s}
.confirm-btn:hover{background:var(--green-dark)}
.secure-note{text-align:center;font-size:11px;color:var(--text3)}

/* ══════════════════════
   TOAST
══════════════════════ */
.toast{position:fixed;bottom:80px;left:50%;transform:translateX(-50%) translateY(20px);background:var(--text);color:#fff;padding:10px 22px;border-radius:20px;font-size:13px;font-weight:500;z-index:3000;opacity:0;transition:all .3s;pointer-events:none}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

/* ══════════════════════
   HERO CAROUSEL
══════════════════════ */
@keyframes spinBorder{to{transform:rotate(360deg)}}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .9s ease;z-index:0}
.hero-slide.active{opacity:1}
.hero-content{position:relative;z-index:2}
.hero::before{z-index:1}
.hero-dots{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);display:flex;gap:10px;z-index:5}
.hero-dot{width:10px;height:10px;border-radius:50%;border:2px solid rgba(255,255,255,.7);background:transparent;cursor:pointer;transition:all .25s;padding:0}
.hero-dot.active{background:#fff;border-color:#fff;transform:scale(1.2)}
.hero-arrow{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.25);border:none;color:#fff;font-size:22px;width:44px;height:44px;border-radius:50%;cursor:pointer;z-index:5;display:flex;align-items:center;justify-content:center;transition:background .2s;backdrop-filter:blur(4px)}
.hero-arrow:hover{background:rgba(0,0,0,.45)}
.hero-prev{left:20px}
.hero-next{right:20px}
@media(max-width:700px){.hero-arrow{display:none}}

/* ══════════════════════
   LOADING OVERLAY
══════════════════════ */
#page-loader{position:fixed;inset:0;background:rgba(255,255,255,.92);z-index:10000;display:none;align-items:center;justify-content:center;flex-direction:column;gap:16px}
#page-loader.show{display:flex}
#page-loader .loader-spinner{width:48px;height:48px;border:4px solid #e5e7eb;border-top-color:#0F6E56;border-radius:50%;animation:spinBorder .75s linear infinite}
#page-loader .loader-msg{font-size:15px;font-weight:600;color:#1f2937}

/* ══════════════════════
   GOOGLE TRANSLATE
══════════════════════ */
.goog-te-banner-frame{display:none!important}
body{top:0!important}
.lang-picker{position:relative}
.lang-btn{background:var(--surface2);border:1px solid var(--border);border-radius:20px;padding:6px 13px;font-size:13px;font-weight:600;cursor:pointer;color:var(--text);display:flex;align-items:center;gap:5px;transition:all .2s;white-space:nowrap}
.lang-btn:hover{border-color:var(--green);color:var(--green)}
.lang-menu{position:absolute;top:calc(100% + 8px);right:0;background:#fff;border:1px solid var(--border);border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.12);min-width:145px;overflow:hidden;display:none;z-index:500}
.lang-menu.open{display:block}
.lang-opt{padding:10px 16px;font-size:13px;cursor:pointer;transition:background .15s;color:var(--text)}
.lang-opt:hover{background:var(--surface2)}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 700px){

  nav{
    height:auto;
    min-height:84px;
    padding:12px 14px;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
  }

  .logo{
    position:relative;
    height:auto;
    min-height:auto;
    flex:0 0 auto;
  }

  .logo-img{
    position:static !important;
    transform:none !important;
    width:110px !important;
    height:auto !important;
    max-height:56px !important;
    object-fit:contain;
    display:block;
  }

  .nav-links{
    order:3;
    width:100%;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
  }

  .nav-link{
    font-size:13px;
    padding:9px 14px;
  }

  .nav-right{
    margin-left:auto;
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }

  .btn-outline,
  .btn-fill{
    font-size:13px;
    padding:9px 14px;
  }

  #pages-wrap{
    min-height:auto;
  }

  .page{
    position:relative;
    inset:auto;
    width:100%;
    min-height:auto;
    padding-top:96px;
    display:none;
  }
  .page.active{
    display:block;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .hero{
    min-height:auto;
    padding:7rem 1rem 3rem;
  }

  .hero h1{
    font-size:38px;
    line-height:1.12;
    max-width:100%;
  }

  .hero-subtext,
  .hero p{
    font-size:16px;
    line-height:1.55;
    max-width:100%;
    margin-bottom:1.5rem;
  }

  .hero-badge{
    font-size:12px;
    line-height:1.4;
    padding:8px 12px;
    margin-bottom:14px;
  }

  .search-widget{
    padding:16px;
    border-radius:22px;
    max-width:100%;
  }

  .search-tabs{
    gap:8px;
    justify-content:center;
  }

  .search-tabs .stab{
    flex:0 0 auto;
    font-size:13px !important;
    padding:10px 14px !important;
    min-height:40px;
  }

  .search-fields{
    grid-template-columns:1fr !important;
    gap:12px;
  }

  .sf label{
    text-align:left;
    font-size:12px;
    margin-bottom:6px;
  }

  .sf input,
  .sf select,
  .btn-search{
    height:56px;
    font-size:16px;
    border-radius:16px;
  }

  .dest-dropdown,
  .cal-popup,
  .guest-popup{
    left:0 !important;
    right:0 !important;
    min-width:0 !important;
    width:100% !important;
  }

  .trust-bar{
    grid-template-columns:1fr 1fr;
  }

  .trust-item{
    padding:14px 10px;
  }

  .ciudad-grid{
    grid-template-columns:1fr;
  }

  .cta-host{
    margin:0 1rem 1.5rem;
    padding:1.5rem;
    flex-direction:column;
    text-align:center;
    gap:14px;
  }

  .aloj-header{
    padding:6.5rem 1rem 1.25rem;
  }

  .aloj-header h1{
    font-size:24px;
  }

  .aloj-body{
    grid-template-columns:1fr;
  }

  .aloj-sidebar{
    display:none;
  }

  .aloj-main{
    padding:1rem;
  }

  .results-header{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .sort-sel{
    width:100%;
  }

  .hcard{
    grid-template-columns:1fr;
  }

  .hcard-img{
    height:200px;
  }

  .hcard-footer{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .btn-res{
    width:100%;
    text-align:center;
  }
/* ══════════════════════
   PROPERTY DETAIL PAGE
══════════════════════ */
.prop-hero{
  padding:7rem 2rem 2rem;
  background:linear-gradient(135deg, rgba(15,60,104,0.94), rgba(29,78,216,0.88));
  color:#fff;
}

.prop-hero-inner{
  max-width:1240px;
  margin:0 auto;
}

.prop-breadcrumb{
  margin-bottom:16px;
}

.prop-back{
  background:rgba(255,255,255,0.14);
  color:#fff;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
}

.prop-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.prop-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.prop-badge{
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.18);
}

#prop-title{
  font-family:'Fraunces',serif;
  font-size:46px;
  font-weight:300;
  line-height:1.08;
  margin-bottom:10px;
}

.prop-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
  opacity:.95;
}

.prop-top-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.prop-wrap{
  padding:2rem;
}

.prop-layout{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.45fr .6fr;
  gap:24px;
  align-items:start;
}

.prop-main{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.prop-gallery{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:10px;
}

.prop-gallery-item{
  border-radius:20px;
  overflow:hidden;
  min-height:180px;
  background:#EEF4FA;
}

.prop-gallery-item.main{
  grid-row:span 2;
  min-height:370px;
}

.prop-gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.prop-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.prop-box-head{
  margin-bottom:14px;
}

.prop-box-head h2{
  font-family:'Fraunces',serif;
  font-size:30px;
  font-weight:300;
}

.prop-amenities-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.prop-amenity{
  padding:12px 14px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
  font-size:14px;
  font-weight:600;
}

.prop-facts-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.prop-fact{
  padding:14px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.prop-fact span{
  font-size:13px;
  color:var(--text3);
}

.prop-fact strong{
  font-size:16px;
}

.prop-map{
  margin-top:14px;
  height:320px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid #DCE4EE;
  z-index:0;
}

.prop-map-note{
  margin-top:8px;
  font-size:12px;
  color:var(--text3);
}

.prop-policies{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.prop-policy{
  padding:14px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
}

.prop-policy h4{
  font-size:14px;
  margin-bottom:4px;
}

.prop-policy p{
  font-size:13px;
  color:var(--text3);
}

.prop-reviews-summary{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.prop-score-big{
  width:84px;
  height:84px;
  border-radius:20px;
  background:linear-gradient(135deg,#1E4DB7,#2F6BFF);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  font-weight:800;
}

.prop-score-label{
  font-size:20px;
  font-weight:700;
}

.prop-score-sub{
  font-size:13px;
  color:var(--text3);
}

.prop-review-bars{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}

.review-bar{
  display:grid;
  grid-template-columns:130px 1fr 40px;
  gap:10px;
  align-items:center;
}

.review-track{
  height:10px;
  border-radius:999px;
  background:#E8EEF6;
  overflow:hidden;
}

.review-fill{
  height:100%;
  border-radius:999px;
  background:linear-gradient(135deg,#1E4DB7,#2F6BFF);
}

.prop-reviews-list{
  display:grid;
  gap:12px;
}

.prop-review{
  padding:16px;
  border-radius:16px;
  background:#F8FBFF;
  border:1px solid #DCE4EE;
}

.prop-review-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
}

.prop-review-name{
  font-weight:700;
}

.prop-review-date{
  font-size:12px;
  color:var(--text3);
}

.prop-review-text{
  font-size:14px;
  color:var(--text2);
}

.prop-side{
  position:sticky;
  top:120px;
}

.prop-booking-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow-lg);
}

.prop-price-wrap{
  margin-bottom:18px;
}

.prop-price-old{
  font-size:13px;
  color:var(--text3);
  text-decoration:line-through;
  min-height:18px;
}

.prop-price-now{
  font-size:32px;
  font-weight:800;
  color:#0F3C68;
}

.prop-price-now span{
  font-size:14px;
  font-weight:500;
  color:var(--text3);
}

.prop-side-block{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:12px;
}

.prop-side-block label{
  font-size:12px;
  font-weight:700;
  color:var(--text3);
  text-transform:uppercase;
}

.prop-side-block input{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1.5px solid #DCE4EE;
  background:#fff;
  font-size:14px;
  font-family:inherit;
}

.prop-side-btn{
  width:100%;
  margin-top:6px;
  justify-content:center;
}

.prop-side-notes{
  display:grid;
  gap:8px;
  margin-top:16px;
  font-size:13px;
  color:var(--text2);
}

@media(max-width:1000px){
  .prop-layout{
    grid-template-columns:1fr;
  }

  .prop-side{
    position:static;
  }
}

@media(max-width:700px){
  .prop-hero{
    padding:6.5rem 1rem 1.5rem;
  }

  .prop-top{
    flex-direction:column;
    align-items:flex-start;
  }

  #prop-title{
    font-size:34px;
  }

  .prop-wrap{
    padding:1rem;
  }

  .prop-gallery{
    grid-template-columns:1fr 1fr;
  }

  .prop-gallery-item.main{
    grid-column:1/-1;
    grid-row:auto;
    min-height:240px;
  }

  .prop-amenities-grid,
  .prop-facts-grid,
  .prop-policies{
    grid-template-columns:1fr;
  }

  .review-bar{
    grid-template-columns:1fr;
    gap:6px;
  }
}
  .auth-wrap{
    grid-template-columns:1fr;
  }

  .auth-left{
    display:none;
  }

  .auth-right{
    padding:6.5rem 1rem 2rem;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .social-btns{
    grid-template-columns:1fr;
  }

  .host-hero{
    min-height:auto;
    padding:7rem 1rem 3rem;
  }

  .host-hero h1{
    font-size:38px;
  }

  .host-hero p{
    font-size:16px;
  }

  .host-grid,
  .host-steps,
  .host-types,
  .host-faq{
    grid-template-columns:1fr;
  }

  .host-section,
  .host-income,
  .host-final-cta{
    padding:2.5rem 1rem;
  }

  .hostdash-hero{
    padding:7rem 1rem 2rem;
  }

  .hostdash-hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .hostdash-hero h1{
    font-size:34px;
  }

  .hostdash-hero p{
    font-size:16px;
  }

  .hostdash-wrap{
    padding:1rem;
  }

  .hostdash-grid{
    grid-template-columns:1fr;
  }

  .hostdash-side{
    position:static;
  }

  .hostform-grid{
    grid-template-columns:1fr;
  }

  .photo-preview-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .host-actions{
    flex-direction:column;
  }

  .fab{
    right:14px;
    bottom:14px;
    padding:11px 16px;
    font-size:13px;
  }
}
/* ===== FORZAR ESTILO MODERNO DE LOS TABS ===== */
.search-tabs{
  display:flex;
  gap:10px;
  margin-bottom:1.2rem;
  padding-bottom:0;
  border-bottom:none;
  flex-wrap:wrap;
}

.search-tabs .stab{
  appearance:none;
  -webkit-appearance:none;
  border:none;
  outline:none;
  padding:12px 18px !important;
  border-radius:999px !important;
  font-size:14px !important;
  font-weight:700 !important;
  line-height:1 !important;
  cursor:pointer !important;
  background:#f8fafc !important;
  color:#334155 !important;
  border:1px solid #dbe3ec !important;
  transition:all .25s ease !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  min-height:44px;
  box-shadow:none !important;
}

.search-tabs .stab:hover{
  background:#ffffff !important;
  border-color:#cbd5e1 !important;
  transform:translateY(-1px) !important;
  box-shadow:0 6px 14px rgba(0,0,0,0.08) !important;
}

.search-tabs .stab.active{
  background:var(--green-dark) !important;
  color:#fff !important;
  border-color:transparent !important;
  box-shadow:0 8px 20px rgba(29,78,216,0.25) !important;
  transform:translateY(-1px) !important;
}

.search-tabs .stab:active{
  transform:scale(0.97) !important;
}
/* BOTONES BLANCOS POR DEFECTO */
.nav-right button{
  background:#fff !important;
  color:#1E3A5F !important;
  border:1.5px solid #E5E7EB !important;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:.25s;
}

/* BOTÓN ACTIVO (AZUL) */
.nav-right button.active{
  background: linear-gradient(135deg, #2F6BFF, #1E4DB7) !important;
  color:#fff !important;
  border:none !important;
  box-shadow:0 8px 20px rgba(47,107,255,0.3);
}
/* HOST PAGE */
.host-hero{
  background: linear-gradient(135deg,#1E4DB7,#2F6BFF);
  color:#fff;
  padding:80px 20px;
  text-align:center;
}

.host-hero h1{
  font-size:40px;
  margin-bottom:10px;
}

.host-hero p{
  font-size:18px;
  margin-bottom:20px;
  opacity:.9;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.benefit{
  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.host-steps .steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  text-align:center;
}

.step span{
  display:inline-block;
  width:40px;
  height:40px;
  line-height:40px;
  border-radius:50%;
  background:#2F6BFF;
  color:#fff;
  margin-bottom:10px;
}

.types-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:15px;
  text-align:center;
}

.types-grid div{
  padding:15px;
  background:#f5f7fb;
  border-radius:10px;
}

.host-income{
  background:#f0f4ff;
  text-align:center;
  padding:60px 20px;
}

.host-cta{
  text-align:center;
  padding:60px 20px;
}
/* HOST PAGE */
.host-hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:7rem 2rem 5rem;
  background:
    linear-gradient(rgba(15,60,104,0.72), rgba(15,60,104,0.82)),
    url("../assets/pintohome.jpg") center/cover no-repeat;
}

.host-hero-content{
  max-width:860px;
}

.host-badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  font-size:13px;
  margin-bottom:18px;
}

.host-hero h1{
  font-family:'Fraunces',serif;
  font-size:58px;
  font-weight:400;
  line-height:1.08;
  margin-bottom:1rem;
}

.host-hero p{
  font-size:20px;
  max-width:720px;
  margin:0 auto 2rem;
  opacity:.95;
}

.host-hero-actions{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}

.host-section{
  padding:4rem 2rem;
}

.host-section-head{
  max-width:760px;
  margin:0 auto 2rem;
  text-align:center;
}

.host-section-head h2{
  font-family:'Fraunces',serif;
  font-size:34px;
  font-weight:300;
  margin-bottom:.5rem;
}

.host-section-head p{
  color:var(--text3);
  font-size:16px;
}

.host-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.host-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.host-card-icon{
  font-size:28px;
  margin-bottom:12px;
}

.host-card h3{
  font-size:18px;
  margin-bottom:8px;
}

.host-card p{
  color:var(--text3);
  font-size:14px;
}

.host-steps-wrap{
  background:#fff;
}

.host-steps{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.host-step{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:20px;
  padding:24px;
  text-align:center;
}

.host-step span{
  width:46px;
  height:46px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#2F6BFF,#1E4DB7);
  color:#fff;
  font-weight:700;
  margin-bottom:12px;
}

.host-step h3{
  font-size:18px;
  margin-bottom:8px;
}

.host-step p{
  color:var(--text3);
  font-size:14px;
}

.host-types{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.host-type{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  text-align:center;
  font-weight:600;
  box-shadow:var(--shadow);
}

.host-income{
  padding:4rem 2rem;
}

.host-income-box{
  max-width:980px;
  margin:0 auto;
  text-align:center;
  background:linear-gradient(135deg,#1E4DB7,#2F6BFF);
  color:#fff;
  border-radius:28px;
  padding:3rem 2rem;
  box-shadow:var(--shadow-lg);
}

.host-income-box h2{
  font-family:'Fraunces',serif;
  font-size:38px;
  font-weight:300;
  margin-bottom:.75rem;
}

.host-income-box p{
  max-width:700px;
  margin:0 auto 1.5rem;
  opacity:.95;
}

.host-faq{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.host-faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:20px;
}

.host-faq-item h3{
  font-size:18px;
  margin-bottom:8px;
}

.host-faq-item p{
  color:var(--text3);
  font-size:14px;
}

.host-final-cta{
  text-align:center;
  padding:4rem 2rem 5rem;
}

.host-final-cta h2{
  font-family:'Fraunces',serif;
  font-size:38px;
  font-weight:300;
  margin-bottom:.75rem;
}

.host-final-cta p{
  color:var(--text3);
  max-width:760px;
  margin:0 auto 1.5rem;
}

@media(max-width:900px){
  .host-grid,
  .host-steps{
    grid-template-columns:1fr 1fr;
  }

  .host-types,
  .host-faq{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:700px){
  .host-hero h1{
    font-size:38px;
  }

  .host-hero p{
    font-size:16px;
  }

  .host-grid,
  .host-steps,
  .host-types,
  .host-faq{
    grid-template-columns:1fr;
  }

  .host-section,
  .host-income,
  .host-final-cta{
    padding:2.5rem 1rem;
  }
}
/* ══════════════════════
   HOST DASHBOARD
══════════════════════ */
.hostdash-hero{
  padding:7rem 2rem 2.5rem;
  background:linear-gradient(135deg, rgba(15,60,104,0.95), rgba(29,78,216,0.92));
  color:#fff;
}

.hostdash-hero-inner{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.hostdash-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  margin-bottom:14px;
  font-size:13px;
  font-weight:600;
}

.hostdash-hero h1{
  font-family:'Fraunces',serif;
  font-size:48px;
  font-weight:300;
  line-height:1.08;
  margin-bottom:10px;
}

.hostdash-hero p{
  max-width:760px;
  opacity:.94;
  font-size:18px;
}

.hostdash-wrap{
  padding:2rem;
}

.hostdash-grid{
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.6fr .7fr;
  gap:24px;
  align-items:start;
}

.hostdash-main{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.hostbox{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hostbox-head{
  margin-bottom:18px;
}

.hostbox-head h2{
  font-family:'Fraunces',serif;
  font-size:28px;
  font-weight:300;
  margin-bottom:4px;
}

.hostbox-head p{
  color:var(--text3);
  font-size:14px;
}

.hostform-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.hostform-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.hostform-group.full{
  grid-column:1/-1;
}

.hostform-group label{
  font-size:13px;
  font-weight:700;
  color:var(--text2);
}

.hostform-group input,
.hostform-group select,
.hostform-group textarea{
  width:100%;
  padding:13px 14px;
  border-radius:16px;
  border:1.5px solid #DCE4EE;
  font-size:14px;
  font-family:inherit;
  color:var(--text);
  background:#fff;
  transition:all .2s ease;
}

.hostform-group textarea{
  resize:vertical;
  min-height:120px;
}

.hostform-group input:focus,
.hostform-group select:focus,
.hostform-group textarea:focus{
  outline:none;
  border-color:#2F6BFF;
  box-shadow:0 0 0 4px rgba(47,107,255,0.12);
}

.host-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.amenity-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1.5px solid #DCE4EE;
  background:#fff;
  font-size:13px;
  font-weight:600;
  color:#334155;
  cursor:pointer;
  transition:all .2s ease;
}

.amenity-chip input{
  accent-color:#2F6BFF;
}

.amenity-chip:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.host-upload{
  border:2px dashed #CBD5E1;
  border-radius:20px;
  padding:20px;
  background:#F8FBFF;
  text-align:center;
  margin-bottom:18px;
}

.host-upload input{
  display:block;
  width:100%;
  margin-bottom:8px;
}

.upload-help{
  font-size:13px;
  color:var(--text3);
}

.photo-preview-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
}

.photo-preview{
  aspect-ratio:1/1;
  border-radius:16px;
  overflow:hidden;
  background:#EEF4FA;
  border:1px solid #DCE4EE;
  position:relative;
}
.photo-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.photo-remove-btn{
  position:absolute;
  top:6px;
  right:6px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(220,38,38,0.85);
  color:#fff;
  border:none;
  font-size:12px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  transition:background .15s;
  z-index:2;
}
.photo-remove-btn:hover{ background:#DC2626; }
.photo-name{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:rgba(0,0,0,0.45);
  color:#fff;
  font-size:10px;
  padding:3px 5px;
  text-align:center;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.host-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
}

.hostdash-side{
  display:flex;
  flex-direction:column;
  gap:18px;
  position:sticky;
  top:120px;
}

.hostside-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:20px;
  box-shadow:var(--shadow);
}

.hostside-card h3{
  font-size:18px;
  margin-bottom:10px;
}

.hostside-card p{
  font-size:14px;
  color:var(--text3);
}

.host-checklist{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:0;
}

.host-checklist li{
  font-size:14px;
}

.host-status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:#FFF4E6;
  color:#F97316;
  font-size:13px;
  font-weight:700;
  margin-bottom:10px;
}

@media(max-width:1000px){
  .hostdash-grid{
    grid-template-columns:1fr;
  }

  .hostdash-side{
    position:static;
  }

  .photo-preview-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:700px){
  .hostdash-hero{
    padding:6rem 1rem 2rem;
  }

  .hostdash-hero-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .hostdash-hero h1{
    font-size:36px;
  }

  .hostdash-hero p{
    font-size:16px;
  }

  .hostdash-wrap{
    padding:1rem;
  }

  .hostform-grid{
    grid-template-columns:1fr;
  }

  .photo-preview-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .host-actions{
    flex-direction:column;
  }
}
/* ====================== 
   FIX SCROLL EXCESIVO EN MÓVIL 
   ====================== */
@media (max-width: 700px) {
  
  .page {
    padding-top: 82px !important;
    min-height: auto;
  }

  section,
  .host-section,
  .hostdash-wrap,
  .host-income,
  .host-final-cta {
    padding: 1.8rem 1rem !important;
  }

  .aloj-header {
    padding-top: 5rem !important;
  }

  .auth-right {
    padding: 2rem 1rem 3rem !important;
  }

  .host-hero,
  .hostdash-hero {
    padding: 5.5rem 1rem 2rem !important;
  }

  .hero {
    min-height: auto;
    padding: 6rem 1rem 3rem;
  }
}

/* ══════════════════════
   BANNERS PUBLICITARIOS
══════════════════════ */
.ad-banner{
  margin:0 2rem 1.5rem;
  border-radius:20px;
  overflow:hidden;
  border:1.5px dashed #CBD5E1;
  background:linear-gradient(135deg,#F8FAFF,#EEF4FF);
  transition:border-color .2s,box-shadow .2s;
  cursor:pointer;
}
.ad-banner:hover{
  border-color:#93C5FD;
  box-shadow:0 6px 24px rgba(47,107,255,0.10);
}
.ad-banner-inner{
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 24px;
}
.ad-banner-icon{
  font-size:36px;
  flex-shrink:0;
}
.ad-banner-body{
  flex:1;
}
.ad-tag{
  display:inline-block;
  font-size:10px;
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#94A3B8;
  margin-bottom:4px;
}
.ad-banner-body strong{
  display:block;
  font-size:15px;
  color:#1E3A5F;
  margin-bottom:2px;
}
.ad-banner-body p{
  font-size:13px;
  color:#64748B;
  margin:0;
}
.ad-btn{
  flex-shrink:0;
  padding:10px 20px;
  background:linear-gradient(135deg,#2F6BFF,#1E4DB7);
  color:#fff;
  border:none;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  font-family:inherit;
  white-space:nowrap;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.ad-btn:hover{ opacity:.9; }

/* Banner lateral (sidebar) */
.ad-banner-side{
  margin:16px 0 0;
  border-radius:16px;
  border:1.5px dashed #CBD5E1;
  background:linear-gradient(160deg,#F8FAFF,#EEF4FF);
  padding:18px 16px;
  text-align:center;
  cursor:pointer;
  transition:border-color .2s;
}
.ad-banner-side:hover{ border-color:#93C5FD; }
.ad-banner-side .ad-tag{ display:block; margin-bottom:8px; }
.ad-banner-side strong{ font-size:14px; color:#1E3A5F; display:block; margin-bottom:4px; }
.ad-banner-side p{ font-size:12px; color:#64748B; margin:0 0 12px; }

@media(max-width:700px){
  .ad-banner-inner{ flex-direction:column; text-align:center; }
  .ad-banner{ margin:0 1rem 1.5rem; }
}

/* ══════════════════════
   HOST PAYOUTS
══════════════════════ */
.hostpay-hero{
  padding:7rem 2rem 2.5rem;
  background:linear-gradient(135deg,rgba(15,60,104,0.95),rgba(21,128,61,0.88));
  color:#fff;
}

.hostpay-hero-inner{
  max-width:1240px;
  margin:0 auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.hostpay-hero h1{
  font-family:'Fraunces',serif;
  font-size:48px;
  font-weight:300;
  margin-bottom:8px;
}

.hostpay-hero p{
  opacity:.92;
  font-size:17px;
}

.hostpay-wrap{
  max-width:1240px;
  margin:0 auto;
  padding:2rem;
}

.hostpay-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-bottom:2.5rem;
}

.hostpay-stat{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hostpay-stat.highlight{
  background:linear-gradient(135deg,#F0FDF4,#DCFCE7);
  border-color:#86EFAC;
}

.hostpay-stat-icon{
  font-size:26px;
  margin-bottom:10px;
}

.hostpay-stat-label{
  font-size:13px;
  font-weight:700;
  color:var(--text2);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.hostpay-stat-val{
  font-size:28px;
  font-weight:700;
  color:var(--text);
  margin-bottom:4px;
}

.hostpay-stat-val.neg{ color:#DC2626; }
.hostpay-stat-val.green{ color:#15803D; }

.hostpay-stat-sub{
  font-size:12px;
  color:var(--text3);
}

.hostpay-section-head{
  margin-bottom:1.5rem;
}

.hostpay-section-head h2{
  font-family:'Fraunces',serif;
  font-size:28px;
  font-weight:300;
  margin-bottom:4px;
}

.hostpay-section-head p{
  font-size:14px;
  color:var(--text3);
}

.hostpay-table-wrap{
  overflow-x:auto;
  border-radius:20px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.hostpay-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  font-size:14px;
}

.hostpay-table thead{
  background:#F8FAFC;
  border-bottom:1px solid var(--border);
}

.hostpay-table th{
  padding:14px 16px;
  text-align:left;
  font-size:12px;
  font-weight:700;
  color:var(--text2);
  text-transform:uppercase;
  letter-spacing:.4px;
  white-space:nowrap;
}

.hostpay-table td{
  padding:14px 16px;
  border-bottom:1px solid #F1F5F9;
  color:var(--text);
  vertical-align:middle;
}

.hostpay-table tr:last-child td{ border-bottom:none; }
.hostpay-table tr:hover td{ background:#FAFBFF; }

.hostpay-table .neg{ color:#DC2626; font-weight:600; }
.hostpay-table .green{ color:#15803D; }
.hostpay-table .bold{ font-weight:700; }
.hostpay-table .muted{ color:var(--text3); }

.booking-ref{
  font-family:monospace;
  font-size:13px;
  background:#F1F5F9;
  padding:3px 8px;
  border-radius:6px;
  white-space:nowrap;
}

.booking-status{
  display:inline-flex;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}

.booking-status.status-conf{ background:#DBEAFE; color:#1D4ED8; }
.booking-status.status-past{ background:#DCFCE7; color:#15803D; }
.booking-status.status-canc{ background:#FEE2E2; color:#DC2626; }
.booking-status.status-pend{ background:#FEF9C3; color:#92400E; }

.hostpay-loading{
  padding:3rem;
  text-align:center;
  color:var(--text3);
  font-size:15px;
}

.hostpay-empty{
  padding:4rem 2rem;
  text-align:center;
  color:var(--text3);
  font-size:15px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
}

@media(max-width:900px){
  .hostpay-stats{ grid-template-columns:1fr 1fr; }
  .hostpay-stats .hostpay-stat:last-child{ grid-column:1/-1; }
}

@media(max-width:600px){
  .hostpay-hero{ padding:6rem 1rem 2rem; }
  .hostpay-hero h1{ font-size:34px; }
  .hostpay-stats{ grid-template-columns:1fr; }
  .hostpay-wrap{ padding:1rem; }
}

/* ════════════════════════════════════════
   HOST PANEL — Panel completo de anfitrión
════════════════════════════════════════ */

/* ── Hero / cabecera ── */
.hostpanel-hero{
  background:linear-gradient(135deg,#0F3C68,#1D4ED8);
  padding:7rem 2.5rem 2rem;
  color:#fff;
}
.hostpanel-hero-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:2rem;
  flex-wrap:wrap;
}
.hostpanel-hero h1{
  font-family:'Fraunces',serif;
  font-size:32px;
  font-weight:300;
  margin:0 0 4px;
  color:#fff;
}
.hostpanel-qs{
  display:flex;
  gap:1.5rem;
  flex-wrap:wrap;
}
.hqs{
  display:flex;
  flex-direction:column;
  align-items:center;
  background:rgba(255,255,255,0.12);
  border-radius:14px;
  padding:12px 20px;
  min-width:80px;
  text-align:center;
}
.hqs.highlight{ background:rgba(255,255,255,0.22); }
.hqs span{
  font-size:22px;
  font-weight:800;
  color:#fff;
  line-height:1;
}
.hqs-alert{ color:#FCD34D !important; }
.hqs small{ font-size:11px; color:rgba(255,255,255,.75); margin-top:4px; }

/* ── Barra de tabs ── */
.hostpanel-tabs-wrap{
  position:sticky;
  top:64px;
  z-index:500;
  background:#fff;
  border-bottom:2px solid var(--border);
  box-shadow:0 2px 8px rgba(15,60,104,0.06);
}
.hostpanel-tabs{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  overflow-x:auto;
  gap:0;
  scrollbar-width:none;
}
.hostpanel-tabs::-webkit-scrollbar{ display:none; }
.hptab{
  flex-shrink:0;
  padding:14px 20px;
  font-size:13px;
  font-weight:600;
  color:var(--text3);
  border:none;
  background:none;
  cursor:pointer;
  border-bottom:3px solid transparent;
  transition:color .2s,border-color .2s;
  display:flex;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}
.hptab:hover{ color:var(--text); }
.hptab.active{ color:#1D4ED8; border-bottom-color:#1D4ED8; }
.hptab-badge{
  display:none;
  align-items:center;
  justify-content:center;
  background:#EF4444;
  color:#fff;
  font-size:10px;
  font-weight:800;
  min-width:18px;
  height:18px;
  border-radius:999px;
  padding:0 5px;
}

/* ── Cuerpo del panel ── */
.hostpanel-body{
  max-width:1200px;
  margin:0 auto;
  padding:2rem 2rem 4rem;
}
.hptab-content{ display:none; }
.hptab-content.active{ display:block; }

/* ── Utilidades compartidas ── */
.hp-section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1.5rem;
  flex-wrap:wrap;
  gap:.75rem;
}
.hp-section-head h2{
  font-family:'Fraunces',serif;
  font-size:22px;
  font-weight:300;
  margin:0;
}
.hp-section-sub{ font-size:14px; color:var(--text3); margin-top:4px; }
.hp-loading{ text-align:center; padding:3rem; color:var(--text3); font-size:14px; }
.hp-empty{
  text-align:center;
  padding:3rem 1rem;
  color:var(--text3);
  font-size:15px;
  border:1.5px dashed var(--border);
  border-radius:var(--r);
}
.btn-sm{
  padding:7px 14px;
  font-size:13px;
  font-weight:600;
  border-radius:999px;
  cursor:pointer;
}

/* ── Resumen ── */
.hprs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-bottom:2rem;
}
.hprs-card{
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:var(--r);
  padding:1.25rem 1.5rem;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.hprs-card.green{ border-color:#86EFAC; background:#F0FDF4; }
.hprs-card.warn{  border-color:#FDE68A; background:#FFFBEB; }
.hprs-val{
  font-size:28px;
  font-weight:800;
  color:#0F3C68;
  line-height:1;
}
.hprs-label{ font-size:13px; color:var(--text3); font-weight:600; }

/* ── Propiedades ── */
.hpprop-card{
  display:grid;
  grid-template-columns:120px 1fr auto;
  align-items:center;
  gap:1rem;
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:var(--r);
  overflow:hidden;
  margin-bottom:1rem;
  transition:box-shadow .2s;
}
.hpprop-card:hover{ box-shadow:0 4px 16px rgba(15,60,104,.08); }
.hpprop-img{
  height:100px;
  background:#E5E7EB center/cover no-repeat;
  position:relative;
  flex-shrink:0;
}
.hpprop-status-badge{
  position:absolute;
  top:6px;
  left:6px;
  font-size:10px;
  font-weight:700;
  padding:3px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
}
.hpprop-status-badge.active{ color:#15803D; }
.hpprop-status-badge.pending{ color:#D97706; }
.hpprop-status-badge.rejected{ color:#DC2626; }
.hpprop-body{ padding:.5rem 0; }
.hpprop-name{ font-size:15px; font-weight:700; color:var(--text); margin-bottom:4px; }
.hpprop-meta{ font-size:13px; color:var(--text3); margin-bottom:4px; }
.hpprop-info{ font-size:12px; color:var(--text3); }
.hpprop-actions{ display:flex; flex-direction:column; gap:8px; padding:.75rem; }

/* ── Reservas ── */
.hp-filter-bar{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:1.5rem;
}
.hp-ftab{
  padding:8px 18px;
  border-radius:999px;
  border:1.5px solid var(--border);
  background:#fff;
  font-size:13px;
  font-weight:600;
  color:var(--text3);
  cursor:pointer;
  transition:all .2s;
}
.hp-ftab:hover{ border-color:#1D4ED8; color:#1D4ED8; }
.hp-ftab.active{ background:#1D4ED8; border-color:#1D4ED8; color:#fff; }
.hpbooking-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1rem;
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:var(--r);
  padding:1.25rem 1.5rem;
  margin-bottom:.75rem;
  flex-wrap:wrap;
  transition:box-shadow .2s;
}
.hpbooking-row:hover{ box-shadow:0 3px 12px rgba(15,60,104,.07); }
.hpbooking-main{ flex:1; min-width:200px; display:flex; flex-direction:column; gap:5px; }
.hpbooking-prop{ font-size:15px; font-weight:700; color:var(--text); }
.hpbooking-guest{ font-size:13px; color:var(--text3); }
.hpbooking-dates{ font-size:13px; color:var(--text3); }
.hpbooking-nights{ background:#EEF2FF; color:#3730A3; font-size:11px; font-weight:700; padding:2px 8px; border-radius:999px; margin-left:6px; }
.hpbooking-amount{ font-size:14px; font-weight:700; color:#15803D; }
.hpbooking-right{ display:flex; flex-direction:column; align-items:flex-end; gap:8px; flex-shrink:0; }
.hpbooking-status{
  font-size:11px;
  font-weight:700;
  padding:4px 12px;
  border-radius:999px;
}
.hpbooking-status.orange{ background:#FEF3C7; color:#D97706; }
.hpbooking-status.green{  background:#D1FAE5; color:#15803D; }
.hpbooking-status.red{    background:#FEE2E2; color:#DC2626; }
.hpbooking-status.gray{   background:#F1F5F9; color:#64748B; }
.hp-btn-cancel{
  padding:7px 14px;
  font-size:13px;
  font-weight:600;
  border-radius:999px;
  border:1.5px solid #DC2626;
  background:#fff;
  color:#DC2626;
  cursor:pointer;
  transition:all .2s;
}
.hp-btn-cancel:hover{ background:#FEE2E2; }

/* ── Disponibilidad ── */
.hp-avail-picker{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:1.5rem;
}
.hp-avail-picker label{ font-weight:600; font-size:14px; }
.hp-avail-picker select{
  padding:8px 14px;
  border-radius:var(--r2);
  border:1.5px solid var(--border);
  font-size:14px;
  font-family:inherit;
  min-width:220px;
}
.hpcal{ background:var(--surface); border:1.5px solid var(--border); border-radius:var(--r); padding:1.5rem; max-width:540px; }
.hpcal-nav{ display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; font-weight:700; font-size:15px; }
.hpcal-legend{ display:flex; align-items:center; gap:.5rem; font-size:13px; color:var(--text3); margin-bottom:.75rem; }
.hpcal-leg{ display:inline-block; width:14px; height:14px; border-radius:4px; }
.hpcal-leg.avail{ background:#D1FAE5; border:1.5px solid #6EE7B7; }
.hpcal-leg.blk{   background:#FEE2E2; border:1.5px solid #FCA5A5; }
.hpcal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:4px; }
.hpcal-dow{ text-align:center; font-size:11px; font-weight:700; color:var(--text3); padding:4px 0; }
.hpcal-day{
  text-align:center;
  padding:8px 4px;
  border-radius:8px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  background:#F8FAFC;
  border:1.5px solid transparent;
  transition:all .15s;
}
.hpcal-day:hover:not(.past):not(.empty){ background:#DBEAFE; border-color:#93C5FD; }
.hpcal-day.blocked{ background:#FEE2E2; border-color:#FCA5A5; color:#DC2626; }
.hpcal-day.past{ color:#CBD5E1; cursor:default; background:#F8FAFC; }
.hpcal-day.empty{ background:none; border:none; cursor:default; }
.hpcal-hint{ font-size:12px; color:var(--text3); margin-top:1rem; text-align:center; }

/* ── Mensajes ── */
.hp-msg-wrap{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:0;
  border:1.5px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  height:560px;
  background:#fff;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
}
.hp-msg-sidebar{
  border-right:1.5px solid var(--border);
  overflow-y:auto;
  background:#FAFBFF;
  display:flex;
  flex-direction:column;
}
.hp-msg-sidebar-hdr{
  padding:16px 18px 12px;
  font-size:13px;
  font-weight:700;
  color:var(--text3);
  text-transform:uppercase;
  letter-spacing:.05em;
  border-bottom:1px solid var(--border);
  background:#fff;
}
.hpmsg-conv{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--border);
  cursor:pointer;
  transition:background .15s;
  position:relative;
}
.hpmsg-conv:hover{ background:#F0F4FF; }
.hpmsg-conv.active{ background:#EFF6FF; border-left:3px solid #2563EB; }
.hpmsg-conv.unread{ background:#EFF6FF; }
.hpmsg-conv-body{ flex:1; min-width:0; }
.hpmsg-name{ font-size:13px; font-weight:700; color:var(--text); margin-bottom:2px; }
.hpmsg-preview{ font-size:12px; color:var(--text3); overflow:hidden; white-space:nowrap; text-overflow:ellipsis; }
.hpmsg-dot{ width:9px; height:9px; border-radius:50%; background:#2563EB; flex-shrink:0; }
.hp-msg-thread{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
}
.hp-msg-placeholder{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--text3);
  font-size:14px;
  gap:8px;
}
.hp-msg-placeholder::before{ content:'💬'; font-size:36px; }
.hpmsg-thread-hdr{
  padding:16px 20px;
  font-weight:700;
  font-size:15px;
  border-bottom:1.5px solid var(--border);
  background:#fff;
  color:var(--text);
}
.hpmsg-msgs{
  flex:1;
  overflow-y:auto;
  padding:1.25rem 1rem;
  display:flex;
  flex-direction:column;
  gap:12px;
  background:#F8FAFF;
}
.hpmsg-bubble{ max-width:70%; display:flex; flex-direction:column; gap:4px; }
.hpmsg-bubble.mine{ align-self:flex-end; align-items:flex-end; }
.hpmsg-bubble.theirs{ align-self:flex-start; }
.hpmsg-text{
  padding:10px 15px;
  border-radius:18px;
  font-size:14px;
  line-height:1.55;
  word-break:break-word;
}
.hpmsg-bubble.mine   .hpmsg-text{ background:#2563EB; color:#fff; border-bottom-right-radius:5px; }
.hpmsg-bubble.theirs .hpmsg-text{ background:#fff; color:var(--text); border-bottom-left-radius:5px; box-shadow:0 1px 4px rgba(0,0,0,.08); }
.hpmsg-time{ font-size:11px; color:var(--text3); padding:0 4px; }
.hpmsg-input-wrap{
  display:flex;
  gap:10px;
  padding:12px 16px;
  border-top:1.5px solid var(--border);
  background:#fff;
  align-items:flex-end;
}
.hpmsg-input-wrap textarea{
  flex:1;
  border:1.5px solid var(--border);
  border-radius:12px;
  padding:10px 14px;
  font-family:inherit;
  font-size:13px;
  resize:none;
  line-height:1.5;
  background:#F8FAFF;
  transition:border-color .2s;
}
.hpmsg-input-wrap textarea:focus{ border-color:#2563EB; outline:none; background:#fff; }

/* ── Notificaciones ── */
.hpnotif-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 18px;
  border-bottom:1px solid var(--border);
  position:relative;
  transition:background .15s;
}
.hpnotif-item:hover{ background:#F8FAFC; }
.hpnotif-item.unread{ background:#EFF6FF; }
.hpnotif-icon{ font-size:24px; flex-shrink:0; }
.hpnotif-body{ flex:1; }
.hpnotif-title{ font-size:14px; font-weight:600; color:var(--text); margin-bottom:3px; }
.hpnotif-time{ font-size:12px; color:var(--text3); }
.hpnotif-dot{ width:8px; height:8px; border-radius:50%; background:#2563EB; flex-shrink:0; }

/* ── Responsive ── */
@media(max-width:1024px){
  .hprs-grid{ grid-template-columns:1fr 1fr; }
  .hostpanel-hero{ padding:6rem 1.5rem 1.5rem; }
}
@media(max-width:768px){
  .hostpanel-body{ padding:1.5rem 1rem 3rem; }
  .hpprop-card{ grid-template-columns:90px 1fr; }
  .hpprop-actions{ grid-column:1/-1; flex-direction:row; padding:.5rem 0; }
  .hp-msg-wrap{ grid-template-columns:1fr; }
  .hp-msg-sidebar{ max-height:250px; }
  .hostpanel-qs{ gap:1rem; }
}
@media(max-width:480px){
  .hprs-grid{ grid-template-columns:1fr 1fr; }
  .hpbooking-row{ flex-direction:column; }
  .hpbooking-right{ align-items:flex-start; flex-direction:row; flex-wrap:wrap; }
  .hostpanel-hero-inner{ flex-direction:column; align-items:flex-start; }
}

/* ══════════════════════
   PANEL DE ADMINISTRADOR
   ══════════════════════ */

/* Tabla admin */
.admin-table{
  width:100%;
  border-collapse:collapse;
  font-size:.85rem;
}
.admin-table th{
  background:#F1F5F9;
  color:var(--text2);
  font-weight:600;
  text-align:left;
  padding:.6rem .75rem;
  border-bottom:2px solid var(--border);
}
.admin-table td{
  padding:.6rem .75rem;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.admin-table tr:hover td{ background:#F8FAFC; }

/* Tarjeta de propiedad pendiente */
.admin-prop-card{
  display:flex;
  gap:1.5rem;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:1.25rem;
  margin-bottom:1rem;
}
.admin-prop-info{ flex:1; }
.admin-prop-name{
  font-size:1.05rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:.25rem;
}
.admin-prop-meta{
  font-size:.82rem;
  color:var(--text2);
  margin-bottom:.2rem;
}
.admin-prop-desc{
  font-size:.82rem;
  color:var(--text3);
  margin-top:.5rem;
  line-height:1.5;
}
.admin-prop-actions{
  display:flex;
  flex-direction:column;
  gap:.5rem;
  flex-shrink:0;
  min-width:130px;
}

/* Stats cards — reutiliza .hprs-card, añadir variantes */
.hprs-card.hprs-alert .hprs-val{ color:#d97706; }
.hprs-card.hprs-highlight .hprs-val{ color:#16a34a; }

@media(max-width:640px){
  .admin-prop-card{ flex-direction:column; }
  .admin-table{ font-size:.75rem; }
  .admin-table th, .admin-table td{ padding:.4rem .5rem; }
}
