/* listofall — properties grid, filters, map, calendar */
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
background: #637885;
color: #eef3f8;
min-height: 100vh;
min-height: 100dvh;
}
.page {
width: 100%;
max-width: 1400px;
padding: 40px 16px 40px 19px;
margin: 0 auto;
}
.filters-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
justify-content: center;
width: 100%;
margin: 0 auto;
}
.primary-filters-row {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 8px;
width: 100%;
padding-bottom: 2px;
}
#other-filters {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 8px;
width: auto;
}
.filter-button {
appearance: none;
border: 1px solid #ddd;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.20));
backdrop-filter: saturate(160%) blur(10px);
-webkit-backdrop-filter: saturate(160%) blur(10px);
color: #333;
font-size: 14px;
font-weight: 400;
padding: 9px 18px;
border-radius: 999px;
cursor: pointer;
transition: transform 0.2s ease, background-color 0.2s ease;
white-space: nowrap;
}
.filter-button:focus-visible {
outline: 2px solid #21c9ee;
outline-offset: 2px;
}
.filters-container .filter-button.active:not(.available),
.filters-container .filter-button[aria-pressed="true"]:not(.available) {
color: #ffffff;
background-color: #21c9ee;
background-image: none;
border-color: #21c9ee;
}
.filters-container .filter-button.available {
border-color: rgba(76, 175, 80, 0.65);
color: #2e7d32;
background: linear-gradient(180deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
}
.filters-container .filter-button.available.active,
.filters-container .filter-button.available[aria-pressed="true"] {
background-color: #4CAF50;
color: #ffffff;
border-color: #4CAF50;
}
@media (max-width: 600px) {
.page {
padding: 80px 16px 24px 16px;
}
.filters-container {
gap: 8px;
}
.filter-button {
padding: 7px 14px;
font-size: 13px;
}
.properties-grid {
gap: 0 0;
}
.property-card {
padding-bottom: 6px;
}
.house-details {
margin-top: 6px;
}
#filters-panel {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
gap: 8px;
padding-bottom: 8px;
width: 100%;
}
#filters-panel::-webkit-scrollbar {
display: none;
}
#other-filters {
display: contents;
}
body.calendar-open #other-filters {
display: none;
}
#date-filter-tag {
order: 1;
flex: 0 0 auto;
}
#map-toggle-tag {
order: 2;
flex: 0 0 auto;
}
#labels-toggle-tag {
order: 3;
flex: 0 0 auto;
}
#calendar-wrapper {
order: 4;
width: 100%;
margin-top: 10px;
transition: all 0.3s ease;
}
body.calendar-open #calendar-wrapper {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(1.05);
z-index: 30002;
width: 90%;
max-width: 340px;
background: #fff;
padding: 10px;
border-radius: 16px;
box-shadow: none;
margin: 0;
}
body.calendar-open .flatpickr-calendar {
max-width: 100%;
width: 100%;
box-shadow: none;
padding: 0;
}
body.calendar-open .flatpickr-rContainer,
body.calendar-open .flatpickr-days,
body.calendar-open .dayContainer {
width: 100%;
max-width: 100%;
min-width: 100%;
}
body.calendar-open .flatpickr-day {
height: 40px;
line-height: 40px;
max-width: none;
}
#calendar-backdrop {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(2px);
z-index: 30001;
opacity: 0;
transition: opacity 0.3s ease;
}
body.calendar-open #calendar-backdrop {
display: block;
opacity: 1;
}
#labels-container {
order: 5;
width: 100%;
margin-top: 12px;
flex-direction: row;
flex-wrap: wrap;
gap: 8px;
}
.filters-container .section-tag {
flex: 0 0 auto;
border: 1px solid #e0e0e0;
background-color: #ffffff;
border-radius: 999px;
padding: 8px 16px;
font-size: 14px;
box-shadow: none;
white-space: nowrap;
height: 40px;
color: #333;
}
.filters-container .section-tag svg {
width: 18px;
height: 18px;
margin-right: 6px;
}
body.calendar-open #filters-panel {
flex-wrap: wrap;
overflow-x: visible;
mask-image: none;
-webkit-mask-image: none;
}
body.calendar-open #date-filter-tag {
flex: 1 0 100%;
justify-content: center;
background-color: #f0f0f0;
border-color: transparent;
}
}
@media (min-width: 601px) and (max-width: 1199px) {
#filters-toggle-wrap {
margin-bottom: 18px;
}
#filters-panel {
justify-content: center;
align-items: center;
gap: 12px;
margin-top: 4px;
}
#other-filters {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: center;
gap: 8px;
width: auto;
}
#labels-container {
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
width: 100%;
}
.filters-container .section-tag {
min-height: 44px;
padding: 10px 16px;
}
}
/* Collapsed by default on small screens; ≥1200px block shows sidebar (no inline display) */
@media (max-width: 1199px) {
#filters-panel {
display: none;
}
.filters-toggle-wrap {
display: flex;
justify-content: center;
margin-bottom: 12px;
}
}
@media (prefers-reduced-motion: reduce) {
* {
transition: none;
animation: none;
}
}
.results-layout {
display: block;
min-width: 0;
}
.results-list {
display: block;
min-width: 0;
}
.map-panel {
display: none;
background: #eaeaea;
border-radius: 12px;
overflow: hidden;
height: 60vh;
position: sticky;
top: 20px;
}
.map-container {
width: 100%;
height: 100%;
position: relative;
min-height: 200px;
}
.map-close-btn {
display: none;
}
.mapboxgl-ctrl-logo,
.mapboxgl-ctrl-attrib {
display: none;
}
.price-marker {
background-color: rgba(75, 85, 99, 0.95);
color: white;
padding: 5px 10px;
border-radius: 12px;
font-weight: 600;
font-size: 14px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
white-space: nowrap;
font-family: 'Inter', sans-serif;
cursor: pointer;
}
@media (min-width: 1200px) {
:root {
--desktop-map-col: clamp(360px, 33vw, 520px);
}
.results-layout {
display: grid;
grid-template-columns: 1fr;
gap: 36px;
align-items: start;
}
body.show-map .results-layout {
grid-template-columns: minmax(0, 1fr) var(--desktop-map-col);
}
.results-list {
margin-top: 0;
position: sticky;
top: 70px;
max-height: calc(100dvh - 80px - 16px);
overflow-y: auto;
overflow-x: hidden;
overscroll-behavior: contain;
scrollbar-width: none;
-ms-overflow-style: none;
}
.results-list::-webkit-scrollbar {
width: 0;
height: 0;
background: transparent;
}
.map-panel {
display: none;
height: calc(100dvh - 120px);
top: 80px;
margin-top: 0;
}
body.show-map .map-panel {
display: block;
}
.page {
display: grid;
grid-template-columns: 280px minmax(0, 1.6fr) var(--desktop-map-col);
column-gap: 24px;
row-gap: 0;
align-items: start;
max-width: 1600px;
padding-left: clamp(24px, 3.2vw, 40px);
padding-right: clamp(24px, 5vw, 80px);
padding-top: 80px;
padding-bottom: 0;
}
body.calendar-open .page {
grid-template-columns: minmax(320px, 440px) minmax(0, 1.6fr) var(--desktop-map-col);
}
#filters-toggle {
display: none;
}
#filters-toggle-wrap {
display: none;
}
#filters-panel {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
position: sticky;
top: clamp(96px, 14vh, 180px);
margin-left: 0;
grid-column: 1;
grid-row: 1;
width: 100%;
max-height: calc(100dvh - clamp(120px, 18vh, 220px));
overflow: auto;
overscroll-behavior: contain;
}
.filters-container .filter-button {
width: auto;
max-width: 100%;
align-self: flex-start;
text-align: left;
}
.primary-filters-row {
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: nowrap;
gap: 10px;
width: 100%;
}
#other-filters {
flex-direction: column;
flex-wrap: nowrap;
align-items: flex-start;
justify-content: flex-start;
gap: 10px;
width: 100%;
}
#filters-panel #labels-container {
flex-direction: column;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: flex-start;
gap: 10px;
width: 100%;
margin-top: 4px;
}
.results-layout {
grid-column: 2 / 4;
grid-row: 1;
}
}
@media (max-width: 1199px) {
body.show-map {
overflow: hidden;
}
body.show-map .map-panel {
display: block;
position: fixed;
inset: 0;
width: 100vw;
height: 100dvh;
border-radius: 0;
z-index: 40010;
}
body.show-map .map-container {
width: 100%;
height: 100%;
}
body.show-map .map-close-btn {
display: inline-flex;
align-items: center;
justify-content: center;
position: absolute;
top: 12px;
right: 12px;
width: 44px;
height: 44px;
border: 1px solid rgba(255, 255, 255, 0.65);
border-radius: 999px;
background: rgba(12, 19, 27, 0.7);
color: #ffffff;
font-size: 28px;
line-height: 1;
cursor: pointer;
z-index: 40011;
}
}
.properties-grid {
display: grid;
grid-template-columns: 1fr;
gap: 40px 30px;
width: 100%;
margin-top: 36px;
}
.properties-grid>a {
display: flex;
flex-direction: column;
height: 100%;
}
.properties-grid>a.property-link {
text-decoration: none;
color: inherit;
}
@media (min-width: 900px) {
.properties-grid {
grid-template-columns: 1fr 1fr;
}
}
.property-card {
background: transparent;
border: 0;
position: relative;
padding-bottom: 30px;
flex: 1;
display: flex;
flex-direction: column;
height: 100%;
}
.property-card::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background-color: rgba(200, 200, 200, 0.35);
}
@media (min-width: 900px) {
.property-card::before {
content: '';
position: absolute;
top: -20px;
bottom: -20px;
right: -15px;
width: 1px;
background-color: rgba(200, 200, 200, 0.35);
}
.properties-grid>a:nth-child(2n)>.property-card::before {
display: none;
}
}
.property-media {
width: 100%;
aspect-ratio: 16 / 10;
overflow: hidden;
position: relative;
border-radius: 8px;
}
.property-media::after {
content: "";
position: absolute;
right: 0;
bottom: 0;
width: 55%;
height: 45%;
background: radial-gradient(at right bottom, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 75%);
pointer-events: none;
z-index: 1;
opacity: 0;
transition: opacity 0.3s ease;
}
body.show-prices .property-media::after {
opacity: 1;
}
.property-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
display: block;
}
.price-badge {
position: absolute;
bottom: 10px;
right: 10px;
color: #fff;
padding: 0;
border-radius: 0;
background: transparent;
font-size: 13px;
line-height: 1;
font-weight: 500;
z-index: 2;
opacity: 0;
transition: opacity 0.3s ease;
}
body.show-prices .price-badge {
opacity: 1;
}
@media (min-width: 1200px) {
.properties-grid {
grid-template-columns: repeat(2, 1fr);
gap: 48px 36px;
}
.property-card {
padding-bottom: 40px;
}
.properties-grid>a:nth-child(2n)>.property-card::before {
display: none;
}
.properties-grid>a:nth-child(3n)>.property-card::before {
display: block;
}
body.show-map .results-list .properties-grid {
grid-template-columns: 1fr;
gap: 36px 0;
}
body.show-map .results-list .property-card::before {
display: none;
}
}
.house-details {
margin-top: 10px;
}
.house-name {
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 300;
line-height: 1.3;
margin: 0 0 4px 0;
padding-left: 6px;
color: #f4f7fb;
letter-spacing: 1px;
}
.property-card .house-details .house-location,
.property-card .house-details .house-capacity {
font-size: 13px;
color: #d8e2ee;
font-weight: 300;
margin: 0;
padding-left: 6px;
}
.plain-text-btn,
#show-unavailable-btn {
background: transparent;
border: 0;
padding: 0;
color: #d8e2ee;
font-size: 13px;
font-weight: 300;
text-decoration: none;
cursor: pointer;
}
.hamburger-menu {
display: block;
position: fixed;
top: 12px;
right: calc(14px + env(safe-area-inset-right, 0px));
z-index: 30000;
cursor: pointer;
border: 0;
background: transparent;
padding: 10px;
-webkit-tap-highlight-color: transparent;
}
@media (max-width: 480px) {
.hamburger-menu {
top: 10px;
right: calc(10px + env(safe-area-inset-right, 0px));
}
}
.hamburger-menu span {
display: block;
width: 34px;
height: 3.5px;
margin: 6px auto;
background-color: #ffffff;
transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.hamburger-menu.active span:nth-child(1) {
transform: translateY(9.5px) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
transform: translateY(-9.5px) rotate(-45deg);
}
.hamburger-menu.active span {
background-color: #0d3b66;
}
.back-button {
position: fixed;
top: 12px;
left: 18px;
z-index: 30000;
border: none;
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
color: #fff;
}
.back-button svg {
width: 32px;
height: 32px;
}
body.nav-dark .hamburger-menu span {
background-color: #0d3b66;
}
body.nav-dark .back-button {
color: #0d3b66;
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
right: 0;
width: 33.333vw;
min-width: 260px;
max-width: 420px;
height: 100vh;
background-color: rgba(255, 255, 255, 0.97);
z-index: 20003;
padding: 84px 24px 44px 28px;
text-align: left;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
gap: 0;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
overflow-y: auto;
}
.mobile-menu.active {
display: flex;
}
.menu-close-btn {
position: absolute;
top: 14px;
right: 14px;
width: 48px;
height: 48px;
border: 0;
background: transparent;
color: #0f3b63;
font-size: 38px;
line-height: 1;
cursor: pointer;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
-webkit-tap-highlight-color: transparent;
}
.menu-close-btn:hover,
.menu-close-btn:focus-visible {
background: rgba(15, 59, 99, 0.08);
outline: none;
}
.map-loading {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
background: rgba(238, 243, 248, 0.92);
color: #1f2937;
font-size: 15px;
font-weight: 500;
pointer-events: none;
}
.map-loading.map-loading--error {
background: rgba(255, 245, 245, 0.96);
color: #b42318;
}
.map-loading[hidden] {
display: none;
}
.mobile-menu a {
text-decoration: none;
color: #1f2937;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-weight: 500;
padding: 14px 8px;
border-radius: 12px;
display: block;
line-height: 1.45;
letter-spacing: 0.25px;
min-height: 48px;
max-width: 360px;
border-bottom: 1px solid #eef2f6;
}
.mobile-menu a+a {
margin-top: 4px;
}
.mobile-menu a:hover,
.mobile-menu a:focus {
color: #0f3b63;
text-decoration: underline;
}
.mobile-menu a[aria-current="page"],
.mobile-menu a.active {
color: #0f3b63;
text-decoration: underline;
text-underline-offset: 6px;
text-decoration-thickness: 2px;
}
#menu-backdrop {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.25);
z-index: 20000;
}
body.mobile-menu-open {
overflow: hidden;
}
.menu-logo {
display: none;
position: fixed;
top: 10px;
left: 56px;
z-index: 20004;
}
.menu-logo img {
display: block;
height: 17px;
width: auto;
}
#inline-calendar-container {
width: 100%;
margin: 0;
padding: 0;
animation: slideDown 0.3s ease;
}
@keyframes slideDown {
from {
opacity: 0;
max-height: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
max-height: 400px;
transform: translateY(0);
}
}
#calendar-wrapper {
margin: 0;
padding: 0;
}
.flatpickr-calendar {
font-family: 'Inter', sans-serif;
background: #ffffff;
border: 0;
box-shadow: none;
border-radius: 20px;
padding: 20px;
width: 340px;
max-width: 100%;
}
.flatpickr-calendar.inline {
width: 340px;
max-width: 100%;
margin: 0;
box-shadow: none;
border: 1px solid #f0f0f0;
top: 0;
}
.flatpickr-weekdays {
margin-bottom: 8px;
}
span.flatpickr-weekday {
color: #888;
font-weight: 500;
font-size: 13px;
text-transform: capitalize;
}
.flatpickr-days {
width: 100%;
}
.dayContainer {
width: 100%;
min-width: 100%;
max-width: 100%;
display: grid;
grid-template-columns: repeat(7, 1fr);
justify-items: center;
gap: 0;
padding: 0;
margin: 0;
}
.flatpickr-day {
border-radius: 8px;
border: 0;
font-weight: 400;
color: #444;
transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
height: 40px;
line-height: 40px;
width: 40px;
max-width: 40px;
font-size: 15px;
display: flex;
align-items: center;
justify-content: center;
margin: 1px 0;
}
.flatpickr-day:hover {
background: #f0f0f0;
color: #222;
}
.flatpickr-day.today {
border: 0;
background: #f0f0f0;
font-weight: 600;
color: #333;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange {
background: #4f8fda;
color: #fff;
border-color: #4f8fda;
border-radius: 8px;
box-shadow: none;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange {
background: #e9f2ff;
border-color: transparent;
box-shadow: -5px 0 0 #e9f2ff, 5px 0 0 #e9f2ff;
color: #2f4f7a;
border-radius: 0;
}
.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
box-shadow: -10px 0 0 #4f8fda;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
color: #d9d9d9;
background: transparent;
cursor: default;
}
@media (max-width: 600px) {
.flatpickr-calendar {
width: 100%;
padding: 16px;
}
.flatpickr-calendar.inline {
width: 100%;
border: 0;
box-shadow: none;
}
.flatpickr-day {
height: 40px;
line-height: 40px;
width: 100%;
max-width: none;
}
}
/* .section-tag: default ghost; pills + vendor overrides at end of file */
.section-tag {
display: flex;
align-items: center;
gap: 8px;
align-self: center;
flex: 0 0 auto;
width: fit-content;
max-width: 100%;
min-height: auto;
padding: 8px 2px;
border: none;
border-radius: 0;
background: transparent;
color: #eef3f8;
font-family: 'Inter', sans-serif;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.4px;
line-height: 1;
box-shadow: none;
transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.2s ease;
cursor: pointer;
appearance: none;
}
#labels-container {
flex: 0 0 100%;
display: none;
flex-wrap: wrap;
gap: 10px;
width: 100%;
padding-top: 6px;
}
#labels-container .section-tag,
#labels-container #prices-toggle-tag {
min-height: 40px;
padding: 8px 14px;
font-size: 13px;
}
.section-tag:hover {
opacity: 0.7;
}
.section-tag svg {
width: 16px;
height: 16px;
stroke: currentColor;
fill: none;
stroke-width: 2;
opacity: 0.9;
}
#prices-toggle-tag .prices-euro-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 16px;
min-width: 16px;
height: 16px;
font-family: 'Inter', system-ui, sans-serif;
font-size: 15px;
font-weight: 600;
line-height: 1;
color: inherit;
opacity: 0.9;
flex-shrink: 0;
}
.section-tag[data-filter="two"].active {
color: #ffffff;
background: rgba(255, 107, 107, 0.95);
border-radius: 999px;
box-shadow: none;
}
.section-tag[data-filter="family"].active {
color: #ffffff;
background: rgba(76, 175, 80, 0.95);
border-radius: 999px;
box-shadow: none;
}
.section-tag[data-filter="large"].active {
color: #ffffff;
background: rgba(255, 152, 0, 0.95);
border-radius: 999px;
box-shadow: none;
}
.section-tag[data-filter="pool"].active {
color: #ffffff;
background: rgba(33, 150, 243, 0.95);
border-radius: 999px;
box-shadow: none;
}
.section-tag[data-filter="winter"].active {
color: #ffffff;
background: rgba(0, 188, 212, 0.95);
border-radius: 999px;
box-shadow: none;
}
.section-tag:focus-visible {
outline: 2px solid #21c9ee;
outline-offset: 2px;
}
#show-unavailable-container {
opacity: 0;
max-height: 0;
overflow: hidden;
transition: opacity 0.3s ease, max-height 0.3s ease;
text-align: center;
margin-top: 16px;
margin-bottom: 8px;
}
#show-unavailable-container.visible {
opacity: 1;
max-height: 100px;
}
#date-filter-tag.active {
color: #ffffff;
font-weight: 600;
background: #43a047;
border-color: #43a047;
border-radius: 999px;
box-shadow: 0 8px 18px rgba(67, 160, 71, 0.3);
}
#map-toggle-tag.active {
color: #ffffff;
font-weight: 600;
background: #1e88e5;
border-color: #1e88e5;
border-radius: 999px;
box-shadow: 0 8px 18px rgba(30, 136, 229, 0.3);
}
#labels-toggle-tag.active {
color: #ffffff;
font-weight: 600;
background: #405a6b;
border-color: #405a6b;
border-radius: 999px;
box-shadow: 0 8px 18px rgba(22, 34, 44, 0.26);
}
#labels-toggle-tag.active:hover {
opacity: 1;
}
body:not(.show-prices) .price-badge {
display: none;
}

