/* ═══════════════════════════════════════════════════════════════
   INDUSTRIALIST.AE — DETAIL PAGE STYLES
   Loaded only on single-ind_property and single-ind_supplier pages.
════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.ind-breadcrumb {
    padding: 14px 0;
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ind-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.ind-breadcrumb a:hover { color: var(--orange); }
.ind-breadcrumb svg { color: var(--muted); opacity: .5; flex-shrink: 0; }
.ind-bc-right{ margin-left:auto; display:inline-flex; align-items:center; gap:10px; }
.ind-bc-pdf{ display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.05); border:1px solid var(--border); color:var(--muted); border-radius:9px; padding:6px 11px; font:inherit; font-size:.72rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase; cursor:pointer; transition:background .18s,color .18s,border-color .18s; }
.ind-bc-pdf:hover{ color:#07080b; background:var(--orange); border-color:var(--orange); }
.ind-bc-pdf svg{ width:14px; height:14px; opacity:1; }
.ind-bc-right .ind-lnav-inline{ position:static!important; transform:none!important; }

/* ── Hero gallery ── */
.ind-gallery { margin-bottom: 32px; border-radius: var(--r); overflow: hidden; background: var(--surface); }

.ind-gallery-main {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: var(--surface2);
}
@media(max-width:768px) { .ind-gallery-main { height: 260px; } }

.ind-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}
.ind-gallery-main img:hover { transform: scale(1.02); }

/* Photo count badge */
.ind-gallery-count {
    position: absolute;
    bottom: 16px; right: 16px;
    background: rgba(7,8,11,.85);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Thumbnails */
.ind-gallery-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
    background: var(--surface);
}
.ind-gallery-thumbs::-webkit-scrollbar { height: 3px; }
.ind-gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 6px; }

.ind-gallery-thumbs img {
    width: 90px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s, opacity .2s;
    opacity: .65;
}
.ind-gallery-thumbs img:hover { opacity: 1; }
.ind-gallery-thumbs img.active { border-color: var(--orange); opacity: 1; }

/* No-image placeholder */
.ind-gallery-placeholder {
    height: 320px;
    background: var(--surface2);
    border-radius: var(--r);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    margin-bottom: 32px;
}

/* ── Main detail layout ── */
.ind-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
@media(max-width:1024px) { .ind-detail-layout { grid-template-columns: 1fr 300px; gap: 24px; } }
@media(max-width:768px)  { .ind-detail-layout { grid-template-columns: 1fr; } }

.ind-detail-main { min-width: 0; }
.ind-detail-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }

/* ── Property header ── */
.ind-prop-header { margin-bottom: 24px; }

.ind-prop-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.ind-prop-badge {
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 5px 12px;
    border-radius: 7px;
}
.ind-badge-type    { background: rgba(0,222,255,.08); border: 1px solid rgba(0,222,255,.2); color: var(--cyan); }
.ind-badge-zone    { background: rgba(255,212,0,.1); border: 1px solid rgba(255,212,0,.2); color: var(--orange); }
.ind-badge-emirate { background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--muted2); }
.ind-badge-avail   { background: rgba(0,230,118,.1); border: 1px solid rgba(0,230,118,.2); color: var(--green); }
.ind-badge-leased  { background: rgba(255,71,87,.1); border: 1px solid rgba(255,71,87,.2); color: var(--red); }

.ind-prop-title {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.2;
    margin-bottom: 18px;
}
@media(max-width:768px) { .ind-prop-title { font-size: 1.5rem; } }

/* Price row */
.ind-prop-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.ind-prop-price {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    text-shadow: 0 0 24px var(--orange-glow);
    line-height: 1;
}
.ind-prop-price em { font-style: normal; font-size: .85rem; color: var(--muted); font-weight: 500; }
.ind-prop-ppsf {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 900;
    color: var(--orange);
    background: rgba(255,212,0,.1);
    border: 1px solid rgba(255,212,0,.25);
    padding: 5px 14px;
    border-radius: 30px;
}
.ind-prop-ref { font-size: .75rem; color: var(--muted); margin-top: 6px; }

/* ── Specs grid ── */
.ind-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0;
}
@media(max-width:600px) { .ind-specs-grid { grid-template-columns: repeat(2, 1fr); } }

.ind-spec-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ind-spec-card.featured {
    border-color: rgba(255,212,0,.25);
    background: rgba(255,212,0,.04);
}
.ind-spec-card svg { color: var(--orange); width: 16px; height: 16px; margin-bottom: 4px; }
.ind-spec-label { font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.ind-spec-value { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: #fff; }
.ind-spec-card.full { grid-column: span 2; }

/* ── Description ── */
.ind-prop-description {
    font-size: .92rem;
    color: var(--muted2);
    line-height: 1.75;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 20px;
    margin-bottom: 24px;
}
.ind-prop-description p { margin-bottom: 12px; }
.ind-prop-description p:last-child { margin-bottom: 0; }

/* ── Section heading ── */
.ind-detail-section-title {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

/* ── Amenities ── */
.ind-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.ind-amenity {
    background: rgba(0,222,255,.05);
    border: 1px solid rgba(0,222,255,.15);
    color: var(--cyan);
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ind-amenity::before { content: '✓'; color: var(--cyan); font-weight: 900; }

/* ── Map embed ── */
.ind-map-wrap {
    margin-bottom: 32px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 320px;
    background: var(--surface2);
}
.ind-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════════════════════
   AGENT / CONTACT SIDEBAR CARD
══════════════════════════════════════════════════════════════ */
.ind-agent-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.ind-agent-card-header {
    padding: 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}
.ind-agent-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.ind-agent-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.ind-agent-logo-initials {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), #FFE45C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ind-agent-info h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 2px; }
.ind-agent-info p  { font-size: .75rem; color: var(--muted); margin: 0; }
.ind-agent-rera    { font-size: .68rem; color: var(--muted); margin-top: 3px; }

.ind-agent-card-body { padding: 18px 22px; }
.ind-agent-card-body .ind-contact-note {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.55;
    padding: 10px 14px;
    background: var(--surface2);
    border-radius: var(--r-xs);
    border-left: 3px solid var(--orange);
}

/* Contact buttons */
.ind-contact-btns { display: flex; flex-direction: column; gap: 10px; }

.ind-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 14px;
    background: #25d366;
    color: #fff;
    font-size: .92rem;
    font-weight: 900;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
    border: none;
    cursor: pointer;
}
.ind-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.45); color: #fff; }

.ind-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px;
    border-radius: 14px;
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--muted2);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
}
.ind-cta-call:hover { border-color: var(--orange); color: var(--orange); }

.ind-cta-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    border-radius: 14px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}
.ind-cta-email:hover { border-color: rgba(0,222,255,.3); color: var(--cyan); }

.ind-cta-disabled { opacity: .3; pointer-events: none; }

/* Market indicator on sidebar */
.ind-market-pill {
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: var(--r-xs);
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ind-market-good { background: rgba(0,222,255,.06); border: 1px solid rgba(0,222,255,.15); color: var(--cyan); }
.ind-market-avg  { background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--muted2); }
.ind-market-high { background: rgba(255,212,0,.06); border: 1px solid rgba(255,212,0,.15); color: var(--orange); }

/* ══════════════════════════════════════════════════════════════
   RELATED LISTINGS
══════════════════════════════════════════════════════════════ */
.ind-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.ind-related-title { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; margin-bottom: 20px; }

