/*
Theme Name: Nairobi Corporate Stays
Theme URI: https://nairobicorporatestays.com
Author: Kamori Group Ltd
Author URI: https://nairobicorporatestays.com
Description: Premium furnished corporate stays in Nairobi — powered by Kamori Group Ltd. Features property listings, booking enquiry forms, contact, and about pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
Text Domain: nairobi-stays
*/

/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --p1: #f2e8d5;
  --p2: #e8d9bc;
  --p3: #ddd0ab;
  --p4: #faf7f0;
  --g1: #2d4a2d;
  --g2: #3a5c3a;
  --g3: #4a7040;
  --r1: #8b4513;
  --r2: #a0522d;
  --r3: #d4956a;
  --ink1: #2c1810;
  --ink2: #4a3728;
  --ink3: #6b5040;
  --ink4: #9a8070;
  --red:   #8b2020;
  --red-l: #b03030;
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--p1);
  color: var(--ink1);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeIn  { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin    { to { transform: rotate(360deg); } }
.fade-in { animation: fadeIn 0.3s ease; }

/* ── SURFACES ────────────────────────────────────────── */
.s-p1 { background: var(--p1); }
.s-p2 { background: var(--p2); }

/* ── SECTION TITLE ───────────────────────────────────── */
.sec-title { text-align: center; margin-bottom: 2.25rem; }
.sec-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--ink1);
  display: inline-flex; align-items: center; gap: 1rem;
}
.sec-title h2::before, .sec-title h2::after {
  content: ""; display: inline-block;
  width: 48px; height: 1.5px; background: var(--r1);
}
.sec-title p { color: var(--ink3); font-size: 1rem; margin-top: 0.35rem; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.58rem 1.35rem;
  font-family: 'Inter', sans-serif; font-size: 0.875rem;
  letter-spacing: 0.02em; cursor: pointer; border: none;
  text-decoration: none; transition: all 0.18s; font-weight: 500;
  border-radius: 6px;
}
.btn-dk  { background: var(--g1); color: var(--p1); border: 1.5px solid var(--g1); }
.btn-dk:hover  { background: var(--g2); color: var(--p1); }
.btn-rust { background: var(--r1); color: #fff; font-weight: 700; }
.btn-rust:hover { background: var(--r2); color: #fff; }
.btn-outline-p { background: transparent; color: var(--p1); border: 1.5px solid rgba(242,232,213,0.65); }
.btn-outline-p:hover { background: rgba(242,232,213,0.1); color: var(--p1); }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.82rem; }

/* ── FORMS ───────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: var(--p4); border: 1px solid var(--p3);
  color: var(--ink1); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; padding: 0.6rem 0.85rem; width: 100%;
  outline: none; transition: border-color 0.18s; border-radius: 5px;
}
input:focus, select:focus, textarea:focus { border-color: var(--r1); }
input::placeholder, textarea::placeholder { color: var(--ink4); }
label {
  font-size: 0.72rem; color: var(--ink2); letter-spacing: 0.06em;
  display: block; margin-bottom: 0.28rem; font-weight: 600; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.fg { margin-bottom: 0.95rem; }
.form-error {
  color: var(--red-l); font-size: 0.83rem;
  margin-bottom: 0.7rem; background: rgba(139,32,32,0.08);
  border: 1px solid rgba(139,32,32,0.3); padding: 0.48rem 0.72rem;
  display: none;
}
.form-error.visible { display: block; }
.form-success {
  background: var(--p2); border: 1px solid var(--p3);
  padding: 2rem; text-align: center; display: none;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--g3); margin-bottom: 1rem;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.site-header {
  background: var(--g1); border-bottom: 2px solid var(--r1);
  padding: 0 2.5rem; display: flex; align-items: center;
  justify-content: space-between; height: 62px;
  position: sticky; top: 0; z-index: 200;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--r1); display: flex; align-items: center;
  justify-content: center; font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 0.82rem; color: var(--r1);
  flex-shrink: 0;
}
.nav-brand-name {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 0.68rem; letter-spacing: 0.18em; color: #f2e8d5;
  text-transform: uppercase; font-weight: 600;
}
.nav-brand-sub { display: block; font-size: 0.64rem; color: var(--r2); letter-spacing: 0.05em; }
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: rgba(242,232,213,0.8);
  font-size: 0.92rem; cursor: pointer; transition: color 0.2s;
  position: relative; padding-bottom: 4px;
}
.nav-links a:hover,
.nav-links a.current-menu-item > a,
.nav-links .current-menu-item > a { color: var(--r3); }
.nav-links .current-menu-item > a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--r1);
}
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--r3); padding: 0.4rem;
}
.mobile-nav {
  display: none; background: var(--g1); border-bottom: 2px solid var(--r1);
  padding: 1rem 1.5rem; flex-direction: column; gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(242,232,213,0.85); text-decoration: none; font-size: 1rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 295px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 2.4rem 3rem;
}
.hero-bg {
  position: absolute; inset: 0; background-color: var(--g1);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(20,35,20,0.72) 0%, rgba(45,74,45,0.45) 55%, rgba(74,112,64,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; width: 100%; }
.hero-content h1 {
  font-family: 'Playfair Display', serif; font-size: 2.9rem;
  font-weight: 900; color: var(--p1); line-height: 1.1; white-space: pre-line;
}
.hero-content p { font-size: 1rem; color: rgba(242,232,213,0.75); margin-top: 0.38rem; }
.hero-btns { display: flex; gap: 0.8rem; margin-top: 1.4rem; flex-wrap: wrap; }

.about-hero {
  position: relative; min-height: 220px; overflow: hidden;
  display: flex; align-items: flex-end; padding: 2.2rem 3rem;
}
.about-hero-bg {
  position: absolute; inset: 0; background-color: var(--g1);
  background-size: cover; background-position: center;
}
.about-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(20,35,20,0.82) 0%, rgba(45,74,45,0.5) 100%);
}
.about-hero-content { position: relative; z-index: 2; }
.about-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 2.75rem;
  font-weight: 900; color: var(--p1); line-height: 1.1;
}
.about-hero .subtitle { font-size: 1rem; color: rgba(242,232,213,0.7); margin-top: 0.38rem; }

/* CTA Hero Band */
.cta-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 3rem 1.5rem; background: var(--g1);
}
.cta-hero-bg {
  position: absolute; inset: 0; background-color: var(--g1);
  background-size: cover; background-position: center;
}
.cta-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(20,35,20,0.75);
}
.cta-hero-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-hero-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.85rem;
  color: var(--r3); margin-bottom: 0.5rem;
}
.cta-hero-content p { color: rgba(242,232,213,0.7); font-size: 1rem; margin-bottom: 1.4rem; }
.cta-hero-btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* CTA Band */
.cta-band {
  background: var(--g1); text-align: center; padding: 3rem 1.5rem;
  border-top: 2px solid var(--r1);
}
.cta-band h2 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--p1); margin-bottom: 0.5rem;
}
.cta-band p { color: rgba(242,232,213,0.7); margin-bottom: 1.4rem; }
.cta-band-btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   PROPERTY CARD
══════════════════════════════════════ */
.pcard {
  background: var(--p4); border: 1px solid var(--p3);
  box-shadow: 1px 2px 8px rgba(44,24,16,0.09); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; display: flex; flex-direction: column;
  border-radius: 4px;
}
.pcard:hover { transform: translateY(-2px); box-shadow: 2px 6px 18px rgba(44,24,16,0.16); }
.pcard-img   { width: 100%; height: 185px; object-fit: cover; display: block; }
.pcard-img-ph {
  width: 100%; height: 185px; display: flex; align-items: center;
  justify-content: center; background: linear-gradient(135deg, var(--g1), var(--g2));
}
.pcard-body  { padding: 0.82rem 0.95rem 1.05rem; flex: 1; display: flex; flex-direction: column; }
.pcard-title { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; color: var(--ink1); margin-bottom: 0.18rem; }
.pcard-meta  { font-size: 0.78rem; color: var(--ink3); margin-bottom: 0.45rem; }
.pcard-div   { height: 1px; background: linear-gradient(to right, transparent, var(--r1), transparent); opacity: 0.45; margin: 0.45rem 0; }
.pcard-price { font-family: 'Playfair Display', serif; font-size: 1.02rem; color: var(--ink1); font-weight: 700; margin-top: auto; }
.pcard-price span { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: var(--ink3); font-weight: 400; }
.verified-stamp {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(45,74,45,0.92); color: var(--r3);
  font-size: 0.58rem; padding: 0.17rem 0.48rem;
  letter-spacing: 0.06em; border: 1px solid var(--r1);
}
.pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* ══════════════════════════════════════
   AUDIENCE GRID (Home icons)
