.shp-rentals-container {
--shp-columns: 3;
--shp-gap: 24px;
--shp-card-max-width: 380px;
--shp-radius: 12px;
--shp-bg: #ffffff;
--shp-text: #222222;
--shp-text-light: #717171;
--shp-accent: #F5A623;
max-width: 1400px;
margin: 0 auto;
padding: 30px 20px;
box-sizing: border-box;
} .shp-rentals-container.shp-layout-grid {
display: grid;
grid-template-columns: repeat(var(--shp-columns, 3), 1fr);
gap: var(--shp-gap);
}
.shp-rentals-container.shp-layout-grid.shp-layout-centered {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: var(--shp-gap);
}
.shp-rentals-container.shp-layout-grid.shp-layout-centered .shp-card {
width: calc((100% - var(--shp-gap) * (var(--shp-columns, 3) - 1)) / var(--shp-columns, 3));
max-width: var(--shp-card-max-width);
flex-shrink: 0;
} .shp-rentals-container .shp-card {
display: flex;
flex-direction: column;
width: 100%;
background: var(--shp-bg);
border-radius: var(--shp-radius);
overflow: hidden;
transition: transform 0.2s ease;
text-decoration: none !important;
color: inherit;
border: none;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.shp-rentals-container .shp-card:hover {
transform: scale(1.01);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.shp-rentals-container .shp-card:focus {
outline: 2px solid var(--shp-accent);
outline-offset: 2px;
} .shp-rentals-container .shp-card-image {
position: relative;
overflow: hidden;
flex-shrink: 0;
line-height: 0;
border-radius: var(--shp-radius);
}
.shp-rentals-container .shp-slider {
position: relative;
width: 100%;
overflow: hidden;
}
.shp-rentals-container .shp-slider-track {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
}
.shp-rentals-container .shp-slider-slide {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
max-height: none !important;
object-fit: cover;
display: block;
opacity: 0;
transition: opacity 0.3s ease;
}
.shp-rentals-container .shp-slider-slide.shp-slide-active {
opacity: 1;
z-index: 1;
} .shp-rentals-container .shp-slider-nav {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 3;
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.9) !important;
border: none !important;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
color: #222 !important;
font-size: 18px;
display: flex !important;
align-items: center !important;
justify-content: center !important;
cursor: pointer;
padding: 0 !important;
opacity: 0;
transition: opacity 0.2s ease;
line-height: 1;
}
.shp-rentals-container .shp-card:hover .shp-slider-nav {
opacity: 1;
}
.shp-rentals-container .shp-slider-nav:hover {
background: #fff !important;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.shp-rentals-container .shp-slider-prev {
left: 10px;
}
.shp-rentals-container .shp-slider-next {
right: 10px;
} .shp-rentals-container .shp-slider-dots {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
gap: 5px;
align-items: center;
}
.shp-rentals-container .shp-slider-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.6);
cursor: pointer;
transition: background 0.2s ease, transform 0.2s ease;
}
.shp-rentals-container .shp-slider-dot.shp-dot-active {
background: #fff;
transform: scale(1.3);
}
.shp-rentals-container .shp-slider-dot:hover {
background: rgba(255, 255, 255, 0.9);
} .shp-rentals-container .shp-card-body {
display: flex;
flex-direction: column;
padding: 16px 16px 20px;
flex: 1;
} .shp-rentals-container .shp-card-meta {
margin: 0 0 4px;
font-size: 0.82rem;
color: var(--shp-text-light);
font-weight: 400;
line-height: 1.4;
} .shp-rentals-container .shp-card-title {
margin: 0 0 8px;
font-size: 1.05rem;
font-weight: 600;
color: var(--shp-text);
line-height: 1.35;
text-decoration: none;
border: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} .shp-rentals-container .shp-card-address {
margin: 0 0 4px;
font-size: 0.82rem;
color: var(--shp-text-light);
font-weight: 400;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} .shp-rentals-container .shp-card-details {
margin: 0 0 12px;
font-size: 0.82rem;
color: var(--shp-text-light);
font-weight: 400;
line-height: 1.4;
} .shp-rentals-container .shp-card-price {
margin: 0;
font-size: 0.95rem;
color: var(--shp-text);
font-weight: 400;
margin-top: auto;
}
.shp-rentals-container .shp-card-price strong {
font-size: 1.1rem;
font-weight: 700;
color: var(--shp-text);
} .shp-rentals-container .shp-card-btn {
display: block;
margin-top: 16px;
padding: 14px 24px;
background: var(--shp-accent);
color: #ffffff !important;
text-align: center;
font-size: 0.82rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
border-radius: 10px;
transition: filter 0.2s ease, transform 0.2s ease;
text-decoration: none;
border: none;
cursor: pointer;
}
.shp-rentals-container .shp-card:hover .shp-card-btn {
filter: brightness(1.08);
transform: scale(1.02);
} .shp-rentals-container .shp-error,
.shp-rentals-container .shp-empty {
text-align: center;
padding: 40px 20px;
color: var(--shp-text-light);
font-size: 0.9375rem;
width: 100%;
} @media (max-width: 1024px) {
.shp-rentals-container.shp-layout-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.shp-rentals-container {
padding: 20px 12px;
}
.shp-rentals-container.shp-layout-grid {
grid-template-columns: 1fr;
}
.shp-rentals-container .shp-card-body {
padding: 14px 14px 18px;
}
.shp-rentals-container .shp-slider-nav {
opacity: 1;
}
}.wpml-ls-legacy-list-horizontal{border:1px solid transparent;padding:7px;clear:both}.wpml-ls-legacy-list-horizontal>ul{padding:0;margin:0 !important;list-style-type:none}.wpml-ls-legacy-list-horizontal .wpml-ls-item{padding:0;margin:0;list-style-type:none;display:inline-block}.wpml-ls-legacy-list-horizontal a{display:block;text-decoration:none;padding:5px 10px 6px;line-height:1}.wpml-ls-legacy-list-horizontal a span{vertical-align:middle}.wpml-ls-legacy-list-horizontal a span.wpml-ls-bracket{vertical-align:unset}.wpml-ls-legacy-list-horizontal .wpml-ls-flag{display:inline;vertical-align:middle}.wpml-ls-legacy-list-horizontal .wpml-ls-flag+span{margin-left:.4em}.rtl .wpml-ls-legacy-list-horizontal .wpml-ls-flag+span{margin-left:0;margin-right:.4em}.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer{margin-bottom:30px}.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer>ul{text-align:center}.wpml-ls-menu-item .wpml-ls-flag{display:inline;vertical-align:baseline}.wpml-ls-menu-item .wpml-ls-flag+span{margin-left:.3em}.rtl .wpml-ls-menu-item .wpml-ls-flag+span{margin-left:0;margin-right:.3em}ul .wpml-ls-menu-item a{display:flex;align-items:center}.cmplz-video.cmplz-iframe-styles{background-color:transparent}.cmplz-video.cmplz-hidden{visibility:hidden !important}.cmplz-blocked-content-notice{display:none}.cmplz-placeholder-parent{height:inherit}.cmplz-optin .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optin .cmplz-wp-video .cmplz-blocked-content-notice,.cmplz-optout .cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-optout .cmplz-wp-video .cmplz-blocked-content-notice{display:block}.cmplz-blocked-content-container,.cmplz-wp-video{animation-name:cmplz-fadein;animation-duration:600ms;background:#FFF;border:0;border-radius:3px;box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15);display:flex;justify-content:center;align-items:center;background-repeat:no-repeat !important;background-size:cover !important;height:inherit;position:relative}.cmplz-blocked-content-container.gmw-map-cover,.cmplz-wp-video.gmw-map-cover{max-height:100%;position:absolute}.cmplz-blocked-content-container.cmplz-video-placeholder,.cmplz-wp-video.cmplz-video-placeholder{padding-bottom:initial}.cmplz-blocked-content-container iframe,.cmplz-wp-video iframe{visibility:hidden;max-height:100%;border:0 !important}.cmplz-blocked-content-container .cmplz-custom-accept-btn,.cmplz-wp-video .cmplz-custom-accept-btn{white-space:normal;text-transform:initial;cursor:pointer;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:200px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-custom-accept-btn:focus,.cmplz-wp-video .cmplz-custom-accept-btn:focus{border:1px dotted #cecece}.cmplz-blocked-content-container .cmplz-blocked-content-notice,.cmplz-wp-video .cmplz-blocked-content-notice{white-space:normal;text-transform:initial;position:absolute !important;width:100%;top:50%;left:50%;transform:translate(-50%,-50%);max-width:300px;font-size:14px;padding:10px;background-color:rgba(0,0,0,0.5);color:#fff;text-align:center;z-index:98;line-height:23px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links{display:block;margin-bottom:10px}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-links a,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-links a{color:#fff}.cmplz-blocked-content-container .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body,.cmplz-wp-video .cmplz-blocked-content-notice .cmplz-blocked-content-notice-body{display:block}.cmplz-blocked-content-container div div{display:none}.cmplz-wp-video .cmplz-placeholder-element{width:100%;height:inherit}@keyframes cmplz-fadein{from{opacity:0}to{opacity:1}}