/* ══════════════════════════════════════════════════════════════════
 * Property Row — Airbnb-style horizontal card row
 * ══════════════════════════════════════════════════════════════════ */
.cs-prow { --prow-gap: 18px; --prow-cols: 6; padding: 24px 0; color: #222; font-size: 15px; line-height: 1.45; }
.cs-prow__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.cs-prow__title { display: inline-flex; align-items: center; gap: 8px; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: #222; text-decoration: none; }
.cs-prow__title:hover span { text-decoration: underline; text-underline-offset: 3px; }
.cs-prow__title-arrow { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #f2f2f2; color: #222; }
.cs-prow__nav { display: flex; gap: 8px; }
.cs-prow__btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #e6e6e6; background: #fff; color: #222; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: box-shadow .15s, background .15s; padding: 0; }
.cs-prow__btn:hover:not(:disabled) { background: #f7f7f7; box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.cs-prow__btn:disabled { opacity: .35; cursor: default; }

.cs-prow__track { display: flex; gap: var(--prow-gap); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.cs-prow__track::-webkit-scrollbar { display: none; }

.cs-prow__card { position: relative; flex: 0 0 calc((100% - (var(--prow-cols) - 1) * var(--prow-gap)) / var(--prow-cols)); min-width: 0; scroll-snap-align: start; }
.cs-prow__link { display: block; color: inherit; text-decoration: none; }
.cs-prow__img { position: relative; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; background: #f0f0f0; margin-bottom: 12px; }
.cs-prow__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.cs-prow__card:hover .cs-prow__img img { transform: scale(1.04); }
.cs-prow__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f2f2f2, #e6e6e6); }
.cs-prow__badge { position: absolute; top: 12px; left: 12px; padding: 5px 10px; border-radius: 999px; background: #fff; color: #222; font-size: 12px; font-weight: 600; line-height: 1.2; box-shadow: 0 1px 3px rgba(0,0,0,.14); max-width: calc(100% - 60px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cs-prow__fav { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border: 0; background: transparent; padding: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; z-index: 2; }
.cs-prow__fav svg { fill: rgba(0,0,0,.5); stroke: #fff; stroke-width: 2; transition: transform .15s; }
.cs-prow__fav:hover svg { transform: scale(1.1); }
.cs-prow__fav.is-active svg { fill: #ff385c; }
.cs-prow__fav.is-loading { opacity: .5; }
.cs-prow__name { font-size: 15px; line-height: 1.4; font-weight: 600; color: #222; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 4px; }
.cs-prow__meta { display: grid; gap: 4px; font-size: 14px; line-height: 1.45; color: #6a6a6a; }
.cs-prow__price { display: block; }
.cs-prow__rating { display: inline-flex; align-items: center; gap: 5px; color: #222; font-weight: 500; }
.cs-prow__rating svg { flex-shrink: 0; }
.cs-prow__count { color: #6a6a6a; font-weight: 400; }
.cs-prow__rating--new { color: var(--brand, #bd9e43); font-weight: 600; }

@media (max-width: 1200px) { .cs-prow { --prow-cols: 4.5; } }
@media (max-width: 900px)  { .cs-prow { --prow-cols: 3.5; } }
@media (max-width: 600px) {
  .cs-prow { --prow-cols: 2.25; --prow-gap: 12px; padding: 16px 0; }
  /* Elementor containers have no side padding on phones: add our own gutter, and let the track bleed through it */
  .elementor-widget-cs_property_row .cs-prow__head { padding-inline: 20px; }
  .elementor-widget-cs_property_row .cs-prow__track { margin-inline: 0; padding-inline: 20px; scroll-padding-inline: 20px; }
  .cs-prow__title { font-size: 19px; }
  .cs-prow__nav { display: none; }
  /* bleed to the screen edge so the next card peeks in */
  .cs-prow__track { scroll-snap-type: x proximity; margin-inline: calc(-1 * var(--prow-bleed, 16px)); padding-inline: var(--prow-bleed, 16px); scroll-padding-inline: var(--prow-bleed, 16px); }
  .cs-prow__card { flex-basis: calc((100% - (var(--prow-cols) - 1) * var(--prow-gap)) / var(--prow-cols)); }
  .cs-prow__name { font-size: 14.5px; }
  .cs-prow__meta { font-size: 13.5px; }
}
