/* =========================
   HOME SEARCHE BANNER
========================= */
.omc-sf-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.omc-search-wrapper .omc-tab-forms {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 15%);
	max-width: 1080px;
    margin: auto;
}
.omc-search-wrapper .omc-tab-form {
	display: none;
}

.omc-search-wrapper .omc-tab-form.active {
    display: block;
}

.omc-bloc-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 30px;
    align-items: flex-end;
}
	
.omc-tab-btn {
    padding: 20px 35px;
    border: none;
    background: #cfc3a6;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.omc-tab-btn:hover {
    background: #555;
}

.omc-tab-btn.active {
    background: #fff;
    color: #333;
}

.omc-tab-content {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
	justify-content: center;
}

.omc-tab-content.active {
    display: flex;
}

.omc-sf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
	width: 100%;
}

.omc-sf-field label {
    margin-bottom: 8px;
    padding-left: 20px;
}

.omc-sf-input {
    height: 52px;
    font-size: 14px;
    background-color: #f4f4f4 !important;
    border-radius: 30px;
    padding: 10px 20px !important;
    border: 0 !important;
    color: #757575 !important;
}

.omc-sf-input:focus {
    outline: none;
    border-color: #111;
}

select.omc-sf-input {
    cursor: pointer;
}

.omc-btn {
    background: #ea973f;
    color: #fff;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: background 0.3s ease;
    margin-top: 10px;
    min-width: 240px;
}

.omc-btn:hover {
    background: #333;
}
@media (max-width: 980px) {
.omc-tab-btn {
    padding: 15px 20px;
    font-size: 16px;
}
.omc-btn {
    min-width: auto;
}
}
@media (max-width: 767px) {
.omc-bloc-content {
    padding: 30px 15px;
    align-items: flex-end;
    flex-direction: column;
}
}
@media (max-width: 580px) {
.omc-sf-tabs {
    gap: 3px;
    /* flex-direction: column; */
}
.omc-tab-btn {
    /* border-radius: 15px; */
    /* margin-bottom: 5px; */
}
}
/* =========================
   SLIDER PROPERTIES
========================= */

/* Wrapper */
.omc-carousel-wrapper {
    position: relative;
    margin: 30px 0;
    padding: 0 40px;
}

/* Carousel */
.omc-carousel {
    overflow: hidden;
    padding: 10px 0 30px;
}

/* Card */
.omc-carousel-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e8e5de;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.omc-carousel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Visual */
.omc-carousel-card__visual {
    position: relative;
    padding-bottom: 66.66%;
    background: #f5f5f5;
    overflow: hidden;
}

.omc-carousel-card__visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.omc-carousel-card__content {
    padding: 20px 10px 0;
}

.omc-carousel-card__head {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Titles */
.omc-carousel-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.omc-carousel-card h3 strong {
    display: block;
    color: #BCB08F;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Row */
.carousel-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Price */
.carousel-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* PEB */
.carousel-peb {
    margin: 0;
}

.carousel-peb img {
    height: 30px;
    width: auto;
}

/* Icons */
.omc-carousel-card__icons {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #e8e5de;
}

.omc-carousel-card__icons li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #666;
}

.omc-carousel-card__icons .icon {
    width: 18px;
    height: 18px;
}

/* No Image */
.no-img-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #ccc;
}

.no-img-carousel svg {
    width: 48px;
    height: 48px;
}


/* =========================
   SWIPER NAVIGATION
========================= */

.omc-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.omc-carousel-nav:hover {
    background: #BCB08F;
    color: #fff;
}

.omc-carousel-nav-prev {
    left: -15px;
}

.omc-carousel-nav-next {
    right: -15px;
}

.omc-carousel-nav svg {
    width: 20px;
    height: 20px;
}


/* =========================
   SWIPER PAGINATION
========================= */

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #BCB08F;
}


/* =========================
   EQUAL HEIGHT - CAROUSEL
========================= */

.omc-carousel .swiper-wrapper {
    align-items: stretch;
}

.omc-carousel .swiper-slide {
    height: auto !important;
}