@media (min-width: 1650px) {
.page {
max-width: 95%;
padding-left: 60px;
padding-right: 60px;
grid-template-columns: 280px minmax(0, 1.5fr) minmax(0, 1fr);
}
body.calendar-open .page {
grid-template-columns: 440px minmax(0, 1.5fr) minmax(0, 1fr);
}
.properties-grid {
grid-template-columns: repeat(3, 1fr);
gap: 48px 40px;
}
.properties-grid>a:nth-child(2n)>.property-card::before {
display: block;
}
.properties-grid>a:nth-child(3n)>.property-card::before {
display: none;
}
body.show-map .results-layout {
grid-template-columns: 1.5fr 1fr;
gap: 40px;
}
body.show-map .map-panel {
height: calc(100vh - 100px);
}
body.show-map .results-list .properties-grid {
grid-template-columns: repeat(2, 1fr);
gap: 40px 30px;
}
}
@media (min-width: 2200px) {
.page {
grid-template-columns: 320px minmax(0, 1.5fr) minmax(0, 1fr);
}
body.calendar-open .page {
grid-template-columns: 440px minmax(0, 1.5fr) minmax(0, 1fr);
}
.properties-grid {
grid-template-columns: repeat(4, 1fr);
}
.properties-grid>a:nth-child(3n)>.property-card::before {
display: block;
}
.properties-grid>a:nth-child(4n)>.property-card::before {
display: none;
}
body.show-map .results-layout {
grid-template-columns: 1.4fr 1fr;
}
body.show-map .results-list .properties-grid {
grid-template-columns: repeat(3, 1fr);
}
}

