:root{
    --header-h: 88px;
    --chip-h: 56px;
    --sidebar-w: 72px;
    --sidebar-margin-left: 0px;
    --content-padding: 1rem;
    --house-card-w: 192px;
    --house-card-h: 225px;
    --house-card-image-h: 112px;
    --houses-gap: 1.45rem;
    --houses-side-padding: clamp(1.5rem, 1.5vw, 4.25rem);
    --houses-grid-max-w: calc(5 * var(--house-card-w) + 4 * var(--houses-gap));
}
html {
  font-size: 62.5%; /* 62.5% of 16px = 10px */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.2rem;
  }
  

body{
    margin: 0;
    padding: 0;
    background-color: #FAEBD7;
    font-family: Arial, sans-serif;
    overflow-x: clip;
}


header{
    display: flex;
    position:fixed;
    z-index: 200;
    top: 0;
    right: 0;
    left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.5rem;
    height: var(--header-h);
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

header.site-header--no-search .right-section {
    margin-left: auto;
}
.left-section{
    display: flex;
    align-items: center;
    padding: 5px 0;
    gap: 0.5rem;
    min-width: 0;
}
.right-section li{
  
}
.logo{
    font-size: 2.75rem;
    margin: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.content{
    padding-top: 0;
    padding-left: calc(var(--sidebar-w) + 25px);
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: var(--header-h);
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.home-main-column {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hamberger-menu{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 28px;
    height: 28px;
    padding: 5px;
    border: none;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.hamberger-menu:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hamberger-menu__bar {
    display: block;
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    background: #333;
}

.mobile-nav-backdrop {
    display: none;
}

/* Hidden checkbox for optional CSS-only toggle if you use it in HTML */
.nav-toggle{display:none;} 
.middle-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  max-width: 520px;
  margin: 0 auto;
}
.middle-section form {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f5f5f5;
  border-radius: 26px;
  padding: 5px 7px 5px 17px;
  transition: background 0.2s, box-shadow 0.2s;
}
.middle-section form:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px orange;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.site-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.search-bar {
  flex: 1;
  height: 36px;
  padding: 0;
  max-width: 100%;
  font-size: 1rem;
  border: none;
  background: transparent;
  outline: none;
}
.search-bar::placeholder{
    font-size: 1rem;
    color: #999;
}
.middle-section-2{
    margin-top: 200px;
    display: flex;
    align-items: center;
    gap: 1rem;
    display: none;
}
.search-bar:focus{
    outline: none;
}   
.search-button{
    width: 36px;
    height: 36px;
    border: none;
    background: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.search-button:hover{
    background: #e68a00;
}
.search-icon{
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
.right-section{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

header ul{
    display: flex;
    gap: 1rem;
    align-items: center;
    font-weight: 500;
    list-style: none;
    margin: 0;
    padding: 0;
} 
.logo {
    color: inherit;
}

.logo-part--dark {
    color: #111;
    font-size: 1.6rem;
}

.logo-part--accent {
    color: orange;
    font-size: 1.6rem;
}
li a{
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    list-style: none;
}
li a:hover{
    color: orange;
}

.connect {
    background-color: orange;
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
}
.connect:hover {
    background-color: #e68a00;
}

.header-user-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s;
}
.header-user-link:hover {
    background: #f5f5f5;
}

.header-user-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.header-agency-link {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}
.header-agency-link.is-active {
    border-color: orange;
    color: orange;
    background: #fff8f0;
    pointer-events: none;
}
.header-agency-link--cta {
    background-color: orange;
    border-color: orange;
    color: #fff;
}
.header-agency-link--cta:hover {
    background-color: #e68a00;
    border-color: #e68a00;
    color: #fff;
}
.header-logout-form {
    margin: 0;
    display: flex;
    align-items: center;
}
.header-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.header-logout-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.header-logout-btn:hover {
    border-color: #e57373;
    background: #fff5f5;
    color: #c62828;
}
.sidebar{
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0;
    flex-direction: column;
    width: var(--sidebar-w);
    flex-shrink: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    overflow-x: hidden;
    background-color: transparent;
    align-self: flex-start;
    padding: 2px 4px 0;
    z-index: 170;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.22) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
    height: 0;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 4px;
}



.sidebar-link{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    background-color: white;
    margin: 4px 0;
    font-size: 1.8rem;
    height: 74px;
    text-decoration: none;
    color: inherit;
    overflow: visible;
    z-index: 1;
    box-sizing: border-box;
}

.sidebar-link:has(.types-options.is-hover-open),
.sidebar-link:has(.types-options.is-open),
.sidebar-link:has(.localisation-options.is-hover-open),
.sidebar-link:has(.localisation-options.is-open) {
    z-index: 180;
}
.sidebar-link img{
    height: 24px;
    width: auto;
    max-width: 24px;
    object-fit: contain;
}
.sidebar-link p{
   font-size: 10px;
   text-align: center;
   line-height: 1.15;
   max-width: 100%;
   padding-inline: 2px;
   overflow-wrap: anywhere;
   word-break: break-word;
}
.types-options{
    display: none;
    position: absolute;
    top: 50%;
    width: fit-content;
    left: 100%;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 180;
}
.types-options::before{
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 14px;
    height: 100%;
}
.types-options p,
.types-options a{
    display: block;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    margin: 0;
}
.types-options p:hover,
.types-options a:hover{
    background-color: #e1e1e1;
}
.types-options.is-hover-open,
.types-options.is-open{
    display: block;
}

.sidebar-menu-search-wrap {
    padding: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 2;
}

.sidebar-menu-search {
    display: block;
    width: 100%;
    min-width: 148px;
    box-sizing: border-box;
    padding: 7px 10px;
    font-size: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    outline: none;
}

.sidebar-menu-search:focus {
    border-color: #f57c00;
    box-shadow: 0 0 0 2px rgba(245, 124, 0, 0.15);
}

.types-options .sidebar-menu-list {
    max-height: min(60vh, 420px);
    overflow-y: auto;
}

/* Commune quartiers fly out to the side — do not clip inside the scroll area */
.localisation-options .sidebar-menu-list {
    max-height: none;
    overflow: visible;
}

.localisation-options {
    overflow: visible;
}

.sidebar-menu-item {
    display: block;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    margin: 0;
}

.sidebar-menu-item:hover,
.types-options p:hover,
.types-options a:hover {
    background-color: #e1e1e1;
}

.sidebar-menu-item.is-active,
.types-options a.is-active {
    background-color: #e8f0fe;
    font-weight: 600;
}

.is-filter-hidden {
    display: none !important;
}

.localisation-options{
    display: none;
    position: absolute;
    top: -50%;
    left: 100%;
    background-color: white;
    width: fit-content;
    min-width: 120px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 180;
}
.localisation-options::before{
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 14px;
    height: 100%;
}
.localisation-options p,
.localisation-options a,
.localisation-options .city-label{
    display: block;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    margin: 0;
}
.localisation-options p:hover,
.localisation-options a:hover{
    background-color: #e1e1e1;
}
.localisation-options.is-hover-open,
.localisation-options.is-open{
    display: block;
}

.city-1-option,
.commune-option{
    position: relative;
    overflow: visible;
}

.commune-option-row {
    display: flex;
    align-items: stretch;
}

.commune-option-row .commune-label {
    flex: 1;
    min-width: 0;
}

.commune-expand-btn {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 28px;
    padding: 0;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    background: #fafafa;
    color: #555;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease;
}

.commune-expand-btn:hover,
.commune-expand-btn.is-open {
    background: #f0f0f0;
    color: orange;
}
.conakry-location-options,
.commune-quartier-options{
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: fit-content;
    min-width: 120px;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 181;
}
.conakry-location-options::before,
.commune-quartier-options::before{
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 14px;
    height: 100%;
}
.conakry-location-options a,
.commune-quartier-options a{
    display: block;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    margin: 0;
}
.conakry-location-options a:hover,
.commune-quartier-options a:hover,
.commune-label:hover{
    background-color: #e1e1e1;
}
.commune-label{
    display: block;
    padding: 8px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    margin: 0;
}
.commune-label.is-active,
.commune-quartier-options a.is-active{
    background-color: #e8f0fe;
    font-weight: 600;
}
.city-1-option.is-hover-open .conakry-location-options,
.conakry-location-options.is-hover-open,
.commune-option.is-hover-open .commune-quartier-options,
.commune-quartier-options.is-hover-open{
    display: block;
}

.chip-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: var(--header-h);
    left: calc(var(--sidebar-w) + 1rem);
    right: 0;
    height: var(--chip-h);
    background-color: #FAEBD7;
    z-index: 150;
    padding-right: 1rem;
    gap: 4px;
}

.chip-container {
    display: flex;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.chip-container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.chip {
margin: 12px 6px;
background-color: white;
padding: 6px 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
white-space: nowrap;
border-radius: 16px;
cursor: pointer;
color: black;
flex-shrink: 0;
}

a.chip {
    text-decoration: none;
    display: inline-block;
}
  
  .chip:hover {
    background-color: #e1e1e1;
  }

  a.chip:hover {
    color: black;
  }
  
  .chip-selected {
    background-color: orange;
    color: white;
  }

  a.chip.chip-selected:hover {
    color: white;
  }

.chip-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.chip-filter:hover {
    background-color: #e1e1e1;
}

.chip-filter.chip-selected {
    background-color: orange;
    color: white;
}

.chip-filter.chip-selected:hover {
    background-color: orange;
}

.chip-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 6px 12px;
    border: none;
    border-radius: 16px;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.chip-filter-caret {
    font-size: 0.85em;
    line-height: 1;
    opacity: 0.85;
}

.chip-filter-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 300px;
    max-width: min(340px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    padding: 0;
    z-index: 300;
    overflow: hidden;
}

.chip-price-slider-panel {
    padding: 14px 14px 12px;
    border-bottom: 1px solid #f0ebe3;
}

.chip-price-slider-title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
}

.chip-price-slider-values {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: orange;
}

.chip-price-slider-sep {
    color: #999;
    font-weight: 400;
}

.chip-price-slider {
    position: relative;
    height: 28px;
    margin: 4px 2px 10px;
}

.chip-price-slider-track,
.chip-price-slider-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 999px;
}

.chip-price-slider-track {
    left: 0;
    right: 0;
    background: #e8e4de;
}

.chip-price-slider-range {
    background: orange;
    left: 0;
    width: 0;
}

.chip-price-slider-input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.chip-price-slider-input::-webkit-slider-runnable-track {
    height: 6px;
    background: transparent;
}

.chip-price-slider-input::-moz-range-track {
    height: 6px;
    background: transparent;
}

.chip-price-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid orange;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    cursor: grab;
    pointer-events: auto;
    margin-top: -6px;
}

.chip-price-slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid orange;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    cursor: grab;
    pointer-events: auto;
}

.chip-price-slider-input--max {
    z-index: 2;
}

.chip-price-slider-input--min {
    z-index: 3;
}

.chip-price-slider-actions {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.chip-price-slider-reset,
.chip-price-slider-apply {
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 1.1rem;
    cursor: pointer;
}

.chip-price-slider-reset {
    background: #f5f0e8;
    color: #555;
}

.chip-price-slider-apply {
    background: orange;
    color: #fff;
    font-weight: 600;
    margin-left: auto;
}

.chip-price-slider-reset:hover {
    background: #ebe4d8;
}

.chip-price-slider-apply:hover {
    background: #e08a00;
}

.chip-filter-presets {
    padding: 8px;
    max-height: 180px;
    overflow-y: auto;
}

.chip-filter-presets-label {
    margin: 0 4px 4px;
    font-size: 0.95rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.chip-filter-option {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #222;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
}

.chip-filter-option:hover {
    background: #f5f0e8;
}

.chip-filter-option.is-active {
    background: #fff3e0;
    color: #c45f00;
    font-weight: 600;
}
  
  .nav-arrow {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
  }
  
  .left-arrow {
    margin-right: 5px;
  }
  
  .right-arrow {
    margin-left: 5px;
  }
  
  .chip-container-content {
    padding: 20px;
  }
  
.chipp-container{
    display: flex;
    position: fixed;
    top: 60px;
    left: 100px;
    right: 0;
    background-color: #FAEBD7;
}
.chipp-container div p{
    margin: 12px 6px;
    background-color: white;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    border-radius: 16px;
    cursor: pointer;
    color: black;
}


.search-correction-banner {
    max-width: calc(100% - var(--houses-side-padding));
    margin: calc(var(--chip-h) + 12px) auto 0;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff8ef;
    border: 1px solid rgba(255, 140, 0, 0.35);
    color: #333;
    font-size: 0.92rem;
    line-height: 1.45;
    box-sizing: border-box;
}

.search-correction-banner__main {
    margin: 0;
}

.search-correction-banner__main strong {
    color: #c45a00;
    font-weight: 600;
}

.search-correction-banner__details {
    margin: 8px 0 0;
    padding-left: 1.1rem;
    list-style: disc;
}

.search-correction-banner__details li {
    margin: 2px 0;
}

.search-correction-banner__from {
    color: #888;
    text-decoration: line-through;
}

.search-correction-banner__to {
    color: #c45a00;
    font-weight: 600;
}

.search-correction-banner__note {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: #666;
}

.search-correction-banner + .houses-carts-container {
    margin-top: 12px;
}

.home-pagination {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc(100% - var(--houses-side-padding));
    margin: 20px auto 28px;
    padding-inline: var(--houses-side-padding);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-pagination__summary {
    margin: 0;
    font-size: 0.92rem;
    color: #555;
    font-weight: 500;
}

.home-pagination__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
}

.home-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.home-pagination__link:hover {
    border-color: orange;
    color: #c45f00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.home-pagination__link--disabled {
    opacity: 0.45;
    pointer-events: none;
    box-shadow: none;
}

.home-pagination__info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    padding-inline: 4px;
}

#home-results-root {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

#home-results-content {
    overflow: visible;
}

#home-results-root.is-loading {
    pointer-events: none;
}