══════════════════════════════════════ */
.aud-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 1.5rem;
}
.aud-cell {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.6rem;
}
.aud-icon {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1.5px solid var(--r1); display: flex;
  align-items: center; justify-content: center;
  background: var(--p4);
}
.aud-cell h4 {
  font-family: 'Playfair Display', serif; font-size: 0.98rem;
  color: var(--ink1); font-weight: 700;
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: center;
}
.who-img { width: 100%; height: 280px; object-fit: cover; display: block; }
.miss-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.miss-cell {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--p4); border: 1px solid var(--p3);
  padding: 1.2rem; border-radius: 4px;
}
.miss-icon { flex-shrink: 0; }
.miss-cell h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink1); margin-bottom: 0.3rem; }
.miss-cell p { font-size: 0.85rem; color: var(--ink3); line-height: 1.6; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--p3); }
.services-panel { background: var(--p1); padding: 2rem; }
.services-panel h4 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--ink1); font-weight: 700; margin-bottom: 1.2rem;
}
.services-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.services-list li {
  font-size: 0.9rem; color: var(--ink2); display: flex;
  align-items: center; gap: 0.5rem;
}
.diamond { color: var(--r1); font-size: 0.4rem; }
.zv-logo { width: 80px; height: 80px; object-fit: contain; }
.zv-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-info-grid {
  max-width: 760px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem;
}
.contact-info-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.3rem;
}
.contact-info-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--ink4); text-transform: uppercase;
}
.contact-info-value { font-size: 0.88rem; color: var(--ink3); line-height: 1.5; }
.contact-info-value a { color: var(--r1); text-decoration: none; word-break: break-all; }
.contact-info-value a:hover { color: var(--r2); }

