/* PHASE-1 basic styles — placeholder until proper SCSS pipeline lands in Phase 1.1.
   Visual target: https://arendoo.bg/ (prod) and the staging reference. */

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    color: #333;
    line-height: 1.5;
}

a { color: #0696ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.muted { color: #888; font-size: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    transition: opacity .15s, background .15s;
}
.btn-pill { border-radius: 999px; padding: 12px 24px; }
.btn-primary { background: #0696ff; color: #fff; }
.btn-primary:hover { background: #057ad6; text-decoration: none; }
.btn-text { background: transparent; color: #333; }

/* ---------- Header ---------- */
.public-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
}
.public-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-text {
    font-size: 32px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
}
.logo-dot { color: #0696ff; }
.public-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.public-header__phone { font-size: 14px; }

/* ---------- Hero ---------- */
.hp-section { padding: 32px 0; }
.hp-section-main {
    position: relative;
    height: 600px;
    overflow: hidden;
    padding: 0;
}
.hp-section-main__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hp-section-main__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 24px 0;
    text-align: center;
}
.hp-section-main__title {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin: 0 0 24px;
}

/* ---------- Section common ---------- */
.hp-section__title {
    text-align: center;
    color: #0696ff;
    font-weight: 500;
    font-size: 28px;
    margin: 32px 0 24px;
}

/* ---------- Property cards ---------- */
.hp-section-properties__grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.property-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform .15s, box-shadow .15s;
}
.property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.property-card__media {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}
.property-card__media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.property-card__placeholder { width: 100%; height: 100%; background: #eee; }
.property-card__price {
    position: absolute; bottom: 12px; left: 12px;
    background: #0696ff; color: #fff;
    padding: 6px 12px; border-radius: 4px;
    font-weight: 500;
}
.property-card__badge {
    position: absolute; top: 12px; right: 12px;
    background: #ffd700; color: #333;
    padding: 4px 10px; border-radius: 4px;
    font-size: 12px; font-weight: 500;
}
.property-card__body { padding: 12px 16px 16px; }
.property-card__body h3 {
    margin: 0 0 8px; font-size: 16px; font-weight: 500;
}
.property-card__meta, .property-card__address {
    margin: 4px 0; font-size: 13px; color: #666;
}

/* ---------- Footer ---------- */
.public-footer {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 24px 0;
    margin-top: 48px;
    text-align: center;
    color: #888;
}

/* ---------- Estates listing ---------- */
.estates-page__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}
.estates-page__title {
    color: #0696ff;
    font-weight: 500;
    font-size: 32px;
    margin: 0 0 8px;
}
.estates-page__meta {
    color: #888;
    margin: 0 0 24px;
}
.estates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.property-card__body h3 a { color: #333; text-decoration: none; }
.property-card__body h3 a:hover { color: #0696ff; }
.property-card__ref { color: #aaa; font-size: 12px; margin-top: 6px; }
.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.pager__btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 16px;
    border-radius: 4px;
    color: #333;
}
.pager__btn:hover { background: #f5f5f5; text-decoration: none; }
.pager__current { font-weight: 500; }

/* ---------- Single property ---------- */
.property-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}
.property-page__head {
    margin-bottom: 24px;
}
.property-page__title {
    color: #333;
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 8px;
}
.property-page__address {
    color: #666;
    margin: 0;
}
.property-page__ref {
    color: #aaa;
    margin-left: 12px;
    font-size: 14px;
}
.property-gallery__hero {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.property-gallery__hero img {
    width: 100%;
    height: auto;
    display: block;
}
.property-gallery__strip {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}
.property-gallery__thumb {
    display: block;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
}
.property-gallery__thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.property-gallery__more {
    background: rgba(0,0,0,0.1);
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 100px;
}
.property-meta {
    margin: 24px 0;
}
.property-meta ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.property-meta li {
    background: #f5f5f5;
    padding: 8px 14px;
    border-radius: 4px;
}
.property-section {
    margin: 32px 0;
}
.property-section h2 {
    color: #0696ff;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 12px;
}
.property-section__body {
    line-height: 1.6;
}
.property-cta {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* ========== Estate detail view — full-width legacy-style gallery ========== */

/* Title bar — full-width banner */
.estate-titlebar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    pointer-events: none; /* let clicks pass through to slides except on buttons */
}
.estate-titlebar > * { pointer-events: auto; }
.estate-titlebar__inner {
    max-width: 100%;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.estate-titlebar__content {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.estate-title {
    margin: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.estate-score { display: flex; align-items: center; gap: 6px; }
.review-stars {
    width: 100px; height: 18px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 18"><g fill="%23ddd"><polygon points="10,1 12.6,7 19,7 14,11 15.6,17 10,13.5 4.4,17 6,11 1,7 7.4,7"/><polygon points="30,1 32.6,7 39,7 34,11 35.6,17 30,13.5 24.4,17 26,11 21,7 27.4,7"/><polygon points="50,1 52.6,7 59,7 54,11 55.6,17 50,13.5 44.4,17 46,11 41,7 47.4,7"/><polygon points="70,1 72.6,7 79,7 74,11 75.6,17 70,13.5 64.4,17 66,11 61,7 67.4,7"/><polygon points="90,1 92.6,7 99,7 94,11 95.6,17 90,13.5 84.4,17 86,11 81,7 87.4,7"/></g></svg>') no-repeat;
}
.review-stars .stars {
    height: 18px; background: #ffb400;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 18"><g><polygon points="10,1 12.6,7 19,7 14,11 15.6,17 10,13.5 4.4,17 6,11 1,7 7.4,7"/><polygon points="30,1 32.6,7 39,7 34,11 35.6,17 30,13.5 24.4,17 26,11 21,7 27.4,7"/><polygon points="50,1 52.6,7 59,7 54,11 55.6,17 50,13.5 44.4,17 46,11 41,7 47.4,7"/><polygon points="70,1 72.6,7 79,7 74,11 75.6,17 70,13.5 64.4,17 66,11 61,7 67.4,7"/><polygon points="90,1 92.6,7 99,7 94,11 95.6,17 90,13.5 84.4,17 86,11 81,7 87.4,7"/></g></svg>') no-repeat;
}
.votes { color: rgba(255,255,255,0.85); font-size: 13px; }
.verified-by-arendoo span {
    background: #0696ff; color: #fff;
    font-size: 11px; padding: 4px 8px; border-radius: 3px;
}
.estate-titlebar__actions {
    display: flex; gap: 8px; align-items: center; flex-shrink: 0;
}
.estate-titlebar__actions > span {
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
    display: inline-flex; align-items: center; gap: 6px;
    transition: background .15s;
    user-select: none;
}
.estate-titlebar__actions > span:hover { background: rgba(255,255,255,0.28); }
.btn-photo-gallery { font-weight: 500; }
.btn-wish-list { font-size: 16px; }
.btn-wish-list.on { color: #ff5470; }

/* ===== Full-width gallery cover ===== */
.section-gallery {
    position: relative; /* anchor for the translucent title bar overlay */
    background: #F0F1F2; /* legacy gallery container background */
    max-width: 1920px; /* legacy cap — don't span 4K screens */
    margin: 0 auto;
    overflow: hidden;
}
.gallery-cover {
    position: relative;
    width: 100%;
    background: #F0F1F2;
    overflow: hidden;
    /*
     * Legacy geometry (verified from main.css line 2143-2168):
     *   .swiper-main   flex: 0 1 62.5%
     *   .iw-container  flex: 0 1 37.5%
     *   .iw           border-left:2px solid #fff; border-bottom:2px solid #fff
     *   .swiper-slide  padding-top: 66.67% (3:2 aspect)
     *
     * Grid: 5fr main + 3fr thumbs = 8 units across. Container aspect 8:3.2
     * (62.5% × 2/3 = 41.67% height → 8/3.33 ≈ 12/5). Simpler: aspect 5/2.
     */
    display: grid;
    grid-template-columns: 62.5% 37.5%;
    aspect-ratio: 8 / 3.34; /* matches main 5:3.34 ≈ 3:2 */
    max-height: 720px;
}

/* Main swiper (left side) — fills its grid cell, 3:2 by construction */
.gc-swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}
.gc-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.gc-slide--active {
    opacity: 1;
    pointer-events: auto;
}
.gc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background .15s;
    z-index: 3;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
}
.gc-nav:hover { background: rgba(0,0,0,0.75); }
.gc-nav--prev { left: 16px; }
.gc-nav--next { right: 16px; }
.gc-pagination {
    position: absolute;
    bottom: 16px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 3;
}
.gc-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background .15s, transform .15s;
}
.gc-dot--active { background: #fff; transform: scale(1.3); }

/* Right-side thumb grid (legacy iw-container, 2 cols × 3 rows).
   2px white borders match legacy main.css line 2163. */
.gc-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2px;
    background: #fff;
    padding: 0;
    padding-left: 2px; /* gap between swiper column and first thumb column */
}
.gc-swiper {
    border-right: 2px solid #fff;
    box-sizing: border-box;
}
.gc-thumb {
    position: relative;
    border: none;
    background-color: #e5e5e5; /* legacy fallback before image loads */
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}
/* Inner image element so scale stays clipped by the outer thumb (matches
   legacy main.css line 2168: .iw .image { position: absolute; ... } and
   line 2176: .iw:hover .image { transform: scale(1.05) } ). */
.gc-thumb__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 1s ease-out;
}
.gc-thumb:hover .gc-thumb__image { transform: scale(1.05); }
.gc-thumb:hover { opacity: 0.85; }
.gc-thumb--empty { cursor: default; background-color: #1a1a1a; }
.gc-thumb__more {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.65);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 500;
}

/* ===== Page body below gallery ===== */
.estate-detail-view {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 120px;
}

/* Anchor tabs (sticky) */
.estate-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
    margin: 24px 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 5;
}
.estate-tabs a {
    padding: 14px 24px;
    color: #555;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.estate-tabs a:hover, .estate-tabs a.active {
    color: #0696ff;
    border-bottom-color: #0696ff;
    text-decoration: none;
}

.estate-section {
    padding: 32px 0;
    scroll-margin-top: 80px;
}
.estate-section h2 {
    color: #0696ff;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 16px;
}
.estate-section__body {
    line-height: 1.7;
    margin: 16px 0;
}
.estate-quick-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex; gap: 12px; flex-wrap: wrap;
}
.estate-quick-meta li {
    background: #f5f5f5;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 14px;
}
.estate-map-placeholder {
    background: #f5f5f5;
    color: #888;
    padding: 64px;
    text-align: center;
    border-radius: 8px;
}

/* Sticky price footer */
.estate-price-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #ffd54f;
    color: #333;
    padding: 12px 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 10;
}
.estate-price-footer__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.estate-price-footer__label {
    font-size: 14px;
    opacity: 0.85;
}
.estate-price-footer__value {
    font-size: 24px;
    font-weight: 600;
    color: #d84315;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .gallery-cover {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        aspect-ratio: auto;
        max-height: none;
    }
    .gc-swiper { aspect-ratio: 3 / 2; }
    .gc-thumbs {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 1fr;
        height: 80px;
        gap: 2px;
        padding: 2px;
    }
    .gc-thumb { height: 80px; }
    .estate-title { font-size: 16px; padding: 6px 12px; }
    .estate-titlebar__inner { padding: 10px 16px; }
}