.omc-carousel .omc-carousel-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.omc-carousel .omc-carousel-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.omc-carousel .omc-carousel-card__icons {
    margin: 0;
    padding: 12px 5px;
}


/* =========================
   GRID
========================= */

.omc-property-grid {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.omc-property-grid .omc-carousel-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omc-property-grid .omc-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.omc-property-grid .omc-carousel-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.omc-property-grid .omc-carousel-card__icons {
    margin-top: auto;
    padding: 12px 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (min-width: 1024px) {
    .omc-property-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .omc-property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .omc-carousel-wrapper {
        padding: 0 30px;
    }

    .omc-carousel-nav {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 767px) {
    .omc-property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   Detail Propertise
========================= */

.subhead {
    background: #f6f2e8;
    padding-top: 30px;
    padding-bottom: 60px;
}

.subhead_contener {
	max-width: 1200px;
	width: 80%;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}

.omc-property {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.omc-gallery { 
    margin-bottom: 2rem; 
	margin-top: -150px;
}

.omc-gallery__hero-wrap { 
    display: block; 
    position: relative; 
    margin-bottom: 10px; 
}

.omc-gallery__hero { 
    width: 100%; 
    height: 600px; 
    object-fit: cover; 
    border-radius: 20px; 
    display: block; 
    transition: opacity .2s; 
}

.omc-gallery__count { 
    position: absolute; 
    bottom: 10px; 
    right: 10px; 
    background: rgba(0,0,0,.7); 
    color: #fff; 
    padding: 6px 10px; 
    border-radius: 4px; 
}

.omc-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .5rem;
    display: none;
}

.omc-gallery__thumb { 
    border: 2px solid transparent; 
    border-radius: 4px; 
    padding: 0; 
    background: none; 
    cursor: pointer; 
    transition: border-color .15s; 
}

.omc-gallery__thumb img { 
    width: 80px; 
    height: 60px; 
    object-fit: cover; 
    border-radius: 3px; 
    display: block; 
}

.omc-gallery__thumb.is-active,
.omc-gallery__thumb:hover { 
    border-color: #bcb08f; 
}

img.mb-20 {
    border: 1px solid #e2e2e2;
    border-radius: 20px;
    margin: 10px 0;
}

.omc-accordion-section {
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.omc-accordion-toggle {
    display: none;
}

.omc-price-block {
    position: relative;
    top: 85px;
    left: 25px;
    margin-bottom: 0;
    border-radius: 15px;
    background-color: #fff;
    padding: 25px;
    z-index: 2;
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
}

.omc-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
    cursor: pointer;
    transition: background .2s;
    margin: 0;
}

.omc-accordion-header .omc-section__title {
    font-size: 28px;
    margin: 0;
    border: none;
    padding: 0;
}

.omc-accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.omc-accordion-toggle:checked + .omc-accordion-header .omc-accordion-icon svg {
    transform: rotate(180deg);
}

.omc-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-bottom: 2px solid #bcb08f;
}

.omc-accordion-toggle:checked + .omc-accordion-header + .omc-accordion-content {
    max-height: 2000px;
}

.omc-accordion-toggle:checked + .omc-accordion-header + .omc-accordion-content {
    border-bottom: none;
}

.card-single {
    position: relative;
    width: 100%;
    padding: 30px;
    margin-bottom: 20px;
    background: #f4f4f4;
    border-radius: 20px;
}


.omc-header { 
    margin-bottom: 2rem; 
}

.omc-header__meta { 
    display: flex; 
    flex-wrap: wrap; 
    gap: .4rem; 
    margin-bottom: .75rem; 
}

.omc-badge { 
    display: inline-block; 
    padding: .2rem .7rem; 
    border-radius: 20px; 
    text-transform: uppercase; 
    letter-spacing: .04em; 
}

.omc-badge--type   { 
    background: #dbeafe; 
    color: #1e40af; 
}

.omc-badge--status { 
    background: #dcfce7; 
    color: #166534; 
}

.omc-badge--goal   { 
    background: #fef9c3; 
    color: #854d0e; 
}

.omc-header__title { 
    margin: 0 0 .4rem;
}

.omc-header__address { 
    font-style: normal; 
    color: #6b7280; 
    display: flex; 
    align-items: center; 
    gap: .3rem; 
    margin-bottom: .8rem; 
}

.omc-header__address svg{ 
    color: #bcb08f; 
}

.omc-icon { 
    width: 1.1em; 
    height: 1.1em; 
    fill: currentColor; 
    flex-shrink: 0; 
}

.omc-price { 
    color: #bcb08f; 
}


.omc-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.omc-spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.omc-spec-item__icon {
    width: 32px;
    height: 32px;
    color: #bcb08f;
    flex-shrink: 0;
}

.omc-spec-item__icon svg {
    width: 100%;
    height: 100%;
}

.omc-spec-item__info {
    display: flex;
    gap: 5px;
}

.omc-section.omc-description h2 {
    display: none;
}

.property-main {
    display: flex;
    gap: 30px;
}

.property-side-bare.right {
    width: 25%;
}

.property-details.left {
    width: 75%;
}


.omc-section { 
    margin-bottom: 2.5rem; 
}

.omc-section__title { 
    margin: 0 0 1rem; 
    padding-bottom: .5rem; 
    border-bottom: 2px solid #e2e8f0; 
}


.omc-dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin: 20px 0;
}

.omc-row {
    display: contents;
}

.omc-dl dt {
    color: #555;
}

.omc-dl dd {
    margin: 0;
    color: #111;
}

.omc-row { 
    display: grid; 
    grid-template-columns: minmax(180px, 40%) 1fr; 
    padding: .55rem 0; 
    border-bottom: 2px solid #bcb08f; 
}

.omc-row dt {
    color: #bcb08f;
}

.omc-row dd { 
    margin: 0; 
    color: #111827; 
    text-align: right; 
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    --tw-bg-opacity: 1;
    background-color: rgb(234 151 63 / var(--tw-bg-opacity, 1));
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    margin: 10px 0
}

.omc-energy__inner { 
    display: flex; 
    gap: 2rem; 
    align-items: flex-start; 
    flex-wrap: wrap; 
}

.omc-energy__badge { 
    flex-shrink: 0; 
}

.omc-epc-image { 
    max-width: 160px; 
    height: auto; 
    border-radius: 4px; 
}

.omc-energy__inner .omc-dl { 
    flex: 1; 
    min-width: 220px; 
}


.omc-map__canvas { 
    height: 400px; 
    border-radius: 6px; 
    border: 1px solid #e2e8f0; 
}

.omc-map__address { 
    color: #6b7280; 
    margin-top: .5rem; 
}


.omnicasa-manager { 
    display: flex; 
    gap: 1.5rem; 
    align-items: flex-start; 
    background: #f8fafc; 
    border: 1px solid #e2e8f0; 
    border-radius: 8px; 
    padding: 1.5rem; 
    flex-wrap: wrap; 
}

.manager-photo img { 
    width: 90px; 
    height: 90px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 3px solid #fff; 
    box-shadow: 0 2px 8px rgba(0,0,0,.12); 
}

.manager-name { 
    margin-bottom: .3rem; 
}

.manager-direct-phone, 
.manager-mobile-phone, 
.manager-email { 
    margin: .25rem 0; 
}

.manager-direct-phone a, 
.manager-mobile-phone a, 
.manager-email a { 
    color: #2563eb; 
    text-decoration: none; 
}

.manager-direct-phone a:hover, 
.manager-mobile-phone a:hover, 
.manager-email a:hover { 
    text-decoration: underline; 
}


.omc-tour-links { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
}

.omc-btn { 
    display: inline-block; 
    /*border-radius: 6px; */
    text-decoration: none; 
    transition: background .15s; 
}

.omc-btn--tour { 
    background: #2563eb; 
    color: #fff; 
}

.omc-btn--tour:hover { 
    background: #1d4ed8; 
}


.omnicasa-floor { 
    margin-bottom: 1.5rem; 
}

.omnicasa-floor-title {
    color: #374151;
    margin: 0 0 .5rem;
    padding: .3rem .6rem;
    background: #f5f3ee;
    border-radius: 4px;
    font-size: 18px;
}

.omnicasa-division { 
    display: grid; 
    grid-template-columns: 1fr auto; 
    gap: .25rem .75rem; 
    padding: .4rem 0; 
    border-bottom: 1px solid #f1f5f9; 
}

.omnicasa-division-surface { 
    white-space: nowrap; 
}

.omnicasa-division-comments { 
    grid-column: 1 / -1; 
    color: #6b7280; 
}


.omnicasa-documents { 
    display: flex; 
    flex-direction: column; 
    gap: .5rem; 
}

.omnicasa-document a { 
    display: inline-flex; 
    align-items: center; 
    gap: .4rem; 
    color: #2563eb; 
    text-decoration: none; 
}

.omnicasa-document a:hover { 
    text-decoration: underline; 
}

.charges-list { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    flex-direction: column; 
    gap: .4rem; 
}

.charge-item { 
    display: flex; 
    flex-wrap: wrap; 
    gap: .4rem; 
    align-items: baseline; 
}

.charge-value { 
    color: #2563eb; 
}

.charge-parent { 
    color: #6b7280; 
}

.bg-yellow {
    background-color: rgb(246 242 232);
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #bcb08f;
}

.property-side-bare .et_pb_button {
    padding: 10px 25px !important;
	text-align: center;
    display: block;
    margin: 10px 0;
}

.property-side-bare .btn--grey {
    background: #555;
    border-color: #555;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.text-30 {
    font-size: 30px;
}

.text-18 {
    font-size: 18px;
}

.text-center {
    text-align: center;
}

.omc-related-properties {
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}
.subhead .link-archive a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.subhead .property-title {
    font-size: 40px;
}
@media (max-width: 640px) {
    .omc-gallery__hero { 
        height: 260px; 
    }
    
    .omc-specs { 
        gap: 1rem; 
        justify-content: space-between; 
    }
    
    .omc-spec-item { 
        flex: 0 0 calc(100% - 1rem); 
    }
    
    .omc-row { 
        grid-template-columns: 1fr; 
    }
    
    .omc-row dt { 
        color: #6b7280; 
        margin-bottom: .1rem; 
    }
    
    .omc-energy__inner { 
        flex-direction: column; 
    }
    
    .omc-accordion-header { 
        padding: .75rem 1rem; 
    }
    
    .omc-accordion-toggle:checked + .omc-accordion-header + .omc-accordion-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .omc-spec-item { 
        flex: 0 0 calc(50% - 1rem); 
    }
}
/* =========================
   Listing Propertise
========================= */


:root {
  --gold:   #BCB08F;
  --gold-d: #a89b78;
  --dark:   #1a1a1a;
  --mid:    #666;
  --light:  #f5f4f1;
  --border: #e8e5de;
  --white:  #ffffff;
  --r:      15px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.omc-wrap { color: var(--dark); -webkit-font-smoothing: antialiased; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ FILTER BAR (Simplified: 3 main fields) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.s-search-form {
  background: #f6f2e8;
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.s-search-form .container,
.s-search-results .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.form-search-title {
    font-size: 32px;
    margin-bottom: 30px;
}
.form-search-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: .75rem;
}
.form-search-main label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .3rem;
}
.form-search-main > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 140px;
}
.form-search-main .field-location { flex: 2; min-width: 180px; }
.form-search-main .filter-icon-btn { flex: 0 0 auto; }

/* custom select wrapper */
.custom-select {
  position: relative;
}
.custom-select select {
  width: 100%;
  height: 44px;
  padding: 0 2rem 0 .8rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: .875rem;
  color: var(--dark);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 0;
}
.custom-select::after {
  content: '';
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--mid);
  pointer-events: none;
}

.form-search-main input[type="text"] {
  height: 44px;
  padding: 0 .8rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: .875rem;
  color: var(--dark);
  outline: none;
  width: 100%;
  transition: border-color .15s;
  margin-bottom: 0;
}
.form-search-main input:focus,
.custom-select select:focus {
  border-color: var(--gold);
  outline: none;
}

/* Filter Icon Button */
.filter-icon-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
}
.filter-icon-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.filter-icon-btn:hover svg {
  stroke: var(--white);
}
.filter-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--dark);
  stroke-width: 1.8;
  fill: none;
}