.ind-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.ind-related-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.ind-related-card:hover { transform: translateY(-6px); border-color: rgba(255,212,0,.3); box-shadow: 0 20px 50px rgba(255,212,0,.07); }
.ind-related-card img { width: 100%; height: 160px; object-fit: cover; }
.ind-related-card-body { padding: 16px; flex: 1; }
.ind-related-card-type { font-size: .65rem; font-weight: 900; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; letter-spacing: .4px; }
.ind-related-card-title { font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ind-related-card-price { font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: var(--orange); }
.ind-related-card-ppsf { font-size: .72rem; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════
   SUPPLIER SINGLE PAGE
══════════════════════════════════════════════════════════════ */
.ind-supplier-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.ind-supplier-logo {
    width: 100px;
    height: 100px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.ind-supplier-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.ind-supplier-logo-initials { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--cyan); }
.ind-supplier-meta h1 { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: #fff; letter-spacing: -.5px; margin-bottom: 8px; }
.ind-supplier-tagline { font-size: 1rem; color: var(--muted2); margin-bottom: 12px; }
.ind-supplier-cats { display: flex; gap: 7px; flex-wrap: wrap; }
.ind-supplier-cat { background: rgba(0,222,255,.06); border: 1px solid rgba(0,222,255,.15); color: var(--cyan); font-size: .68rem; font-weight: 700; padding: 4px 11px; border-radius: 20px; }

.ind-supplier-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.ind-supplier-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 16px;
}
.ind-supplier-stat-label { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 4px; }
.ind-supplier-stat-val { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: #fff; }

.ind-supplier-contact-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media(max-width:768px) {
    .ind-detail-sidebar { position: static; }
    .ind-specs-grid { grid-template-columns: 1fr 1fr; }
    .ind-agent-card-header { padding: 16px; }
    .ind-agent-card-body { padding: 14px 16px; }
    .ind-related-grid { grid-template-columns: 1fr; }
    .ind-supplier-header { flex-direction: column; gap: 16px; }
}


/* ── Property Finder style gallery + lightbox ── */
.ind-pf-gallery{display:grid;grid-template-columns:minmax(0,2fr) minmax(260px,1fr);gap:10px;margin-bottom:32px;border-radius:var(--r);overflow:hidden;background:var(--surface)}
.ind-pf-gallery button{border:0;padding:0;background:transparent;cursor:pointer;position:relative;overflow:hidden;display:block;text-align:inherit}
.ind-pf-gallery img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .32s ease;}
/* Hide broken-image alt/text fallback so imported code/breadcrumb text never appears over the gallery. */
.ind-pf-gallery,
.ind-pf-main,
.ind-pf-tile,
.ind-mobile-stack-photo{font-size:0;color:transparent;}
.ind-pf-gallery img,
.ind-mobile-stack-photo img{font-size:0!important;color:transparent!important;text-indent:-9999px;background:#05070a;}
.ind-img-failed{display:none!important;}
.ind-gallery-placeholder{position:absolute;inset:0;display:grid;place-items:center;background:linear-gradient(135deg,#05070a,#101722);color:rgba(255,255,255,.42);font-size:.82rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.ind-pf-gallery img:not(.ind-img-failed)+.ind-gallery-placeholder,
.ind-mobile-stack-photo img:not(.ind-img-failed)+.ind-gallery-placeholder{display:none;}
.ind-pf-gallery button:hover img{transform:scale(1.035)}
.ind-pf-main{height:470px}.ind-pf-side{display:grid;grid-template-rows:1fr 1fr;gap:10px}.ind-pf-tile{height:230px}.ind-pf-more{position:absolute;inset:auto 14px 14px auto;background:rgba(7,8,11,.84);border:1px solid rgba(255,255,255,.16);border-radius:999px;color:#fff;font-weight:900;font-size:.8rem;padding:9px 14px;backdrop-filter:blur(8px)}
.ind-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:99999;display:none;align-items:center;justify-content:center;padding:30px}.ind-lightbox.open{display:flex}.ind-lightbox img{max-width:min(1180px,92vw);max-height:86vh;object-fit:contain;border-radius:14px;box-shadow:0 30px 90px rgba(0,0,0,.6)}.ind-lightbox-close{position:fixed;top:22px;right:26px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff;border-radius:999px;width:44px;height:44px;font-size:30px;line-height:1;cursor:pointer}.ind-lightbox-nav{position:fixed;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff;border-radius:999px;width:52px;height:52px;font-size:42px;line-height:1;cursor:pointer}.ind-lightbox-nav.prev{left:24px}.ind-lightbox-nav.next{right:24px}.ind-lightbox-count{position:fixed;bottom:22px;left:50%;transform:translateX(-50%);background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff;border-radius:999px;padding:8px 14px;font-weight:900}
@media(max-width:760px){.ind-pf-gallery{grid-template-columns:1fr}.ind-pf-main{height:300px}.ind-pf-side{grid-template-columns:1fr 1fr;grid-template-rows:auto}.ind-pf-tile{height:150px}.ind-lightbox-nav{width:44px;height:44px;font-size:34px}.ind-lightbox-nav.prev{left:10px}.ind-lightbox-nav.next{right:10px}}


/* ── Mobile single-image gallery carousel for single property pages ── */
.ind-mobile-gallery-count,
.ind-mobile-gallery-hint,
.ind-mobile-gallery-dots,
.ind-mobile-gallery-controls{display:none}
#ind-mobile-gallery-img.is-changing{opacity:.35;transform:scale(1.015)}
#ind-mobile-gallery-img{transition:opacity .18s ease, transform .22s ease}
@media(max-width:760px){
  .ind-pf-gallery{display:block;border-radius:18px;margin-bottom:22px;background:var(--surface);position:relative}
  .ind-pf-main{height:320px;width:100%;border-radius:18px;overflow:hidden;touch-action:pan-y;position:relative}
  .ind-pf-side{display:none!important}
  .ind-pf-gallery button:hover img{transform:none}
  .ind-mobile-gallery-count{display:block;position:absolute;right:12px;top:12px;z-index:4;background:rgba(7,8,11,.72);border:1px solid rgba(255,255,255,.16);color:#fff;border-radius:999px;padding:6px 10px;font-weight:900;font-size:.78rem;backdrop-filter:blur(8px)}
  .ind-mobile-gallery-hint{display:block;position:absolute;left:12px;top:12px;z-index:4;background:rgba(7,8,11,.54);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.86);border-radius:999px;padding:6px 10px;font-weight:800;font-size:.72rem;backdrop-filter:blur(8px)}
  .ind-mobile-gallery-dots{display:flex;position:absolute;left:50%;bottom:13px;transform:translateX(-50%);z-index:4;gap:5px;align-items:center;justify-content:center}
  .ind-mobile-gallery-dots i{width:6px;height:6px;border-radius:999px;background:rgba(255,255,255,.42);box-shadow:0 0 0 1px rgba(0,0,0,.2)}
  .ind-mobile-gallery-dots i.active{width:18px;background:var(--orange)}
  .ind-mobile-gallery-controls{display:flex;position:absolute;inset:0;z-index:3;pointer-events:none;align-items:center;justify-content:space-between;padding:0 10px}
  .ind-mobile-gallery-arrow{pointer-events:auto;width:36px;height:36px;border-radius:999px;display:grid;place-items:center;background:rgba(7,8,11,.58);border:1px solid rgba(255,255,255,.16);color:#fff;font-size:28px;font-weight:600;line-height:1;backdrop-filter:blur(8px)}
}
@media(max-width:430px){.ind-pf-main{height:285px}}

/* ══════════════════════════════════════════════════════════════
   v1.2.9 — Mobile single property refinement
   - Hide main header + breadcrumbs on mobile single listings
   - Make gallery the first full-width element
   - Remove mobile overlay arrows
   - Move regulatory information styling to bottom
══════════════════════════════════════════════════════════════ */
.ind-regulatory-bottom-box{
  background:rgba(255,255,255,.035);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  margin:28px 0 0;
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:start;
}
.ind-lightbox-img,
#ind-lightbox-img{
  transition:opacity .18s ease, transform .22s ease;
}
#ind-lightbox-img.is-changing{
  opacity:.35;
  transform:translateX(10px) scale(.985);
}
@media(max-width:760px){
  body.single-ind_property .ind-header{
    display:none!important;
  }
  body.single-ind_property .ind-main{
    padding-top:0!important;
  }
  body.single-ind_property .ind-container{
    max-width:none!important;
    width:100%!important;
    padding-left:0!important;
    padding-right:0!important;
    padding-top:0!important;
  }
  body.single-ind_property .ind-breadcrumb{
    display:flex!important;
    padding:4px 0 2px!important;
  }
  body.single-ind_property .ind-breadcrumb > a,
  body.single-ind_property .ind-breadcrumb > span:not(.ind-bc-right),
  body.single-ind_property .ind-breadcrumb > svg{
    display:none!important;
  }
  body.single-ind_property .ind-bc-right{ margin-left:auto; }
  body.single-ind_property .ind-pf-gallery{
    margin:0 0 18px!important;
    border-radius:0!important;
    width:100%!important;
    background:#05070a;
  }
  body.single-ind_property .ind-pf-main{
    width:100%!important;
    height:min(72vw,380px)!important;
    min-height:255px!important;
    border-radius:0!important;
  }
  body.single-ind_property .ind-pf-main img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
  }
  body.single-ind_property .ind-mobile-gallery-controls,
  body.single-ind_property .ind-mobile-gallery-arrow{
    display:none!important;
  }
  body.single-ind_property .ind-mobile-gallery-count{
    right:12px!important;
    top:12px!important;
  }
  body.single-ind_property .ind-mobile-gallery-hint{
    left:12px!important;
    top:12px!important;
  }
  body.single-ind_property .ind-detail-layout{
    padding-left:16px!important;
    padding-right:16px!important;
    margin-top:0!important;
  }
  body.single-ind_property .ind-regulatory-bottom-box{
    display:block;
    padding:14px;
    margin-top:24px;
  }
  body.single-ind_property .ind-regulatory-bottom-box > div:first-child{
    grid-template-columns:1fr!important;
  }
  body.single-ind_property .ind-regulatory-bottom-box img{
    margin:14px auto 0;
  }
  body.single-ind_property .ind-lightbox{
    padding:0!important;
  }
  body.single-ind_property .ind-lightbox img{
    width:100vw!important;
    max-width:100vw!important;
    max-height:82vh!important;
    border-radius:0!important;
  }
}


/* ══════════════════════════════════════════════════════════════
   v1.3.0 — Mobile stacked photo browser
   Tap main image -> stacked vertical photos; tap a photo -> individual viewer
══════════════════════════════════════════════════════════════ */
.ind-mobile-photo-stack{display:none;}
@media(max-width:760px){
  .ind-mobile-photo-stack{
    position:fixed;
    inset:0;
    z-index:99998;
    display:none;
    overflow-y:auto;
    overscroll-behavior:contain;
    background:#101619;
    color:#fff;
    -webkit-overflow-scrolling:touch;
  }
  .ind-mobile-photo-stack.open{display:block;}
  body.ind-photo-stack-open{overflow:hidden!important;}
  .ind-mobile-stack-top{
    position:sticky;
    top:0;
    z-index:3;
    height:66px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 18px;
    background:rgba(16,22,25,.96);
    border-bottom:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
  }
  .ind-mobile-stack-spacer{flex:1;}
  .ind-mobile-stack-icon{
    width:44px;
    height:44px;
    border:0;
    border-radius:999px;
    background:transparent;
    color:#fff;
    display:grid;
    place-items:center;
    padding:0;
  }
  .ind-mobile-stack-icon:active{background:rgba(255,255,255,.08);}
  .ind-mobile-stack-list{
    padding:0 0 118px;
    display:flex;
    flex-direction:column;
    gap:4px;
  }
  .ind-mobile-stack-photo{
    width:100%;
    padding:0;
    margin:0;
    border:0;
    background:#05070a;
    display:block;
    cursor:pointer;
    text-align:inherit;
  }
  .ind-mobile-stack-photo img{
    width:100%;
    height:auto;
    min-height:180px;
    max-height:none;
    object-fit:cover;
    display:block;
    background:#05070a;
  }
  .ind-mobile-stack-contact{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:4;
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 16px calc(14px + env(safe-area-inset-bottom));
    background:rgba(16,22,25,.98);
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 -18px 45px rgba(0,0,0,.45);
  }
  .ind-mobile-stack-agent{
    min-width:0;
    display:flex;
    align-items:center;
    gap:11px;
  }
  .ind-mobile-stack-agent img,
  .ind-mobile-stack-agent > span{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:999px;
    border:2px solid rgba(255,255,255,.18);
    object-fit:cover;
    display:grid;
    place-items:center;
    background:var(--orange);
    color:#111;
    font-weight:900;
  }
  .ind-mobile-stack-agent strong,
  .ind-mobile-stack-agent small{
    display:block;
    max-width:180px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
  }
  .ind-mobile-stack-agent strong{font-size:1rem;line-height:1.2;color:#fff;}
  .ind-mobile-stack-agent small{font-size:.78rem;color:rgba(255,255,255,.68);margin-top:2px;}
  .ind-mobile-stack-actions{display:flex;align-items:center;gap:10px;}
  .ind-mobile-stack-action{
    width:56px;
    height:56px;
    display:grid;
    place-items:center;
    border-radius:14px;
    border:1px solid rgba(255,212,0,.55);
    color:#FFD400;
    background:rgba(255,255,255,.035);
    text-decoration:none;
  }
  .ind-mobile-stack-action:active{transform:scale(.97);}
}


/* ══════════════════════════════════════════════════════════════
   v1.3.5 — Mobile single listing hero actions + agent contact bar
══════════════════════════════════════════════════════════════ */
.ind-mobile-listing-topbar,
.ind-single-mobile-agentbar{display:none;}
@media(max-width:760px){
  body.single-ind_property{
    padding-bottom:calc(124px + env(safe-area-inset-bottom))!important;
  }
  body.single-ind_property .ind-pf-gallery{
    position:relative!important;
    overflow:hidden!important;
  }
  body.single-ind_property .ind-mobile-listing-topbar{
    position:absolute;
    left:0;
    right:0;
    top:0;
    z-index:20;
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 14px 0;
    pointer-events:none;
  }
  body.single-ind_property .ind-mobile-topspacer{flex:1;}
  body.single-ind_property .ind-mobile-topbtn{
    pointer-events:auto;
    width:56px;
    height:56px;
    min-width:56px;
    border:0;
    border-radius:999px;
    display:grid;
    place-items:center;
    color:#fff;
    background:rgba(10,14,17,.86);
    text-decoration:none;
    box-shadow:0 12px 30px rgba(0,0,0,.30);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    -webkit-tap-highlight-color:transparent;
  }
  body.single-ind_property .ind-mobile-topbtn:active{transform:scale(.96);}
  body.single-ind_property .ind-mobile-topbtn.saved{color:#FFD400;}
  body.single-ind_property .ind-mobile-gallery-count,
  body.single-ind_property .ind-mobile-gallery-hint{
    display:none!important;
  }
  body.single-ind_property .ind-mobile-gallery-dots{
    bottom:12px!important;
    z-index:21!important;
  }
  body.single-ind_property .ind-single-mobile-agentbar{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:99998;
    min-height:calc(104px + env(safe-area-inset-bottom));
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 16px calc(14px + env(safe-area-inset-bottom));
    background:rgba(18,23,24,.985);
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 -18px 45px rgba(0,0,0,.45);
    backdrop-filter:blur(16px) saturate(140%);
    -webkit-backdrop-filter:blur(16px) saturate(140%);
  }
  body.single-ind_property .ind-single-mobile-agent-main{
    min-width:0;
    display:flex;
    align-items:center;
    gap:12px;
    flex:1;
  }
  body.single-ind_property .ind-single-mobile-agent-avatar{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:999px;
    padding:3px;
    background:linear-gradient(135deg,rgba(255,212,0,.55),rgba(255,255,255,.08));
    position:relative;
  }
  body.single-ind_property .ind-single-mobile-agent-avatar img,
  body.single-ind_property .ind-single-mobile-agent-avatar span{
    width:100%;
    height:100%;
    border-radius:999px;
    object-fit:cover;
    display:grid;
    place-items:center;
    background:#FFD400;
    color:#07080b;
    font-weight:950;
    font-size:1.2rem;
  }
  body.single-ind_property .ind-single-mobile-agent-text{min-width:0;}
  body.single-ind_property .ind-single-mobile-agent-text strong{
    display:block;
    max-width:42vw;
    color:#fff;
    font-family:'Outfit',sans-serif;
    font-size:1rem;
    font-weight:900;
    line-height:1.15;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
  }
  body.single-ind_property .ind-single-mobile-agent-meta{
    display:flex;
    align-items:center;
    gap:7px;
    margin-top:6px;
    color:rgba(255,255,255,.88);
    font-size:.82rem;
    font-weight:900;
    line-height:1;
  }
  body.single-ind_property .ind-single-mobile-star{color:#FFD400;font-size:1rem;line-height:1;}
  body.single-ind_property .ind-single-mobile-agent-text small{
    display:block;
    max-width:45vw;
    margin-top:6px;
    color:#cfc8ff;
    font-size:.78rem;
    font-weight:850;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
  }
  body.single-ind_property .ind-single-mobile-agent-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex:0 0 auto;
  }
  body.single-ind_property .ind-single-mobile-action{
    width:58px;
    height:58px;
    min-width:58px;
    display:grid;
    place-items:center;
    border-radius:16px;
    border:1px solid rgba(255,212,0,.6);
    color:#FFD400;
    background:rgba(255,255,255,.035);
    text-decoration:none;
    -webkit-tap-highlight-color:transparent;
  }
  body.single-ind_property .ind-single-mobile-action:active{transform:scale(.96);}
  body.ind-photo-stack-open .ind-single-mobile-agentbar{
    display:none!important;
  }
}
@media(max-width:390px){
  body.single-ind_property .ind-mobile-listing-topbar{gap:9px;padding-left:10px;padding-right:10px;}
  body.single-ind_property .ind-mobile-topbtn{width:50px;height:50px;min-width:50px;}
  body.single-ind_property .ind-single-mobile-agentbar{padding-left:12px;padding-right:12px;gap:10px;}
  body.single-ind_property .ind-single-mobile-agent-avatar{width:54px;height:54px;min-width:54px;}
  body.single-ind_property .ind-single-mobile-agent-text strong{font-size:.92rem;max-width:39vw;}
  body.single-ind_property .ind-single-mobile-agent-meta{font-size:.76rem;}
  body.single-ind_property .ind-single-mobile-agent-text small{font-size:.72rem;max-width:42vw;}
  body.single-ind_property .ind-single-mobile-action{width:52px;height:52px;min-width:52px;border-radius:14px;}
}


/* ══════════════════════════════════════════════════════════════
   v1.3.6 — Smaller floating top buttons on mobile single listing
══════════════════════════════════════════════════════════════ */
@media(max-width:760px){
  body.single-ind_property .ind-mobile-listing-topbar{
    gap:8px!important;
    padding:10px 10px 0!important;
  }
  body.single-ind_property .ind-mobile-topbtn{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    border-radius:999px!important;
    box-shadow:0 8px 18px rgba(0,0,0,.26)!important;
    background:rgba(10,14,17,.78)!important;
  }
  body.single-ind_property .ind-mobile-topbtn svg{
    width:20px!important;
    height:20px!important;
  }
}
@media(max-width:390px){
  body.single-ind_property .ind-mobile-listing-topbar{
    gap:7px!important;
    padding:9px 9px 0!important;
  }
  body.single-ind_property .ind-mobile-topbtn{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
  }
  body.single-ind_property .ind-mobile-topbtn svg{
    width:18px!important;
    height:18px!important;
  }
}

/* ══════════════════════════════════════════════════════════════
   v1.3.7 — Industrialist-native mobile single listing agent bar
   The reference image is treated as layout inspiration only.
══════════════════════════════════════════════════════════════ */
@media(max-width:760px){
  body.single-ind_property{
    padding-bottom:calc(108px + env(safe-area-inset-bottom))!important;
  }

  body.single-ind_property .ind-single-mobile-agentbar{
    left:10px!important;
    right:10px!important;
    bottom:10px!important;
    width:auto!important;
    max-width:560px!important;
    margin:0 auto!important;
    min-height:0!important;
    align-items:center!important;
    gap:10px!important;
    padding:10px 11px calc(10px + env(safe-area-inset-bottom))!important;
    border-radius:22px!important;
    background:
      linear-gradient(135deg, rgba(255,212,0,.12), rgba(0,222,255,.035) 48%, rgba(12,15,20,.96)),
      rgba(12,15,20,.96)!important;
    border:1px solid rgba(255,255,255,.10)!important;
    box-shadow:0 -10px 34px rgba(0,0,0,.46), 0 0 0 1px rgba(255,212,0,.10) inset!important;
    backdrop-filter:blur(18px) saturate(135%)!important;
    -webkit-backdrop-filter:blur(18px) saturate(135%)!important;
  }

  body.single-ind_property .ind-single-mobile-agentbar::before{
    content:'';
    position:absolute;
    left:18px;
    right:18px;
    top:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, transparent, var(--orange), rgba(0,222,255,.5), transparent);
    opacity:.8;
    pointer-events:none;
  }

  body.single-ind_property .ind-single-mobile-agent-main{
    gap:10px!important;
    min-width:0!important;
    flex:1 1 auto!important;
  }

  body.single-ind_property .ind-single-mobile-agent-avatar{
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    border-radius:16px!important;
    padding:2px!important;
    background:linear-gradient(135deg, var(--orange), rgba(255,255,255,.14))!important;
    box-shadow:0 8px 20px rgba(0,0,0,.30)!important;
  }

  body.single-ind_property .ind-single-mobile-agent-avatar img,
  body.single-ind_property .ind-single-mobile-agent-avatar span{
    border-radius:14px!important;
    background:#0f1217!important;
    color:var(--orange)!important;
    font-size:1rem!important;
  }

  body.single-ind_property .ind-single-mobile-agent-text strong{
    max-width:42vw!important;
    font-family:var(--font-head)!important;
    font-size:.95rem!important;
    letter-spacing:-.01em!important;
    color:var(--text)!important;
  }

  body.single-ind_property .ind-single-mobile-agent-meta{
    gap:6px!important;
    margin-top:4px!important;
    color:var(--muted2)!important;
    font-size:.73rem!important;
    font-weight:850!important;
    text-transform:uppercase!important;
    letter-spacing:.04em!important;
  }

  body.single-ind_property .ind-single-mobile-star{
    width:7px!important;
    height:7px!important;
    border-radius:999px!important;
    background:var(--green)!important;
    box-shadow:0 0 12px rgba(0,230,118,.45)!important;
    color:transparent!important;
    overflow:hidden!important;
    display:inline-block!important;
  }

  body.single-ind_property .ind-single-mobile-agent-text small{
    max-width:42vw!important;
    margin-top:4px!important;
    color:rgba(143,163,184,.82)!important;
    font-size:.72rem!important;
    font-weight:750!important;
  }

  body.single-ind_property .ind-single-mobile-agent-actions{
    gap:8px!important;
    flex:0 0 auto!important;
  }

  body.single-ind_property .ind-single-mobile-action{
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    border-radius:15px!important;
    border:1px solid rgba(255,255,255,.10)!important;
    background:rgba(255,255,255,.045)!important;
    color:var(--text)!important;
    box-shadow:0 8px 20px rgba(0,0,0,.25)!important;
  }

  body.single-ind_property .ind-single-mobile-action:first-child{
    background:linear-gradient(135deg, var(--orange), #FFE45C)!important;
    border-color:rgba(255,212,0,.75)!important;
    color:#090b0f!important;
  }

  body.single-ind_property .ind-single-mobile-action:last-child:not(:first-child){
    border-color:rgba(0,230,118,.32)!important;
    color:var(--green)!important;
  }

  body.single-ind_property .ind-single-mobile-action svg{
    width:21px!important;
    height:21px!important;
  }
}

@media(max-width:390px){
  body.single-ind_property{
    padding-bottom:calc(102px + env(safe-area-inset-bottom))!important;
  }
  body.single-ind_property .ind-single-mobile-agentbar{
    left:8px!important;
    right:8px!important;
    bottom:8px!important;
    border-radius:20px!important;
    gap:8px!important;
    padding:9px 9px calc(9px + env(safe-area-inset-bottom))!important;
  }
  body.single-ind_property .ind-single-mobile-agent-avatar{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    border-radius:14px!important;
  }
  body.single-ind_property .ind-single-mobile-agent-avatar img,
  body.single-ind_property .ind-single-mobile-agent-avatar span{
    border-radius:12px!important;
  }
  body.single-ind_property .ind-single-mobile-agent-text strong{
    font-size:.88rem!important;
    max-width:38vw!important;
  }
  body.single-ind_property .ind-single-mobile-agent-meta{
    font-size:.68rem!important;
  }
  body.single-ind_property .ind-single-mobile-agent-text small{
    display:none!important;
  }
  body.single-ind_property .ind-single-mobile-action{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    border-radius:13px!important;
  }
  body.single-ind_property .ind-single-mobile-action svg{
    width:19px!important;
    height:19px!important;
  }
}


/* ══════════════════════════════════════════════════════════════
   v1.4.0 — Match first-layer and second-layer mobile agent bars
   Keeps the photo-stack contact bar branded the same as the main
   single-listing mobile agent bar.
══════════════════════════════════════════════════════════════ */
@media(max-width:760px){
  body.single-ind_property .ind-mobile-stack-list{
    padding-bottom:calc(108px + env(safe-area-inset-bottom))!important;
  }

  body.single-ind_property .ind-mobile-stack-contact{
    left:10px!important;
    right:10px!important;
    bottom:10px!important;
    width:auto!important;
    max-width:560px!important;
    margin:0 auto!important;
    min-height:0!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:10px!important;
    padding:10px 11px calc(10px + env(safe-area-inset-bottom))!important;
    border-radius:22px!important;
    background:
      linear-gradient(135deg, rgba(255,212,0,.12), rgba(0,222,255,.035) 48%, rgba(12,15,20,.96)),
      rgba(12,15,20,.96)!important;
    border:1px solid rgba(255,255,255,.10)!important;
    border-top:1px solid rgba(255,255,255,.10)!important;
    box-shadow:0 -10px 34px rgba(0,0,0,.46), 0 0 0 1px rgba(255,212,0,.10) inset!important;
    backdrop-filter:blur(18px) saturate(135%)!important;
    -webkit-backdrop-filter:blur(18px) saturate(135%)!important;
    z-index:30!important;
  }

  body.single-ind_property .ind-mobile-stack-contact::before{
    content:'';
    position:absolute;
    left:18px;
    right:18px;
    top:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, transparent, var(--orange), rgba(0,222,255,.5), transparent);
    opacity:.8;
    pointer-events:none;
  }

  body.single-ind_property .ind-mobile-stack-agent{
    gap:10px!important;
    min-width:0!important;
    flex:1 1 auto!important;
  }

  body.single-ind_property .ind-mobile-stack-agent img,
  body.single-ind_property .ind-mobile-stack-agent > span{
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    flex:0 0 46px!important;
    border-radius:16px!important;
    border:2px solid rgba(255,212,0,.58)!important;
    padding:2px!important;
    background:#0f1217!important;
    color:var(--orange)!important;
    box-shadow:0 8px 20px rgba(0,0,0,.30)!important;
    font-size:1rem!important;
    font-weight:950!important;
    object-fit:cover!important;
  }

  body.single-ind_property .ind-mobile-stack-agent strong{
    max-width:42vw!important;
    font-family:var(--font-head)!important;
    font-size:.95rem!important;
    font-weight:900!important;
    letter-spacing:-.01em!important;
    line-height:1.15!important;
    color:var(--text)!important;
  }

  body.single-ind_property .ind-mobile-stack-agent small{
    max-width:42vw!important;
    margin-top:4px!important;
    color:rgba(143,163,184,.82)!important;
    font-size:.72rem!important;
    font-weight:750!important;
  }

  body.single-ind_property .ind-mobile-stack-actions{
    gap:8px!important;
    flex:0 0 auto!important;
  }

  body.single-ind_property .ind-mobile-stack-action{
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    border-radius:15px!important;
    border:1px solid rgba(255,255,255,.10)!important;
    background:rgba(255,255,255,.045)!important;
    color:var(--text)!important;
    box-shadow:0 8px 20px rgba(0,0,0,.25)!important;
  }

  body.single-ind_property .ind-mobile-stack-action:first-child{
    background:linear-gradient(135deg, var(--orange), #FFE45C)!important;
    border-color:rgba(255,212,0,.75)!important;
    color:#090b0f!important;
  }

  body.single-ind_property .ind-mobile-stack-action:last-child:not(:first-child){
    border-color:rgba(0,230,118,.32)!important;
    color:var(--green)!important;
  }

  body.single-ind_property .ind-mobile-stack-action svg{
    width:21px!important;
    height:21px!important;
  }
}

@media(max-width:390px){
  body.single-ind_property .ind-mobile-stack-list{
    padding-bottom:calc(102px + env(safe-area-inset-bottom))!important;
  }

  body.single-ind_property .ind-mobile-stack-contact{
    left:8px!important;
    right:8px!important;
    bottom:8px!important;
    border-radius:20px!important;
    gap:8px!important;
    padding:9px 9px calc(9px + env(safe-area-inset-bottom))!important;
  }

  body.single-ind_property .ind-mobile-stack-agent img,
  body.single-ind_property .ind-mobile-stack-agent > span{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    flex:0 0 42px!important;
    border-radius:14px!important;
  }

  body.single-ind_property .ind-mobile-stack-agent strong{
    font-size:.88rem!important;
    max-width:38vw!important;
  }

  body.single-ind_property .ind-mobile-stack-agent small{
    max-width:38vw!important;
    font-size:.72rem!important;
  }

  body.single-ind_property .ind-mobile-stack-action{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    border-radius:13px!important;
  }

  body.single-ind_property .ind-mobile-stack-action svg{
    width:19px!important;
    height:19px!important;
  }
}

/* ══════════════════════════════════════════════════════════════
   v1.4.3 — Agent bar truth + width safety
   Removes fake verification labels and keeps first/second layer bars aligned.
══════════════════════════════════════════════════════════════ */
@media(max-width:760px){
  html,
  body.single-ind_property{
    overflow-x:hidden!important;
    max-width:100%!important;
  }

  body.single-ind_property .ind-single-mobile-agentbar,
  body.single-ind_property .ind-mobile-stack-contact{
    box-sizing:border-box!important;
    left:50%!important;
    right:auto!important;
    width:calc(100vw - 20px)!important;
    max-width:560px!important;
    min-width:0!important;
    margin:0!important;
    transform:translateX(-50%)!important;
    overflow:hidden!important;
  }

  body.single-ind_property .ind-single-mobile-agentbar *,
  body.single-ind_property .ind-mobile-stack-contact *{
    box-sizing:border-box!important;
    min-width:0;
  }

  body.single-ind_property .ind-single-mobile-agent-main,
  body.single-ind_property .ind-mobile-stack-agent{
    flex:1 1 auto!important;
    min-width:0!important;
    overflow:hidden!important;
  }

  body.single-ind_property .ind-single-mobile-agent-actions,
  body.single-ind_property .ind-mobile-stack-actions{
    flex:0 0 auto!important;
    max-width:108px!important;
  }

  body.single-ind_property .ind-single-mobile-agent-text,
  body.single-ind_property .ind-mobile-stack-agent-text,
  body.single-ind_property .ind-mobile-stack-agent > div{
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:100%!important;
    overflow:hidden!important;
  }

  body.single-ind_property .ind-single-mobile-agent-text strong,
  body.single-ind_property .ind-single-mobile-agent-text small,
  body.single-ind_property .ind-single-mobile-agent-meta,
  body.single-ind_property .ind-mobile-stack-agent strong,
  body.single-ind_property .ind-mobile-stack-agent small,
  body.single-ind_property .ind-mobile-stack-agent-meta{
    max-width:100%!important;
  }

  body.single-ind_property .ind-mobile-stack-agent-meta{
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    margin-top:4px!important;
    color:rgba(255,255,255,.84)!important;
    font-size:.76rem!important;
    font-weight:850!important;
    line-height:1!important;
    overflow:hidden!important;
    white-space:nowrap!important;
    text-overflow:ellipsis!important;
  }

  body.single-ind_property .ind-mobile-stack-agent-meta span{
    overflow:hidden!important;
    white-space:nowrap!important;
    text-overflow:ellipsis!important;
  }
}

@media(max-width:390px){
  body.single-ind_property .ind-single-mobile-agentbar,
  body.single-ind_property .ind-mobile-stack-contact{
    width:calc(100vw - 16px)!important;
  }

  body.single-ind_property .ind-single-mobile-agent-actions,
  body.single-ind_property .ind-mobile-stack-actions{
    gap:7px!important;
    max-width:91px!important;
  }
}

/* v1.4.4 — prevent temporary source/alt/code text in property image area */
body.single-ind_property .ind-pf-gallery{isolation:isolate;}
body.single-ind_property .ind-pf-main,
body.single-ind_property .ind-pf-tile,
body.single-ind_property .ind-mobile-stack-photo{background:#05070a;position:relative;}
body.single-ind_property .ind-pf-main img,
body.single-ind_property .ind-pf-tile img,
body.single-ind_property .ind-mobile-stack-photo img{position:relative;z-index:1;}
body.single-ind_property .ind-gallery-placeholder{z-index:0;}

/* ══════════════════════════════════════════════════════════════
   v1.4.7 — Mobile listing summary polish
   Cleans the top information block below the gallery so title,
   price, price/sqft, badges and technical specs do not fight for
   space on small screens.
══════════════════════════════════════════════════════════════ */
@media(max-width:760px){
  body.single-ind_property .ind-detail-main{
    width:100%!important;
    min-width:0!important;
  }

  body.single-ind_property .ind-prop-header{
    position:relative!important;
    margin:0 0 18px!important;
    padding:16px 14px 15px!important;
    border-radius:22px!important;
    overflow:hidden!important;
    background:
      radial-gradient(circle at 0 0, rgba(255,212,0,.13), transparent 38%),
      linear-gradient(180deg, rgba(18,24,32,.92), rgba(8,11,15,.96))!important;
    border:1px solid rgba(255,255,255,.085)!important;
    box-shadow:0 16px 42px rgba(0,0,0,.24)!important;
  }

  body.single-ind_property .ind-prop-header::before{
    content:'';
    position:absolute;
    left:14px;
    right:14px;
    top:0;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, transparent, rgba(255,212,0,.9), rgba(0,222,255,.45), transparent);
    opacity:.78;
    pointer-events:none;
  }

  body.single-ind_property .ind-prop-badges{
    display:flex!important;
    flex-wrap:nowrap!important;
    gap:8px!important;
    margin:0 -14px 14px 0!important;
    padding:0 14px 2px 0!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    -webkit-overflow-scrolling:touch!important;
    scrollbar-width:none!important;
  }
  body.single-ind_property .ind-prop-badges::-webkit-scrollbar{display:none!important;}

  body.single-ind_property .ind-prop-badge{
    flex:0 0 auto!important;
    white-space:nowrap!important;
    max-width:78vw!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    border-radius:999px!important;
    padding:7px 11px!important;
    font-size:.61rem!important;
    line-height:1!important;
    letter-spacing:.085em!important;
  }

  body.single-ind_property .ind-prop-title{
    margin:0 0 13px!important;
    color:#fff!important;
    font-size:clamp(1.55rem, 7.4vw, 2.15rem)!important;
    line-height:1.04!important;
    letter-spacing:-.055em!important;
    word-break:normal!important;
    overflow-wrap:break-word!important;
  }

  body.single-ind_property .ind-prop-price-row{
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    gap:9px!important;
    margin:0!important;
  }

  body.single-ind_property .ind-prop-price{
    width:100%!important;
    max-width:100%!important;
    color:var(--orange)!important;
    font-size:clamp(2.05rem, 10.8vw, 2.85rem)!important;
    line-height:.94!important;
    letter-spacing:-.07em!important;
    text-shadow:0 8px 28px rgba(255,212,0,.20)!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    direction:ltr!important;
    unicode-bidi:isolate!important;
  }

  body.single-ind_property .ind-prop-price em{
    display:inline-block!important;
    margin-left:6px!important;
    color:var(--muted2)!important;
    font-size:.78rem!important;
    font-weight:800!important;
    letter-spacing:0!important;
    vertical-align:middle!important;
    white-space:nowrap!important;
  }

  body.single-ind_property .ind-prop-ppsf{
    display:inline-flex!important;
    align-items:center!important;
    min-height:34px!important;
    border-radius:999px!important;
    padding:8px 12px!important;
    font-size:.86rem!important;
    line-height:1!important;
    background:rgba(255,212,0,.09)!important;
    border:1px solid rgba(255,212,0,.22)!important;
    color:#FFD400!important;
    box-shadow:none!important;
  }

  body.single-ind_property .ind-prop-ref{
    display:inline-flex!important;
    align-items:center!important;
    margin-top:12px!important;
    padding:6px 10px!important;
    border-radius:999px!important;
    background:rgba(255,255,255,.045)!important;
    border:1px solid rgba(255,255,255,.075)!important;
    color:var(--muted2)!important;
    font-size:.68rem!important;
    font-weight:800!important;
  }

  body.single-ind_property .ind-detail-section-title{
    margin:20px 0 12px!important;
    padding-bottom:9px!important;
    color:var(--muted2)!important;
    font-size:.68rem!important;
    letter-spacing:.16em!important;
    border-bottom:1px solid rgba(255,255,255,.085)!important;
  }

  body.single-ind_property .ind-specs-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    margin:14px 0 24px!important;
  }

  body.single-ind_property .ind-spec-card{
    min-width:0!important;
    min-height:92px!important;
    justify-content:center!important;
    padding:13px 12px!important;
    border-radius:18px!important;
    background:linear-gradient(180deg, rgba(18,24,32,.92), rgba(12,15,20,.96))!important;
    border-color:rgba(255,255,255,.085)!important;
  }

  body.single-ind_property .ind-spec-card.featured{
    background:linear-gradient(180deg, rgba(255,212,0,.105), rgba(12,15,20,.96))!important;
    border-color:rgba(255,212,0,.25)!important;
  }

  body.single-ind_property .ind-spec-card svg{
    width:17px!important;
    height:17px!important;
    margin-bottom:6px!important;
  }

  body.single-ind_property .ind-spec-label{
    color:var(--muted)!important;
    font-size:.58rem!important;
    letter-spacing:.08em!important;
    line-height:1.25!important;
  }

  body.single-ind_property .ind-spec-value{
    max-width:100%!important;
    color:#fff!important;
    font-size:1.02rem!important;
    line-height:1.12!important;
    letter-spacing:-.02em!important;
    overflow-wrap:break-word!important;
  }

  body.single-ind_property .ind-spec-value small{
    white-space:nowrap!important;
  }

  body.single-ind_property .ind-spec-card.full{
    grid-column:1 / -1!important;
  }
}

@media(max-width:390px){
  body.single-ind_property .ind-detail-layout{
    padding-left:12px!important;
    padding-right:12px!important;
  }
  body.single-ind_property .ind-prop-header{
    padding:15px 12px 14px!important;
    border-radius:20px!important;
  }
  body.single-ind_property .ind-prop-title{
    font-size:clamp(1.45rem, 7vw, 1.9rem)!important;
  }
  body.single-ind_property .ind-prop-price{
    font-size:clamp(1.86rem, 10vw, 2.35rem)!important;
    letter-spacing:-.075em!important;
  }
  body.single-ind_property .ind-prop-price em{
    font-size:.68rem!important;
    margin-left:4px!important;
  }
  body.single-ind_property .ind-prop-ppsf{
    min-height:31px!important;
    padding:7px 10px!important;
    font-size:.78rem!important;
  }
  body.single-ind_property .ind-specs-grid{
    gap:8px!important;
  }
  body.single-ind_property .ind-spec-card{
    min-height:86px!important;
    padding:12px 10px!important;
    border-radius:16px!important;
  }
  body.single-ind_property .ind-spec-value{
    font-size:.94rem!important;
  }
}

/* ═══════════════════════════════════════════════════════════
   v1.4.9 — Single-listing location map (Leaflet)
═══════════════════════════════════════════════════════════ */
.ind-leaflet-map {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #0a0c11;
    margin-top: 4px;
    z-index: 0; /* keep Leaflet panes under sticky/overlay UI */
}
.ind-leaflet-map .leaflet-control-attribution {
    font-size: 9px;
    background: rgba(8,11,15,.7);
    color: rgba(255,255,255,.5);
}
.ind-leaflet-map .leaflet-control-attribution a { color: rgba(255,255,255,.7); }
.ind-leaflet-map .leaflet-bar a {
    background: #12131a;
    color: #eef0f4;
    border-bottom-color: rgba(255,255,255,.08);
}
.ind-leaflet-map .leaflet-bar a:hover { background: #1a1c24; }
.ind-leaflet-map .leaflet-popup-content-wrapper {
    background: #12131a;
    color: #eef0f4;
    border-radius: 12px;
    font-weight: 700;
}
.ind-leaflet-map .leaflet-popup-tip { background: #12131a; }
.ind-map-caption {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 600;
}
.ind-map-directions {
    display: inline-block;
    margin-top: 8px;
    color: var(--orange);
    font-size: .85rem;
    font-weight: 800;
    text-decoration: none;
}
.ind-map-directions:hover { text-decoration: underline; }
@media (max-width: 760px) {
    .ind-leaflet-map { height: 260px; border-radius: 14px; }
}


/* ── New UAE Dirham sign (inline SVG; U+20C3 until native font support) ── */
.ind-aed{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:.72em;
    height:.9em;
    vertical-align:-.07em;
    margin-right:.05em;
    line-height:0;
}
.ind-aed svg{ width:100%; height:100%; display:block; }

/* ════ Batch 4: single-listing title one-line + quieter badges ════ */
.ind-prop-title{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:1.7rem;}
.ind-prop-badge{font-size:.58rem!important;padding:3px 9px!important;letter-spacing:.3px!important;border-radius:6px!important;font-weight:800!important;}
@media(max-width:768px){
  body.single-ind_property .ind-prop-title{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;font-size:clamp(.95rem,4.4vw,1.25rem)!important;line-height:1.25!important;letter-spacing:-.02em!important;word-break:normal!important;overflow-wrap:normal!important;}
  /* Tone down the badge row: mute most to neutral, keep type as a subtle cyan accent */
  body.single-ind_property .ind-prop-badge{font-size:.56rem!important;padding:5px 9px!important;background:rgba(255,255,255,.05)!important;border-color:rgba(255,255,255,.1)!important;color:var(--muted2)!important;}
  body.single-ind_property .ind-prop-badge.ind-badge-type{color:var(--cyan)!important;background:rgba(0,222,255,.06)!important;border-color:rgba(0,222,255,.16)!important;}
  body.single-ind_property .ind-prop-price{font-size:1.5rem!important;}
}

/* ════ Single-listing prev/next cluster (filtered swipe nav) ════ */
.ind-lnav{display:inline-flex;align-items:center;gap:4px;}
.ind-lnav-arrow{display:inline-flex;align-items:center;justify-content:center;width:30px;height:30px;border-radius:999px;background:rgba(255,255,255,.06);color:#fff;border:1px solid rgba(255,255,255,.14);cursor:pointer;transition:background .18s,border-color .18s;}
.ind-lnav-arrow:hover:not(:disabled){background:var(--orange);color:#07080b;border-color:var(--orange);}
.ind-lnav-arrow:disabled{opacity:.32;cursor:default;}
.ind-lnav-arrow svg{width:16px;height:16px;}
.ind-lnav-pill{font-size:.72rem;font-weight:800;color:var(--muted2);min-width:46px;text-align:center;letter-spacing:.03em;}

/* Desktop: docked to the right end of the breadcrumb line */
.ind-breadcrumb.ind-breadcrumb-has-lnav{position:relative;padding-right:130px;}
.ind-lnav-inline{position:absolute;right:0;top:50%;transform:translateY(-50%);}

/* Mobile: subtle floating cluster, clear of the agent contact bar */
.ind-lnav-float{position:fixed;left:50%;transform:translateX(-50%);bottom:calc(118px + env(safe-area-inset-bottom));z-index:1100;
  background:rgba(12,14,20,.74);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12);border-radius:999px;padding:5px 7px;box-shadow:0 6px 20px rgba(0,0,0,.4);opacity:.9;}
.ind-lnav-float .ind-lnav-arrow{width:32px;height:32px;background:transparent;border-color:transparent;}
.ind-lnav-float .ind-lnav-pill{color:#fff;}

/* ════ Request-a-Quote supplier drawer ════ */
.ind-rfq-trigger{display:flex;align-items:center;justify-content:center;gap:9px;width:100%;margin-top:12px;padding:13px 16px;
  background:rgba(0,222,255,.07);border:1px solid rgba(0,222,255,.28);color:var(--cyan);
  border-radius:12px;font-family:var(--font-head);font-weight:800;font-size:.92rem;cursor:pointer;transition:background .18s,transform .18s;}
.ind-rfq-trigger:hover{background:rgba(0,222,255,.13);transform:translateY(-1px);}
.ind-rfq-overlay{position:fixed;inset:0;z-index:200000;background:rgba(3,8,18,.62);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;padding:18px;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .25s,visibility .25s;}
.ind-rfq-overlay.open{opacity:1;visibility:visible;pointer-events:auto;}
.ind-rfq-sheet{width:min(540px,100%);max-height:88vh;overflow:auto;background:linear-gradient(180deg,#141a24 0%,#0e131c 100%);
  border:1px solid rgba(255,255,255,.1);border-radius:22px;padding:22px;box-shadow:0 30px 80px rgba(0,0,0,.55);transform:translateY(14px) scale(.98);transition:transform .26s cubic-bezier(.4,0,.2,1);}
.ind-rfq-overlay.open .ind-rfq-sheet{transform:translateY(0) scale(1);}
.ind-rfq-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:16px;}
.ind-rfq-head h3{font-family:var(--font-head);font-size:1.3rem;font-weight:900;color:#fff;margin:0 0 4px;}
.ind-rfq-head p{margin:0;color:var(--muted);font-size:.82rem;line-height:1.4;}
.ind-rfq-close{flex:0 0 auto;background:none;border:0;color:var(--muted2);font-size:1.8rem;line-height:1;cursor:pointer;padding:0 2px;}
.ind-rfq-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:14px;}
.ind-rfq-item{display:flex;align-items:center;gap:10px;padding:12px;border:1px solid var(--border);border-radius:12px;cursor:pointer;color:var(--muted2);font-size:.84rem;font-weight:700;transition:border-color .15s,background .15s;}
.ind-rfq-item svg{width:20px;height:20px;flex:0 0 auto;color:var(--muted);}
.ind-rfq-item input{accent-color:var(--orange);width:16px;height:16px;flex:0 0 auto;}
.ind-rfq-item:has(input:checked){border-color:rgba(255,212,0,.5);background:rgba(255,212,0,.07);color:#fff;}
.ind-rfq-item:has(input:checked) svg{color:var(--orange);}
.ind-rfq-note{width:100%;background:#0b0f15;border:1px solid var(--border);border-radius:12px;color:#fff;padding:11px 13px;font:inherit;font-size:.86rem;resize:vertical;margin-bottom:12px;}
.ind-rfq-send{width:100%;background:linear-gradient(90deg,var(--orange),#FFE45C);color:#fff;border:0;border-radius:12px;padding:14px;font-family:var(--font-head);font-weight:900;font-size:1rem;cursor:pointer;box-shadow:0 10px 26px rgba(255,212,0,.32);}
.ind-rfq-send:hover{transform:translateY(-1px);}
.ind-rfq-fine{margin:10px 0 0;text-align:center;color:var(--muted);font-size:.72rem;}
@media(max-width:768px){ .ind-rfq-grid{grid-template-columns:1fr;} }

/* v1.5.9 — supplier RFQ contact capture */
.ind-rfq-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0 0 12px;}
.ind-rfq-input{width:100%;background:#0b0f15;border:1px solid var(--border);border-radius:12px;color:#fff;padding:11px 13px;font:inherit;font-size:.86rem;outline:none;box-sizing:border-box;}
.ind-rfq-input:focus,.ind-rfq-note:focus{border-color:rgba(255,212,0,.55);box-shadow:0 0 0 3px rgba(255,212,0,.1);}
.ind-rfq-email{grid-column:1/-1;}
.ind-rfq-send:disabled{opacity:.68;cursor:wait;transform:none!important;}
@media(max-width:768px){.ind-rfq-contact-grid{grid-template-columns:1fr;}.ind-rfq-email{grid-column:auto;}}

/* ══════════════════════════════════════════════════════════════
   v1.6.15 — White full-screen gallery/lightbox
   Make the single listing image viewer use a clean white surrounding area.
══════════════════════════════════════════════════════════════ */
body.single-ind_property .ind-lightbox{
  background:#fff!important;
  color:#111827!important;
}
body.single-ind_property .ind-lightbox img,
body.single-ind_property #ind-lightbox-img{
  background:#fff!important;
  box-shadow:0 22px 70px rgba(15,23,42,.18)!important;
}
body.single-ind_property .ind-lightbox-close,
body.single-ind_property .ind-lightbox-nav,
body.single-ind_property .ind-lightbox-count{
  background:rgba(255,255,255,.92)!important;
  border:1px solid rgba(15,23,42,.14)!important;
  color:#111827!important;
  box-shadow:0 10px 30px rgba(15,23,42,.14)!important;
}
body.single-ind_property .ind-lightbox-close:hover,
body.single-ind_property .ind-lightbox-nav:hover{
  background:#f6f7f9!important;
  border-color:rgba(15,23,42,.22)!important;
}
body.single-ind_property .ind-lightbox-count{
  font-weight:900!important;
}

/* Mobile stacked gallery should also open on white instead of black. */
@media(max-width:760px){
  body.single-ind_property .ind-lightbox{
    background:#fff!important;
    padding:0!important;
  }
  body.single-ind_property .ind-lightbox img,
  body.single-ind_property #ind-lightbox-img{
    width:100vw!important;
    max-width:100vw!important;
    max-height:82vh!important;
    border-radius:0!important;
    box-shadow:none!important;
    background:#fff!important;
  }
  body.single-ind_property .ind-mobile-photo-stack{
    background:#fff!important;
    color:#111827!important;
  }
  body.single-ind_property .ind-mobile-stack-top{
    background:rgba(255,255,255,.96)!important;
    border-bottom:1px solid rgba(15,23,42,.10)!important;
    color:#111827!important;
  }
  body.single-ind_property .ind-mobile-stack-icon{
    color:#111827!important;
  }
  body.single-ind_property .ind-mobile-stack-icon:active{
    background:rgba(15,23,42,.06)!important;
  }
  body.single-ind_property .ind-mobile-stack-photo,
  body.single-ind_property .ind-mobile-stack-photo img{
    background:#fff!important;
  }
  body.single-ind_property .ind-mobile-stack-contact{
    background:rgba(255,255,255,.98)!important;
    border-top:1px solid rgba(15,23,42,.10)!important;
    box-shadow:0 -18px 45px rgba(15,23,42,.12)!important;
  }
  body.single-ind_property .ind-mobile-stack-agent strong{
    color:#111827!important;
  }
  body.single-ind_property .ind-mobile-stack-agent small{
    color:#6b7280!important;
  }
}


/* ══════════════════════════════════════════════════════════════
   v1.6.16 — Full-screen gallery thumbnail strip
   Keep the white viewer, add a Property-Finder style thumbnail rail below.
══════════════════════════════════════════════════════════════ */
body.single-ind_property .ind-lightbox{
  flex-direction:column!important;
  gap:14px!important;
  padding:34px 90px 132px!important;
}
body.single-ind_property .ind-lightbox-stage{
  width:min(1180px, calc(100vw - 190px));
  height:calc(100vh - 215px);
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
}
body.single-ind_property .ind-lightbox-stage #ind-lightbox-img{
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  border-radius:12px!important;
}
body.single-ind_property .ind-lightbox-thumbs{
  position:fixed;
  left:50%;
  bottom:24px;
  z-index:100002;
  transform:translateX(-50%);
  width:min(1180px, calc(100vw - 150px));
  height:84px;
  display:flex;
  align-items:center;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:6px 6px 10px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  box-shadow:0 18px 45px rgba(15,23,42,.12);
  scrollbar-width:thin;
  scrollbar-color:rgba(15,23,42,.28) transparent;
}
body.single-ind_property .ind-lightbox-thumbs::-webkit-scrollbar{height:6px;}
body.single-ind_property .ind-lightbox-thumbs::-webkit-scrollbar-thumb{background:rgba(15,23,42,.28);border-radius:999px;}
body.single-ind_property .ind-lightbox-thumb{
  width:104px;
  height:68px;
  flex:0 0 104px;
  border:2px solid transparent;
  border-radius:10px;
  padding:0;
  margin:0;
  overflow:hidden;
  background:#fff;
  opacity:.62;
  cursor:pointer;
  transition:opacity .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
body.single-ind_property .ind-lightbox-thumb:hover{
  opacity:.92;
  transform:translateY(-1px);
}
body.single-ind_property .ind-lightbox-thumb.active{
  opacity:1;
  border-color:#ffd400;
  box-shadow:0 0 0 2px rgba(255,212,0,.18), 0 10px 24px rgba(15,23,42,.14);
}
body.single-ind_property .ind-lightbox-thumb img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;
  object-fit:cover!important;
  border-radius:7px!important;
  box-shadow:none!important;
  background:#f3f4f6!important;
}
body.single-ind_property .ind-lightbox-count{
  bottom:124px!important;
  z-index:100003!important;
}
@media(max-width:900px){
  body.single-ind_property .ind-lightbox{
    padding-left:62px!important;
    padding-right:62px!important;
  }
  body.single-ind_property .ind-lightbox-stage{
    width:calc(100vw - 124px);
  }
  body.single-ind_property .ind-lightbox-thumbs{
    width:calc(100vw - 34px);
  }
}
@media(max-width:760px){
  body.single-ind_property .ind-lightbox{
    padding:0 0 86px!important;
    justify-content:center!important;
  }
  body.single-ind_property .ind-lightbox-stage{
    width:100vw!important;
    height:calc(100vh - 120px)!important;
    min-height:0!important;
  }
  body.single-ind_property .ind-lightbox-stage #ind-lightbox-img{
    width:100vw!important;
    max-width:100vw!important;
    max-height:calc(100vh - 120px)!important;
    border-radius:0!important;
  }
  body.single-ind_property .ind-lightbox-thumbs{
    left:0!important;
    right:0!important;
    bottom:0!important;
    transform:none!important;
    width:100vw!important;
    height:76px!important;
    border-radius:0!important;
    border-left:0!important;
    border-right:0!important;
    border-bottom:0!important;
    padding:7px 10px 9px!important;
    box-shadow:0 -12px 34px rgba(15,23,42,.10)!important;
  }
  body.single-ind_property .ind-lightbox-thumb{
    width:82px!important;
    height:56px!important;
    flex-basis:82px!important;
  }
  body.single-ind_property .ind-lightbox-count{
    bottom:84px!important;
  }
}