/* ≤1199px: pill chips + vendor-safe button chrome */
@media (max-width: 1199px) {
#filters-panel.filters-container button.section-tag {
box-sizing: border-box;
-webkit-appearance: none;
appearance: none;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
min-height: 42px;
padding: 10px 16px;
border: 1px solid rgba(255, 255, 255, 0.85);
border-radius: 999px;
background-color: #f7fafc;
background-image: none;
color: #243746;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.4px;
line-height: 1;
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
margin: 0;
}
#filters-panel.filters-container button.section-tag:hover {
opacity: 1;
background-color: #ffffff;
transform: translateY(-1px);
}
#filters-panel.filters-container button.section-tag svg {
width: 15px;
height: 15px;
opacity: 1;
flex-shrink: 0;
}
#filters-panel.filters-container #prices-toggle-tag .prices-euro-icon {
width: 15px;
min-width: 15px;
height: 15px;
font-size: 14px;
opacity: 1;
}
#filters-panel.filters-container #labels-container button.section-tag {
min-height: 40px;
padding: 8px 14px;
font-size: 13px;
}
#filters-panel.filters-container button.section-tag[data-filter="two"].active {
background: rgba(255, 107, 107, 0.95);
color: #ffffff;
border-color: rgba(255, 107, 107, 0.95);
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="family"].active {
background: rgba(76, 175, 80, 0.95);
color: #ffffff;
border-color: rgba(76, 175, 80, 0.95);
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="large"].active {
background: rgba(255, 152, 0, 0.95);
color: #ffffff;
border-color: rgba(255, 152, 0, 0.95);
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="pool"].active {
background: rgba(33, 150, 243, 0.95);
color: #ffffff;
border-color: rgba(33, 150, 243, 0.95);
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="winter"].active {
background: rgba(0, 188, 212, 0.95);
color: #ffffff;
border-color: rgba(0, 188, 212, 0.95);
box-shadow: none;
}
#filters-panel.filters-container #date-filter-tag.active {
color: #ffffff;
font-weight: 600;
background: #43a047;
border-color: #43a047;
border-radius: 999px;
box-shadow: 0 8px 18px rgba(67, 160, 71, 0.3);
}
#filters-panel.filters-container #map-toggle-tag.active {
color: #ffffff;
font-weight: 600;
background: #1e88e5;
border-color: #1e88e5;
border-radius: 999px;
box-shadow: 0 8px 18px rgba(30, 136, 229, 0.3);
}
#filters-panel.filters-container #labels-toggle-tag.active {
color: #ffffff;
font-weight: 600;
background: #405a6b;
border-color: #405a6b;
border-radius: 999px;
box-shadow: 0 8px 18px rgba(22, 34, 44, 0.26);
}
#filters-panel.filters-container #prices-toggle-tag.active {
color: #ffffff;
font-weight: 600;
background: rgba(156, 39, 176, 0.95);
border-color: rgba(156, 39, 176, 0.95);
border-radius: 999px;
box-shadow: none;
}
}