/* ===== Owner business card (mirrors legacy box-1/box-2/box-3 structure) ===== */
.owner-business-card {
    max-width: 760px;
    margin: 0 auto;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow .2s ease, transform .2s ease;
}
.owner-business-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.owner-card__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 16px;
}
.owner-card__person {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.owner-card__avatar {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    flex-shrink: 0;
}
.owner-card__avatar--placeholder {
    background: #ccc url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><circle cx="12" cy="8" r="4"/><path d="M3 22c0-5 4-9 9-9s9 4 9 9"/></svg>') center / 50% no-repeat;
}
.owner-card__identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.owner-card__name {
    color: #444;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}
.owner-card__trusted {
    color: #0696ff;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}
.owner-card__trusted-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.owner-card__see-more {
    color: #0696ff;
    font-size: 13px;
    text-decoration: underline;
    align-self: flex-start;
    margin-top: 2px;
}
.owner-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
}
.owner-card__stat {
    padding: 0 12px;
    position: relative;
}
.owner-card__stat + .owner-card__stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: #d8d8d8;
}
.owner-card__stat-label {
    color: #666;
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.3;
}
.owner-card__stat-value {
    color: #0696ff;
    font-size: 18px;
    font-weight: 600;
}
.owner-card__cta {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}
.owner-card__cta .btn { padding: 10px 24px; }

/* Tighten the section header for the owner block */
#EstateOwner.estate-section { padding: 16px 0; }
#EstateOwner.estate-section h2 { margin-bottom: 12px; }

@media (max-width: 720px) {
    .owner-card__main {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .owner-card__stats { gap: 8px; }
    .owner-card__stat-value { font-size: 16px; }
}

/* ===== 2-column layout: main content + sticky booking sidebar ===== */
.estate-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
    margin-top: 16px;
}
.estate-layout__main { min-width: 0; }
.estate-layout__sidebar {
    position: sticky;
    top: 80px; /* below the sticky .estate-tabs nav (~60px) + breathing room */
    align-self: start;
}

@media (max-width: 1024px) {
    .estate-layout { grid-template-columns: 1fr; }
    .estate-layout__sidebar { position: static; display: none; }
    /* mobile sticky bottom footer takes over instead */
}

/* ===== Booking widget ===== */
.booking-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
/* Yellow price strip — compact horizontal (label LEFT, price RIGHT) like legacy */
.booking-widget__header {
    background: #ffd54f;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
}
.booking-widget__label {
    color: #5d4400;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.booking-widget__price {
    color: #d84315;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    white-space: nowrap;
}
.booking-widget__currency { font-size: 18px; font-weight: 600; }
.booking-widget__price-empty {
    color: #5d4400;
    font-size: 14px;
    font-weight: 500;
}

/* Form */
.booking-widget__form {
    padding: 14px;
    font-size: 14px;
}
.booking-widget__row { margin-bottom: 8px; }
.booking-widget__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.booking-widget__field {
    position: relative;
    display: block;
    margin-bottom: 8px;
}
.booking-widget__field-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    align-items: center;
}
.booking-widget__field input,
.booking-widget__field select {
    width: 100%;
    padding: 9px 12px 9px 34px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.3;
    color: #333;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
}
.booking-widget__field input:focus,
.booking-widget__field select:focus {
    outline: none;
    border-color: #0696ff;
    box-shadow: 0 0 0 3px rgba(6, 150, 255, 0.12);
}
.booking-widget__submit {
    width: 100%;
    background: #0696ff;
    color: #fff;
    border: none;
    padding: 11px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: background .15s, transform .1s;
}
.booking-widget__submit:hover { background: #057ad6; }
.booking-widget__submit:active { transform: translateY(1px); }
.booking-widget__footer {
    padding: 8px 14px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}
.booking-widget__footer small {
    color: #666;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Hide bottom price footer on desktop (sidebar replaces it) */
@media (min-width: 1025px) {
    .estate-price-footer--mobile { display: none; }
}
@media (max-width: 1024px) {
    .estate-detail-view { padding-bottom: 100px; } /* room for mobile footer */
}