.home-results-skeleton {
    display: none;
}

#home-results-root.is-loading .home-results-skeleton {
    display: block;
}

#home-results-root.is-loading #home-results-content {
    display: none;
}

.houses-carts-container--skeleton {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: var(--houses-side-padding);
    margin-top: calc(var(--chip-h) + 8px);
}

@media (max-width: 710px) {
    .houses-carts-container--skeleton {
        margin-top: 60px;
        padding-inline: 0.5rem;
    }
}

.houses-carts-container{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, var(--house-card-w)));
    gap: var(--houses-gap);
    flex: 1 1 auto;
    min-width: 0;
    width: fit-content;
    max-width: min(calc(100% - var(--houses-side-padding)), var(--houses-grid-max-w));
    margin-top: calc(var(--chip-h) + 8px);
    margin-inline: auto;
    padding-inline: var(--houses-side-padding);
    box-sizing: border-box;
    grid-auto-rows: auto;
    justify-content: center;
    align-items: start;
    overflow: visible;
}

.house-cart {
    width: 100%;
    max-width: var(--house-card-w);
    min-width: 0;
    justify-self: center;
    border-radius: 8px;
    background-color: white;
    overflow: visible;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    height: var(--house-card-h);
    position: relative;
    z-index: 0;
}

.house-cart:hover,
.house-cart:focus-within {
    z-index: 2;
}