/* Active filter indicator */
.filter-icon-btn.has-filters {
  border-color: var(--gold);
  background: var(--gold);
}
.filter-icon-btn.has-filters svg {
  stroke: var(--white);
}

/* Search button */
.btn-search-main {
  height: 44px;
  padding: 0 1.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.btn-search-main:hover {
  background: var(--gold-d);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MODAL (Recherche avancÃƒÂ©e) Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.is-active {
  display: flex;
}
.modal-container {
  background: var(--white);
  border-radius: 8px;
  width: 90%;
  max-width: 580px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: modalFadeIn .25s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--mid);
  line-height: 1;
  padding: 0;
  transition: color .15s;
}
.modal-close:hover {
  color: var(--dark);
}
.modal-body {
  padding: 1.5rem;
}
.modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
}
.modal-footer .btn {
  padding: 0.7rem 1.5rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  border: none;
}
.modal-footer .btn-primary {
  background: var(--gold);
  color: var(--white);
}
.modal-footer .btn-primary:hover {
  background: var(--gold-d);
}
.modal-footer .btn-secondary {
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
}
.modal-footer .btn-secondary:hover {
  background: var(--border);
}

/* Modal form groups */
.modal-form-group {
  margin-bottom: 1.25rem;
}
.modal-form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .5rem;
}
.modal-form-group input,
.modal-form-group select {
  width: 100%;
  height: 42px;
  padding: 0 .8rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .875rem;
  color: var(--dark);
  outline: none;
}
.modal-form-group input:focus,
.modal-form-group select:focus {
  border-color: var(--gold);
}
.modal-form-row {
  display: flex;
  gap: 1rem;
}
.modal-form-row .modal-form-group {
  flex: 1;
}