/* ══════════════════════════════════════
   LISTINGS PAGE
══════════════════════════════════════ */
.listings-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; }
.filters-sidebar {
  background: var(--p4); border: 1px solid var(--p3);
  padding: 1.2rem; align-self: start;
  position: sticky; top: 80px;
}
.filters-sidebar h3 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--ink1); font-weight: 700; margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--p3);
}
.filter-group { margin-bottom: 1rem; }
.filter-group label { margin-bottom: 0.3rem; }
.filter-group select,
.filter-group input { padding: 0.45rem 0.7rem; font-size: 0.85rem; }
.filters-apply {
  width: 100%; background: var(--r1); color: #fff;
  border: none; padding: 0.6rem; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; font-weight: 700; cursor: pointer;
  border-radius: 5px; margin-top: 0.5rem; transition: background 0.18s;
}
.filters-apply:hover { background: var(--r2); }
.listings-count {
  font-size: 0.85rem; color: var(--ink3); margin-bottom: 1rem;
}
.lrow {
  background: var(--p4); border: 1px solid var(--p3);
  box-shadow: 1px 2px 8px rgba(44,24,16,0.09);
  display: flex; overflow: hidden; margin-bottom: 0.85rem;
  transition: box-shadow 0.2s; border-radius: 4px;
}
.lrow:hover { box-shadow: 2px 4px 16px rgba(44,24,16,0.15); }
.lrow-img { width: 200px; height: 160px; flex-shrink: 0; object-fit: cover; display: block; align-self: stretch; }
.lrow-img-ph {
  width: 200px; flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; background: linear-gradient(135deg, var(--g1), var(--g2));
}
.lrow-body { flex: 1; padding: 1rem 1.2rem; display: flex; flex-direction: column; justify-content: space-between; }
.lrow-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink1); margin-bottom: 0.18rem; }
.lrow-loc { font-size: 0.78rem; color: var(--ink3); }
.lrow-specs { display: flex; gap: 0.7rem; font-size: 0.78rem; color: var(--ink2); margin: 0.5rem 0; flex-wrap: wrap; align-items: center; }
.lrow-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.38rem; }
.lrow-price { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--ink1); }
.lrow-price span { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 400; color: var(--ink3); }
.verified-chip {
  background: rgba(28,61,40,0.92); color: var(--r3);
  font-size: 0.56rem; padding: 0.16rem 0.45rem;
  border: 1px solid var(--r1); letter-spacing: 0.06em;
}
.no-listings { text-align: center; padding: 3rem; color: var(--ink3); }