.no-properties {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.4rem;
    color: #555;
}

.hh-empty-results {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem 3rem;
    min-height: 280px;
}

.hh-empty-results__box {
    width: min(100%, 520px);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    animation: hh-empty-results-in 0.45s ease both;
}

@keyframes hh-empty-results-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hh-empty-results__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.12);
    color: #c94f03;
}

.hh-empty-results__icon svg {
    width: 28px;
    height: 28px;
}

.hh-empty-results__title {
    margin: 0 0 0.65rem;
    font-size: 1.25rem;
    color: #222;
}

.hh-empty-results__text {
    margin: 0;
    line-height: 1.55;
    color: #666;
    font-size: 0.98rem;
}

.hh-empty-results__action {
    display: inline-block;
    margin-top: 1.15rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: #ff8c00;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hh-empty-results__action:hover {
    background: #e67e00;
    transform: translateY(-1px);
}

.no-properties a {
    display: inline-block;
    margin-top: 0.75rem;
    color: orange;
    font-weight: 600;
}
.main-search-div {
    display: none;
}
#search-input {
    width: 84%;
    border-radius: 25px;
    padding: 10px 14px;
    font-size: 1.5rem;
    margin: auto;
    background-color: white;
    border: 1px solid #ccc;
    transition: width 0.3s ease, opacity 0.3s ease;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.property-type-paragraph{
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
}
.main-search-div.hidden {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
}
@media (min-width: 2400px) {
    .houses-carts-container {
        grid-template-columns: repeat(10, minmax(0, var(--house-card-w)));
    }
}
@media (min-width: 1900px) {
    .houses-carts-container {
        grid-template-columns: repeat(8, minmax(0, var(--house-card-w)));
    }
}
@media (min-width: 1525px) {
    .houses-carts-container {
        grid-template-columns: repeat(6, minmax(0, var(--house-card-w)));
    }
}