/* Type checkboxes in modal */
.type-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.type-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.type-checkbox-item input {
  width: auto;
  height: auto;
  accent-color: var(--gold);
}
.type-checkbox-item label {
  font-size: .8rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  color: var(--dark);
  margin: 0;
}

/* PEB radio group */
.peb-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.peb-radio-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.peb-radio-item input {
  width: auto;
  height: auto;
  accent-color: var(--gold);
}
.peb-radio-item label {
  font-size: .8rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
}

/* Quick price chips */
.quick-price-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.quick-price-chip {
  padding: 0.4rem 1rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: .8rem;
  cursor: pointer;
  transition: all .15s;
}
.quick-price-chip:hover {
  border-color: var(--gold);
}
.quick-price-chip.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESULTS HEADER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.s-search-results { padding: 1.5rem 0 3.5rem; }

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.results-count { font-size: 1.25rem; color: var(--dark); }
.results-count strong { font-weight: 700; }

.select-search select {
  height: 40px;
  padding: 0 2rem 0 .8rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E") no-repeat right .55rem center;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: .85rem;
  color: var(--dark);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CARD GRID Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.d-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: .9375rem; }
.col-card { grid-column: span 8; }
@media (min-width: 640px)  { .col-card { grid-column: span 4; } }
@media (min-width: 1280px) { .col-card { grid-column: span 2; } }