/* ══════════════════════════════════════
   SUBMIT PROPERTY PAGE
══════════════════════════════════════ */
.submit-form-wrap { max-width: 680px; margin: 0 auto; }
.submit-form-wrap .fr {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--g1); border-top: 2px solid var(--r1);
  padding: 2.5rem 1.5rem; text-align: center;
}
.site-footer h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  color: var(--p1); margin-bottom: 0.4rem; font-weight: 700;
}
.footer-powered {
  font-size: 0.75rem; color: var(--r2); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-contact {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; margin-bottom: 1rem;
}
.footer-contact a { color: rgba(242,232,213,0.7); text-decoration: none; font-size: 0.85rem; }
.footer-contact span { color: rgba(242,232,213,0.7); font-size: 0.85rem; }
.footer-copy { font-size: 0.75rem; color: rgba(242,232,213,0.4); margin-top: 0.5rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin: 1rem 0; flex-wrap: wrap; }
.footer-links a { color: rgba(242,232,213,0.6); text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: var(--r3); }

/* ══════════════════════════════════════
   INNER CONTAINER
══════════════════════════════════════ */
.inner { max-width: 960px; margin: 0 auto; }

/* ══════════════════════════════════════
   PROPERTY DETAIL
══════════════════════════════════════ */
.property-detail-hero { width: 100%; height: 380px; object-fit: cover; display: block; }
.property-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; max-width: 960px; margin: 2rem auto; padding: 0 1.5rem; }
.property-detail-main h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--ink1); font-weight: 700; }
.property-detail-loc { font-size: 0.9rem; color: var(--ink3); margin: 0.3rem 0 1rem; }
.property-specs-row { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.spec-chip { background: var(--p2); border: 1px solid var(--p3); padding: 0.25rem 0.7rem; font-size: 0.8rem; color: var(--ink2); border-radius: 3px; }
.property-description { font-size: 0.95rem; color: var(--ink2); line-height: 1.85; margin-bottom: 1.5rem; }
.property-amenities h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink1); margin-bottom: 0.8rem; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; list-style: none; }
.amenities-list li { font-size: 0.85rem; color: var(--ink2); display: flex; align-items: center; gap: 0.4rem; }
.booking-card { background: var(--p4); border: 1px solid var(--p3); padding: 1.5rem; align-self: start; position: sticky; top: 80px; border-radius: 4px; }
.booking-card .price-big { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--ink1); }
.booking-card .price-unit { font-size: 0.8rem; color: var(--ink3); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .listings-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .who-grid { grid-template-columns: 1fr; }
  .miss-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .property-detail-layout { grid-template-columns: 1fr; }
  .pcard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .site-header { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 2rem 1.2rem; min-height: 240px; }
  .hero-content h1 { font-size: 2rem; }
  .about-hero { padding: 2rem 1.2rem; }
  .about-hero h1 { font-size: 2rem; }
  .pcard-grid { grid-template-columns: 1fr; }
  .aud-grid { grid-template-columns: 1fr; }
  .lrow { flex-direction: column; }
  .lrow-img, .lrow-img-ph { width: 100%; height: 200px; }
  .submit-form-wrap .fr { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
}

/* WordPress alignment helpers */
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.wp-block-image img { max-width: 100%; height: auto; }

/* ══════════════════════════════════════
   GALLERY & LIGHTBOX (added v1.1)
══════════════════════════════════════ */
#main-img-wrap img { transition: opacity 0.18s ease; }
#ncs-lightbox { display: none; }
#ncs-lightbox.open { display: flex !important; }
#thumbnail-strip::-webkit-scrollbar { height: 4px; }
#thumbnail-strip::-webkit-scrollbar-track { background: var(--p2); }
#thumbnail-strip::-webkit-scrollbar-thumb { background: var(--r1); border-radius: 2px; }

/* ══════════════════════════════════════
   TOAST NOTIFICATIONS (added v1.1)
══════════════════════════════════════ */
#ncs-toast-container { position: fixed; top: 80px; right: 1.2rem; z-index: 9999; display: flex; flex-direction: column; gap: .5rem; pointer-events: none; }

/* ══════════════════════════════════════
   AMENITY TAG INPUT (added v1.1)
══════════════════════════════════════ */
#amenity-tags { cursor: text; }
#amenity-tags:focus-within { border-color: var(--r1); }
.ncs-tag { background: var(--g1); color: var(--p1); border-radius: 3px; padding: .18rem .55rem; font-size: .78rem; display: inline-flex; align-items: center; gap: .3rem; }

/* ══════════════════════════════════════
   FILE UPLOAD ZONES (added v1.1)
══════════════════════════════════════ */
#photo-drop:hover { border-color: var(--r1); }
.upload-zone-active { border-color: var(--g3) !important; }

/* ══════════════════════════════════════
   PROPERTY DETAIL: SPEC TILES (v1.1)
══════════════════════════════════════ */
.spec-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--p3); margin: 1.4rem 0 1.8rem; }
.spec-tile { background: var(--p2); padding: 1rem 1.2rem; text-align: center; }
.spec-tile-val { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink1); }
.spec-tile-label { font-size: .74rem; color: var(--ink4); text-transform: uppercase; letter-spacing: .07em; margin-top: .15rem; }

/* ══════════════════════════════════════
   BOOKING ADMIN STATUS BADGES
══════════════════════════════════════ */
.status-pending   { background: #8b6500; color: #fff; padding: 2px 8px; font-size: .78rem; border-radius: 3px; }
.status-confirmed { background: #2a5c2a; color: #fff; padding: 2px 8px; font-size: .78rem; border-radius: 3px; }
.status-cancelled { background: #8b2020; color: #fff; padding: 2px 8px; font-size: .78rem; border-radius: 3px; }
.status-approved  { background: #2a5c2a; color: #fff; padding: 2px 8px; font-size: .78rem; border-radius: 3px; }

/* ══════════════════════════════════════
   RESPONSIVE ADDITIONS (v1.1)
══════════════════════════════════════ */
@media (max-width: 700px) {
  #main-img-wrap { height: 240px !important; }
  .spec-tiles { grid-template-columns: repeat(2,1fr); }
  #photo-drop { padding: 1rem; }
}
@media (max-width: 480px) {
  .spec-tiles { grid-template-columns: 1fr; }
}