@media (max-width: 1125px) {
    .houses-carts-container {
        grid-template-columns: repeat(4, minmax(0, var(--house-card-w)));
    }
}

@media (max-width: 920px) {
    .houses-carts-container {
        grid-template-columns: repeat(3, minmax(0, var(--house-card-w)));
        width: fit-content;
        max-width: calc(100% - var(--houses-side-padding));
    }
    .left-section{
        margin-right: 20px;
    }
}

@media (max-width: 710px) {

    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    body.mobile-nav-open {
        overflow-x: hidden;
    }

    .mobile-nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 155;
        margin: 0;
        padding: 0;
        border: none;
        background: rgba(0, 0, 0, 0.45);
        cursor: default;
        -webkit-tap-highlight-color: transparent;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
    }

    body.mobile-nav-open .mobile-nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-nav-open .home-main-column {
        pointer-events: none;
        user-select: none;
    }

    header {
        padding: 0 0.75rem;
        height: 72px;
    }

    :root {
        --header-h: 72px;
    }

    .hamberger-menu {
        display: inline-flex;
        flex-shrink: 0;
    }

    .left-section {
        flex: 1;
        min-width: 0;
        gap: 0.55rem;
        margin-right: 0.5rem;
    }

    .logo-link {
        flex: 1;
        overflow: hidden;
        gap: 0.35rem;
    }

    header ul {
        gap: 0.55rem;
    }

    .header-agency-link {
        padding: 8px 14px;
        font-size: 0.92rem;
        border-radius: 18px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    .connect {
        padding: 7px 14px;
        font-size: 0.85rem;
        font-weight: 600;
        border-radius: 16px;
        line-height: 1.2;
        min-height: 34px;
    }

    .header-logout-btn {
        padding: 8px 12px;
        font-size: 0.92rem;
        border-radius: 18px;
        gap: 6px;
        min-height: 36px;
    }

    .header-logout-btn span {
        display: none;
    }

    .header-logout-btn svg {
        width: 20px;
        height: 20px;
    }

    .header-user-link {
        padding: 4px;
    }

    .header-user-icon {
        width: 28px;
        height: 28px;
    }

    .logo {
        font-size: 1.12rem;
        font-weight: 700;
        letter-spacing: -0.2px;
        line-height: 1.12;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo-part--dark,
    .logo-part--accent,
    .site-brand__part--dark,
    .site-brand__part--accent {
        font-size: 1.12rem;
    }

    .site-logo {
        width: 44px;
        height: 44px;
    }

    .middle-section{
        display: none;
    }

    .main-search-div {
        display: flex;
        position: fixed;
        top: calc(var(--header-h) + var(--chip-h) - 12px);
        left: 0;
        right: 0;
        z-index: 140;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 54px;
        padding: 11px 0;
        background-color: transparent;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .content{
        padding-top: 42px;
        padding-left: 0;
        display: flex;
        position: relative;
        justify-content: flex-start;
        margin-top: var(--header-h);
        flex-direction: row;
        overflow-x: hidden;
        max-width: 100%;
    }

    .home-main-column {
        width: 100%;
    }
    

    .houses-carts-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        width: 100%;
        max-width: min(100%, 520px);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
        margin-top: 60px;
        flex: none;
    }

    .house-cart {
        max-width: none;
    }

    .chip-nav-container {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        padding-inline: 0.4rem;
        box-sizing: border-box;
    }

    .sidebar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: calc(var(--header-h) + var(--chip-h));
        left: calc(-1 * var(--sidebar-w) - 12px);
        width: 72px;
        max-height: calc(100vh - var(--header-h) - var(--chip-h));
        overflow-y: auto;
        overflow-x: hidden;
        background-color: white;
        z-index: 160;
        padding: 6px 4px 12px;
        box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.12);
        margin: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        will-change: left, opacity;
        transition:
            left 0.36s cubic-bezier(0.32, 0.72, 0, 1),
            opacity 0.28s ease,
            visibility 0.36s;
    }

    .sidebar.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    @media (min-width: 580px) {
        .sidebar.active {
            left: var(--sidebar-margin-left);
        }
    }

    .sidebar .sidebar-link {
        opacity: 0;
        transition: opacity 0.28s ease;
    }

    .sidebar.active .sidebar-link {
        opacity: 1;
    }

    .sidebar.active .sidebar-link:nth-child(1) { transition-delay: 0.04s; }
    .sidebar.active .sidebar-link:nth-child(2) { transition-delay: 0.08s; }
    .sidebar.active .sidebar-link:nth-child(3) { transition-delay: 0.12s; }
    .sidebar.active .sidebar-link:nth-child(4) { transition-delay: 0.16s; }
    .sidebar.active .sidebar-link:nth-child(5) { transition-delay: 0.2s; }

    .sidebar:not(.active) .sidebar-link {
        transition-delay: 0s;
    }

    .sidebar.active .sidebar-link {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 74px;
        margin: 4px 0;
        background-color: white;
        position: relative;
        overflow: hidden;
    }
 
    .sidebar.active .types-options,
    .sidebar.active .localisation-options {
        display: none;
        position: fixed;
        width: auto;
        min-width: 180px;
        max-width: min(280px, calc(100vw - 88px));
        max-height: 70vh;
        overflow: hidden;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 6px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        z-index: 400;
        box-sizing: border-box;
    }

    .sidebar.active .types-options .sidebar-menu-list {
        max-height: calc(70vh - 52px);
        overflow-y: auto;
    }

    .sidebar.active .localisation-options .sidebar-menu-list {
        max-height: calc(70vh - 52px);
        overflow-y: auto;
        overflow-x: visible;
    }

    .sidebar.active .commune-quartier-options {
        display: none;
        position: fixed;
        z-index: 450;
        min-width: 132px;
        max-width: min(200px, calc(100vw - 96px));
        max-height: 60vh;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 6px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        box-sizing: border-box;
    }

    .sidebar.active .commune-quartier-options.is-hover-open,
    .sidebar.active .commune-option.is-submenu-open .commune-quartier-options {
        display: block;
    }

    .sidebar.active .commune-quartier-options::before {
        content: "";
        position: absolute;
        top: 0;
        right: 100%;
        width: 18px;
        height: 100%;
    }

    .sidebar.active .commune-expand-btn {
        width: 36px;
        font-size: 1.15rem;
    }

    .sidebar.active .commune-expand-btn.is-open {
        color: orange;
    }

    .sidebar.active .types-options.is-open,
    .sidebar.active .localisation-options.is-open {
        display: block;
    }

    .sidebar.active .types-options.is-hover-open,
    .sidebar.active .localisation-options.is-hover-open {
        display: none;
    }

    body.mobile-nav-open .main-search-div {
        top: calc(var(--header-h) + var(--chip-h) - 12px);
    }

    @media (prefers-reduced-motion: reduce) {
        .mobile-nav-backdrop,
        .sidebar,
        .sidebar .sidebar-link {
            transition: none !important;
        }

        .sidebar.active .sidebar-link {
            transition-delay: 0s !important;
        }
    }

}