/* Ã¢â€â‚¬Ã¢â€â‚¬ CARD Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.card-good {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none; color: var(--dark);
  transition: box-shadow .22s, transform .22s;
  animation: cardIn .35s ease both;
	height: 100%;
}
.card-good:hover { box-shadow: 0 6px 26px rgba(0,0,0,.13); transform: translateY(-2px); }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-good:nth-child(2)  { animation-delay: .04s }
.card-good:nth-child(3)  { animation-delay: .08s }
.card-good:nth-child(4)  { animation-delay: .12s }
.card-good:nth-child(5)  { animation-delay: .16s }
.card-good:nth-child(6)  { animation-delay: .20s }
.card-good:nth-child(7)  { animation-delay: .24s }
.card-good:nth-child(8)  { animation-delay: .28s }
.card-good:nth-child(9)  { animation-delay: .32s }
.card-good:nth-child(10) { animation-delay: .36s }
.card-good:nth-child(11) { animation-delay: .40s }
.card-good:nth-child(12) { animation-delay: .44s }

.card-good__visual {
  position: relative;
  width: 100%; aspect-ratio: 4 / 3;
  overflow: hidden; background: var(--border); margin: 0;
}
.card-good__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.card-good:hover .card-good__visual img { transform: scale(1.05); }
.card-good__visual .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--border); background: var(--light);
}
.card-good h3 {
  font-size: 16px; line-height: 1.45;
  padding: .75rem .85rem .35rem;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.card-good h3 strong {
  display: block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--gold);
  margin-top: .2rem;
}
.card-good__content {
  padding: .35rem .85rem .85rem;
  margin-top: auto;
}
.card-row { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.price {
  font-size: 1.15rem; font-weight: 700; color: var(--dark);
  letter-spacing: -.01em; white-space: nowrap;
}
figure.peb { margin: 0; flex-shrink: 0; }
figure.peb img { height: 26px; width: auto; display: block; }
.card-good__icons {
  list-style: none;
  display: flex; align-items: center; gap: .65rem;
  margin-top: .5rem; padding-top: .5rem;
  border-top: 1px solid var(--border);
}
.card-good__icons li {
  display: flex; align-items: center; gap: .3rem;
  font-size: .82rem; color: var(--mid);
}
.card-good__icons li p { margin: 0; }
.card-good__icons .icon { width: 17px; height: 17px; flex-shrink: 0; }

.no-results {
  grid-column: 1/-1; text-align: center;
  padding: 4rem 1rem; color: var(--mid);
}
.no-results h2 { font-size: 1.4rem; margin-bottom: .5rem; color: var(--dark); }

.pagination {
  grid-column: 1/-1;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .4rem;
  padding: 1.5rem 0 .5rem;
}
.pagination__item {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 .5rem;
  border: 1.5px solid var(--border); border-radius: 30px;
  background: var(--white); color: var(--dark);
  text-decoration: none; font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
}
.pagination__item:hover { border-color: var(--gold); color: var(--gold); }
.pagination__item.is-active {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.pagination__item[disabled] { opacity: .5; cursor: default; pointer-events: none; }

@media (max-width: 640px) {
  .form-search-main > div { flex: 1 1 100%; }
  .form-search-main .field-location { flex: 1 1 100%; }
  .results-bar { flex-direction: column; align-items: flex-start; }
  .price { font-size: 1rem; }
  .modal-form-row { flex-direction: column; gap: 0; }
}

/* Active Filters Styles */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.active-filters__label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.active-filters__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    padding: 4px 8px 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
}

.active-filter__label {
    font-weight: 500;
    color: #666;
}

.active-filter__value {
    font-weight: 500;
    color: #1a1a1a;
}

.active-filter__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    background: #ddd;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    transition: all 0.2s;
}

.active-filter__remove:hover {
    background: #ccc;
    color: #333;
    text-decoration: none;
}

.active-filters__clear-all {
    font-size: 12px;
    color: #999;
    text-decoration: underline;
    margin-left: 4px;
}

.active-filters__clear-all:hover {
    color: #666;
    text-decoration: none;
}

.results-info {
    flex: 1;
}

.results-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .active-filters {
        flex-direction: column;
        align-items: flex-start;
    }
	.property-main {
		flex-direction: column;
	}
	.property-details.left, .property-side-bare.right {
		width: 100%;
	}
	.omc-property, .subhead_contener {
		padding: 0;
	}
	.subhead {
		padding-bottom: 100px;
	}
	.omc-price-block {
		top: 70px;
		padding: 15px;
		font-size: 22px;
	}
	.omc-dl {
		grid-template-columns: repeat(1, 1fr);
	}
	.omc-gallery {
		margin-top: -115px;
	}
	.omc-accordion-header .omc-section__title {
    	font-size: 22px;
	}
}
