/* ============================================================
   TweetLife — Listing Details (Ad Show)
   /public_html/css/property_ads_show.css
   ============================================================ */

.tl-adp{
  direction: rtl;

  --tl-adp-cta-h: 76px;
  --tl-adp-appbar-h: 72px;

  --tl-adp-brand-navy: var(--tl-brand-navy, #1b255f);
  --tl-adp-brand-aqua: var(--tl-brand-aqua, #25bccf);
  --tl-adp-brand-gold: var(--tl-brand-gold, #f3c437);

  padding-bottom: calc(var(--tl-adp-cta-h) + max(var(--tl-bottom-nav-h, 0px), var(--tl-safe-bottom, 0px)) + var(--tl-space-4, 16px));
}

@media ((min-width: 1024px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp{ padding-bottom: var(--tl-space-7, 28px); }
}

.tl-adp-wrap{
  max-width: 1180px;
  margin-inline: auto;
  padding: var(--tl-space-4, 16px);
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-wrap{ padding: var(--tl-space-6, 24px); }
}

/* Appbar */
.tl-adp-appbar{
  position: sticky;
  top: var(--tl-site-header-offset, 0px);
  z-index: 60;

  display: flex;
  align-items: center;
  gap: var(--tl-space-2, 8px);

  padding: var(--tl-space-2, 8px);
  margin-bottom: var(--tl-space-4, 16px);

  background: var(--tl-color-surface, #fff);
  border: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
  box-shadow: var(--tl-shadow-sm, 0 10px 24px rgba(0,0,0,.06));
}

.tl-adp-appbar__title{
  flex: 1;
  font-weight: 950;
  font-size: 14px;
  line-height: 1.2;
  color: var(--tl-color-text, #0b1220);
  padding-inline: var(--tl-space-1, 6px);
}

.tl-adp-iconbtn{
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--tl-radius-md, 14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tl-adp-favbtn{ color: var(--tl-color-text, #0b1220); }
.tl-adp-favbtn[aria-pressed="true"]{ color: var(--tl-adp-brand-gold); }
.tl-adp-favbtn__icon{ transition: transform .16s ease; }
.tl-adp-favbtn[aria-pressed="true"] .tl-adp-favbtn__icon{ transform: scale(1.05); }

/* Layout */
.tl-adp-layout{ display: grid; gap: var(--tl-space-4, 16px); }
@media ((min-width: 1024px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-layout{
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }
}

.tl-adp-main{ min-width: 0; display: flex; flex-direction: column; gap: var(--tl-space-4, 16px); }
.tl-adp-aside{ display: none; }
@media ((min-width: 1024px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-aside{
    display: block;
    position: sticky;
    top: calc(var(--tl-site-header-offset, 0px) + var(--tl-adp-appbar-h) + var(--tl-space-4, 16px));
  }
}

.tl-adp-card{
  padding: var(--tl-space-4, 16px);
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86));
  box-shadow: 0 18px 48px rgba(2,6,23,.08);
}

/* Gallery */
.tl-adp-gallery{ padding: 0; overflow: hidden; }
.tl-adp-media{
  position: relative;
  background: var(--tl-color-surface-2, #f5f7fb);
  aspect-ratio: 16 / 10;
  min-height: 240px;
  overflow: hidden;
  touch-action: pan-y;
}
@media (max-width: 520px){
  .tl-adp-media{ aspect-ratio: 4 / 3; min-height: clamp(210px, 58vw, 360px); }
}

/* Gallery (mobile ergonomics) */
@media (max-width: 520px){
  .tl-adp-navbtn{ width: 40px; height: 40px; }
  .tl-adp-thumb{ width: 66px; height: 48px; }
}

@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-media{ aspect-ratio: 16 / 9; min-height: 380px; }
}

/* Gallery (video mode) */
.tl-adp-gallery.is-video .tl-adp-media{
  aspect-ratio: 16 / 9;
  min-height: clamp(190px, 56vw, 420px);
  background: #000;
}


.tl-adp-media__img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.tl-adp-media__skel{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.08), rgba(0,0,0,.04));
  background-size: 200% 100%;
  animation: tlAdpShimmer 1.2s infinite linear;
  z-index: 1;
  pointer-events: none;
}
.tl-adp-gallery.is-loaded .tl-adp-media__skel{ display:none; }
@keyframes tlAdpShimmer{ 0%{ background-position:0% 0;} 100%{ background-position:200% 0;} }

.tl-adp-navbtn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(2,6,23,.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.tl-adp-navbtn--prev{ inset-inline-start: var(--tl-space-3, 12px); }
.tl-adp-navbtn--next{ inset-inline-end: var(--tl-space-3, 12px); }

.tl-adp-counter{
  position: absolute;
  inset-inline-end: var(--tl-space-3, 12px);
  inset-block-start: var(--tl-space-3, 12px);
  background: rgba(2,6,23,.45);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  z-index: 2;
}

.tl-adp-thumbs{
  padding: var(--tl-space-3, 12px);
  border-top: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
  display: flex;
  gap: var(--tl-space-2, 8px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.tl-adp-thumb{ scroll-snap-align: center; }

.tl-adp-thumb{
  width: 74px;
  height: 54px;
  border-radius: var(--tl-radius-md, 14px);
  border: 2px solid transparent;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--tl-color-surface-2, #f5f7fb);
  cursor: pointer;
  position: relative;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.tl-adp-thumb img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.tl-adp-thumb.is-active{ border-color: var(--tl-adp-brand-aqua); }

.tl-adp-viewer-src{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Title */
.tl-adp-titlewrap{ display: grid; gap: 6px; margin-bottom: var(--tl-space-3, 12px); }
.tl-adp-title{
  margin: 0;
  font-size: 16px;
  font-weight: 980;
  color: var(--tl-color-text, #0b1220);
  line-height: 1.55;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-title{ font-size: 18px; -webkit-line-clamp: 3; }
}
.tl-adp-title.is-expanded{
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.tl-adp-title__toggle{ justify-content: center; width: 100%; }

/* Price */
.tl-adp-price{ display: flex; flex-direction: column; gap: 6px; }
.tl-adp-price__main{
  font-size: 24px;
  font-weight: 980;
  line-height: 1.15;
  color: var(--tl-color-text, #0b1220);
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-price__main{ font-size: 30px; }
}
.tl-adp-price__sub{
  font-size: 16px;
  font-weight: 950;
  color: var(--tl-color-success, #0a7a3c);
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-price__sub{ font-size: 18px; }
}

/* Summary meta (FIXED DIRECTION) */
.tl-adp-summary__meta{ margin-top: var(--tl-space-4, 16px); display: grid; gap: var(--tl-space-2, 8px); }
.tl-adp-meta-row{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--tl-space-3, 12px);
  padding: var(--tl-space-2, 8px) 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.tl-adp-meta-row:last-child{ border-bottom: 0; }
.tl-adp-meta-k{ flex: 0 0 38%; color: var(--tl-color-text-muted, rgba(0,0,0,.55)); font-size: 12px; font-weight: 950; line-height: 1.6; }
.tl-adp-meta-v{
  flex: 1;
  color: var(--tl-color-text, #0b1220);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.7;
  text-align: start; /* */
}
.tl-adp-meta-inline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tl-adp-copybtn{
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Subnav */
.tl-adp-subnav{
  padding: 10px;
  border: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
  background: var(--tl-color-surface, #fff);
  box-shadow: var(--tl-shadow-sm, 0 10px 24px rgba(0,0,0,.06));
}
@media (max-width: 1023px), ((hover: none) and (pointer: coarse) and (max-width: 1366px)){
  .tl-adp-subnav{
    position: sticky;
    top: calc(var(--tl-site-header-offset, 0px) + var(--tl-adp-appbar-h) + 6px);
    z-index: 58;
  }
}
.tl-adp-subnav__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 44px;
  gap: 8px;
  align-items: center;
}
.tl-adp-subnav__btn{
  min-width: 0;
  height: 44px;
  border: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
  background: rgba(27,37,95,.04);
  color: var(--tl-adp-brand-navy);
  border-radius: 999px;
  padding: 0 10px;
  font-weight: 950;
  font-size: 12.5px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tl-adp-subnav__btn.is-active{
  background: rgba(37,188,207,.14);
  border-color: rgba(37,188,207,.30);
  color: var(--tl-adp-brand-navy);
}
.tl-adp-subnav__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
  background: rgba(243,196,55,.14);
  color: var(--tl-adp-brand-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tl-adp-subnav__icon.is-active{
  background: rgba(37,188,207,.14);
  border-color: rgba(37,188,207,.30);
}

/* Premium headers */
.tl-adp-head{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--tl-radius-lg, 18px);
  padding: 12px 12px;
  margin-bottom: var(--tl-space-4, 16px);
  background: linear-gradient(135deg, rgba(27,37,95,.08), rgba(37,188,207,.10), rgba(243,196,55,.06));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(2,6,23,.07);
  position: relative;
  overflow: hidden;
}
.tl-adp-head::after{
  content:"";
  position:absolute;
  inset-inline:0;
  inset-block-end:0;
  height:3px;
  background: linear-gradient(90deg, var(--tl-adp-brand-aqua), var(--tl-adp-brand-gold));
  opacity:.85;
}
.tl-adp-head__l{ display:flex; align-items:center; gap:12px; }
.tl-adp-head__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(243,196,55,.18), rgba(37,188,207,.18));
  color: var(--tl-adp-brand-navy);
  border: 1px solid rgba(27,37,95,.10);
  box-shadow: 0 10px 22px rgba(27,37,95,.10);
}
.tl-adp-head__title{ font-size: 15px; font-weight: 980; color: var(--tl-color-text, #0b1220); line-height: 1.2; }
.tl-adp-head__sub{ margin-top: 4px; font-size: 12px; font-weight: 850; color: var(--tl-color-text-muted, rgba(0,0,0,.55)); line-height: 1.7; }

/* KV */
.tl-adp-kv{ display: flex; flex-direction: column; }
.tl-adp-kv__row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--tl-space-3, 12px);
  padding: var(--tl-space-3, 12px) 0;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.tl-adp-kv__row:last-child{ border-bottom: 0; }
.tl-adp-kv__k{ flex: 0 0 42%; color: var(--tl-color-text-muted, rgba(0,0,0,.55)); font-size: 12px; font-weight: 950; line-height: 1.6; }
.tl-adp-kv__v{ flex: 1; margin: 0; color: var(--tl-color-text, #0b1220); font-size: 13px; font-weight: 980; line-height: 1.7; text-align: start; }

/* KV — Luxury variant (mobile-first, app-like grouped list) */
.tl-adp-kv--lux{ gap: 10px; }
.tl-adp-kv--lux .tl-adp-kv__row{
  position: relative;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--tl-radius-lg, 18px);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow: 0 12px 26px rgba(2,6,23,.05);
  border-bottom: 0;
  overflow: hidden;
}
.tl-adp-kv--lux .tl-adp-kv__row::before{
  content:"";
  position:absolute;
  inset-block: 12px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--tl-adp-brand-aqua), var(--tl-adp-brand-gold));
  opacity: .85;
}
.tl-adp-kv--lux .tl-adp-kv__k{
  flex-basis: 44%;
  font-size: 12px;
}
.tl-adp-kv--lux .tl-adp-kv__v{
  font-size: 13.5px;
}

/* Pills (Features) */
.tl-pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tl-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37,188,207,.22);
  background: linear-gradient(135deg, rgba(27,37,95,.08), rgba(37,188,207,.12));
  color: var(--tl-adp-brand-navy);
  font-weight: 950;
  font-size: 12.5px;
  line-height: 1;
  white-space: nowrap;
  unicode-bidi: plaintext;
}

.tl-pill::before{
  content:"";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tl-adp-brand-gold), var(--tl-adp-brand-aqua));
  box-shadow: 0 0 0 4px rgba(243,196,55,.12);
}

.tl-adp-inline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tl-adp-offersbtn{
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Description collapse */
.tl-adp-desc{ position: relative; }
.tl-adp-desc__body{ color: var(--tl-color-text, #0b1220); font-size: 14px; line-height: 2; }
.tl-adp-desc.is-collapsed .tl-adp-desc__body{ max-height: 240px; overflow: hidden; }
.tl-adp-desc.is-collapsed::after{
  content:"";
  position:absolute;
  inset-inline:0;
  inset-block-end:46px;
  height:90px;
  background: linear-gradient(to bottom, transparent, var(--tl-color-surface, #fff));
  pointer-events:none;
}
.tl-adp-desc__toggle{ margin-top: var(--tl-space-3, 12px); width: 100%; justify-content: center; }

/* Map */
.tl-adp-map{ margin-top: var(--tl-space-3, 12px); display: grid; gap: var(--tl-space-3, 12px); }
.tl-adp-map__frame{
  width:100%;
  height:300px;
  border:0;
  border-radius: var(--tl-radius-lg, 18px);
  background: var(--tl-color-surface-2, #f5f7fb);
}
.tl-adp-map--leaflet{
  position: relative;
  z-index: 0;
  isolation: isolate;
}
.tl-adp-map--leaflet .tl-adp-map__frame{
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.tl-adp-map__note{
  font-size: 12px;
  line-height: 1.8;
  color: var(--tl-color-text-muted, rgba(0,0,0,.55));
  font-weight: 800;
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-map__frame{ height: 360px; }
}

.tl-adp-divider{ height:1px; background: rgba(15,23,42,.10); margin: var(--tl-space-4, 16px) 0; }

.tl-adp-contact-actions{
  display:grid;
  grid-template-columns: 1fr;
  gap: var(--tl-space-2, 8px);
  margin-top: var(--tl-space-3, 12px);
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-contact-actions{ grid-template-columns: 1fr 1fr; }
}
.tl-adp-form .tl-textarea{ resize: vertical; min-height: 120px; }

/* Aside */
.tl-adp-asidecard{
  padding: var(--tl-space-4, 16px);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--tl-shadow-sm, 0 10px 24px rgba(0,0,0,.06));
}
.tl-adp-asidecard__title{ font-size: 16px; font-weight: 980; margin: 0 0 6px 0; }
.tl-adp-asidecard__sub{ margin: 0 0 var(--tl-space-4, 16px) 0; font-size: 13px; line-height: 1.9; color: var(--tl-color-text-muted, rgba(0,0,0,.55)); font-weight: 850; }
.tl-adp-asidecard__actions{ display:grid; gap: var(--tl-space-2, 8px); }

.tl-adp .tl-btn[aria-disabled="true"]{ opacity:.55; cursor:not-allowed; pointer-events:auto; }

/* Bottom CTA */
.tl-adp-cta{
  position: fixed;
  inset-inline: 0;
  bottom: var(--tl-bottom-nav-h, 0px);
  z-index: 70;
  padding: var(--tl-space-2, 8px) var(--tl-space-3, 12px);
  padding-bottom: calc(var(--tl-space-2, 8px) + var(--tl-safe-bottom, 0px));
  background: var(--tl-color-surface, #fff);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(15,23,42,.10);
}
@media ((min-width: 1024px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-cta{ display:none; }
}
.tl-adp-cta__inner{
  max-width: 1180px;
  margin-inline: auto;
  display:flex;
  gap: var(--tl-space-2, 8px);
}
.tl-adp-cta__btn{ flex:1; height:44px; padding: 0 var(--tl-space-3, 12px); justify-content:center; }

/* Favorites Sheet */
.tl-adp-sheet{ position: fixed; inset:0; z-index:80; }
.tl-adp-sheet__backdrop{ position:absolute; inset:0; background: rgba(2,6,23,.46); }
.tl-adp-sheet__wrap{
  position:absolute;
  inset-inline:0;
  inset-block-end:0;
  display:flex;
  justify-content:center;
  padding: var(--tl-space-4, 16px);
  padding-bottom: calc(var(--tl-space-4, 16px) + var(--tl-safe-bottom, 0px));
}
@media ((min-width: 1024px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-sheet__wrap{ inset:0; align-items:center; }
}
.tl-adp-sheet__panel{
  width: min(520px, 100%);
  max-height: 85vh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.tl-adp-sheet-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--tl-space-3, 12px);
  padding: var(--tl-space-4, 16px);
  border-bottom: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
}
.tl-adp-sheet-title{ font-weight:980; font-size:15px; }
.tl-adp-sheet-body{
  padding: var(--tl-space-4, 16px);
  overflow:auto;
  overscroll-behavior: contain;
}
.tl-adp-sheet-create{
  margin-top: var(--tl-space-4, 16px);
  display:grid;
  gap: var(--tl-space-3, 12px);
}
.tl-adp-sheet-createbox{
  border: 1px solid var(--tl-color-border, rgba(15,23,42,.10));
  border-radius: var(--tl-radius-lg, 18px);
  padding: var(--tl-space-4, 16px);
  background: var(--tl-color-surface-2, #f5f7fb);
}
.tl-adp-sheet-hint{ color: var(--tl-color-text-muted, rgba(0,0,0,.55)); font-size: 12px; font-weight: 850; }

.tl-adp-stack{ display: grid; gap: var(--tl-space-3, 12px); }
.tl-adp-stack--sm{ gap: var(--tl-space-2, 8px); }

/* ------------------------------------------------------------
   Favorites Bottom Sheet — Lists rows (DS-aligned, RTL-first)
   ------------------------------------------------------------ */

.tl-fav-sheet-list{
  display:grid;
  gap: var(--tl-space-2);
  margin-top: var(--tl-space-2);
}

.tl-fav-sheet-row{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--tl-space-3);
  min-height:44px; /* accessibility target */
  padding: var(--tl-space-3) var(--tl-space-4);
  border:1px solid var(--tl-border);
  background: var(--tl-color-surface);
  border-radius: var(--tl-radius-lg);
  text-align:start;
}

.tl-fav-sheet-row:hover{
  border-color: var(--tl-color-border-strong);
}

.tl-fav-sheet-row:active{
  transform: translateY(1px);
}

.tl-fav-sheet-row.is-inlist{
  border-color: rgba(14,165,233,.35);
  background: rgba(14,165,233,.08);
}

.tl-fav-sheet-row[data-loading="1"]{
  opacity:.6;
  pointer-events:none;
}

.tl-fav-sheet-row__meta{
  min-width:0;
  flex: 1 1 auto;
}

.tl-fav-sheet-row__name{
  font-weight: 800;
  color: var(--tl-color-text);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tl-fav-sheet-row__desc{
  margin-top: 2px;
  color: var(--tl-color-text-muted);
  font-size: var(--tl-text-sm);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tl-fav-sheet-row__right{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap: var(--tl-space-2);
}

.tl-fav-sheet-row__plus{
  width: 36px;
  height: 36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--tl-border);
  border-radius: 999px;
  color: var(--tl-brand-navy);
  background: var(--tl-color-surface-2);
}


/* =========================
   Video support (gallery)
   ========================= */
.tl-adp-media__video{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  background: #000;
  border-radius: 16px;
}

.tl-adp-media__overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(15, 23, 42, .45);
  z-index: 5;
  border-radius: 16px;
}
.tl-adp-media__overlay[hidden]{ display: none; }

.tl-adp-media__overlayBox{
  width: min(520px, 100%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
  text-align: center;
}
.tl-adp-media__overlayTitle{
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 6px;
}
.tl-adp-media__overlayMsg{
  font-size: 13px;
  color: #334155;
  line-height: 1.6;
}

.tl-adp-thumbwrap{
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
}
.tl-adp-thumb__badge{
  position: absolute;
  bottom: 6px;
  right: 6px;
  
  z-index: 2;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  pointer-events: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}


/* */

.tl-adp{
  position: relative;
  min-height: 100vh;

  /* Align with DS tokens (fallbacks for safety) */
  --tl-adp-brand-navy: var(--tl-brand-navy, #222F75);
  --tl-adp-brand-aqua: var(--tl-brand-aqua, #25BCCF);
  --tl-adp-brand-gold: var(--tl-brand-gold, #E1BA41);

  /* Premium tuning (scoped only to ad page) */
  --tl-radius-md: 18px;
  --tl-radius-lg: 22px;
  --tl-radius-xl: 26px;

  --tl-shadow-xs: 0 2px 6px rgba(2,6,23,.06);
  --tl-shadow-sm: 0 12px 30px rgba(2,6,23,.08);
  --tl-shadow-md: 0 18px 44px rgba(2,6,23,.10);

  background:
    radial-gradient(1100px 520px at 14% -10%, rgba(37,188,207,.14), transparent 60%),
    radial-gradient(900px 520px at 86% -8%, rgba(225,186,65,.16), transparent 58%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 44%, #F8FAFC 100%);
}

@supports (background: color-mix(in srgb, white 50%, black)){
  .tl-adp{
    background:
      radial-gradient(1100px 520px at 14% -10%, color-mix(in srgb, var(--tl-adp-brand-aqua) 18%, transparent), transparent 60%),
      radial-gradient(900px 520px at 86% -8%, color-mix(in srgb, var(--tl-adp-brand-gold) 22%, transparent), transparent 58%),
      linear-gradient(180deg, var(--tl-color-bg, #F8FAFC) 0%, var(--tl-color-surface, #FFFFFF) 44%, var(--tl-color-bg, #F8FAFC) 100%);
  }
}

/* Soft elevation for all cards inside the ad page (low specificity) */
.tl-adp :where(.tl-card){
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}

/* Appbar: glassy premium top bar */
.tl-adp-appbar{
  background: rgba(255,255,255,.84);
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 18px 46px rgba(2,6,23,.12);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 10px;
  min-height: var(--tl-adp-appbar-h, 72px);
  position: sticky;
  isolation: isolate;
}
.tl-adp-appbar::after{
  content: "";
  position: absolute;
  inset-inline: 12px;
  inset-block-end: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(37,188,207,.0), rgba(37,188,207,.70), rgba(225,186,65,.75), rgba(225,186,65,.0));
  opacity: .75;
  border-radius: 999px;
  pointer-events: none;
}
.tl-adp-appbar__title{ font-size: 14.5px; }

/* Breadcrumbs: cleaner, more app-like */
.tl-adp-breadcrumb{
  padding: 12px 14px;
  background: rgba(255,255,255,.82);
}
.tl-adp-breadcrumb .tl-link{ font-weight: 950; }

/* Gallery: stronger corner rounding and consistent clipping */
.tl-adp-gallery{ border-radius: var(--tl-radius-xl, 26px); }
.tl-adp-media{ border-radius: inherit; }
.tl-adp-media__img,
.tl-adp-media__video,
.tl-adp-media__overlay{
  border-radius: inherit;
}

/* Summary: subtle premium accent wash */
.tl-adp-summary{
  position: relative;
  overflow: hidden;
}
.tl-adp-summary::before{
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(820px 340px at 20% 0%, rgba(37,188,207,.14), transparent 62%),
    radial-gradient(760px 360px at 86% 30%, rgba(225,186,65,.12), transparent 60%);
  pointer-events: none;
}
.tl-adp-summary > *{ position: relative; z-index: 1; }

.tl-adp-title{
  font-size: 17px;
  line-height: 1.7;
}
@media ((min-width: 768px) and (hover: hover) and (pointer: fine)), (min-width: 1367px){
  .tl-adp-title{ font-size: 20px; }
}

.tl-adp-price__main{ font-size: clamp(24px, 6.4vw, 34px); }
@supports (-webkit-background-clip:text){
  .tl-adp-price__main{
    background: linear-gradient(90deg, var(--tl-adp-brand-navy), var(--tl-color-text, #0B1220));
    -webkit-background-clip: text;
    color: transparent;
  }
}

/* Subnav: STRICT single-row layout + premium pill tabs */
.tl-adp-subnav{
  background: rgba(255,255,255,.84);
  border-color: rgba(15,23,42,.10);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.tl-adp-subnav__inner{
  display: flex;
  flex-wrap: nowrap; /* <<< strict: one horizontal line */
  gap: 8px;
  align-items: center;
}
.tl-adp-subnav__btn{
  flex: 1 1 0;
  height: 46px;
  border-radius: 999px;
  font-size: 12.8px;
  background: rgba(2,6,23,.035);
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 2px 10px rgba(2,6,23,.04);
}
.tl-adp-subnav__btn:active{ transform: translateY(1px); }
.tl-adp-subnav__btn.is-active{
  background: linear-gradient(135deg, rgba(34,47,117,.12), rgba(37,188,207,.20));
  border-color: rgba(37,188,207,.35);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}
.tl-adp-subnav__icon{
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-color: rgba(15,23,42,.10);
  background: rgba(225,186,65,.14);
  box-shadow: 0 2px 10px rgba(2,6,23,.04);
}
.tl-adp-subnav__icon:active{ transform: translateY(1px); }
.tl-adp-subnav__icon.is-active{
  background: linear-gradient(135deg, rgba(34,47,117,.12), rgba(37,188,207,.20));
  border-color: rgba(37,188,207,.35);
  box-shadow: 0 12px 26px rgba(2,6,23,.08);
}

@media (max-width: 360px){
  .tl-adp-subnav{ padding: 8px; }
  .tl-adp-subnav__btn{ font-size: 11.8px; padding: 0 8px; }
}

/* Section cards: consistent padding + refined separators */
.tl-adp-card{ padding: 18px; }
.tl-adp-kv__row,
.tl-adp-meta-row{
  border-bottom-color: rgba(15,23,42,.07);
}

/* Map: more premium frame */
.tl-adp-map__frame{
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 34px rgba(2,6,23,.08);
}

/* Bottom CTA: iOS-like floating bar */
.tl-adp-cta{
  border-top-left-radius: var(--tl-radius-xl, 26px);
  border-top-right-radius: var(--tl-radius-xl, 26px);
  box-shadow: 0 -18px 50px rgba(2,6,23,.16);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.tl-adp-cta__btn{ height: 46px; border-radius: 999px; }


/* ============================================================
   2026-03-17 — Property ad visual sync (scoped)
   Keeps structure/logic intact; refines buttons/icons/skins only.
   ============================================================ */

.tl-adp--property{
  --tl-adp-prop-navy: #0f1b3a;
  --tl-adp-prop-navy-2: #1d4ed8;
  --tl-adp-prop-cyan: #38bdf8;
  --tl-adp-prop-cyan-soft: rgba(56,189,248,.14);
  --tl-adp-prop-gold: #d4af37;
  --tl-adp-prop-green: #16a34a;
  --tl-adp-prop-ink: #0f172a;
  --tl-adp-prop-muted: #64748b;
  --tl-adp-prop-line: rgba(148,163,184,.22);
  --tl-adp-prop-soft: #eff6ff;
}

.tl-adp--property .tl-adp-appbar,
.tl-adp--property .tl-adp-summary,
.tl-adp--property .tl-adp-asidecard,
.tl-adp--property .tl-adp-subnav,
.tl-adp--property .tl-adp-gallery,
.tl-adp--property .tl-adp-map__frame,
.tl-adp--property .tl-adp-card{
  border-radius: 24px;
}

.tl-adp--property .tl-adp-appbar{
  gap: 10px;
  background:
    radial-gradient(780px 180px at 0% 0%, rgba(56,189,248,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.92));
  border-color: rgba(191,219,254,.28);
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
}

.tl-adp--property .tl-adp-appbar__title{
  color: var(--tl-adp-prop-ink);
  font-weight: 980;
}

.tl-adp--property .tl-adp-iconbtn,
.tl-adp--property .tl-adp-copybtn{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(191,219,254,.42);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,246,255,.96));
  color: var(--tl-adp-prop-navy);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.tl-adp--property .tl-adp-iconbtn:hover,
.tl-adp--property .tl-adp-copybtn:hover,
.tl-adp--property .tl-adp-iconbtn:focus-visible,
.tl-adp--property .tl-adp-copybtn:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.42);
  box-shadow: 0 14px 28px rgba(15,23,42,.10);
}

.tl-adp--property .tl-adp-iconbtn svg,
.tl-adp--property .tl-adp-copybtn svg,
.tl-adp--property .tl-adp-subnav__icon svg,
.tl-adp--property .tl-adp-btnicon svg{
  display: block;
  color: currentColor;
}

.tl-adp--property .tl-adp-iconbtn svg :is(path,circle,rect,line,polyline,polygon),
.tl-adp--property .tl-adp-copybtn svg :is(path,circle,rect,line,polyline,polygon),
.tl-adp--property .tl-adp-subnav__icon svg :is(path,circle,rect,line,polyline,polygon),
.tl-adp--property .tl-adp-btnicon svg :is(path,circle,rect,line,polyline,polygon){
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tl-adp--property .tl-adp-favbtn[aria-pressed="true"]{
  background: linear-gradient(180deg, rgba(254,249,195,.98), rgba(255,255,255,.98));
  border-color: rgba(212,175,55,.42);
  color: var(--tl-adp-prop-gold);
  box-shadow: 0 14px 28px rgba(212,175,55,.18);
}

.tl-adp--property .tl-adp-gallery{
  border-color: rgba(191,219,254,.24);
  box-shadow: 0 20px 48px rgba(15,23,42,.08);
}

.tl-adp--property .tl-adp-thumbs{
  padding: 14px;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
}

.tl-adp--property .tl-adp-thumb{
  border-radius: 16px;
  border-color: rgba(191,219,254,.24);
  box-shadow: 0 6px 16px rgba(15,23,42,.04);
}

.tl-adp--property .tl-adp-thumb.is-active{
  border-color: rgba(34,211,238,.72);
  box-shadow: 0 0 0 4px rgba(34,211,238,.14);
}

.tl-adp--property .tl-adp-summary{
  background:
    radial-gradient(920px 320px at 0% 0%, rgba(56,189,248,.12), transparent 62%),
    radial-gradient(740px 320px at 100% 100%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  border-color: rgba(191,219,254,.26);
  box-shadow: 0 20px 44px rgba(15,23,42,.08);
}

.tl-adp--property .tl-adp-price__main{
  color: var(--tl-adp-prop-navy);
  letter-spacing: -.02em;
}

.tl-adp--property .tl-adp-price__sub{
  color: var(--tl-adp-prop-green);
}

.tl-adp--property .tl-adp-meta-k,
.tl-adp--property .tl-adp-kv__k,
.tl-adp--property .tl-adp-head__sub,
.tl-adp--property .tl-adp-asidecard__sub{
  color: var(--tl-adp-prop-muted);
}

.tl-adp--property .tl-adp-meta-v,
.tl-adp--property .tl-adp-kv__v,
.tl-adp--property .tl-adp-head__title,
.tl-adp--property .tl-adp-asidecard__title{
  color: var(--tl-adp-prop-ink);
}

.tl-adp--property .tl-adp-meta-row,
.tl-adp--property .tl-adp-kv__row{
  border-bottom-color: rgba(148,163,184,.16);
}

.tl-adp--property .tl-adp-head__icon{
  border-radius: 16px;
  border-color: rgba(191,219,254,.38);
  background: linear-gradient(135deg, rgba(239,246,255,.96), rgba(255,255,255,.98));
  color: var(--tl-adp-prop-navy);
  box-shadow: 0 10px 24px rgba(15,23,42,.07);
}

.tl-adp--property .tl-adp-subnav{
  padding: 12px;
  background: rgba(255,255,255,.88);
  border-color: rgba(191,219,254,.28);
  box-shadow: 0 16px 36px rgba(15,23,42,.08);
}

.tl-adp--property .tl-adp-subnav__btn,
.tl-adp--property .tl-adp-subnav__icon{
  position: relative;
  z-index: 1;
  touch-action: manipulation;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(191,219,254,.38);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  color: var(--tl-adp-prop-navy);
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.tl-adp--property .tl-adp-subnav__btn:hover,
.tl-adp--property .tl-adp-subnav__icon:hover,
.tl-adp--property .tl-adp-subnav__btn:focus-visible,
.tl-adp--property .tl-adp-subnav__icon:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(56,189,248,.42);
  box-shadow: 0 14px 28px rgba(15,23,42,.08);
}

.tl-adp--property .tl-adp-subnav__btn.is-active,
.tl-adp--property .tl-adp-subnav__icon.is-active{
  background: linear-gradient(135deg, rgba(15,27,58,.94), rgba(29,78,216,.90));
  border-color: rgba(29,78,216,.42);
  color: #fff;
  box-shadow: 0 18px 32px rgba(15,23,42,.16);
}

.tl-adp--property .tl-adp-map__actions,
.tl-adp--property .tl-adp-contact-actions,
.tl-adp--property .tl-adp-asidecard__actions,
.tl-adp--property .tl-adp-cta__inner{
  gap: 10px;
}

.tl-adp--property .tl-adp-contactbtn{
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  font-weight: 950;
  letter-spacing: -.01em;
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 14px 26px rgba(15,23,42,.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.tl-adp--property .tl-adp-contactbtn:hover,
.tl-adp--property .tl-adp-contactbtn:focus-visible{
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(15,23,42,.12);
}

.tl-adp--property .tl-adp-contactbtn:active{
  transform: translateY(1px);
}

.tl-adp--property .tl-adp-btnicon{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.16);
}

.tl-adp--property .tl-adp-btnicon svg{ width: 18px; height: 18px; }

.tl-adp--property .tl-adp-contactbtn--message{
  background: linear-gradient(135deg, var(--tl-adp-prop-navy) 0%, #1e3a8a 54%, var(--tl-adp-prop-navy-2) 100%);
  border-color: rgba(37,99,235,.32);
  color: #fff;
}

.tl-adp--property .tl-adp-contactbtn--message .tl-adp-btnicon,
.tl-adp--property .tl-adp-contactbtn--ghost .tl-adp-btnicon{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.14);
}

.tl-adp--property .tl-adp-contactbtn--whatsapp{
  background: linear-gradient(135deg, #0b7a43 0%, #16a34a 50%, #22c55e 100%);
  border-color: rgba(22,163,74,.34);
  color: #fff;
}

.tl-adp--property .tl-adp-contactbtn--call,
.tl-adp--property .tl-adp-contactbtn--map,
.tl-adp--property .tl-adp-contactbtn--ghost{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  color: var(--tl-adp-prop-navy);
}

.tl-adp--property .tl-adp-contactbtn--call{
  border-color: rgba(191,219,254,.42);
}

.tl-adp--property .tl-adp-contactbtn--call .tl-adp-btnicon,
.tl-adp--property .tl-adp-contactbtn--map .tl-adp-btnicon{
  background: linear-gradient(180deg, rgba(239,246,255,.98), rgba(255,255,255,.98));
  border-color: rgba(191,219,254,.42);
}

.tl-adp--property .tl-adp-contactbtn--ghost{
  border-color: rgba(191,219,254,.32);
  background: linear-gradient(180deg, rgba(239,246,255,.96), rgba(255,255,255,.98));
}

.tl-adp--property .tl-adp-contactbtn[aria-disabled="true"]{
  opacity: .62;
  cursor: not-allowed;
  box-shadow: none;
}

.tl-adp--property .tl-adp-cta{
  background: rgba(255,255,255,.90);
  box-shadow: 0 -18px 48px rgba(15,23,42,.16);
}

.tl-adp--property .tl-adp-cta__btn{
  min-height: 48px;
}

.tl-adp--property .tl-adp-map__actions .tl-adp-contactbtn,
.tl-adp--property .tl-adp-contact-actions .tl-adp-contactbtn{
  width: 100%;
}

@media (max-width: 767px), ((hover: none) and (pointer: coarse) and (max-width: 1366px)){
  .tl-adp--property .tl-adp-contactbtn{
    min-height: 46px;
    border-radius: 16px;
    gap: 8px;
  }

  .tl-adp--property .tl-adp-btnicon{
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 11px;
  }
}


.tl-adp-map__frame.leaflet-container{
  outline: none;
  font: inherit;
  background: linear-gradient(180deg, rgba(239,246,255,.92), rgba(248,250,252,.96));
}
.tl-adp-map__frame.leaflet-container:focus{ outline: none; }
.tl-adp-map--leaflet .leaflet-map-pane{ z-index: 1; }
.tl-adp-map--leaflet .leaflet-tile-pane{ z-index: 1; }
.tl-adp-map--leaflet .leaflet-overlay-pane{ z-index: 2; }
.tl-adp-map--leaflet .leaflet-shadow-pane{ z-index: 3; }
.tl-adp-map--leaflet .leaflet-marker-pane{ z-index: 4; }
.tl-adp-map--leaflet .leaflet-tooltip-pane{ z-index: 5; }
.tl-adp-map--leaflet .leaflet-popup-pane{ z-index: 6; }
.tl-adp-map--leaflet .leaflet-control-container,
.tl-adp-map--leaflet .leaflet-top,
.tl-adp-map--leaflet .leaflet-bottom{ z-index: 7; }
.tl-adp-map__frame .leaflet-control-container{ display: none; }
.tl-adp-map__frame .leaflet-pane,
.tl-adp-map__frame .leaflet-tile,
.tl-adp-map__frame .leaflet-marker-icon,
.tl-adp-map__frame .leaflet-marker-shadow,
.tl-adp-map__frame .leaflet-tile-container{
  max-width: none !important;
}