@media (min-width: 580px) {
    :root {
        --sidebar-margin-left: 12px;
    }
}

@media (min-width: 711px) {
    .sidebar {
        left: var(--sidebar-margin-left);
    }

    .content {
        padding-left: calc(var(--sidebar-w) + var(--sidebar-margin-left) + 25px);
    }

    .chip-nav-container {
        left: calc(var(--sidebar-w) + var(--sidebar-margin-left) + 1rem);
    }

    .types-options.is-hover-open,
    .types-options.is-open,
    .localisation-options.is-hover-open,
    .localisation-options.is-open {
        position: fixed;
        top: auto;
        left: auto;
        width: auto;
        min-width: 180px;
        max-width: min(280px, calc(100vw - 88px));
        max-height: 70vh;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 6px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        z-index: 400;
        box-sizing: border-box;
    }

    .types-options.is-hover-open::before,
    .types-options.is-open::before,
    .localisation-options.is-hover-open::before,
    .localisation-options.is-open::before {
        display: none;
    }

    .types-options.is-hover-open .sidebar-menu-list,
    .types-options.is-open .sidebar-menu-list,
    .localisation-options.is-hover-open .sidebar-menu-list,
    .localisation-options.is-open .sidebar-menu-list {
        max-height: calc(70vh - 52px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .commune-quartier-options {
        display: none;
        position: fixed;
    }

    .commune-quartier-options.is-hover-open,
    .commune-option.is-submenu-open .commune-quartier-options {
        display: block;
        position: fixed;
        top: auto;
        left: auto;
        min-width: 140px;
        max-width: min(240px, calc(100vw - 88px));
        max-height: 70vh;
        overflow-y: auto;
        overflow-x: hidden;
        background-color: white;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 6px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        z-index: 450;
        box-sizing: border-box;
    }

    .commune-quartier-options.is-hover-open::before,
    .commune-option.is-submenu-open .commune-quartier-options::before {
        display: none;
    }
}

/* Tablet-narrow: three cards across, full body width */
@media (min-width: 580px) and (max-width: 710px) {
    .content {
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
    }

    .search-correction-banner {
        max-width: calc(100% - 0.8rem);
        margin-inline: 0.4rem;
    }

    .houses-carts-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        max-width: min(100%, 640px);
        margin-inline: auto;        gap: 0.45rem;
        justify-content: stretch;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .house-cart {
        max-width: none;
        width: 100%;
        justify-self: stretch;
        height: auto;
        min-height: 200px;
    }

    .house-cart-image {
        height: clamp(72px, 22vw, 100px);
    }

    /* ── Card typography (mobile) ──
       Title bold, price semi-bold, location regular — clear hierarchy. */
    .property-type-paragraph {
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.25;
    }

    .rent-price-paragraph {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .place-paragraph {
        font-size: 0.85rem;
        font-weight: 400;
        line-height: 1.3;
        color: #555;
    }

    .sofa-icon-quantity,
    .bed-icon-quantity,
    .shower-icon-quantity {
        font-size: 0.82rem;
        font-weight: 600;
    }

    .icons-div {
        gap: 4px;
        min-height: 22px;
        margin-top: 3px;
    }

    .sofa-icon,
    .bed-icon,
    .shower-icon {
        width: 15px;
        height: 15px;
        max-width: 15px;
        max-height: 15px;
    }

    .see-more-button {
        font-size: 0.88rem;
        font-weight: 600;
        padding: 4px 12px;
    }
}

@media (min-width: 520px) and (max-width: 710px) {
    .acceuil-link, .publier-link{
        display: none;

    }
    .right-section{
        display: flex;
        width: auto;
        max-width: none;
        flex-shrink: 0;
        margin-right: 4px;
    }
    .right-section ul{
        gap: 0.4rem;
    }
    .connect {
        width: auto;
        min-width: 0;
        padding: 7px 13px;
        font-size: 0.85rem;
        font-weight: 600;
        height: auto;
        white-space: nowrap;
        min-height: 32px;
    }
    .header-agency-link {
        padding: 7px 13px;
        font-size: 0.88rem;
        min-height: 34px;
    }
    .header-logout-btn {
        padding: 7px 10px;
        min-height: 34px;
    }
    .header-logout-btn svg {
        width: 19px;
        height: 19px;
    }
    .header-user-icon {
        width: 26px;
        height: 26px;
        max-width: 26px;
        max-height: 26px;
    }
    .chip-nav-container {
        left: 0;
        right: 0;
    }
    .search-bar {
        max-width: 100%;
        height: 18px;
        font-size: small;
    }
    .left-section{
        flex: 1;
        width: auto;
        justify-content: flex-start;
        align-items: center;
        gap: 6px;
        margin-right: 6px;
        min-width: 0;
    }

    .hamberger-menu {
        width: 26px;
        height: 26px;
        padding: 4px;
        gap: 3px;
    }

    .logo,
    .logo-part--dark,
    .logo-part--accent,
    .site-brand__part--dark,
    .site-brand__part--accent {
        font-size: 1.15rem;
        font-weight: 700;
    }

    .site-logo {
        width: 44px;
        height: 44px;
    }

    .houses-carts-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 1rem;
        width: 100%;
        max-width: min(100%, 480px);
        margin-left: auto;
        margin-right: auto;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}


@media (max-width: 400px) {
    .houses-carts-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }
}
@media (max-width: 362px) {
    
    .houses-carts-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .see-more-button{
        margin-bottom: 2px;
    }
    .house-cart{
       height: fit-content;
    }
     .house-cart-image{
        height: 96px;
    }
    .see-more-button {
        font-size: 0.88rem;
        padding: 4px 12px;
    }
}
@media (max-width: 280px) {
    
    .houses-carts-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0.4rem;
        padding-right: 0.4rem;
        justify-content: stretch;
    }
     .house-cart{
       height: 252px;
    }
     .house-cart-image{
        height: 96px;
    }
    .see-more-button {
        font-size: 0.88rem;
        padding: 4px 12px;
    }
}

.house-cart-link {
    display: block;
    color: inherit;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.house-cart-link:hover,
.house-cart-link:focus,
.house-cart-link:visited,
.house-cart-link:active {
    color: inherit;
    text-decoration: none;
}

.house-cart-link .cart-house-info,
.house-cart-link .cart-house-info p,
.house-cart-link .property-type-paragraph,
.house-cart-link .place-paragraph,
.house-cart-link .rent-price-paragraph {
    color: #1a1a1a;
}

.house-cart-media {
    position: relative;
    overflow: visible;
    border-radius: 8px 8px 0 0;
}

.cart-house-info {
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.house-cart-ellipsis {
    position: relative;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.house-cart-ellipsis__label {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    cursor: default;
}

.house-cart-ellipsis__label .price-with-unit {
    display: inline;
    max-width: 100%;
}

.house-cart-ellipsis__label .price-with-unit--sd {
    white-space: inherit;
}

.house-cart-tooltip {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    max-width: min(18rem, calc(100vw - 1rem));
    padding: 6px 10px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    border: 1px solid #dcc9b0;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    white-space: normal;
    word-wrap: break-word;
    z-index: 500;
    pointer-events: none;
}

.house-cart-tooltip.is-visible {
    display: block;
}

.property-type-paragraph--center.house-cart-ellipsis .house-cart-ellipsis__label {
    text-align: center;
}

.house-cart-freshness {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.house-cart-freshness--nouveau {
    background-color: #22c55e;
}

.house-cart-freshness--aujourdhui {
    background-color: #2563eb;
}

.house-cart-freshness--semaine {
    background-color: orange;
}

.house-cart-post-date {
    margin: 2px 0 0 10px;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.house-cart-image{
    width: 100%;
    height: var(--house-card-image-h);
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
}
.cart-house-info p{
    font-size: 1.1rem;
    font-weight: bold;
}

.house-cart .cart-house-info p.house-cart-post-date,
.house-cart-link .cart-house-info p.house-cart-post-date {
    font-size: 9px;
    font-weight: 400;
    color: #9ca3af;
}

.house-cart .property-type-paragraph--center {
    text-align: center;
}
.property-type-div{
    height: auto;
    margin-left: 5px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding-right: 8px;
}
.property-type-paragraph{
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2;
    max-width: 100%;
}
.icons-div{
    margin-top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-height: 24px;
    padding: 0 4px;
}
.sofa-icon-div,.bed-icon-div,.shower-icon-div{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    flex: 0 0 auto;
}
.sofa-icon,
.bed-icon,
.shower-icon{
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}
.house-cart.terrain .shower-icon,
.house-cart .sofa-icon[src*="building"],
.house-cart .sofa-icon[src*="plans"],
.house-cart .bed-icon[src*="dimensions"],
.house-cart .bed-icon[src*="dimension"],
.house-cart .shower-icon[src*="contract"]{
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
}
.sofa-icon-quantity,
.bed-icon-quantity,
.shower-icon-quantity{
    margin: 0;
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.1;
    white-space: nowrap;
}
.sofa-icon-quantity .unit,
.bed-icon-quantity .unit,
.shower-icon-quantity .unit{
    font-size: 0.82rem;
    font-weight: 600;
}
.place-paragraph-div{
    margin-top: 4px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding-right: 8px;
}

.place-paragraph{
    margin-left: 10px;
    margin-right: 0;
    max-width: calc(100% - 10px);
}
.see-more-button-div{
    margin-top: 12px;
    display: flex;
    justify-content: center;
}
.see-more-button{
    background-color: orange;
    color: white;
    font-size: 0.95rem;
    padding: 3px 14px;
    margin-top: 0;
    margin-bottom: 2px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.rent-price-div{
    margin-top: 6px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding-right: 8px;
}
.rent-price-paragraph{
    margin-left: 10px;
    margin-right: 0;
    max-width: calc(100% - 10px);
}
body.nav-remove .sidebar{
    display: none;
}
body.nav-remove .content{
    padding-left: 2%;
}

/* Short-term rental price unit (symbol vs full label) */
.price-with-unit--sd {
    white-space: nowrap;
}

.price-per-unit {
    font-weight: 600;
    color: #666;
    margin-left: 0.12em;
}

.price-per-unit__sym,
.price-per-unit__full {
    font-size: 0.82em;
}

.house-cart .price-per-unit__full {
    display: inline;
}

.house-cart .price-per-unit__sym {
    display: none;
}

@media (min-width: 401px) and (max-width: 450px) {
    .house-cart{
        height: 252px;
        max-width: 225px;
        height: 240px;
    }
    /* Card text sizes come from the global ≤710px type scale. */
}