/* ≥1200px sidebar: text + icon only */
@media (min-width: 1200px) {
#filters-panel.filters-container button.section-tag {
box-sizing: border-box;
-webkit-appearance: none;
appearance: none;
display: inline-flex;
align-items: center;
justify-content: flex-start;
gap: 8px;
min-height: auto;
padding: 6px 0;
margin: 0;
border: none;
border-radius: 0;
background: transparent;
background-image: none;
color: #eef3f8;
font-size: 13px;
font-weight: 600;
letter-spacing: 0.35px;
line-height: 1.35;
box-shadow: none;
transform: none;
}
#filters-panel.filters-container button.section-tag:hover {
opacity: 0.92;
background: transparent;
color: #ffffff;
transform: none;
}
#filters-panel.filters-container button.section-tag svg {
width: 16px;
height: 16px;
opacity: 0.95;
flex-shrink: 0;
}
#filters-panel.filters-container #prices-toggle-tag .prices-euro-icon {
width: 16px;
min-width: 16px;
height: 16px;
font-size: 15px;
opacity: 0.95;
}
#filters-panel.filters-container #labels-container button.section-tag {
min-height: auto;
padding: 6px 0;
font-size: 13px;
}
#filters-panel.filters-container button.section-tag[data-filter="two"].active {
background: transparent;
color: #ff8a8a;
border: none;
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="family"].active {
background: transparent;
color: #a5d6a7;
border: none;
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="large"].active {
background: transparent;
color: #ffcc80;
border: none;
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="pool"].active {
background: transparent;
color: #90caf9;
border: none;
box-shadow: none;
}
#filters-panel.filters-container button.section-tag[data-filter="winter"].active {
background: transparent;
color: #80deea;
border: none;
box-shadow: none;
}
#filters-panel #date-filter-tag.active {
background: transparent;
border: none;
border-radius: 0;
box-shadow: none;
color: #a5d6a7;
font-weight: 600;
}
#filters-panel #map-toggle-tag.active {
background: transparent;
border: none;
border-radius: 0;
box-shadow: none;
color: #90caf9;
font-weight: 600;
}
#filters-panel #labels-toggle-tag.active {
background: transparent;
border: none;
border-radius: 0;
box-shadow: none;
color: #b0bec5;
font-weight: 600;
}
#filters-panel #prices-toggle-tag.active {
background: transparent;
border: none;
border-radius: 0;
box-shadow: none;
color: #ce93d8;
font-weight: 600;
}
}