/*
Theme Name: MyRent Agency
Theme URI: https://my-rent.net
Author: MyRent
Author URI: https://my-rent.net
Description: Professional hotel and accommodation WordPress theme with MyRent API integration (availability, booking, interactive maps).
Version: 4.0.3
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: myrent-agency
Tags: hotel, accommodation, booking, properties, myrent, real-estate, responsive, custom-colors, custom-menu, featured-images
*/

/* ===================================
   MYRENT AGENCY THEME v4.0.2
   
   CSS ARCHITECTURE:
   - Modular CSS structure in assets/css/modules/
   - Centralized CSS variables for easy theming
   - Child theme friendly architecture
   
   See: assets/css/CSS-ARCHITECTURE.md for documentation
   =================================== */

/*
Changelog v4.0.1 (Jan 2025):
- RENAMED: Theme renamed from MyRent Agency to MyRent Agency
- FIXED: Child theme CSS loading order

Changelog v4.0.0 (Jan 2025):
- NEW: Modular CSS architecture (11 modules)
- NEW: Centralized CSS variables in _variables.css
- NEW: Child theme support documentation
- REFACTORED: Consolidated duplicate styles
- IMPROVED: Better organized navigation, cards, forms, booking styles

Previous versions: See README.md for full changelog
*/

.sticky{
}
.bypostauthor{
}
.wp-caption{
}
.wp-caption-text{
}
.gallery-caption{
}
.alignleft{
    float:left;
    margin:0 1em 1em 0
}
.alignright{
    float:right;
    margin:0 0 1em 1em
}
.aligncenter{
    display:block;
    margin:0 auto 1em
}
:root{
    --primary-color:#c8a35f;
    --secondary-color:#2c3e50;
    --text-color:#333333;
    --heading-font:'Playfair Display', serif;
    --body-font:'Montserrat', sans-serif
}
html{
    overflow-x:hidden;
    max-width:100%;
    cursor:default
}
body{
    position:relative;
    max-width:100%
}
.wrapper{
    overflow-x:hidden
}
.container,.page-content .container{
    max-width:100%
}
.myrent-property-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
    gap:30px;
    margin:40px 0
}
.myrent-property-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 15px rgba(0,0,0,0.1);
    transition:transform 0.3s ease
}
.myrent-property-card:hover{
    transform:translateY(-5px)
}
.myrent-property-image{
    width:100%;
    height:250px;
    object-fit:cover
}
.myrent-property-details{
    padding:20px
}
.myrent-property-title{
    font-size:1.5em;
    margin-bottom:10px;
    color:var(--secondary-color)
}
.myrent-property-meta{
    display:flex;
    gap:15px;
    margin:15px 0;
    font-size:0.9em;
    color:#666
}
.myrent-property-meta span{
    display:flex;
    align-items:center;
    gap:5px
}
.myrent-property-price{
    font-size:1.3em;
    color:var(--primary-color);
    font-weight:bold
}
.myrent-book-button{
    width:100%;
    padding:12px;
    background:var(--primary-color);
    color:#fff;
    border:none;
    border-radius:4px;
    cursor:pointer;
    transition:background 0.3s ease
}
.myrent-book-button:hover{
    background:var(--secondary-color)
}
/* ===================================Property Archive Styles=================================== */.properties-archive{
    padding:60px 0
}
.properties-filters{
    background:#f8f9fa;
    padding:30px;
    border-radius:8px;
    margin-bottom:40px
}
.filter-group{
    margin-bottom:20px
}
.filter-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:var(--secondary-color)
}
.properties-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
    gap:30px
}
.property-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
    transition:all 0.3s ease
}
.property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 8px 30px rgba(0,0,0,0.15)
}
.property-image{
    position:relative;
    height:250px;
    overflow:hidden
}
.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.3s ease
}
.property-card:hover .property-image img{
    transform:scale(1.1)
}
.property-price-tag{
    position:absolute;
    top:15px;
    right:15px;
    background:var(--primary-color);
    color:#fff;
    padding:8px 15px;
    border-radius:20px;
    font-weight:bold
}
.property-content{
    padding:25px;
    display:flex;
    flex-direction:column
}
.property-name{
    font-size:1.4em;
    margin-bottom:10px
}
.property-name a{
    color:var(--secondary-color);
    text-decoration:none
}
.property-location{
    color:#666;
    margin-bottom:15px;
    font-size:0.9em
}
.property-meta-row{
    display:flex;
    gap:15px;
    margin:15px 0;
    padding:15px 0;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee
}
.property-meta-row .meta-item{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:0.9em;
    color:#666
}
.property-excerpt{
    margin:auto;
    color:#555;
    line-height:1.6;
    font-size:0.95em
}
/* ===================================Breadcrumbs Styles=================================== */.breadcrumbs{
    display:none !important;
    position:absolute !important;
    left:-9999px !important;
    width:0 !important;
    height:0 !important;
    padding:0 !important;
    margin:0 !important;
    overflow:hidden !important
}
.breadcrumbs ol{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap:wrap;
    align-items:center
}
.breadcrumbs li{
    display:flex;
    align-items:center
}
.breadcrumbs li:not(:last-child)::after{
    content:'/';
    margin:0 10px;
    color:#999
}
.breadcrumbs li:last-child{
    color:var(--primary-color);
    font-weight:600
}
.breadcrumbs a{
    color:#666;
    text-decoration:none;
    transition:color 0.3s ease
}
.breadcrumbs a:hover{
    color:var(--primary-color)
}
/* ===================================Single Property Styles=================================== */.property-detail,section.property-detail,.single-property section.property-detail{
    padding:0 !important;
    padding-top:0 !important;
    margin:0 !important;
    margin-top:0 !important
}
.property-hero-wrapper,.single-property .property-hero-wrapper,section.property-detail .property-hero-wrapper{
    display:none !important;
    height:0 !important;
    width:0 !important;
    padding:0 !important;
    margin:0 !important;
    overflow:hidden !important;
    position:absolute !important;
    left:-9999px !important;
    visibility:hidden !important
}
.property-header{
    margin:0 !important;
    padding:0 !important
}
.single-property .property-hero,.property-hero,section.property-hero{
    margin:0 !important;
    margin-top:0 !important;
    padding-top:0 !important
}
.single-property > *:first-child,.single-property .site-content,.single-property .site-content > *:first-child,.single-property .property-detail,body.single-property{
    margin-top:0 !important;
    padding-top:0 !important
}
.property-hero-media{
    margin-top:0 !important
}
.single-property h1:first-child,.single-property h2:first-child,.single-property h3:first-child,.property-header h1:first-child,.property-header h2:first-child,.property-header h3:first-child{
    margin-top:0 !important
}
.property-title{
    font-size:2.5em;
    margin-bottom:15px
}
.property-gallery{
    margin-bottom:40px
}
.property-details,.property-description,.property-facilities,.property-map{
    margin-bottom:40px
}
.property-description .description-text,.description-text{
    font-size:2rem;
    font-weight:400;
    line-height:1.6;
    color:#333;
    text-align:justify;
    hyphens:none;
    -webkit-hyphens:none;
    -ms-hyphens:none;
    word-break:normal;
    overflow-wrap:normal
}
.property-description .description-text p,.description-text p{
    font-size:2rem;
    font-weight:400;
    line-height:1.6;
    text-align:justify;
    hyphens:none;
    -webkit-hyphens:none;
    -ms-hyphens:none;
    margin-bottom:1em
}
.property-description.has-toggle .description-content{
    position:relative
}
.property-description .description-text.collapsed{
    max-height:200px;
    overflow:hidden
}
.property-description .description-fade{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:80px;
    background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events:none
}
.property-description .description-text.expanded{
    max-height:none
}
.property-description.has-toggle .description-text.expanded + .description-fade{
    display:none
}
.description-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    padding:12px 20px;
    margin-top:15px;
    background:transparent;
    border:1px solid #e0e0e0;
    border-radius:4px;
    color:#333;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    cursor:pointer;
    transition:all 0.2s ease
}
.description-toggle:hover{
    background:#f5f5f5;
    border-color:#ccc
}
.description-toggle .toggle-icon{
    font-size:10px;
    transition:transform 0.3s ease
}
.description-toggle.expanded .toggle-icon{
    transform:rotate(180deg)
}
.property-meta-large{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
    gap:20px;
    margin:30px 0
}
.meta-item{
    text-align:center;
    padding:20px;
    background:#f8f9fa;
    border-radius:8px
}
@media (min-width:992px){
    .meta-item i{
        font-size:1em !important;
        color:var(--primary-color);
        margin-bottom:10px
    }
}
@media (max-width:991px){
    .property-meta-large{
        grid-template-columns:repeat(3, 1fr) !important;
        gap:10px
    }
    .meta-item{
        padding:15px 10px
    }
    .meta-item i{
        font-size:1.2em;
        color:var(--primary-color);
        margin-bottom:5px
    }
    .meta-label{
        font-size:0.75rem
    }
    .meta-value{
        font-size:0.9rem
    }
}
.meta-item i{
    font-size:2em;
    color:var(--primary-color);
    margin-bottom:10px
}
.meta-label{
    display:block;
    font-size:0.9em;
    color:#666;
    margin-bottom:5px
}
.meta-value{
    display:block;
    font-size:1.5em;
    font-weight:bold;
    color:var(--secondary-color)
}
.property-amenities{
    margin-bottom:40px
}
.property-amenities.vip-style{
    margin:40px 0;
    padding:0;
    background:transparent
}
.property-amenities.vip-style .amenities-header-line{
    border-bottom:3px solid var(--primary-color);
    padding-bottom:15px;
    margin-bottom:35px
}
.property-amenities.vip-style .amenities-header-line h3{
    font-size:1.6rem;
    font-weight:600;
    color:var(--secondary-color);
    margin:0
}
.featured-amenities-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:35px 30px;
    margin-bottom:40px
}
@media (max-width:768px){
    .featured-amenities-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:25px 20px
    }
}
.featured-amenity-item{
    display:flex;
    align-items:center;
    gap:15px
}
.featured-amenity-item i{
    font-size:2.2rem;
    color:var(--primary-color);
    width:50px;
    text-align:center;
    flex-shrink:0
}
.featured-amenity-item span{
    font-size:1.3rem;
    font-weight:400;
    color:#333
}
.amenities-see-all{
    text-align:center;
    padding:22px 0;
    background:#f8f9fa;
    margin-top:10px
}
.see-all-amenities-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 30px;
    font-size:1.1rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#333;
    background:transparent;
    border:none;
    cursor:pointer;
    transition:all 0.3s ease
}
.see-all-amenities-btn:hover{
    color:#000
}
.see-all-amenities-btn i{
    font-size:0.9rem;
    transition:transform 0.3s ease
}
.all-amenities-expanded{
    padding:40px 0;
    border-top:1px solid #e5e5e5;
    animation:slideDown 0.3s ease
}
@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-10px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}
.amenities-categories-columns{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:40px 50px
}
@media (max-width:991px){
    .amenities-categories-columns{
        grid-template-columns:repeat(2, 1fr);
        gap:30px 40px
    }
}
@media (max-width:576px){
    .amenities-categories-columns{
        grid-template-columns:1fr;
        gap:30px
    }
}
.amenity-category-column h4{
    display:flex;
    align-items:center;
    font-size:1.65rem;
    font-weight:700;
    color:var(--primary-color);
    margin:0 0 20px 0;
    padding-bottom:10px;
    border-bottom:none
}
.amenity-category-column h4 i{
    font-size:1.4rem;
    color:var(--primary-color);
    margin-right:12px
}
.amenity-category-column ul{
    list-style:none;
    margin:0;
    padding:0
}
.amenity-category-column ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:8px 0;
    font-size:1.45rem;
    color:#333;
    line-height:1.4
}
.amenity-category-column ul li i{
    color:var(--primary-color);
    font-size:1rem;
    margin-top:4px;
    flex-shrink:0
}
.amenity-category-column ul li span{
    flex:1
}
.property-amenities.booking-style{
    margin:30px 0;
    background:transparent !important
}
.property-amenities.booking-style h3{
    font-size:1.6rem;
    font-weight:600;
    margin-bottom:25px;
    color:var(--secondary-color);
    background:transparent !important
}
.amenities-categories-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:35px 50px
}
@media (max-width:768px){
    .amenities-categories-grid{
        grid-template-columns:1fr;
        gap:30px
    }
}
.amenity-category{
    margin-bottom:5px;
    background:transparent !important
}
.amenity-category.category-hidden{
    display:none
}
.property-amenities.booking-style.expanded .amenity-category.category-hidden{
    display:block;
    animation:fadeInCategory 0.3s ease forwards
}
@keyframes fadeInCategory{
    from{
        opacity:0;
        transform:translateY(10px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}
.category-header{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
    padding:0 !important;
    background:transparent !important;
    border:none !important;
    border-bottom:none !important
}
.category-header i{
    font-size:1.8rem;
    color:var(--primary-color);
    width:28px;
    text-align:center;
    background:transparent !important
}
.category-header h4{
    font-size:2.25rem;
    font-weight:700;
    color:var(--secondary-color);
    margin:0;
    padding:0 !important;
    text-transform:none;
    letter-spacing:0;
    background:transparent !important
}
.category-amenities{
    list-style:none;
    margin:0;
    padding:0;
    padding-left:42px
}
.category-amenities li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:8px 0;
    font-size:2.1rem;
    font-weight:400;
    color:#333;
    line-height:1.4;
    background:transparent !important
}
.category-amenities li.amenity-paid{
    color:#333
}
.amenity-check{
    flex-shrink:0;
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:8px
}
.amenity-check i{
    font-size:1.3rem;
    color:var(--primary-color);
    font-weight:normal
}
.amenity-name{
    flex:1;
    color:#444
}
.amenity-charge{
    font-size:0.95rem;
    color:var(--primary-color);
    font-weight:600;
    white-space:nowrap
}
.property-amenities.booking-style .amenities-actions{
    margin-top:30px;
    text-align:left;
    padding-left:0
}
.property-amenities.booking-style .amenities-toggle-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 0;
    font-size:1.85rem;
    font-weight:600;
    color:var(--primary-color);
    background:transparent !important;
    border:none;
    cursor:pointer;
    transition:all 0.2s ease
}
.property-amenities.booking-style .amenities-toggle-btn:hover{
    color:var(--secondary-color);
    text-decoration:underline
}
.property-amenities.booking-style .amenities-toggle-btn .toggle-icon{
    font-size:0.85rem;
    transition:transform 0.3s ease
}
.property-amenities.booking-style .amenities-toggle-btn.expanded .toggle-icon{
    transform:rotate(180deg)
}
.property-amenities:not(.booking-style) .amenities-unified-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
    gap:10px;
    margin-top:20px
}
.amenity-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    background:#f8f9fa;
    border-radius:6px;
    transition:all 0.2s ease;
    font-size:0.9rem;
    position:relative
}
.amenity-item:hover{
    background:#e9ecef;
    transform:translateX(3px)
}
.amenity-item.amenity-paid{
    border-left:2px solid var(--primary-color)
}
.amenity-item.group-separator{
    margin-right:25px
}
.amenity-icon{
    flex-shrink:0;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:50%;
    color:var(--primary-color)
}
.amenity-icon i{
    font-size:0.9rem
}
.amenity-info{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0
}
.amenity-label{
    font-weight:500;
    color:#333;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:1.2rem
}
.amenity-price{
    font-size:0.75rem;
    color:var(--primary-color);
    font-weight:600
}
.amenity-price small{
    color:#666;
    font-weight:normal;
    font-size:0.7rem
}
.amenity-item[data-group]:hover::before{
    content:attr(data-group);
    position:absolute;
    bottom:100%;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0, 0, 0, 0.8);
    color:white;
    padding:4px 8px;
    border-radius:4px;
    font-size:0.7rem;
    white-space:nowrap;
    z-index:10;
    margin-bottom:5px;
    pointer-events:none
}
@media (max-width:768px){
    .amenities-unified-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:8px
    }
    .amenity-item{
        padding:6px 8px;
        font-size:0.8rem
    }
    .amenity-item.group-separator{
        margin-right:0
    }
    .amenity-item.group-separator::after{
        display:none
    }
    .amenity-label{
        font-size:0.75rem
    }
    .amenity-icon{
        width:24px;
        height:24px
    }
    .amenity-icon i{
        font-size:0.8rem
    }
    .amenity-item[data-group]:hover::before{
        display:none
    }
}
padding:15px;
background:#f8f9fa;
border-radius:10px;
transition:all 0.3s ease
}
.amenity-item:hover{
    background:#e9ecef;
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(0,0,0,0.08)
}
.amenity-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:8px;
    flex-shrink:0
}
.amenity-icon i{
    font-size:20px;
    color:var(--primary-color)
}
.amenity-label{
    font-size:0.95em;
    color:var(--secondary-color);
    font-weight:500
}
.property-amenities.has-more-amenities{
    position:relative
}
.amenity-item.amenity-hidden{
    display:none
}
.property-amenities.has-more-amenities .amenities-unified-grid{
    position:relative;
    max-height:none
}
.amenities-fade-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:80px;
    background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,1) 100%);
    pointer-events:none;
    z-index:1;
    margin-top:-80px
}
.amenities-fade-overlay.hidden{
    display:none
}
.amenities-actions{
    text-align:center;
    margin-top:15px;
    position:relative;
    z-index:2
}
.amenities-toggle-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    font-size:0.85em;
    color:#666;
    background:transparent;
    border:none;
    cursor:pointer;
    transition:all 0.3s ease
}
.amenities-toggle-btn:hover{
    color:var(--primary-color)
}
.amenities-toggle-btn .toggle-icon{
    font-size:0.9em;
    transition:transform 0.3s ease
}
.amenities-toggle-btn.expanded .toggle-icon{
    transform:rotate(180deg)
}
.property-amenities.expanded .amenity-item.amenity-hidden{
    display:flex;
    animation:fadeInAmenity 0.3s ease forwards
}
@keyframes fadeInAmenity{
    from{
        opacity:0;
        transform:translateY(10px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}
.property-availability{
    margin-bottom:40px
}
.availability-subtitle{
    color:#666;
    margin-bottom:25px;
    font-size:1em
}
.availability-calendar-container{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 2px 15px rgba(0,0,0,0.08)
}
.calendar-navigation{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-bottom:20px
}
.calendar-nav-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    background:transparent;
    border:2px solid var(--primary-color, #c8a35f);
    color:var(--primary-color, #c8a35f);
    cursor:pointer;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2em
}
.calendar-nav-btn:hover{
    background:var(--primary-color, #c8a35f);
    color:#fff;
    border-color:var(--primary-color, #c8a35f)
}
.calendar-nav-btn:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(200, 163, 95, 0.3)
}
.calendar-months{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap:25px
}
.calendar-month{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e9ecef
}
/* ============================================v3.7.0:NEW Two-Month Calendar with Prices============================================ */.two-month-calendar{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px
}
.two-month-calendar.mobile-view{
    grid-template-columns:1fr
}
@media (max-width:768px){
    .two-month-calendar{
        grid-template-columns:1fr
    }
    .cal-month-header .calendar-nav-btn{
        width:32px;
        height:32px;
        font-size:0.85em
    }
}
.cal-month{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    border:1px solid #e9ecef
}
.cal-month-header{
    background:linear-gradient(135deg, var(--primary-color, #c8a35f) 0%, var(--secondary-color, #2c3e50) 100%);
    color:#fff;
    padding:15px 15px;
    display:flex;
    justify-content:space-between;
    align-items:center
}
.cal-month-name{
    font-size:1.2em;
    font-weight:600;
    letter-spacing:0.5px;
    flex:1;
    text-align:center
}
.cal-month-header .calendar-nav-btn{
    background:transparent !important;
    border:2px solid rgba(255, 255, 255, 0.8) !important;
    color:#fff !important;
    width:36px;
    height:36px;
    border-radius:50%;
    cursor:pointer;
    transition:all 0.2s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:0.9em;
    box-shadow:0 2px 8px rgba(0, 0, 0, 0.15)
}
.cal-month-header .calendar-nav-btn:hover{
    background:rgba(255, 255, 255, 0.2) !important;
    border-color:#fff !important;
    transform:scale(1.1);
    box-shadow:0 4px 12px rgba(0, 0, 0, 0.2)
}
.cal-month-header .nav-spacer{
    width:36px;
    height:36px
}
.cal-weekdays{
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    background:#f8f9fa;
    border-bottom:1px solid #e9ecef
}
.cal-weekday{
    text-align:center;
    font-weight:600;
    font-size:0.75em;
    color:var(--secondary-color, #2c3e50);
    padding:10px 4px;
    text-transform:uppercase
}
.cal-days{
    display:grid;
    grid-template-columns:repeat(7, 1fr);
    padding:10px;
    gap:4px
}
.cal-day{
    position:relative;
    min-height:65px;
    padding:6px 4px;
    border-radius:6px;
    text-align:center;
    cursor:pointer;
    transition:all 0.2s ease;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    background:#fff;
    border:1px solid transparent
}
.cal-day:hover:not(.empty):not(.past):not(.unavailable){
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    border-color:var(--primary-color, #c8a35f)
}
.cal-day.empty{
    background:transparent;
    cursor:default;
    min-height:auto
}
.cal-day-number{
    font-weight:600;
    font-size:0.95em;
    color:#333;
    margin-bottom:2px
}
.cal-day-price{
    font-size:0.7em;
    color:var(--primary-color, #c8a35f);
    font-weight:600
}
.cal-day-minstay{
    font-size:0.6em;
    color:#666;
    background:#f0f0f0;
    padding:1px 4px;
    border-radius:3px;
    margin-top:2px
}
.cal-day.available{
    background:rgba(40, 167, 69, 0.08);
    border-color:rgba(40, 167, 69, 0.2)
}
.cal-day.available .cal-day-number{
    color:#28a745
}
.cal-day.available:hover{
    background:rgba(40, 167, 69, 0.15)
}
.cal-day.unavailable{
    background:rgba(220, 53, 69, 0.08);
    cursor:not-allowed
}
.cal-day.unavailable .cal-day-number{
    color:#dc3545;
    text-decoration:line-through
}
.cal-day.unavailable .cal-day-price,.cal-day.unavailable .cal-day-minstay{
    display:none
}
.cal-day.past{
    background:#f5f5f5;
    cursor:not-allowed
}
.cal-day.past .cal-day-number{
    color:#ccc
}
.cal-day.past .cal-day-price,.cal-day.past .cal-day-minstay{
    display:none
}
.cal-day.today{
    border:2px solid var(--primary-color, #c8a35f) !important
}
.cal-day.today .cal-day-number{
    color:var(--primary-color, #c8a35f);
    font-weight:700
}
.cal-day.changeover{
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.15) 0%,rgba(40, 167, 69, 0.15) 50%,rgba(220, 53, 69, 0.15) 50%,rgba(220, 53, 69, 0.15) 100%);
    cursor:pointer
}
.cal-day.changeover .changeover-line{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(135deg, transparent 49%, #999 49%, #999 51%, transparent 51%);
    pointer-events:none
}
/* v3.7.11:Checkout-position day (day BEFORE booked period starts)Guest can check OUT on this day, next day booking startsDiagonal:green top-left → red bottom-right (135deg)This is the LAST day available before next booking */.cal-day.checkout-position{
    position:relative;
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.25) 0%,rgba(40, 167, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 100%) !important;
    cursor:pointer
}
.cal-day.checkout-position::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(135deg, transparent 49%, #888 49%, #888 51%, transparent 51%);
    pointer-events:none
}
.cal-day.checkout-position .cal-day-number{
    position:relative;
    z-index:1
}
.cal-day.checkout-position .cal-day-price{
    position:relative;
    z-index:1
}
/* v3.7.11:Checkin-position day (day AFTER booked period ends)Guest can check IN on this day, previous day was checkoutDiagonal:red top-left → green bottom-right (-45deg)This is the FIRST day available after previous booking */.cal-day.checkin-position{
    position:relative;
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.25) 0%,rgba(40, 167, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 100%) !important;
    cursor:pointer
}
.cal-day.checkin-position::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(-45deg, transparent 49%, #888 49%, #888 51%, transparent 51%);
    pointer-events:none
}
.cal-day.checkin-position .cal-day-number{
    position:relative;
    z-index:1
}
.cal-day.checkin-position .cal-day-price{
    position:relative;
    z-index:1
}
.cal-day.checkin-position.checkout-position{
    background:linear-gradient(90deg,rgba(220, 53, 69, 0.25) 0%,rgba(40, 167, 69, 0.25) 25%,rgba(40, 167, 69, 0.25) 75%,rgba(220, 53, 69, 0.25) 100%) !important
}
.cal-day.checkin-position.checkout-position::after{
    background:linear-gradient(90deg,transparent 0%, transparent 25%,#888 25%, #888 26%,transparent 26%, transparent 74%,#888 74%, #888 75%,transparent 75%, transparent 100%)
}
.legend-color.checkout-position{
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%)
}
.legend-color.checkin-position{
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%)
}
.cal-day.checkin-transition{
    position:relative;
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.25) 0%,rgba(40, 167, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 100%) !important;
    cursor:default
}
.cal-day.checkin-transition::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(135deg, transparent 49%, #888 49%, #888 51%, transparent 51%);
    pointer-events:none
}
.cal-day.checkin-transition .cal-day-number{
    color:#666
}
.cal-day.checkout-transition{
    position:relative;
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.25) 0%,rgba(40, 167, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 50%,rgba(220, 53, 69, 0.25) 100%) !important;
    cursor:pointer
}
.cal-day.checkout-transition::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(-45deg, transparent 49%, #888 49%, #888 51%, transparent 51%);
    pointer-events:none
}
.cal-day.checkout-transition .cal-day-number{
    position:relative;
    z-index:1
}
.cal-day.checkout-transition .cal-day-price{
    position:relative;
    z-index:1
}
.legend-color.checkin-transition{
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%)
}
.legend-color.checkout-transition{
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%)
}
.cal-day.checkout-only{
    background:rgba(255, 193, 7, 0.15)
}
.cal-day.checkout-only .cal-day-number{
    color:#856404
}
.cal-day.selected-checkin{
    background:var(--primary-color, #c8a35f) !important;
    border-color:var(--primary-color, #c8a35f) !important
}
.cal-day.selected-checkin .cal-day-number,.cal-day.selected-checkin .cal-day-price,.cal-day.selected-checkin .cal-day-minstay{
    color:#fff !important
}
.cal-day.selected-checkout{
    background:var(--secondary-color, #2c3e50) !important;
    border-color:var(--secondary-color, #2c3e50) !important
}
.cal-day.selected-checkout .cal-day-number,.cal-day.selected-checkout .cal-day-price{
    color:#fff !important
}
.cal-day.in-range{
    background:rgba(200, 163, 95, 0.2) !important;
    border-color:rgba(200, 163, 95, 0.3)
}
.calendar-legend{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    padding:15px 0;
    margin-top:15px;
    border-top:1px solid #e9ecef;
    justify-content:center
}
.legend-item{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:0.8em;
    color:#666
}
.legend-color{
    width:18px;
    height:18px;
    border-radius:4px;
    border:1px solid #ddd
}
.legend-color.available{
    background:rgba(40, 167, 69, 0.15);
    border-color:rgba(40, 167, 69, 0.3)
}
.legend-color.unavailable{
    background:rgba(220, 53, 69, 0.15);
    border-color:rgba(220, 53, 69, 0.3)
}
.legend-color.changeover{
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.2) 50%,rgba(220, 53, 69, 0.2) 50%)
}
.legend-color.checkin-only{
    background:rgba(255, 193, 7, 0.2);
    border-color:rgba(255, 193, 7, 0.4)
}
.legend-color.checkout-only{
    background:rgba(255, 193, 7, 0.2);
    border-color:rgba(255, 193, 7, 0.4)
}
.calendar-loading{
    text-align:center;
    padding:60px 20px;
    color:#666;
    font-size:1.1em
}
.calendar-loading i{
    margin-right:10px;
    color:var(--primary-color, #c8a35f)
}
.calendar-error{
    text-align:center;
    padding:30px;
    color:#dc3545;
    background:rgba(220, 53, 69, 0.1);
    border-radius:8px;
    margin:10px
}
.calendar-navigation{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px
}
.calendar-nav-btn{
    background:transparent;
    color:var(--primary-color, #c8a35f);
    border:2px solid var(--primary-color, #c8a35f);
    width:40px;
    height:40px;
    border-radius:50%;
    cursor:pointer;
    transition:all 0.2s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2em
}
.calendar-nav-btn:hover{
    background:var(--primary-color, #c8a35f);
    color:#fff;
    transform:scale(1.1)
}
.calendar-nav-btn:focus{
    outline:none;
    box-shadow:0 0 0 3px rgba(200, 163, 95, 0.3)
}
@media (max-width:600px){
    .cal-day{
        min-height:55px;
        padding:4px 2px
    }
    .cal-day-number{
        font-size:0.85em
    }
    .cal-day-price{
        font-size:0.6em
    }
    .cal-day-minstay{
        font-size:0.5em
    }
    .cal-weekday{
        font-size:0.65em;
        padding:8px 2px
    }
    .calendar-legend{
        gap:10px
    }
    .legend-item{
        font-size:0.7em
    }
}
.booking-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 4px 25px rgba(0,0,0,0.12);
    border:1px solid #e9ecef
}
.booking-title{
    font-size:1.3em;
    margin-bottom:20px;
    color:var(--secondary-color);
    font-weight:600
}
.property-info-row{
    display:flex;
    flex-wrap:wrap;
    margin-left:-15px;
    margin-right:-15px;
    align-items:flex-start
}
.property-info-row > .col-md-8,.property-info-row > .col-md-4{
    position:relative;
    padding-left:15px;
    padding-right:15px
}
.property-info-row > .col-md-8{
    flex:0 0 66.666667%;
    max-width:66.666667%;
    overflow-x:hidden
}
.property-info-row > .col-md-4{
    flex:0 0 33.333333%;
    max-width:33.333333%
}
@media (max-width:767px){
    .property-info-row > .col-md-8,.property-info-row > .col-md-4{
        flex:0 0 100%;
        max-width:100%
    }
}
@media (min-width:992px){
    .property-sidebar{
        z-index:98;
        box-sizing:border-box
    }
    .col-md-4{
        position:relative
    }
}
/* ==========================Single Property Hero & Nav========================== */.property-hero{
    margin-top:0;
    margin-bottom:0
}
.single-property .property-detail{
    padding-top:0 !important;
    margin-top:0 !important;
    overflow:visible !important
}
.single-property .property-detail .container{
    max-width:1200px;
    padding-left:15px;
    padding-right:15px;
    overflow:visible !important
}
.property-hero{
    width:100vw;
    position:relative;
    left:50%;
    right:50%;
    margin-left:-50vw;
    margin-right:-50vw;
    margin-bottom:40px
}
.property-hero-media{
    position:relative;
    border-radius:0;
    overflow:hidden;
    max-height:520px
}
.property-hero,section.property-hero,.single-property .property-hero,.single-property section.property-hero{
    width:100vw !important;
    max-width:100vw !important;
    position:relative !important;
    left:50% !important;
    right:50% !important;
    margin-left:-50vw !important;
    margin-right:-50vw !important;
    margin-top:0 !important;
    margin-bottom:0 !important;
    padding:0 !important;
    padding-left:0 !important;
    padding-right:0 !important
}
.property-hero-media{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    position:relative !important
}
.property-hero-slider{
    width:100% !important;
    height:520px !important;
    position:relative !important;
    margin:0 !important;
    padding:0 !important
}
.property-hero-slider .hero-slide{
    width:100% !important;
    height:520px !important;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    display:block;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:1 !important;
    transition:opacity 0.3s ease !important;
    opacity:0
}
.property-hero-slider{
    position:relative !important;
    height:520px !important;
    width:100% !important;
    overflow:hidden !important
}
@media (max-width:991px){
    .property-hero,.property-hero-media{
        display:block !important;
        min-height:300px !important;
        height:auto !important
    }
    .property-hero-slider{
        display:block !important;
        height:300px !important;
        min-height:300px !important
    }
    .property-hero-slider .hero-slide{
        height:300px !important
    }
    .property-hero-slider .owl-nav{
        top:35% !important
    }
    .property-hero-slider .owl-nav button,.property-hero-slider .owl-nav button.owl-prev,.property-hero-slider .owl-nav button.owl-next{
        width:40px !important;
        height:40px !important;
        line-height:40px !important;
        font-size:18px !important
    }
    .property-hero-slider .owl-nav .owl-prev,.property-hero-slider .owl-nav button.owl-prev{
        left:10px !important
    }
    .property-hero-slider .owl-nav .owl-next,.property-hero-slider .owl-nav button.owl-next{
        right:10px !important
    }
}
.property-hero-slider .owl-nav{
    position:absolute !important;
    top:45% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    transform:translateY(-50%) !important;
    z-index:10 !important;
    pointer-events:none !important
}
.property-hero-slider .owl-nav button,.property-hero-slider .owl-nav button.owl-prev,.property-hero-slider .owl-nav button.owl-next{
    position:absolute !important;
    background:transparent !important;
    color:rgba(255, 255, 255, 0.7) !important;
    width:50px !important;
    height:50px !important;
    border-radius:50% !important;
    font-size:28px !important;
    line-height:50px !important;
    text-align:center !important;
    transition:all 0.3s ease !important;
    border:none !important;
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    z-index:11 !important;
    pointer-events:all !important;
    cursor:pointer !important;
    box-shadow:none !important;
    text-shadow:0 1px 3px rgba(0, 0, 0, 0.3) !important
}
.property-hero-slider .owl-nav button i.fa,.property-hero-slider .owl-prev i.fa,.property-hero-slider .owl-next i.fa,.owl-carousel .owl-nav button i.fa{
    display:block !important;
    line-height:50px !important;
    font-size:28px !important;
    z-index:12 !important;
    color:rgba(255, 255, 255, 0.7) !important;
    text-shadow:0 1px 3px rgba(0, 0, 0, 0.3) !important
}
.property-hero-slider .owl-nav,.owl-carousel .owl-nav,div.owl-carousel .owl-nav{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important
}
.property-hero-slider .owl-nav button:hover{
    background:rgba(255, 255, 255, 0.15) !important;
    color:rgba(255, 255, 255, 1) !important;
    transform:scale(1.05)
}
.property-hero-slider .owl-nav button:hover i.fa{
    color:rgba(255, 255, 255, 1) !important
}
.property-hero-slider .owl-nav .owl-prev,.property-hero-slider .owl-nav button.owl-prev{
    left:20px !important
}
.property-hero-slider .owl-nav .owl-next,.property-hero-slider .owl-nav button.owl-next{
    right:20px !important
}
.property-hero-slider.owl-carousel .owl-nav button.owl-prev,.property-hero-slider.owl-carousel .owl-nav button.owl-next{
    display:block !important;
    opacity:1 !important
}
.property-hero-slider .owl-dots{
    position:absolute;
    bottom:20px;
    width:100%;
    text-align:center;
    z-index:10
}
.property-hero-slider .owl-dots .owl-dot{
    display:inline-block;
    @media (max-width:991px){
        .search-form-wrapper{
            position:absolute !important;
            bottom:20px !important;
            margin-top:0 !important;
            padding-bottom:0 !important;
            left:0 !important;
            right:0 !important;
            z-index:100 !important
        }
    }
    width:12px;
    height:12px;
    margin:0 5px;
    background:rgba(255, 255, 255, 0.5);
    border-radius:50%;
    transition:all 0.3s ease
}
.property-hero-slider .owl-dots .owl-dot.active,.property-hero-slider .owl-dots .owl-dot:hover{
    background:rgba(255, 255, 255, 1);
    transform:scale(1.3)
}
.hero-nav-manual{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
    z-index:1000;
    pointer-events:none;
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 20px
}
@media (max-width:991px){
    .hero-nav-manual{
        padding:0 20px 80px 0px
    }
}
@media (max-width:991px){
    .hero-content{
        padding-top:40px !important
    }
    .hero-title{
        font-size:1.8rem !important;
        margin-bottom:10px !important
    }
    .hero-subtitle{
        font-size:1rem !important;
        margin-bottom:10px !important
    }
    .search-form-wrapper{
        bottom:20px !important
    }
}
.hero-nav-btn{
    position:absolute;
    width:50px;
    height:50px;
    background:transparent;
    border:none;
    border-radius:50%;
    cursor:pointer;
    pointer-events:all;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:none
}
.hero-nav-btn:hover{
    background:rgba(255, 255, 255, 0.15);
    transform:scale(1.05);
    box-shadow:none
}
.hero-nav-prev{
    left:20px
}
.hero-nav-next{
    right:20px
}
.hero-nav-btn i{
    font-size:24px;
    color:rgba(255, 255, 255, 0.7);
    line-height:1;
    text-shadow:0 1px 3px rgba(0, 0, 0, 0.3);
    transition:color 0.3s ease
}
.hero-nav-btn:hover i{
    color:rgba(255, 255, 255, 1)
}
@media (max-width:768px){
    .hero-nav-btn{
        width:40px;
        height:40px
    }
    .hero-nav-btn i{
        font-size:20px
    }
    .hero-nav-prev{
        left:10px
    }
    .hero-nav-next{
        right:10px
    }
}
.property-hero-image{
    width:100%;
    padding-top:45%;
    background-size:cover;
    background-position:center center;
    transform:scale(1.02);
    transition:transform 0.6s ease
}
.property-hero-media:hover .property-hero-image{
    transform:scale(1.05)
}
.property-hero-overlay{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%) !important;
    z-index:1 !important
}
.property-hero-content{
    position:absolute !important;
    bottom:30px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    z-index:2 !important;
    max-width:1200px !important;
    width:100% !important;
    padding:0 40px !important;
    color:#fff !important;
    display:flex !important;
    justify-content:space-between !important;
    align-items:flex-end !important
}
.property-hero-content,.property-hero-content *,.property-hero-main,.property-hero-main *,.property-hero-main h1,.property-hero-title,.property-hero-title,h1.property-hero-title,.property-hero-location,.property-hero-location *,.property-hero-meta,.property-hero-meta *,.property-hero-meta span,.property-hero-meta span *,.property-hero-price,.property-hero-price *,.property-hero-price .price-amount,.property-hero-price .price-label,div.property-hero-content,div.property-hero-content *,.hero-total-price,.hero-total-price *,.hero-total-label,.hero-total-amount,.hero-total-nights{
    color:#fff !important;
    text-shadow:2px 2px 4px rgba(0,0,0,0.8) !important
}
.property-hero-meta i,.property-hero-location i{
    color:var(--primary-color) !important
}
.property-hero-price .hero-total-price{
    margin-top:0;
    padding:10px 16px;
    background:rgba(0, 0, 0, 0.5);
    border-radius:12px;
    font-size:0.85rem;
    display:inline-flex;
    flex-direction:column;
    align-items:flex-end;
    gap:4px
}
.hero-total-label{
    display:block;
    opacity:0.85;
    font-size:0.75rem
}
.hero-total-amount{
    font-size:1.3rem;
    font-weight:700;
    margin-right:0
}
.hero-total-nights{
    opacity:0.85;
    font-size:0.8rem
}
.hero-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    margin-top:8px;
    padding:8px 16px;
    font-size:0.85rem;
    border-radius:20px;
    background:var(--primary-color, #c8a35f) !important;
    border:none !important;
    color:#fff !important;
    text-shadow:none !important;
    font-weight:600;
    transition:all 0.3s ease
}
.hero-book-btn:hover{
    background:var(--secondary-color, #2c3e50) !important;
    transform:translateY(-1px)
}
.property-hero-title{
    margin:0 0 8px 0;
    font-weight:700;
    font-family:var(--heading-font)
}
.property-hero-location{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:1.2rem;
    opacity:0.9
}
.property-hero-location i{
    color:var(--primary-color)
}
.property-hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:10px;
    font-size:1.2rem
}
.property-hero-meta span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(0,0,0,0.4)
}
.property-hero-meta i{
    color:var(--primary-color)
}
.property-hero-price{
    background:transparent;
    padding:0;
    border-radius:0;
    min-width:auto;
    text-align:right
}
.property-hero-price:empty{
    display:none !important;
    background:transparent !important;
    padding:0 !important;
    min-width:0 !important
}
.property-hero-price .price-amount{
    font-size:1.6rem;
    font-weight:700
}
.property-hero-price .price-label{
    font-size:0.8rem;
    opacity:0.85
}
@media (max-width:991px){
    .property-hero-content{
        flex-direction:column;
        align-items:flex-start;
        padding:18px 18px 20px 18px;
        bottom:15px !important
    }
    .property-hero-title{
        font-size:1.6rem
    }
    .property-hero-price{
        align-self:stretch;
        text-align:left;
        margin-top:10px
    }
    .property-hero-price .hero-total-price{
        display:flex !important;
        flex-direction:row !important;
        flex-wrap:wrap !important;
        align-items:center !important;
        justify-content:flex-start !important;
        gap:6px 12px !important;
        padding:8px 12px !important;
        font-size:0.8rem !important
    }
    .property-hero-price .hero-total-label{
        font-size:0.7rem !important;
        margin-right:4px !important
    }
    .property-hero-price .hero-total-amount{
        font-size:1.1rem !important
    }
    .property-hero-price .hero-total-nights{
        font-size:0.7rem !important
    }
    .property-hero-price .hero-book-btn{
        margin-top:0 !important;
        margin-left:auto !important;
        padding:6px 14px !important;
        font-size:0.8rem !important
    }
}
.property-section-nav{
    position:-webkit-sticky !important;
    position:sticky !important;
    top:0 !important;
    z-index:9999 !important;
    background:#fff !important;
    border-bottom:1px solid #e5e5e5 !important;
    margin-top:0 !important;
    margin-bottom:30px !important;
    width:100% !important;
    display:block !important;
    transition:box-shadow 0.3s ease !important
}
body.single-property .header-new,body.single-property header{
    position:relative !important;
    position:static !important
}
body.single-property .header-new.sticked{
    position:relative !important;
    box-shadow:none !important
}
.mfp-bg{
    z-index:999999 !important
}
.mfp-wrap{
    z-index:999999 !important
}
.mfp-container{
    z-index:999999 !important
}
.mfp-content{
    z-index:999999 !important
}
.mfp-close{
    z-index:1000000 !important
}
body.mfp-open .property-section-nav,html.mfp-open .property-section-nav,.mfp-open .property-section-nav{
    z-index:1 !important;
    visibility:hidden !important
}
body.mfp-open header,body.mfp-open .header-new,html.mfp-open header,html.mfp-open .header-new{
    z-index:1 !important
}
.property-section-nav.is-stuck{
    box-shadow:0 4px 12px rgba(0, 0, 0, 0.1) !important
}
.property-section-nav ul{
    list-style:none;
    margin:0;
    padding:0 10px;
    display:flex;
    justify-content:center;
    gap:30px
}
.property-section-nav li{
    padding:12px 0
}
.property-section-nav a{
    text-decoration:none;
    font-size:1.2rem;
    font-weight:600;
    color:#444;
    padding-bottom:6px;
    border-bottom:2px solid transparent;
    transition:color 0.2s ease, border-color 0.2s ease
}
.property-section-nav a:hover{
    color:var(--secondary-color)
}
.property-section-nav a.is-active{
    color:var(--secondary-color);
    border-color:var(--primary-color)
}
.booking-field{
    margin-bottom:20px
}
.booking-field label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:var(--secondary-color);
    font-size:0.95em
}
.booking-field .input-with-icon{
    position:relative
}
.booking-field .input-with-icon i:first-child{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:var(--primary-color);
    font-size:1.1em;
    pointer-events:none
}
.booking-field .input-with-icon.has-clear .form-control{
    padding-right:40px
}
.date-clear-btn{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    border:none;
    background:#e0e0e0;
    border-radius:50%;
    cursor:pointer;
    display:none;
    align-items:center;
    justify-content:center;
    transition:all 0.2s ease;
    padding:0
}
.date-clear-btn i{
    position:static !important;
    transform:none !important;
    color:#666 !important;
    font-size:12px !important;
    line-height:1
}
.date-clear-btn:hover{
    background:#ccc
}
.date-clear-btn:hover i{
    color:#333 !important
}
.input-with-icon.has-clear.has-value .date-clear-btn{
    display:flex
}
.booking-field .form-control{
    width:100%;
    padding:12px 15px 12px 45px;
    border:2px solid #e0e0e0;
    border-radius:10px;
    font-size:1em;
    transition:all 0.3s ease
}
.booking-field .form-control:focus{
    border-color:var(--primary-color);
    box-shadow:0 0 0 3px rgba(200, 163, 95, 0.1);
    outline:none
}
.btn-success{
    background-color:#28a745;
    border-color:#28a745
}
.btn-success:hover{
    background-color:#218838;
    border-color:#1e7e34
}
.btn:disabled{
    opacity:0.7;
    cursor:not-allowed
}
.btn .fa-spinner{
    animation:spin 1s linear infinite
}
@keyframes spin{
    from{
        transform:rotate(0deg)
    }
    to{
        transform:rotate(360deg)
    }
}
.booking-card,.info-card{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1);
    margin-bottom:25px
}
.price-display{
    text-align:center;
    padding:20px;
    background:#f8f9fa;
    border-radius:8px;
    margin-bottom:20px
}
.price-display .price{
    font-size:2.5em;
    color:var(--primary-color);
    font-weight:bold
}
.price-display .period{
    color:#666;
    font-size:1em
}
.info-list{
    list-style:none;
    padding:0
}
.info-list li{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #eee
}
/* ===================================Booking Page Styles=================================== */.booking-section{
    padding:60px 0
}
.booking-form{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1)
}
.form-section{
    margin-bottom:30px;
    padding-bottom:30px;
    border-bottom:2px solid #f0f0f0
}
.form-section:last-of-type{
    border-bottom:none
}
.form-section h3{
    margin-bottom:20px;
    color:var(--secondary-color)
}
.booking-summary{
    position:sticky;
    top:20px;
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1)
}
.property-preview{
    margin-bottom:25px;
    text-align:center
}
.property-preview img{
    border-radius:8px;
    margin-bottom:15px
}
.summary-details{
    margin:25px 0
}
.summary-row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #eee
}
.summary-price{
    margin-top:20px;
    padding-top:20px;
    border-top:2px solid var(--primary-color)
}
.price-row{
    display:flex;
    justify-content:space-between;
    font-size:1.1em;
    font-weight:bold
}
.booking-help{
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #eee;
    text-align:center
}
/* ===================================Contact Page Styles=================================== */.contact-section{
    padding:60px 0
}
.contact-form-wrapper{
    background:#fff;
    border-radius:12px;
    padding:40px;
    box-shadow:0 4px 20px rgba(0,0,0,0.1)
}
.contact-info{
    background:#f8f9fa;
    border-radius:12px;
    padding:30px
}
.contact-info .info-item{
    display:flex;
    gap:15px;
    margin-bottom:25px
}
.contact-info .info-item i{
    font-size:1.5em;
    color:var(--primary-color)
}
.contact-info .info-content strong{
    display:block;
    margin-bottom:5px;
    color:var(--secondary-color)
}
.contact-map{
    margin-top:60px
}
/* ===================================Transparent Header for Homepage=================================== */header.header-transparent{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:999;
    background:linear-gradient(to bottom, rgba(0,0,0,0.7), transparent)
}
.single-property header:not(.header-transparent),.page-template-default header:not(.header-transparent){
    position:fixed !important;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:#fff !important;
    box-shadow:0 2px 10px rgba(0,0,0,0.1)
}
.single-property header:not(.header-transparent) nav.navigation-top,.page-template-default header:not(.header-transparent) nav.navigation-top{
    background:#f8f9fa !important
}
.single-property header:not(.header-transparent) nav.navigation-main,.page-template-default header:not(.header-transparent) nav.navigation-main{
    background:#fff !important
}
.single-property header:not(.header-transparent) nav.navigation-top .box,.single-property header:not(.header-transparent) nav.navigation-main .navigation-block ul li a,.page-template-default header:not(.header-transparent) nav.navigation-top .box,.page-template-default header:not(.header-transparent) nav.navigation-main .navigation-block ul li a{
    color:#333 !important;
    text-shadow:none;
    font-weight:600
}
.single-property header:not(.header-transparent) nav.navigation-main .logo img,.page-template-default header:not(.header-transparent) nav.navigation-main .logo img{
    filter:none
}
header.header-transparent nav.navigation-top{
    background:rgba(0, 0, 0, 0.6);
    border-bottom:1px solid rgba(255, 255, 255, 0.15)
}
header.header-transparent nav.navigation-main{
    background:transparent
}
header.header-transparent nav.navigation-top .box,header.header-transparent nav.navigation-main .navigation-block ul li a{
    color:#fff !important;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5);
    font-weight:600;
    font-size:1.05em
}
header.header-transparent nav.navigation-top .box:hover,header.header-transparent nav.navigation-main .navigation-block ul li a:hover{
    color:var(--primary-color) !important;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5)
}
header.header-transparent nav.navigation-main .logo img{
    filter:brightness(0) invert(1)
}
header.sticked{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:#fff !important;
    box-shadow:0 4px 20px rgba(0,0,0,0.15);
    animation:slideDown 0.3s ease-in-out;
    transition:all 0.3s ease
}
body:not(.home) header.sticked ~ *{
}
@keyframes slideDown{
    from{
        transform:translateY(-100%)
    }
    to{
        transform:translateY(0)
    }
}
header.sticked nav.navigation-top{
    background:#f8f9fa !important
}
header.sticked nav.navigation-main{
    background:#fff !important
}
header.sticked nav.navigation-top .box,header.sticked nav.navigation-main .navigation-block ul li a{
    color:#333 !important;
    text-shadow:none
}
header.sticked nav.navigation-main .logo img{
    filter:none
}
header.header-transparent.sticked{
    background:#fff !important
}
header.header-transparent.sticked nav.navigation-top{
    background:#f8f9fa !important
}
header.header-transparent.sticked nav.navigation-top .box,header.header-transparent.sticked nav.navigation-main .navigation-block ul li a{
    color:#333 !important;
    text-shadow:none
}
header.header-transparent.sticked nav.navigation-main .logo img{
    filter:none
}
/* ===================================Hero Search Section Styles=================================== */body.home,body.page-id-2{
    padding-top:0 !important
}
body.home > *:first-child,body.page-id-2 > *:first-child{
    margin-top:0 !important;
    padding-top:0 !important
}
/* ===================================v3.6.65:Hero Section - VipHolidayBooker StyleFull screen, transparent header, parallax zoom effect=================================== */.hero-search-section{
    position:relative;
    height:100vh;
    min-height:600px;
    max-height:900px;
    overflow:hidden;
    margin-top:0 !important;
    padding-top:0 !important;
    margin-bottom:0
}
.hero-search-section.hero-fullscreen{
    height:100vh;
    min-height:100vh;
    max-height:none
}
.hero-slider{
    margin-top:0 !important;
    padding-top:0 !important;
    height:100%
}
.hero-slider .hero-slide{
    height:100vh;
    min-height:600px;
    position:relative;
    overflow:hidden
}
.hero-slide-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    transform:scale(1);
    transition:transform 8s ease-out;
    will-change:transform
}
.hero-slide.active .hero-slide-bg,.owl-item.active .hero-slide-bg{
    animation:heroZoom 12s ease-out forwards
}
@keyframes heroZoom{
    0%{
        transform:scale(1)
    }
    100%{
        transform:scale(1.1)
    }
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(to bottom,rgba(0, 0, 0, 0.3) 0%,rgba(0, 0, 0, 0.1) 40%,rgba(0, 0, 0, 0.2) 70%,rgba(0, 0, 0, 0.4) 100%);
    z-index:1
}
.hero-slide .container{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center
}
.hero-content{
    text-align:center;
    padding-top:40px;
    padding-bottom:100px
}
.hero-title{
    color:#fff;
    font-size:3.5rem;
    font-weight:700;
    text-shadow:2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom:20px;
    letter-spacing:-1px
}
.hero-subtitle{
    color:rgba(255, 255, 255, 0.95);
    font-size:1.4rem;
    font-weight:400;
    text-shadow:1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width:600px;
    margin:0 auto
}
/* ===================================v3.6.65:Transparent Header on Homepage and Property Pages=================================== */body.home header:not(.sticked),body.home .header-new:not(.sticked),body.single-property header:not(.sticked),body.single-property .header-new:not(.sticked),body.transparent-header-page header:not(.sticked),body.transparent-header-page .header-new:not(.sticked){
    position:absolute !important;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    background:transparent !important;
    background-color:transparent !important;
    box-shadow:none !important;
    transition:all 0.3s ease
}
body.home header:not(.sticked) .header-menu a,body.home .header-new:not(.sticked) .header-menu a,body.single-property header:not(.sticked) .header-menu a,body.single-property .header-new:not(.sticked) .header-menu a,body.transparent-header-page header:not(.sticked) .header-menu a,body.transparent-header-page .header-new:not(.sticked) .header-menu a{
    color:#fff !important;
    text-shadow:1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-text-stroke:0.3px rgba(0, 0, 0, 0.2);
    font-weight:600;
    transition:all 0.3s ease
}
body.home header:not(.sticked) .header-menu a:hover,body.home .header-new:not(.sticked) .header-menu a:hover,body.single-property header:not(.sticked) .header-menu a:hover,body.single-property .header-new:not(.sticked) .header-menu a:hover,body.transparent-header-page header:not(.sticked) .header-menu a:hover,body.transparent-header-page .header-new:not(.sticked) .header-menu a:hover{
    color:#fff !important;
    text-shadow:2px 2px 6px rgba(0, 0, 0, 0.9)
}
body.home header:not(.sticked) .header-logo img,body.home .header-new:not(.sticked) .header-logo img,body.single-property header:not(.sticked) .header-logo img,body.single-property .header-new:not(.sticked) .header-logo img,body.transparent-header-page header:not(.sticked) .header-logo img,body.transparent-header-page .header-new:not(.sticked) .header-logo img{
    filter:brightness(0) invert(1) drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
    transition:filter 0.3s ease
}
body.home header:not(.sticked) .mobile-toggle,body.home .header-new:not(.sticked) .mobile-toggle,body.single-property header:not(.sticked) .mobile-toggle,body.single-property .header-new:not(.sticked) .mobile-toggle,body.transparent-header-page header:not(.sticked) .mobile-toggle,body.transparent-header-page .header-new:not(.sticked) .mobile-toggle{
    color:#fff !important;
    text-shadow:1px 1px 3px rgba(0, 0, 0, 0.5)
}
body.home header:not(.sticked) .header-phone a,body.home .header-new:not(.sticked) .header-phone a,body.single-property header:not(.sticked) .header-phone a,body.single-property .header-new:not(.sticked) .header-phone a,body.transparent-header-page header:not(.sticked) .header-phone a,body.transparent-header-page .header-new:not(.sticked) .header-phone a{
    color:#fff !important;
    border-color:rgba(255, 255, 255, 0.7) !important;
    text-shadow:1px 1px 3px rgba(0, 0, 0, 0.5)
}
body.home header:not(.sticked) .header-phone a:hover,body.home .header-new:not(.sticked) .header-phone a:hover,body.single-property header:not(.sticked) .header-phone a:hover,body.single-property .header-new:not(.sticked) .header-phone a:hover,body.transparent-header-page header:not(.sticked) .header-phone a:hover,body.transparent-header-page .header-new:not(.sticked) .header-phone a:hover{
    background:rgba(255, 255, 255, 0.2) !important;
    border-color:#fff !important
}
/* ===================================Sticky header when scrolled=================================== */header.sticked,.header-new.sticked,body.home header.sticked,body.home .header-new.sticked,body.single-property header.sticked,body.single-property .header-new.sticked,body.transparent-header-page header.sticked,body.transparent-header-page .header-new.sticked{
    position:fixed !important;
    top:0;
    left:0;
    right:0;
    background:rgba(255, 255, 255, 0.98) !important;
    background-color:rgba(255, 255, 255, 0.98) !important;
    box-shadow:0 2px 15px rgba(0, 0, 0, 0.1) !important;
    animation:slideDown 0.3s ease;
    z-index:9999
}
header.sticked .header-menu a,.header-new.sticked .header-menu a,body.home header.sticked .header-menu a,body.home .header-new.sticked .header-menu a,body.single-property header.sticked .header-menu a,body.single-property .header-new.sticked .header-menu a,body.transparent-header-page header.sticked .header-menu a,body.transparent-header-page .header-new.sticked .header-menu a{
    color:#333 !important;
    text-shadow:none !important;
    -webkit-text-stroke:0 !important
}
header.sticked .header-logo img,.header-new.sticked .header-logo img,body.home header.sticked .header-logo img,body.home .header-new.sticked .header-logo img,body.single-property header.sticked .header-logo img,body.single-property .header-new.sticked .header-logo img,body.transparent-header-page header.sticked .header-logo img,body.transparent-header-page .header-new.sticked .header-logo img{
    filter:none !important
}
header.sticked .header-phone a,.header-new.sticked .header-phone a,body.home header.sticked .header-phone a,body.home .header-new.sticked .header-phone a,body.single-property header.sticked .header-phone a,body.single-property .header-new.sticked .header-phone a,body.transparent-header-page header.sticked .header-phone a,body.transparent-header-page .header-new.sticked .header-phone a{
    color:#333 !important;
    text-shadow:none !important;
    border-color:var(--primary-color, #c8a35f) !important;
    background:transparent !important
}
header.sticked .mobile-toggle,.header-new.sticked .mobile-toggle,body.home header.sticked .mobile-toggle,body.home .header-new.sticked .mobile-toggle,body.single-property header.sticked .mobile-toggle,body.single-property .header-new.sticked .mobile-toggle,body.transparent-header-page header.sticked .mobile-toggle,body.transparent-header-page .header-new.sticked .mobile-toggle{
    color:#333 !important;
    text-shadow:none !important
}
@keyframes slideDown{
    from{
        transform:translateY(-100%);
        opacity:0
    }
    to{
        transform:translateY(0);
        opacity:1
    }
}
.search-form-wrapper{
    position:absolute;
    bottom:60px;
    left:0;
    right:0;
    z-index:100;
    padding:0 15px
}
.hero-search-form{
    background:rgba(255, 255, 255, 0.98);
    backdrop-filter:blur(10px);
    border-radius:16px;
    box-shadow:0 10px 40px rgba(0, 0, 0, 0.25);
    padding:25px 30px;
    border:none;
    max-width:1100px;
    margin:0 auto
}
/* ===================================v3.6.65:Advanced Filters=================================== */.advanced-filters-toggle.mobile-only-filters{
    display:none
}
@media (max-width:991px){
    .advanced-filters-toggle.mobile-only-filters{
        display:block
    }
}
.advanced-filters-toggle{
    text-align:center;
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid rgba(0, 0, 0, 0.08)
}
.btn-advanced-toggle{
    background:transparent;
    border:none;
    color:#666;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    padding:8px 16px;
    border-radius:20px;
    transition:all 0.3s ease;
    display:inline-flex;
    align-items:center;
    gap:8px
}
.btn-advanced-toggle:hover{
    background:rgba(0, 0, 0, 0.05);
    color:var(--primary-color, #c8a35f)
}
.btn-advanced-toggle .toggle-icon{
    transition:transform 0.3s ease
}
.btn-advanced-toggle.active .toggle-icon{
    transform:rotate(180deg)
}
.advanced-filters-panel{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid rgba(0, 0, 0, 0.08);
    animation:slideIn 0.3s ease
}
@keyframes slideIn{
    from{
        opacity:0;
        transform:translateY(-10px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}
.filters-row{
    display:grid;
    grid-template-columns:1fr 1fr 2fr;
    gap:30px;
    align-items:start
}
.filter-group{
    margin-bottom:15px
}
.filter-group > label{
    display:block;
    font-weight:600;
    color:#333;
    margin-bottom:12px;
    font-size:14px
}
.filter-property-type select{
    width:100%;
    padding:10px 12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    background:#fff;
    cursor:pointer;
    transition:border-color 0.3s ease
}
.filter-property-type select:focus{
    border-color:var(--primary-color, #c8a35f);
    outline:none
}
.price-range-inputs{
    display:flex;
    align-items:center;
    gap:10px
}
.price-input{
    position:relative;
    flex:1
}
.price-input .currency{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#666;
    font-weight:500
}
.price-input input{
    width:100%;
    padding:10px 12px 10px 30px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    transition:border-color 0.3s ease
}
.price-input input:focus{
    border-color:var(--primary-color, #c8a35f);
    outline:none
}
.price-separator{
    color:#999;
    font-weight:500
}
.amenities-checkboxes{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:10px
}
.amenity-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    background:#f8f9fa;
    border:1px solid #eee;
    border-radius:8px;
    cursor:pointer;
    transition:all 0.2s ease;
    font-size:13px;
    color:#555
}
.amenity-checkbox:hover{
    border-color:var(--primary-color, #c8a35f);
    background:#fff
}
.amenity-checkbox input[type="checkbox"]{
    display:inline-block;
    width:18px;
    height:18px;
    margin:0;
    cursor:pointer;
    accent-color:var(--primary-color, #c8a35f);
    flex-shrink:0;
    order:3
}
/* v3.9.138: Booking consent - entire area acts as checkbox with clear visual feedback */
.booking-consent .amenity-checkbox,
.booking-consent label.amenity-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 14px 16px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    margin-bottom: 8px !important;
}

.booking-consent .amenity-checkbox:hover,
.booking-consent label.amenity-checkbox:hover {
    border-color: var(--primary-color, #c8a35f) !important;
    background: #fffbf2 !important;
    box-shadow: 0 2px 8px rgba(200, 163, 95, 0.15) !important;
    transform: translateY(-1px) !important;
}

.booking-consent .amenity-checkbox:has(input:checked),
.booking-consent label.amenity-checkbox:has(input:checked) {
    border-color: var(--primary-color, #c8a35f) !important;
    background: linear-gradient(135deg, #fffbf2 0%, #fff8e8 100%) !important;
    box-shadow: 0 2px 12px rgba(200, 163, 95, 0.2) !important;
}

.booking-consent .amenity-checkbox:has(input:checked)::after,
.booking-consent label.amenity-checkbox:has(input:checked)::after {
    content: '✓' !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--primary-color, #c8a35f) !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

/* Hide the actual input visually but keep it functional */
.booking-consent .amenity-checkbox input[type="checkbox"],
.booking-consent .amenity-checkbox input[type="radio"],
.booking-consent label.amenity-checkbox input[type="checkbox"],
.booking-consent label.amenity-checkbox input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
}

/* Custom visual indicator for checkbox/radio */
.booking-consent .amenity-checkbox::before,
.booking-consent label.amenity-checkbox::before {
    content: '' !important;
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid #ccc !important;
    border-radius: 4px !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
}

.booking-consent .amenity-checkbox:has(input[type="radio"])::before,
.booking-consent label.amenity-checkbox:has(input[type="radio"])::before {
    border-radius: 50% !important;
}

.booking-consent .amenity-checkbox:has(input:checked)::before,
.booking-consent label.amenity-checkbox:has(input:checked)::before {
    background: var(--primary-color, #c8a35f) !important;
    border-color: var(--primary-color, #c8a35f) !important;
}

.booking-consent .amenity-checkbox span,
.booking-consent label.amenity-checkbox span {
    flex: 1 !important;
    font-size: 0.95em !important;
    line-height: 1.4 !important;
    color: #333 !important;
    padding-right: 30px !important;
}
.booking-consent .amenity-checkbox span a,
.booking-consent label.amenity-checkbox span a {
    color: var(--primary-color, #c8a35f) !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}
.amenity-checkbox .checkbox-custom{
    display:none
}
.amenity-checkbox i{
    font-size:16px;
    color:#888;
    width:20px;
    text-align:center;
    flex-shrink:0;
    order:1
}
.amenity-checkbox span,.amenity-checkbox:not(:has(span))::after{
    order:2;
    flex:1
}
.amenity-checkbox:has(input:checked){
    border-color:var(--primary-color, #c8a35f);
    background:rgba(200, 163, 95, 0.08)
}
.amenity-checkbox:has(input:checked) i{
    color:var(--primary-color, #c8a35f)
}
.filters-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:20px;
    padding-top:15px;
    border-top:1px solid rgba(0, 0, 0, 0.08)
}
.btn-clear-filters{
    background:#f8f9fa;
    border:1px solid #ddd;
    color:#333;
    padding:10px 20px;
    border-radius:8px;
    font-size:14px;
    cursor:pointer;
    transition:all 0.3s ease
}
.btn-clear-filters:hover{
    background:#e9ecef;
    border-color:#ccc;
    color:#222
}
.btn-apply-filters{
    padding:10px 25px;
    font-size:14px
}
.properties-map-page .advanced-filters-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.6);
    z-index:10000;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch
}
.properties-map-page .advanced-filters-modal.active{
    display:flex;
    align-items:center;
    justify-content:center
}
.properties-map-page .advanced-filters-modal-content{
    background:#fff;
    width:90%;
    max-width:550px;
    max-height:90vh;
    border-radius:16px;
    padding:25px;
    overflow-y:auto;
    animation:fadeInModal 0.3s ease;
    box-shadow:0 10px 40px rgba(0, 0, 0, 0.2)
}
@keyframes fadeInModal{
    from{
        opacity:0;
        transform:scale(0.95)
    }
    to{
        opacity:1;
        transform:scale(1)
    }
}
.properties-map-page .modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:15px;
    margin-bottom:20px;
    border-bottom:1px solid #eee
}
.properties-map-page .modal-header h3{
    margin:0;
    font-size:20px;
    color:#333;
    display:flex;
    align-items:center;
    gap:10px
}
.properties-map-page .modal-close-btn{
    background:none;
    border:none;
    font-size:28px;
    color:#999;
    cursor:pointer;
    padding:5px 10px;
    line-height:1;
    transition:color 0.2s
}
.properties-map-page .modal-close-btn:hover{
    color:#333
}
.properties-map-page .advanced-filters-modal .filter-group{
    margin-bottom:20px
}
.properties-map-page .advanced-filters-modal .filter-group label{
    display:block;
    font-weight:600;
    margin-bottom:10px;
    color:#333
}
.properties-map-page .advanced-filters-modal .input-with-icon{
    position:relative
}
.properties-map-page .advanced-filters-modal .input-with-icon i{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#999
}
.properties-map-page .advanced-filters-modal .form-control{
    width:100%;
    padding:12px 12px 12px 40px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px
}
.properties-map-page .advanced-filters-modal select.form-control{
    padding-left:40px;
    appearance:none;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-color:#fff
}
.properties-map-page .advanced-filters-modal .amenities-checkboxes{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:10px
}
.properties-map-page .advanced-filters-modal .amenity-checkbox{
    padding:10px 12px;
    background:#f8f9fa;
    border-radius:8px;
    font-size:13px
}
.properties-map-page .modal-actions{
    display:flex;
    gap:12px;
    padding-top:20px;
    margin-top:10px;
    border-top:1px solid #eee
}
.properties-map-page .modal-actions .btn{
    flex:1;
    padding:14px 20px;
    font-size:15px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    transition:all 0.2s
}
.properties-map-page .modal-actions .btn-clear{
    background:#f8f9fa;
    color:#333;
    border:1px solid #ddd
}
.properties-map-page .modal-actions .btn-clear:hover{
    background:#e9ecef;
    color:#222
}
.properties-map-page .modal-actions .btn-apply{
    background:var(--primary-color, #c8a35f);
    color:#fff;
    border:none
}
.properties-map-page .modal-actions .btn-apply:hover{
    background:var(--primary-dark, #b8934f)
}
.btn-load-more{
    padding:15px 40px;
    font-size:16px;
    border-radius:10px
}
.btn-load-more .remaining-count{
    font-weight:normal;
    opacity:0.8;
    margin-left:5px
}
@media (max-width:991px){
    .filters-row{
        grid-template-columns:1fr;
        gap:20px
    }
    .amenities-checkboxes{
        grid-template-columns:repeat(3, 1fr)
    }
}
/* ===================================v3.6.80:Advanced Filters Modal - Global Styles (Desktop & Mobile)=================================== */.advanced-filters-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.6);
    z-index:10000;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch
}
.advanced-filters-modal.active{
    display:flex;
    align-items:center;
    justify-content:center
}
.advanced-filters-modal-content{
    background:#fff;
    width:90%;
    max-width:550px;
    max-height:90vh;
    border-radius:16px;
    padding:25px;
    overflow-y:auto;
    animation:fadeInModal 0.3s ease;
    box-shadow:0 10px 40px rgba(0, 0, 0, 0.2)
}
.advanced-filters-modal .modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:15px;
    margin-bottom:20px;
    border-bottom:1px solid #eee
}
.advanced-filters-modal .modal-header h3{
    margin:0;
    font-size:20px;
    color:#333;
    display:flex;
    align-items:center;
    gap:10px
}
.advanced-filters-modal .modal-close-btn{
    background:none;
    border:none;
    font-size:28px;
    color:#999;
    cursor:pointer;
    padding:5px 10px;
    line-height:1;
    transition:color 0.2s
}
.advanced-filters-modal .modal-close-btn:hover{
    color:#333
}
.advanced-filters-modal .modal-scroll-content{
    max-height:60vh;
    overflow-y:auto;
    padding-right:5px
}
.advanced-filters-modal .filter-group{
    margin-bottom:20px
}
.advanced-filters-modal .filter-group label{
    display:block;
    font-weight:600;
    margin-bottom:10px;
    color:#333
}
.advanced-filters-modal .input-with-icon{
    position:relative
}
.advanced-filters-modal .input-with-icon i{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#999
}
.advanced-filters-modal .form-control{
    width:100%;
    padding:12px 12px 12px 40px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px
}
.advanced-filters-modal select.form-control{
    padding-left:40px;
    appearance:none;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-color:#fff
}
.advanced-filters-modal .amenities-checkboxes{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:10px
}
.advanced-filters-modal .amenity-checkbox{
    padding:10px 14px;
    background:#f8f9fa;
    border:1px solid #eee;
    border-radius:8px;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    transition:all 0.2s
}
.advanced-filters-modal .amenity-checkbox:hover{
    background:#fff;
    border-color:var(--primary-color, #c8a35f)
}
.advanced-filters-modal .amenity-checkbox input[type="checkbox"]{
    display:inline-block;
    width:18px;
    height:18px;
    margin:0;
    cursor:pointer;
    accent-color:var(--primary-color, #c8a35f);
    flex-shrink:0;
    order:3
}
.advanced-filters-modal .amenity-checkbox i{
    order:1;
    font-size:16px;
    color:#888;
    width:20px;
    text-align:center
}
.advanced-filters-modal .amenity-checkbox:has(input:checked){
    border-color:var(--primary-color, #c8a35f);
    background:rgba(200, 163, 95, 0.08)
}
.advanced-filters-modal .amenity-checkbox:has(input:checked) i{
    color:var(--primary-color, #c8a35f)
}
.advanced-filters-modal .price-range-inputs{
    display:flex;
    align-items:center;
    gap:15px
}
.advanced-filters-modal .price-input{
    flex:1;
    position:relative
}
.advanced-filters-modal .price-input .currency{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#666
}
.advanced-filters-modal .price-input input{
    width:100%;
    padding:12px 12px 12px 30px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px
}
.advanced-filters-modal .price-separator{
    color:#999;
    font-weight:500
}
.advanced-filters-modal .modal-actions{
    display:flex;
    gap:10px;
    padding-top:20px;
    margin-top:20px;
    border-top:1px solid #eee
}
.advanced-filters-modal .modal-actions .btn{
    flex:1;
    padding:14px 20px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all 0.2s
}
.advanced-filters-modal .btn-clear{
    background:#f8f9fa;
    border:1px solid #ddd;
    color:#666
}
.advanced-filters-modal .btn-clear:hover{
    background:#e9ecef
}
.advanced-filters-modal .btn-apply{
    background:var(--primary-color, #c8a35f);
    border:none;
    color:#fff
}
.advanced-filters-modal .btn-apply:hover{
    background:#b8934f
}
@media (max-width:1100px){
    .hero-content{
        padding-top:100px;
        padding-bottom:250px
    }
    .hero-title{
        font-size:2.5rem;
        line-height:1.2
    }
    .hero-subtitle{
        font-size:1.1rem
    }
    .search-form-wrapper{
        bottom:40px
    }
}
@media (max-width:767px){
    .amenities-checkboxes{
        grid-template-columns:repeat(2, 1fr)
    }
    .amenity-checkbox{
        padding:8px 10px;
        font-size:12px
    }
    .price-range-inputs{
        flex-direction:column;
        gap:8px
    }
    .price-separator{
        display:none
    }
    .filters-actions{
        flex-direction:column
    }
    .btn-clear-filters,.btn-apply-filters{
        width:100%
    }
    body.home .advanced-filters-panel{
        display:none !important
    }
    .advanced-filters-modal{
        display:none;
        position:fixed;
        top:0;
        left:0;
        right:0;
        bottom:0;
        background:rgba(0, 0, 0, 0.5);
        z-index:10000;
        overflow-y:auto;
        -webkit-overflow-scrolling:touch
    }
    .advanced-filters-modal.active{
        display:flex;
        align-items:flex-end
    }
    .advanced-filters-modal-content{
        background:#fff;
        width:100%;
        max-height:85vh;
        border-radius:20px 20px 0 0;
        padding:20px;
        overflow-y:auto;
        animation:slideUpModal 0.3s ease
    }
    @keyframes slideUpModal{
        from{
            transform:translateY(100%)
        }
        to{
            transform:translateY(0)
        }
    }
    .modal-header{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding-bottom:15px;
        margin-bottom:15px;
        border-bottom:1px solid #eee
    }
    .modal-header h3{
        margin:0;
        font-size:18px;
        color:#333
    }
    .modal-close-btn{
        background:none;
        border:none;
        font-size:24px;
        color:#999;
        cursor:pointer;
        padding:5px 10px
    }
    .advanced-filters-modal .amenities-checkboxes{
        grid-template-columns:repeat(2, 1fr);
        gap:8px
    }
    .advanced-filters-modal .amenity-checkbox{
        padding:12px 10px;
        font-size:13px;
        border-radius:10px
    }
    .advanced-filters-modal .price-range-inputs{
        flex-direction:row;
        gap:10px
    }
    .advanced-filters-modal .price-separator{
        display:block
    }
    .modal-actions{
        display:flex;
        gap:10px;
        padding-top:20px;
        margin-top:20px;
        border-top:1px solid #eee;
        position:sticky;
        bottom:0;
        background:#fff
    }
    .modal-actions .btn{
        flex:1;
        padding:14px 20px;
        font-size:15px;
        border-radius:10px
    }
    .modal-actions .btn-clear{
        background:#f5f5f5;
        color:#666;
        border:none
    }
    .modal-actions .btn-apply{
        background:var(--primary-color, #c8a35f);
        color:#fff;
        border:none
    }
    .hero-content{
        padding-top:80px;
        padding-bottom:200px
    }
    .hero-title{
        font-size:1.6rem !important;
        padding:0 10px
    }
    .search-form-wrapper{
        bottom:15px
    }
    .properties-map-page .advanced-filters-modal.active{
        align-items:flex-end
    }
    .properties-map-page .advanced-filters-modal-content{
        max-width:100%;
        width:100%;
        border-radius:20px 20px 0 0;
        animation:slideUpModal 0.3s ease
    }
}
@media (max-width:576px){
    .hero-slide .container{
        transform:translate(-50%, -80%)
    }
    .hero-title{
        font-size:2.2rem !important;
        margin-bottom:8px !important
    }
    .hero-subtitle{
        font-size:0.85rem !important
    }
    .search-form-wrapper{
        transform:translateY(10%);
        padding:0 10px
    }
    .hero-search-form{
        padding:15px 12px
    }
}
.properties-search-wrapper .advanced-filters-toggle{
    margin-top:10px;
    padding-top:10px
}
.properties-search-wrapper .advanced-filters-panel{
    margin-top:15px;
    padding:15px;
    background:#f8f9fa;
    border-radius:10px
}
.properties-search-wrapper .amenities-checkboxes{
    grid-template-columns:repeat(2, 1fr)
}
.search-form-inner{
    display:grid;
    grid-template-columns:1.2fr 1fr 0.8fr auto auto;
    gap:15px;
    align-items:end
}
.search-field{
    display:flex;
    flex-direction:column
}
.search-field label{
    font-weight:600;
    margin-bottom:8px;
    color:var(--secondary-color);
    font-size:0.95em
}
.input-with-icon{
    position:relative
}
.input-with-icon i{
    position:absolute;
    left:12px;
    top:50%;
    transform:translateY(-50%);
    color:#999;
    font-size:1.2em
}
.input-with-icon .form-control{
    padding-left:40px
}
.search-field .form-control{
    height:50px;
    border:2px solid #e0e0e0;
    border-radius:10px;
    font-size:1em;
    transition:all 0.3s ease
}
.search-field .form-control:focus{
    border-color:var(--primary-color);
    box-shadow:0 0 0 3px rgba(200, 163, 95, 0.1)
}
.search-button button{
    margin-top:0;
    height:50px;
    font-size:1.1em;
    font-weight:600;
    white-space:nowrap;
    padding:0 25px;
    background:linear-gradient(135deg, var(--primary-color, #c8a35f) 0%, rgba(255,255,255,0.2) 100%), var(--primary-color, #c8a35f) !important;
    background-color:var(--primary-color, #c8a35f) !important;
    border:none !important;
    color:#fff !important;
    border-radius:10px;
    transition:all 0.3s ease;
    box-shadow:0 4px 15px rgba(200, 163, 95, 0.4)
}
.search-button button:hover{
    background:linear-gradient(135deg, var(--secondary-color, #2c3e50) 0%, rgba(255,255,255,0.15) 100%), var(--secondary-color, #2c3e50) !important;
    background-color:var(--secondary-color, #2c3e50) !important;
    transform:translateY(-2px);
    box-shadow:0 6px 20px rgba(44, 62, 80, 0.4)
}
.advanced-button button{
    margin-top:0;
    height:50px;
    font-size:0.9em;
    font-weight:500;
    white-space:nowrap;
    padding:0 14px;
    background:#fff !important;
    border:1px solid #ddd !important;
    color:#555 !important;
    border-radius:10px;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    gap:6px
}
.advanced-button button:hover{
    background:#f8f8f8 !important;
    border-color:#bbb !important;
    color:#333 !important
}
.advanced-button button i{
    font-size:1em;
    color:#777 !important
}
.advanced-button button:hover i{
    color:#555 !important
}
.advanced-button .btn-text{
    color:#555 !important
}
.search-field-daterange{
}
#daterange,#property-daterange,#mobile-daterange{
    cursor:pointer !important;
    background-color:#fff !important;
    user-select:none
}
/* ===================================Search Results Section=================================== */.search-results-section{
    padding:60px 0;
    background:#f8f9fa
}
.search-results-header{
    text-align:center;
    margin-bottom:50px
}
.search-results-header h2{
    font-size:2.5em;
    margin-bottom:15px;
    color:var(--secondary-color)
}
.search-params{
    font-size:1.1em;
    color:#666;
    margin:0
}
.no-results{
    text-align:center;
    padding:60px 20px;
    background:#fff;
    border-radius:12px
}
.no-results p{
    font-size:1.2em;
    color:#666
}
.property-total-price{
    margin:20px 0;
    padding:15px;
    background:#f0f8ff;
    border-radius:8px;
    text-align:center
}
.property-total-price strong{
    font-size:1.5em;
    color:var(--primary-color)
}
.price-breakdown{
    display:block;
    font-size:0.9em;
    color:#666;
    margin-top:5px
}
.daterangepicker{
    font-family:var(--body-font);
    border:none;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
    border-radius:12px;
    padding:15px
}
.daterangepicker .calendar-table{
    background:#fff;
    border:none
}
.daterangepicker td.active,.daterangepicker td.active:hover,.daterangepicker td.start-date,.daterangepicker td.end-date{
    background-color:var(--primary-color) !important;
    border-color:transparent !important;
    color:#fff !important;
    border-radius:4px
}
.daterangepicker td.in-range{
    background-color:var(--primary-color) !important;
    opacity:0.25;
    color:#333 !important
}
.daterangepicker td.in-range:not(.start-date):not(.end-date){
    background-color:var(--primary-color) !important;
    opacity:0.2
}
.daterangepicker td.available:hover{
    background-color:var(--primary-color) !important;
    opacity:0.5;
    border-color:transparent !important;
    color:#fff !important
}
.daterangepicker .ranges li.active{
    background-color:var(--primary-color);
    color:#fff
}
.daterangepicker .drp-buttons .btn-primary{
    background-color:var(--primary-color);
    border-color:var(--primary-color)
}
.daterangepicker .drp-buttons .btn-primary:hover{
    background-color:var(--secondary-color);
    border-color:var(--secondary-color)
}
.daterangepicker .calendar{
    max-width:320px
}
.daterangepicker .calendar th,.daterangepicker .calendar td{
    font-size:12px
}
.daterangepicker .drp-calendar.left,.daterangepicker .drp-calendar.right{
    padding:8px 8px 12px
}
.daterangepicker .calendar-table td.start-date,.daterangepicker .drp-calendar.right{
    display:none !important
}
.daterangepicker .drp-calendar.left{
    border-right:none
}
.daterangepicker .drp-selected{
    font-weight:500;
    color:var(--secondary-color)
}
.daterangepicker .calendar-table th{
    color:#999;
    font-weight:500
}
.daterangepicker .calendar-table td.end-date{
    border-radius:999px
}
.daterangepicker .calendar-table td.in-range{
    border-radius:999px
}
.daterangepicker td.disabled,.daterangepicker td.off.disabled{
    color:#ccc;
    text-decoration:line-through;
    background-color:#f5f5f5;
    cursor:not-allowed
}
.daterangepicker td.disabled:hover{
    background-color:#f5f5f5;
    cursor:not-allowed
}
.daterangepicker td.unavailable-date{
    color:#dc3545 !important;
    text-decoration:line-through !important;
    background-color:#ffebee !important;
    cursor:not-allowed !important;
    opacity:0.6
}
.daterangepicker td.unavailable-date:hover{
    background-color:#ffcdd2 !important;
    cursor:not-allowed !important
}
/* v3.7.11:Checkout-position day (day BEFORE booked period starts)Diagonal:green top-left → red bottom-right (135deg)This is the LAST day you can checkout before next booking startsCLICKABLE - can be used as checkout date */.daterangepicker td.checkout-position-day{
    position:relative !important;
    background:transparent !important;
    overflow:hidden !important;
    cursor:pointer !important
}
.daterangepicker td.checkout-position-day::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.3) 0%,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 100%) !important;
    z-index:0 !important
}
.daterangepicker td.checkout-position-day > span{
    position:relative !important;
    z-index:1 !important;
    color:#333 !important;
    font-weight:500 !important
}
.daterangepicker td.checkout-position-day:hover::before{
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.5) 0%,rgba(40, 167, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 100%) !important
}
/* v3.7.11:Checkin-position day (day AFTER booked period ends)Diagonal:red top-left → green bottom-right (-45deg)This is the FIRST day available after previous booking endsCLICKABLE - can be used as check-in date */.daterangepicker td.checkin-position-day{
    position:relative !important;
    background:transparent !important;
    overflow:hidden !important;
    cursor:pointer !important
}
.daterangepicker td.checkin-position-day::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.3) 0%,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 100%) !important;
    z-index:0 !important
}
.daterangepicker td.checkin-position-day > span{
    position:relative !important;
    z-index:1 !important;
    color:#333 !important;
    font-weight:500 !important
}
.daterangepicker td.checkin-position-day:hover::before{
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.5) 0%,rgba(40, 167, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 100%) !important
}
.daterangepicker td.checkout-position-day.checkin-position-day{
    background:linear-gradient(90deg,rgba(220, 53, 69, 0.25) 0%,rgba(40, 167, 69, 0.25) 25%,rgba(40, 167, 69, 0.25) 75%,rgba(220, 53, 69, 0.25) 100%) !important
}
.daterangepicker td.checkout-position-day.checkin-position-day::before{
    display:none !important
}
.daterangepicker td.changeover-day{
    position:relative !important;
    background:transparent !important;
    overflow:hidden !important
}
.daterangepicker td.changeover-day::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.3) 0%,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 100%) !important;
    z-index:0 !important
}
.daterangepicker td.changeover-day > span{
    position:relative !important;
    z-index:1 !important;
    color:#333 !important;
    font-weight:500 !important
}
.daterangepicker td.changeover-day:hover::before{
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.5) 0%,rgba(40, 167, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 100%) !important
}
.daterangepicker td.checkin-transition-day{
    position:relative !important;
    background:transparent !important;
    overflow:hidden !important
}
.daterangepicker td.checkin-transition-day::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.3) 0%,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 100%) !important;
    z-index:0 !important
}
.daterangepicker td.checkin-transition-day > span{
    position:relative !important;
    z-index:1 !important;
    color:#333 !important;
    font-weight:500 !important
}
.daterangepicker td.checkin-transition-day:hover::before{
    background:linear-gradient(135deg,rgba(40, 167, 69, 0.5) 0%,rgba(40, 167, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 100%) !important
}
.daterangepicker td.checkout-transition-day{
    position:relative !important;
    background:transparent !important;
    overflow:hidden !important
}
.daterangepicker td.checkout-transition-day::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.3) 0%,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 100%) !important;
    z-index:0 !important
}
.daterangepicker td.checkout-transition-day > span{
    position:relative !important;
    z-index:1 !important;
    color:#333 !important;
    font-weight:500 !important
}
.daterangepicker td.checkout-transition-day:hover::before{
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.5) 0%,rgba(40, 167, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 100%) !important
}
.daterangepicker td.checkin-day{
    position:relative !important;
    background:rgba(40, 167, 69, 0.2) !important
}
.daterangepicker td.checkin-day:hover{
    background:rgba(40, 167, 69, 0.4) !important
}
.daterangepicker td.checkout-day{
    position:relative !important;
    background:transparent !important;
    overflow:hidden !important
}
.daterangepicker td.checkout-day::before{
    content:'' !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.3) 0%,rgba(40, 167, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 50%,rgba(220, 53, 69, 0.3) 100%) !important;
    z-index:0 !important
}
.daterangepicker td.checkout-day > span{
    position:relative !important;
    z-index:1 !important
}
.daterangepicker td.checkout-day:hover::before{
    background:linear-gradient(-45deg,rgba(40, 167, 69, 0.4) 0%,rgba(40, 167, 69, 0.4) 50%,rgba(220, 53, 69, 0.5) 50%,rgba(220, 53, 69, 0.5) 100%) !important
}
.daterangepicker td.transition-date{
    background-color:#fff3cd !important;
    color:#856404 !important
}
.daterangepicker td.transition-date:hover{
    background-color:#ffeeba !important
}
/* v3.6.111:Check-in restricted days (free but check-in not allowed)These are days where the property is available but check-in is not permitteddue to change-over day rules (e.g., Saturday-Saturday bookings only) */.daterangepicker td.checkin-restricted{
    background-color:#fff9e6 !important;
    color:#997a00 !important;
    cursor:pointer;
    position:relative
}
.daterangepicker td.checkin-restricted::after{
    content:'';
    position:absolute;
    bottom:2px;
    left:50%;
    transform:translateX(-50%);
    width:4px;
    height:4px;
    background:#ffc107;
    border-radius:50%
}
.daterangepicker td.checkin-restricted:hover{
    background-color:#fff3cd !important
}
.daterangepicker td.checkin-restricted[title]:hover::before{
    content:attr(title);
    position:absolute;
    bottom:100%;
    left:50%;
    transform:translateX(-50%);
    background:#333;
    color:white;
    padding:4px 8px;
    border-radius:4px;
    font-size:11px;
    white-space:nowrap;
    z-index:1000
}
.featured-properties{
    padding:120px 0 80px;
    background:#f8f9fa
}
.section-title{
    margin-bottom:50px
}
.section-title h2{
    font-size:2.5em;
    color:var(--secondary-color);
    margin-bottom:15px
}
.section-title p{
    font-size:1.1em;
    color:#666
}
.features-section{
    padding:80px 0;
    background:#fff
}
.feature-box{
    padding:40px 20px;
    transition:all 0.3s ease
}
.feature-box:hover{
    transform:translateY(-5px)
}
.feature-box i{
    font-size:3em;
    color:var(--primary-color);
    margin-bottom:20px
}
.feature-box h4{
    font-size:1.4em;
    margin-bottom:15px;
    color:var(--secondary-color)
}
.feature-box p{
    color:#666;
    line-height:1.6
}
.about-section{
    padding:80px 0;
    background:#f8f9fa
}
.about-text{
    margin:25px 0;
    line-height:1.8;
    color:#555
}
.testimonials-section{
    padding:80px 0;
    background:#fff
}
/* ===================================Mobile Booking Widget (Sticky Bottom)=================================== */.mobile-booking-widget{
    display:none;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:#fff;
    box-shadow:0 -4px 20px rgba(0,0,0,0.15);
    z-index:999;
    padding:15px 20px
}
.mobile-booking-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px
}
.mobile-booking-price{
    flex-shrink:0
}
.mobile-booking-price .price{
    font-size:1.8em;
    color:var(--primary-color);
    font-weight:bold;
    display:block;
    line-height:1
}
.mobile-booking-price .period{
    font-size:0.85em;
    color:#666
}
.mobile-booking-button{
    flex:1
}
.mobile-booking-button .btn{
    width:100%;
    padding:12px 20px;
    font-size:1.1em
}

/* v4.1.2: Enquire button and modal styles */
.contact-enquire-row{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-top:15px;
    flex-wrap:wrap
}
.contact-phone-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:#333;
    text-decoration:none;
    transition:color 0.2s
}
.contact-phone-link:hover{
    color:var(--primary-color, #c8a35f)
}
.btn-enquire-property{
    background:transparent !important;
    border:1px solid var(--primary-color, #c8a35f) !important;
    color:var(--primary-color, #c8a35f) !important;
    padding:8px 16px;
    border-radius:6px;
    font-size:0.85rem;
    cursor:pointer;
    transition:all 0.3s ease;
    display:inline-flex;
    align-items:center;
    gap:6px
}
.btn-enquire-property:hover{
    background:var(--primary-color, #c8a35f) !important;
    color:#fff !important
}
.btn-enquire-property i{
    font-size:0.9em
}
.enquiry-modal{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.7);
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center
}
.enquiry-modal .modal-overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0
}
.enquiry-modal-content{
    position:relative;
    background:#fff;
    border-radius:16px;
    max-width:500px;
    width:90%;
    max-height:90vh;
    overflow-y:auto;
    box-shadow:0 20px 60px rgba(0,0,0,0.3)
}
.enquiry-modal .modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee
}
.enquiry-modal .modal-header h4{
    margin:0;
    font-size:1.2rem;
    color:#333
}
.enquiry-modal .modal-close{
    background:none;
    border:none;
    font-size:1.3rem;
    color:#999;
    cursor:pointer;
    padding:5px;
    transition:color 0.2s
}
.enquiry-modal .modal-close:hover{
    color:#333
}
.enquiry-modal .modal-body{
    padding:20px
}
.enquiry-modal .form-group{
    margin-bottom:15px
}
.enquiry-modal .form-group label{
    display:block;
    margin-bottom:5px;
    font-size:0.9rem;
    color:#555
}
.enquiry-modal .form-control{
    width:100%;
    padding:10px 12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:1rem;
    transition:border-color 0.2s
}
.enquiry-modal .form-control:focus{
    outline:none;
    border-color:var(--primary-color, #c8a35f)
}
.enquiry-modal textarea.form-control{
    resize:vertical;
    min-height:80px
}
.btn-submit-enquiry{
    background:var(--primary-color, #c8a35f);
    color:#fff;
    border:none;
    padding:14px 20px;
    border-radius:8px;
    font-size:1rem;
    cursor:pointer;
    transition:background 0.3s;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px
}
.btn-submit-enquiry:hover{
    background:var(--primary-dark, #b8934f)
}
.btn-submit-enquiry:disabled{
    opacity:0.7;
    cursor:not-allowed
}
@media(max-width:600px){
    .enquiry-modal-content{
        width:95%;
        margin:10px;
        max-height:85vh
    }
    .enquiry-modal .form-row{
        flex-direction:column !important;
        gap:0 !important
    }
}

/* v4.1.2: Mobile enquire link */
.mobile-enquire-link{
    text-align:center;
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid #eee;
    font-size:0.9rem;
    color:#666
}
.mobile-enquire-link a{
    color:var(--primary-color, #c8a35f);
    text-decoration:none;
    font-weight:500;
    margin-left:8px;
    display:inline-flex;
    align-items:center;
    gap:4px
}
.mobile-enquire-link a:hover{
    text-decoration:underline
}

.mobile-booking-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.7);
    z-index:99999 !important;
    align-items:flex-end;
    justify-content:center
}
.mobile-modal-content{
    background:#fff;
    width:100%;
    max-height:85vh;
    border-radius:20px 20px 0 0;
    overflow-y:auto;
    animation:slideUp 0.3s ease;
    z-index:100000 !important
}
@keyframes slideUp{
    from{
        transform:translateY(100%)
    }
    to{
        transform:translateY(0)
    }
}
.mobile-modal-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-bottom:1px solid #e9ecef;
    position:sticky;
    top:0;
    background:#fff;
    z-index:10
}
.mobile-modal-header h3{
    margin:0;
    font-size:1.3em
}
.mobile-modal-close{
    width:35px;
    height:35px;
    border-radius:50%;
    background:#f8f9fa;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s ease
}
.mobile-modal-close:hover{
    background:#e9ecef
}
.mobile-modal-body{
    padding:20px
}
.mobile-price-display{
    text-align:center;
    padding:20px;
    background:#f8f9fa;
    border-radius:12px;
    margin-bottom:25px
}
.mobile-price-display .price{
    font-size:2.5em;
    color:var(--primary-color);
    font-weight:bold;
    display:block;
    line-height:1
}
.mobile-price-display .period{
    font-size:1em;
    color:#666;
    margin-top:5px;
    display:block
}
/* ===================================Modern Property Gallery Styles=================================== */.property-gallery-modern{
    margin-bottom:40px
}
.gallery-main-image{
    position:relative;
    width:100%;
    height:550px;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:15px
}
.gallery-main-image img{
    width:100%;
    height:100%;
    object-fit:cover
}
.gallery-fullscreen-btn{
    position:absolute;
    top:20px;
    right:20px;
    width:50px;
    height:50px;
    background:rgba(0, 0, 0, 0.6);
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    transition:all 0.3s ease;
    z-index:10
}
.gallery-fullscreen-btn:hover{
    background:var(--primary-color);
    transform:scale(1.1)
}
.gallery-nav-arrows{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
    display:flex;
    justify-content:space-between;
    padding:0 20px;
    pointer-events:none
}
.gallery-arrow{
    width:50px;
    height:50px;
    background:rgba(255, 255, 255, 0.9);
    color:var(--primary-color);
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:20px;
    pointer-events:all;
    transition:all 0.3s ease
}
.gallery-arrow:hover{
    background:var(--primary-color);
    color:#fff;
    transform:scale(1.1)
}
.gallery-counter{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0, 0, 0, 0.7);
    color:#fff;
    padding:8px 20px;
    border-radius:20px;
    font-size:0.95em
}
.gallery-thumbnails{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:5px 0;
    scroll-behavior:smooth
}
.gallery-thumbnails::-webkit-scrollbar{
    height:6px
}
.gallery-thumbnails::-webkit-scrollbar-track{
    background:#f1f1f1;
    border-radius:3px
}
.gallery-thumbnails::-webkit-scrollbar-thumb{
    background:var(--primary-color);
    border-radius:3px
}
.gallery-thumbnail{
    flex-shrink:0;
    width:120px;
    height:80px;
    border-radius:8px;
    overflow:hidden;
    cursor:pointer;
    border:3px solid transparent;
    transition:all 0.3s ease
}
.gallery-thumbnail:hover{
    border-color:var(--primary-color);
    opacity:0.8
}
.gallery-thumbnail.active{
    border-color:var(--primary-color)
}
.gallery-thumbnail img{
    width:100%;
    height:100%;
    object-fit:cover
}
.gallery-lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.95);
    z-index:9999;
    align-items:center;
    justify-content:center
}
.lightbox-close{
    position:absolute;
    top:20px;
    right:20px;
    width:50px;
    height:50px;
    background:rgba(255, 255, 255, 0.2);
    color:#fff;
    border:2px solid #fff;
    border-radius:50%;
    cursor:pointer;
    font-size:24px;
    transition:all 0.3s ease;
    z-index:10001
}
.lightbox-close:hover{
    background:var(--primary-color);
    border-color:var(--primary-color);
    transform:rotate(90deg)
}
.lightbox-content{
    max-width:90%;
    max-height:90vh;
    display:flex;
    align-items:center;
    justify-content:center
}
.lightbox-content img{
    max-width:100%;
    max-height:90vh;
    object-fit:contain;
    border-radius:8px
}
.lightbox-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    background:rgba(255, 255, 255, 0.2);
    color:#fff;
    border:2px solid #fff;
    border-radius:50%;
    cursor:pointer;
    font-size:24px;
    transition:all 0.3s ease;
    z-index:10001
}
.lightbox-arrow:hover{
    background:var(--primary-color);
    border-color:var(--primary-color)
}
.lightbox-arrow-prev{
    left:30px
}
.lightbox-arrow-next{
    right:30px
}
.lightbox-counter{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(255, 255, 255, 0.2);
    color:#fff;
    padding:10px 25px;
    border-radius:25px;
    font-size:1.1em;
    font-weight:bold;
    border:2px solid #fff
}
/* ===================================Properties Map Page Styles=================================== */.properties-map-page{
    padding:0
}
.properties-map-page .container-fluid{
    padding:0
}
.properties-map-page .row{
    margin:0;
    min-height:100vh
}
.properties-list-column{
    padding:0;
    height:100vh;
    overflow-y:auto;
    background:#f8f9fa
}
.properties-list-wrapper{
    padding:40px 30px
}
.properties-header{
    margin-bottom:30px;
    padding-bottom:20px;
    border-bottom:2px solid #e0e0e0
}
.properties-header h1{
    font-size:2.5em;
    margin-bottom:10px;
    color:var(--secondary-color)
}
.properties-count{
    color:#666;
    font-size:1.1em
}
.properties-list-single-column{
    display:flex;
    flex-direction:column;
    gap:25px

/* Map page: modern card styling */
.properties-map-page .map-list-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.12);
    transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.properties-map-page .map-list-card:hover{
    box-shadow:0 10px 28px rgba(0,0,0,0.18);
    transform:translateY(-3px);
}

.properties-map-page .map-list-card .property-card-image{
    position:relative;
    height:230px;
}

.properties-map-page .map-list-card .property-card-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:14px 16px 16px;
    background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
    color:#fff;
}

.properties-map-page .map-list-card .property-card-title{
    font-size:1.2rem;
    margin:0 0 4px 0;
}

.properties-map-page .map-list-card .property-card-location-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
}

.properties-map-page .map-list-card .property-card-location-text{
    font-size:0.9rem;
    margin:0;
}

.properties-map-page .map-list-card .property-location-pin{
    border:none;
    background:rgba(0,0,0,0.6);
    width:28px;
    height:28px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}

.properties-map-page .map-list-card .property-location-pin i{
    color:var(--primary-color, #c8a35f);
    font-size:0.9rem;
}

.property-card-meta-icons{
    margin-top:8px;
    display:block;
}

.property-card-meta-icons .meta-icon-item{
    display:inline-flex;
    align-items:center;
    margin-right:16px; /* separation between each amenity chip */
    font-size:1.3rem; /* ~70% larger text */
    color:#ffffff;   /* numbers stay white */
}

.property-card-meta-icons .meta-icon-item:last-child{
    margin-right:0;
}

.property-card-meta-icons .meta-icon-item i{
    font-size:1.4rem; /* icons slightly larger than numbers */
    margin-right:8px; /* spacing between icon and its number */
    background: linear-gradient(135deg, var(--primary-color,#c8a35f), #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; /* show gradient fill */
}

}
.property-list-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,0.16);
    transition:all 0.3s ease
}
.property-list-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,0.22);
    transform:translateY(-4px)
}

/* Map page: use full-bleed image cards without white inner block - overridden by .map-list-card styling above */
.property-list-card.highlighted{
    box-shadow:0 0 0 3px var(--primary-color)
}
.property-card-link{
    display:block;
    text-decoration:none;
    color:inherit
}
.property-card-image{
    position:relative;
    overflow:hidden;
    width:100%;
    height:260px;
}
.property-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.3s ease
}
.property-list-card:hover .property-card-image img{
    transform:scale(1.05)
}
.property-price-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:var(--primary-color);
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-weight:bold;
    font-size:0.9em;
    width:auto;
    max-width:fit-content
}
/* old global property-card-content/meta/title/location/excerpt styles removed for map page override */
.map-column{
    padding:0;
    height:100vh;
    position:sticky;
    top:0
}
.map-wrapper{
    width:100%;
    height:100%
}
#properties-map{
    width:100%;
    height:100%
}
.map-error{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    height:100%;
    text-align:center;
    padding:40px;
    background:#f8f9fa
}
.map-error p{
    font-size:1.1em;
    color:#666;
    margin-bottom:10px
}
.map-info-window{
    max-width:250px
}
.no-properties-found{
    text-align:center;
    padding:60px 20px
}
.no-properties-found p{
    font-size:1.2em;
    color:#666
}
/* ===================================Responsive Styles=================================== */@media (max-width:768px){
    .properties-grid,.property-meta-large,.facilities-grid{
        grid-template-columns:1fr
    }
    .property-sidebar{
        position:static;
        margin-top:40px
    }
    .property-title{
        font-size:1.8em
    }
    .single-property .mobile-booking-widget{
        display:block
    }
    .single-property .booking-card{
        display:none
    }
    .single-property .property-detail{
        padding-bottom:100px
    }
    .hero-search-section{
        height:400px;
        margin-bottom:140px
    }
    .hero-slider .hero-slide{
        height:400px
    }
    .hero-content{
        padding-top:80px
    }
    .hero-title{
        font-size:1.8em
    }
    .hero-subtitle{
        font-size:1em
    }
    .search-form-inner{
        grid-template-columns:1fr
    }
    .search-form-wrapper{
        bottom:-120px
    }
    .hero-search-form{
        padding:25px 20px;
        border-radius:16px
    }
    header.header-transparent{
        background:rgba(0,0,0,0.8)
    }
    .amenities-grid{
        grid-template-columns:1fr
    }
    .calendar-months{
        grid-template-columns:1fr
    }
    .booking-card{
        padding:20px
    }
    .gallery-main-image{
        height:350px
    }
    .gallery-thumbnail{
        width:90px;
        height:60px
    }
    .gallery-arrow,.lightbox-arrow{
        width:40px;
        height:40px;
        font-size:16px
    }
    .lightbox-arrow-prev{
        left:10px
    }
    .lightbox-arrow-next{
        right:10px
    }
    .properties-list-column,.map-column{
        height:auto;
        position:static
    }
    .properties-list-column{
        order:2
    }
    .map-column{
        order:1;
        height:400px;
        margin-bottom:20px
    }
    .property-card-link{
        flex-direction:column
    }
    .property-card-image{
        width:100%;
        height:200px
    }
    .property-card-content{
        padding:20px
    }
}
/* ===================================v3.2.4:Properties Map Search Form=================================== */.properties-search-wrapper{
    background:#fff;
    padding:20px 25px;
    border-radius:12px;
    box-shadow:0 2px 15px rgba(0,0,0,0.1);
    margin-bottom:25px
}
.properties-search-form .search-form-compact{
    display:grid;
    grid-template-columns:1.2fr 1.2fr 0.8fr auto;
    gap:15px;
    align-items:end
}
.properties-search-form .search-field{
    display:flex;
    flex-direction:column;
    justify-content:flex-end
}
.properties-search-form .search-field label{
    font-weight:600;
    color:#333;
    margin-bottom:8px;
    font-size:0.9em
}
.properties-search-form .input-with-icon{
    position:relative;
    display:flex;
    align-items:center
}
.properties-search-form .input-with-icon i{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#666;
    pointer-events:none;
    font-size:16px;
    z-index:1
}
.properties-search-form .input-with-icon .form-control{
    padding-left:45px;
    height:48px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:0.95em;
    width:100%
}
.properties-search-form .input-with-icon .form-control:focus{
    border-color:var(--primary-color);
    outline:none;
    box-shadow:0 0 0 3px rgba(212, 175, 55, 0.1)
}
.properties-search-form .search-field[style*="display:flex"]{
    flex-direction:row !important;
    gap:8px;
    align-items:flex-end
}
.properties-search-form .btn{
    height:48px;
    font-weight:600;
    white-space:nowrap;
    padding:0 20px
}
.btn-outline-secondary{
    background:#fff;
    border:2px solid #ddd;
    color:#666;
    padding:10px 20px;
    border-radius:8px;
    font-weight:600;
    transition:all 0.3s ease
}
.btn-outline-secondary:hover{
    background:#f8f9fa;
    border-color:#bbb;
    color:#333
}
.clear-x-button{
    width:36px;
    height:36px;
    min-width:36px;
    padding:0 !important;
    background:#fff !important;
    border:1px solid #e74c3c !important;
    border-radius:6px !important;
    color:#e74c3c !important;
    font-size:18px !important;
    font-weight:700 !important;
    cursor:pointer;
    transition:all 0.3s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}
.clear-x-button:hover{
    background:#e74c3c !important;
    color:#fff !important;
    transform:scale(1.1);
    box-shadow:0 2px 8px rgba(231, 76, 60, 0.3)
}
@media (max-width:768px){
    .properties-search-form .search-form-compact{
        grid-template-columns:1fr;
        gap:12px
    }
    .properties-search-form .search-field{
        width:100%
    }
    .properties-search-form .input-with-icon .form-control{
        width:100%;
        height:50px;
        font-size:16px
    }
    .properties-search-form .search-field[style*="display:flex"]{
        flex-direction:row !important;
        justify-content:center;
        gap:10px
    }
    .properties-search-form .btn{
        height:50px;
        flex:1
    }
}
/* ===================================v3.2.4:Mobilni Date Picker Z-index Fix=================================== */.daterangepicker{
    z-index:100001 !important;
    max-width:95vw !important
}
.daterangepicker .drp-calendar{
    max-width:100%
}
.daterangepicker select.monthselect,.daterangepicker select.yearselect{
    font-size:14px;
    padding:4px 8px;
    border:1px solid #ddd;
    border-radius:4px;
    background:#fff;
    cursor:pointer;
    margin:2px;
    max-height:200px;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 6px center;
    padding-right:22px
}
.daterangepicker select.monthselect:hover,.daterangepicker select.yearselect:hover{
    border-color:var(--primary-color, #007bff)
}
.daterangepicker select.yearselect{
    width:auto;
    min-width:70px
}
.daterangepicker th.month{
    padding:8px 0
}
.daterangepicker th.prev,.daterangepicker th.next{
    cursor:pointer;
    font-size:18px;
    padding:8px 12px;
    color:var(--primary-color, #007bff);
    border-radius:4px;
    transition:all 0.2s ease;
    min-width:40px;
    text-align:center
}
.daterangepicker th.prev:hover,.daterangepicker th.next:hover{
    background:rgba(var(--primary-color-rgb, 0, 123, 255), 0.1);
    color:var(--primary-color, #007bff)
}
.daterangepicker th.prev span,.daterangepicker th.next span{
    display:inline-block;
    width:10px;
    height:10px;
    border-top:2px solid var(--primary-color, #007bff);
    border-right:2px solid var(--primary-color, #007bff);
    border-bottom:none;
    border-left:none
}
.daterangepicker th.prev span{
    transform:rotate(-135deg);
    margin-left:3px
}
.daterangepicker th.next span{
    transform:rotate(45deg);
    margin-right:3px
}
.daterangepicker th.prev,.daterangepicker th.next{
    visibility:visible !important;
    opacity:1 !important
}
.mobile-booking-modal{
    z-index:99999 !important
}
.daterangepicker.dropdown-menu{
    z-index:100002 !important
}
@media (max-width:768px){
    .daterangepicker{
        width:95vw !important;
        max-width:400px !important;
        left:50% !important;
        transform:translateX(-50%) !important
    }
    .daterangepicker .drp-calendar.left,.daterangepicker .drp-calendar.right{
        float:none !important;
        width:100% !important;
        max-width:100% !important
    }
    .daterangepicker .drp-calendar.right{
        margin-top:10px
    }
    .daterangepicker select.monthselect,.daterangepicker select.yearselect{
        font-size:16px;
        padding:6px 10px
    }
}
/* ===================================v3.2.4:New Header System=================================== */.header-new,header{
    position:fixed !important;
    top:0 !important;
    left:0;
    right:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    transition:all 0.3s ease
}
.header-wrapper{
    display:flex;
    align-items:center;
    padding:15px 16px;
    column-gap:30px;
    min-height:90px
}
.header-logo{
    flex-shrink:0
}
.header-logo img{
    max-height:60px;
    width:auto
}
.header-navigation{
    flex:1
}
.header-menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    gap:30px
}
.header-menu li{
    position:relative
}
.header-menu a{
    color:#333;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    transition:color 0.3s ease;
    padding:5px 0;
    display:block
}
.header-menu a:hover{
    color:var(--primary-color, #c8a35f)
}
.header-phone{
    flex-shrink:0;
    margin-left:auto
}
.header-phone a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#333;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    padding:10px 20px;
    border:2px solid var(--primary-color, #c8a35f);
    border-radius:25px;
    transition:all 0.3s ease
}
.header-phone a:hover{
    background:var(--primary-color, #c8a35f);
    color:#fff
}
.header-phone .fa-phone{
    font-size:18px
}
.header-phone .phone-number{
    display:none
}
.header-phone a{
    padding:10px 12px;
    border-radius:50%;
    width:44px;
    height:44px;
    justify-content:center
}
.header-mobile-actions{
    display:flex;
    align-items:center;
    gap:16px;
    margin-left:auto;
    order:99
}
.mobile-toggle{
    display:none;
    cursor:pointer;
    font-size:24px;
    color:#333;
    padding:10px
}
/* ===================================Header Layout Variations=================================== */.header-layout-left .header-wrapper{
    justify-content:flex-start
}
.header-layout-left .header-logo{
    order:1
}
.header-layout-left .header-navigation{
    order:2
}
.header-layout-left .header-mobile-actions{
    order:3
}
.header-layout-left .header-menu{
    justify-content:flex-start
}
.header-layout-center .header-wrapper{
    justify-content:space-between
}
.header-layout-center .header-logo{
    order:2;
    position:absolute;
    left:50%;
    transform:translateX(-50%)
}
.header-layout-center .header-navigation{
    order:1;
    flex:0 0 45%
}
.header-layout-center .header-mobile-actions{
    order:3;
    flex:0 0 45%;
    justify-content:flex-end
}
.header-layout-center .header-menu{
    justify-content:flex-end
}
.header-layout-right .header-wrapper{
    justify-content:flex-end
}
.header-layout-right .header-logo{
    order:3
}
.header-layout-right .header-navigation{
    order:2
}
.header-layout-right .header-mobile-actions{
    order:1;
    margin-left:0;
    margin-right:auto
}
.header-layout-right .header-menu{
    justify-content:flex-end
}
/* ===================================Mobile Responsive=================================== */@media (max-width:991px){
    .header-wrapper{
        flex-wrap:wrap;
        position:relative
    }
    .header-logo{
        order:1 !important;
        flex:0 0 auto
    }
    .header-mobile-actions{
        order:2 !important;
        display:flex;
        align-items:center;
        gap:5px;
        margin-left:auto
    }
    .mobile-toggle{
        display:block;
        order:2;
        margin-left:0
    }
    .header-phone{
        order:1;
        margin-left:0 !important;
        margin-right:0
    }
    .header-phone .phone-number{
        display:none
    }
    .header-phone a{
        padding:8px;
        min-width:40px;
        height:40px;
        width:40px;
        border-radius:50%;
        justify-content:center
    }
    .header-phone .fa-phone{
        font-size:16px
    }
    .header-navigation{
        order:3 !important;
        flex:0 0 100%;
        max-height:0;
        overflow:hidden;
        transition:max-height 0.3s ease
    }
    .header-navigation.active{
        max-height:500px
    }
    .header-menu{
        flex-direction:column;
        gap:0;
        padding:15px 0
    }
    .header-menu a{
        padding:12px 20px;
        border-bottom:1px solid #eee
    }
    .header-layout-center .header-logo{
        position:static;
        transform:none
    }
}
body.home{
    padding-top:0 !important
}
body.single-property,body.transparent-header-page{
    padding-top:0 !important
}
body:not(.home):not(.single-property):not(.transparent-header-page){
    padding-top:80px !important
}
.page-content{
    padding:40px 0 60px 0
}
.page-content .container{
    max-width:1200px;
    width:100%;
    margin:0 auto;
    padding:0 15px
}
.page-content .row{
    display:flex;
    flex-wrap:wrap;
    margin:0 -15px
}
.page-content .col-md-12{
    flex:0 0 100%;
    max-width:100%;
    padding:0 15px;
    width:100%
}
.page-content article{
    width:100%
}
.page-content .page-header{
    margin-bottom:30px
}
.page-content .page-title{
    font-size:2.2em;
    color:var(--secondary-color, #2c3e50);
    margin:0 0 20px 0
}
.page-content .page-content-inner{
    font-size:1.05em;
    line-height:1.8;
    color:#444
}
.page-content .page-content-inner p{
    margin-bottom:1.2em
}
.page-content .page-content-inner h2,.page-content .page-content-inner h3,.page-content .page-content-inner h4{
    margin-top:1.5em;
    margin-bottom:0.8em;
    color:var(--secondary-color, #2c3e50)
}
.page-content .page-thumbnail{
    margin-bottom:30px;
    border-radius:12px;
    overflow:hidden
}
.page-content .page-thumbnail img{
    width:100%;
    height:auto;
    display:block
}
body.page:not(.home) .page-content,body.page:not(.home) .page-content .container,body.page:not(.home) .page-content .row,body.page:not(.home) .page-content .col-md-12,body.page:not(.home) .page-content article{
    float:none !important;
    position:relative !important;
    left:auto !important;
    right:auto !important;
    margin-left:auto !important;
    margin-right:auto !important
}
body.page:not(.home) .page-content .container{
    max-width:1200px !important;
    width:100% !important
}
body.page:not(.home) .page-content .row{
    display:flex !important;
    flex-wrap:wrap !important;
    margin-left:-15px !important;
    margin-right:-15px !important
}
body.page:not(.home) .page-content .col-md-12{
    flex:0 0 100% !important;
    max-width:100% !important;
    width:100% !important;
    padding-left:15px !important;
    padding-right:15px !important
}
@media (max-width:991px){
    body.home{
        padding-top:0 !important
    }
    body.single-property,body.transparent-header-page{
        padding-top:0 !important
    }
    body:not(.home):not(.single-property):not(.transparent-header-page){
        padding-top:80px !important
    }
    .hero-search-section,.hero-search-section.hero-fullscreen{
        height:100vh;
        min-height:550px;
        max-height:750px
    }
    .hero-slider .hero-slide{
        height:100vh;
        min-height:550px;
        max-height:750px
    }
    .hero-title{
        font-size:2rem;
        padding:0 15px;
        margin-bottom:15px
    }
    .hero-subtitle{
        font-size:1rem;
        padding:0 15px
    }
    .hero-content{
        padding-top:100px;
        padding-bottom:280px
    }
    .search-form-wrapper{
        bottom:25px;
        padding:0 10px
    }
    .hero-search-form{
        padding:20px;
        border-radius:12px
    }
    .search-form-inner{
        grid-template-columns:1fr;
        gap:15px
    }
    .search-field-daterange{
        grid-column:span 1
    }
    .search-field,.search-field-daterange{
        width:100%
    }
    .advanced-button{
        display:none
    }
    .search-button{
        width:100%
    }
    .search-button button{
        width:100%
    }
}
@media (max-width:767px){
    .hero-search-section,.hero-search-section.hero-fullscreen{
        height:100vh;
        min-height:600px;
        max-height:none;
        position:relative;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center
    }
    .hero-slider{
        position:absolute;
        top:0;
        left:0;
        right:0;
        bottom:0;
        z-index:0
    }
    .hero-slider .hero-slide{
        height:100%
    }
    .hero-slide .container{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -70%);
        width:100%;
        padding:0 15px
    }
    .hero-content{
        padding-top:0;
        padding-bottom:0;
        text-align:center
    }
    .hero-title{
        font-size:2.8rem;
        line-height:1.3;
        margin-bottom:10px
    }
    .hero-subtitle{
        font-size:0.9rem;
        margin-bottom:0
    }
    .search-form-wrapper{
        position:absolute !important;
        top:20%;
        left:0;
        right:0;
        bottom:auto !important;
        transform:translateY(20%);
        z-index:100;
        padding:0 15px
    }
    .hero-search-form{
        padding:20px 15px
    }
    .advanced-filters-panel{
        display:none !important
    }
}
/* ===================================v3.2.5:Header Visibility Fix=================================== */.header-new{
    display:block;
    visibility:visible;
    opacity:1
}
header.header-transparent:not(.header-new){
    display:none
}
/* ===================================v3.2.8:Blog Page Styles=================================== */.blog-page-section{
    padding-top:5px;
    background:#f8f9fa
}
.blog-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
    padding-bottom:30px;
    padding-top:50px;
    border-bottom:2px solid #e0e0e0
}
.blog-title-wrapper h1.blog-page-title{
    font-size:2.5em;
    margin:0 0 2px 0;
    color:var(--secondary-color);
    font-family:var(--heading-font);
    padding-top:0
}
.blog-page-subtitle{
    font-size:1.1em;
    color:#666;
    margin:0
}
.blog-view-switcher{
    display:flex;
    gap:10px
}
.view-btn{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #ddd;
    border-radius:8px;
    color:#666;
    transition:all 0.3s ease;
    background:#fff
}
.view-btn:hover{
    border-color:var(--primary-color);
    color:var(--primary-color);
    background:#fff
}
.view-btn.active{
    border-color:var(--primary-color);
    background:var(--primary-color);
    color:#fff
}
.view-btn i{
    font-size:18px
}
.blog-posts-container.blog-view-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(320px, 1fr));
    gap:30px
}
.blog-posts-container.blog-view-list{
    display:flex;
    flex-direction:column;
    gap:30px
}
.blog-post-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    display:flex;
    flex-direction:column
}
.blog-view-grid .blog-post-card{
    flex-direction:column
}
.blog-view-list .blog-post-card{
    flex-direction:row
}
.blog-post-card:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 25px rgba(0,0,0,0.12)
}
.blog-post-thumbnail{
    position:relative;
    overflow:hidden
}
.blog-view-grid .blog-post-thumbnail{
    height:240px
}
.blog-view-list .blog-post-thumbnail{
    width:35%;
    flex-shrink:0
}
.blog-post-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.5s ease
}
.blog-post-card:hover .blog-post-image{
    transform:scale(1.1)
}
.blog-post-category{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--primary-color);
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    font-size:0.85em;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.5px
}
.blog-post-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    flex:1
}
.blog-view-list .blog-post-content{
    width:65%
}
.blog-post-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    font-size:0.9em;
    color:#888
}
.meta-item{
    display:flex;
    align-items:center;
    gap:6px
}
.meta-item i{
    color:var(--primary-color)
}
.blog-post-title{
    margin:0;
    font-size:1.4em;
    line-height:1.4
}
.blog-post-title a{
    color:var(--secondary-color);
    transition:color 0.3s ease
}
.blog-post-title a:hover{
    color:var(--primary-color);
    text-decoration:none
}
.blog-post-excerpt{
    color:#666;
    line-height:1.7;
    flex:1
}
.blog-post-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px
}
.blog-post-tags .tag-item{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:5px 12px;
    background:#f0f0f0;
    border-radius:15px;
    font-size:0.85em;
    color:#666;
    transition:all 0.3s ease
}
.blog-post-tags .tag-item:hover{
    background:var(--primary-color);
    color:#fff;
    text-decoration:none
}
.blog-post-tags .tag-item i{
    font-size:0.8em
}
.blog-read-more{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary-color);
    font-weight:600;
    transition:gap 0.3s ease
}
.blog-read-more:hover{
    gap:12px;
    text-decoration:none
}
.blog-pagination{
    margin-top:60px;
    display:flex;
    justify-content:center
}
.blog-pagination .page-numbers{
    display:flex;
    list-style:none;
    padding:0;
    margin:0;
    gap:10px
}
.blog-pagination .page-numbers li{
    list-style:none
}
.blog-pagination .page-numbers a,.blog-pagination .page-numbers span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:45px;
    height:45px;
    padding:0 15px;
    border:2px solid #ddd;
    border-radius:8px;
    color:#666;
    font-weight:600;
    transition:all 0.3s ease;
    background:#fff
}
.blog-pagination .page-numbers a:hover,.blog-pagination .page-numbers .current{
    border-color:var(--primary-color);
    background:var(--primary-color);
    color:#fff;
    text-decoration:none
}
.blog-pagination .page-numbers .dots{
    border:none;
    background:transparent
}
.blog-no-posts{
    text-align:center;
    padding:80px 20px;
    background:#fff;
    border-radius:12px
}
.no-posts-icon{
    font-size:4em;
    color:#ddd;
    margin-bottom:20px
}
.blog-no-posts h3{
    font-size:1.8em;
    color:var(--secondary-color);
    margin-bottom:10px
}
.blog-no-posts p{
    color:#888;
    font-size:1.1em
}
.single-post-section{
    padding:60px 0 80px;
    background:#f8f9fa
}
.single-post-article{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 2px 15px rgba(0,0,0,0.08)
}
.single-post-header{
    padding:40px 40px 30px;
    border-bottom:1px solid #e0e0e0
}
.single-post-category{
    margin-bottom:15px
}
.single-post-category a{
    display:inline-block;
    background:var(--primary-color);
    color:#fff;
    padding:6px 16px;
    border-radius:20px;
    font-size:0.9em;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.5px
}
.single-post-title{
    font-size:2.5em;
    line-height:1.3;
    margin:0 0 20px 0;
    color:var(--secondary-color)
}
.single-post-meta{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    align-items:center;
    color:#888
}
.single-post-meta .meta-item{
    display:flex;
    align-items:center;
    gap:10px
}
.single-post-meta .meta-author img{
    border-radius:50%
}
.single-post-meta i{
    color:var(--primary-color)
}
.single-post-featured-image{
    width:100%;
    max-height:500px;
    overflow:hidden
}
.single-post-image{
    width:100%;
    height:100%;
    object-fit:cover
}
.single-post-content{
    padding:40px;
    font-size:1.1em;
    line-height:1.8;
    color:#444
}
.single-post-content p{
    margin-bottom:20px
}
.single-post-content h2,.single-post-content h3{
    margin-top:30px;
    margin-bottom:15px;
    color:var(--secondary-color)
}
.single-post-content img{
    max-width:100%;
    height:auto;
    border-radius:8px;
    margin:20px 0
}
.single-post-tags{
    padding:30px 40px;
    border-top:1px solid #e0e0e0;
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap
}
.single-post-tags strong{
    color:var(--secondary-color)
}
.single-post-tags .tags-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px
}
.single-post-tags .tag-item{
    padding:6px 14px;
    background:#f0f0f0;
    border-radius:15px;
    font-size:0.9em;
    color:#666;
    transition:all 0.3s ease
}
.single-post-tags .tag-item:hover{
    background:var(--primary-color);
    color:#fff;
    text-decoration:none
}
.single-post-share{
    padding:30px 40px;
    border-top:1px solid #e0e0e0;
    display:flex;
    align-items:center;
    gap:20px
}
.single-post-share strong{
    color:var(--secondary-color)
}
.share-buttons{
    display:flex;
    gap:10px
}
.share-btn{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    transition:all 0.3s ease
}
.share-btn:hover{
    transform:translateY(-3px);
    text-decoration:none
}
.share-facebook{
    background:#1877f2
}
.share-twitter{
    background:#1da1f2
}
.share-linkedin{
    background:#0077b5
}
.share-email{
    background:#666
}
.single-post-author-box{
    margin:30px 40px;
    padding:30px;
    background:#f8f9fa;
    border-radius:12px;
    display:flex;
    gap:20px;
    align-items:center
}
.author-avatar img{
    border-radius:50%
}
.author-name{
    margin:0 0 10px 0;
    color:var(--secondary-color)
}
.author-bio{
    margin:0;
    color:#666;
    line-height:1.6
}
.single-post-navigation{
    padding:30px 40px;
    border-top:1px solid #e0e0e0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px
}
.post-nav-item{
    display:flex;
    flex-direction:column;
    gap:8px
}
.post-nav-prev{
    text-align:left
}
.post-nav-next{
    text-align:right
}
.post-nav-item .nav-label{
    font-size:0.9em;
    color:#888;
    display:flex;
    align-items:center;
    gap:8px
}
.post-nav-next .nav-label{
    justify-content:flex-end
}
.post-nav-item .nav-title{
    font-size:1.1em;
    font-weight:600;
    color:var(--secondary-color);
    transition:color 0.3s ease
}
.post-nav-item .nav-title:hover{
    color:var(--primary-color);
    text-decoration:none
}
@media (max-width:991px){
    .blog-header{
        flex-direction:column;
        gap:20px;
        text-align:center
    }
    .blog-view-list .blog-post-card{
        flex-direction:column
    }
    .blog-view-list .blog-post-thumbnail{
        width:100%;
        height:240px
    }
    .blog-view-list .blog-post-content{
        width:100%
    }
    .blog-posts-container.blog-view-grid{
        grid-template-columns:1fr
    }
    .single-post-header{
        padding:30px 20px 20px
    }
    .single-post-title{
        font-size:1.8em
    }
    .single-post-content{
        padding:30px 20px
    }
    .single-post-tags,.single-post-share{
        padding:20px;
        flex-direction:column;
        align-items:flex-start
    }
    .single-post-author-box{
        margin:20px;
        padding:20px;
        flex-direction:column;
        text-align:center
    }
    .single-post-navigation{
        padding:20px;
        grid-template-columns:1fr;
        gap:20px
    }
    .post-nav-next{
        text-align:left
    }
    .post-nav-next .nav-label{
        justify-content:flex-start
    }
}
/* ===================================v3.2.9:WPML Language Switcher Styles=================================== */.language-switcher{
    display:flex;
    align-items:center;
    gap:10px;
    margin-right:20px
}
.language-switcher .lang-item{
    display:flex;
    align-items:center;
    gap:5px;
    padding:6px 12px;
    border-radius:4px;
    font-size:0.9em;
    font-weight:600;
    color:var(--secondary-color);
    transition:all 0.3s ease;
    text-decoration:none;
    border:2px solid transparent
}
.language-switcher .lang-item img{
    width:20px;
    height:14px;
    object-fit:cover;
    border-radius:2px
}
.language-switcher .lang-item:hover{
    background:rgba(0,0,0,0.05);
    text-decoration:none
}
.language-switcher .lang-item.active{
    background:var(--primary-color);
    color:#fff;
    border-color:var(--primary-color)
}
.header-new .language-switcher{
    order:2
}
@media (max-width:991px){
    .language-switcher{
        margin:10px 0;
        justify-content:center
    }
    .language-switcher .lang-item{
        padding:8px 15px
    }
}
/* ===================================v3.2.9:Design Improvements=================================== */.post-hero-section{
    position:relative;
    width:100vw;
    height:600px;
    overflow:hidden;
    margin:0;
    margin-left:calc(-50vw + 50%);
    margin-right:calc(-50vw + 50%)
}
.post-hero-image{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(0.7)
}
.post-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(to bottom,rgba(0,0,0,0.3) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,0.7) 100%);
    display:flex;
    align-items:flex-end;
    padding:60px 40px
}
.post-hero-content{
    max-width:1200px;
    margin:0 auto;
    width:100%
}
.post-hero-category{
    margin-bottom:20px
}
.post-hero-category span{
    display:inline-block;
    padding:8px 20px;
    background:var(--primary-color);
    color:#fff;
    border-radius:25px;
    font-size:0.9em;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px
}
.post-hero-title{
    font-size:3.5em;
    line-height:1.2;
    margin:0 0 20px 0;
    color:#fff !important;
    font-weight:700;
    text-shadow:2px 2px 4px rgba(0,0,0,0.3),4px 4px 12px rgba(0,0,0,0.5);
    animation:fadeInUp 0.8s ease-out;
    position:relative;
    z-index:10
}
.post-hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    align-items:center;
    font-size:1em
}
.post-hero-meta .meta-item{
    display:flex;
    align-items:center;
    gap:5px;
    padding:6px 12px;
    background:rgba(0, 0, 0, 0.3);
    backdrop-filter:blur(10px);
    border:1px solid var(--primary-color);
    border-radius:20px;
    color:var(--primary-color);
    font-weight:600;
    font-size:0.85em;
    transition:all 0.3s ease
}
.post-hero-meta .meta-item:hover{
    background:rgba(200, 163, 95, 0.2);
    transform:translateY(-2px)
}
.post-hero-meta .meta-separator{
    display:none
}
.post-hero-meta i{
    color:var(--primary-color);
    font-size:0.9em
}
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(30px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}
.post-header-simple{
    padding:60px 40px;
    background:linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color:#fff;
    text-align:center
}
.post-header-simple .post-title{
    font-size:3em;
    margin:0 0 20px 0;
    text-shadow:2px 2px 4px rgba(0,0,0,0.2)
}
.post-header-simple .post-meta{
    color:rgba(255,255,255,0.9)
}
.meta-value{
    display:block;
    font-size:1.3em;
    font-weight:700;
    color:var(--secondary-color);
    word-wrap:break-word;
    overflow-wrap:break-word;
    white-space:normal;
    line-height:1.3
}
.meta-item{
    text-align:center;
    padding:20px 15px;
    background:#f8f9fa;
    border-radius:8px;
    min-height:120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center
}
.btn-main,.btn-lg,a.btn,button.btn,.btn-block{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 24px !important;
    min-height:42px;
    font-size:0.95em !important;
    font-weight:600;
    color:#fff !important;
    background:linear-gradient(135deg, var(--primary-color) 0%, #b8924f 100%);
    border:none;
    border-radius:50px;
    text-decoration:none;
    transition:all 0.4s ease;
    box-shadow:0 4px 15px rgba(200, 163, 95, 0.3),0 2px 8px rgba(0,0,0,0.1);
    position:relative;
    overflow:hidden;
    cursor:pointer;
    line-height:1.5;
    white-space:nowrap
}
.btn-block{
    width:100%
}
.btn-main::before,.btn::before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:0;
    height:0;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    transition:width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform:translate(-50%, -50%);
    z-index:0
}
.btn-main:hover::before,.btn:hover::before{
    width:300px;
    height:300px
}
.btn-main:hover,.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(200, 163, 95, 0.4),0 4px 12px rgba(0,0,0,0.15);
    text-decoration:none;
    color:#fff !important
}
.btn-main:active,.btn:active{
    transform:translateY(-1px);
    box-shadow:0 4px 15px rgba(200, 163, 95, 0.3),0 2px 8px rgba(0,0,0,0.1)
}
.btn-main i,.btn i{
    font-size:1.2em;
    transition:transform 0.3s ease;
    position:relative;
    z-index:1
}
.btn-main:hover i,.btn:hover i{
    transform:translateX(5px)
}
.btn-main span,.btn-main .text,.btn span,.btn .text{
    position:relative;
    z-index:1
}
.property-card .btn-main,.property-card .btn,.property-card a.btn,.property-card button.btn{
    padding:6px 18px !important;
    min-height:36px !important;
    font-size:0.85em !important;
    margin-top:15px
}
.header-new{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
    transition:all 0.3s ease;
    padding:0 !important;
    margin:0 !important
}
.header-new .container{
    padding-top:10px;
    padding-bottom:10px;
    transition:all 0.3s ease
}
.header-container{
    padding-top:0 !important;
    padding-bottom:0 !important;
    margin-top:0 !important;
    margin-bottom:0 !important
}
.header-content{
    align-items:center;
    margin:0 !important;
    padding:0 !important
}
.header-wrapper{
    margin:0 !important
}
@media (max-width:991px){
    .post-hero-section{
        height:450px
    }
    .post-hero-title{
        font-size:2.2em;
        text-shadow:1px 1px 3px rgba(0,0,0,0.4),2px 2px 8px rgba(0,0,0,0.6)
    }
    .post-hero-overlay{
        padding:40px 20px
    }
    .post-hero-meta{
        font-size:0.95em;
        gap:12px
    }
    .btn-main,.btn-lg{
        padding:14px 30px;
        font-size:1em
    }
    .meta-value{
        font-size:1.1em
    }
    .meta-item{
        min-height:100px;
        padding:15px 10px
    }
}
@media (max-width:767px){
    .post-hero-section{
        height:400px
    }
    .post-hero-title{
        font-size:1.8em;
        text-shadow:2px 2px 4px rgba(0,0,0,0.6),3px 3px 10px rgba(0,0,0,0.8)
    }
    .post-hero-category span{
        font-size:0.8em;
        padding:6px 15px
    }
    .post-hero-meta{
        flex-direction:row !important;
        flex-wrap:wrap;
        align-items:center;
        justify-content:flex-start;
        gap:4px
    }
    .post-hero-meta .meta-item{
        padding:3px 8px;
        font-size:0.65em;
        border-radius:12px;
        border-width:1px;
        gap:3px
    }
    .post-hero-meta i{
        font-size:0.8em
    }
    .post-hero-meta .meta-separator{
        display:none
    }
}
.single .post-hero-section{
    position:relative !important;
    width:100% !important;
    max-width:100vw !important;
    height:600px !important;
    overflow:hidden !important;
    margin:0 !important;
    display:block !important
}
.single .post-hero-image{
    display:block !important;
    width:100% !important;
    height:600px !important;
    object-fit:cover !important
}
.single .post-hero-overlay{
    display:flex !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:5 !important
}
.single .post-hero-title{
    color:white !important;
    font-size:3em !important;
    z-index:10 !important
}
/* ===================================v3.2.9:Blog Post Content & Sidebar Styling=================================== */.blog-single-content{
    padding:60px 0;
    background:#f8f9fa
}
.single-post-article{
    background:#fff;
    border-radius:12px;
    padding:40px;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    margin-bottom:30px
}
.post-content-body{
    font-size:1.1em;
    line-height:1.8;
    color:#444;
    margin-bottom:40px
}
.post-content-body p{
    margin-bottom:20px
}
.post-content-body h2,.post-content-body h3,.post-content-body h4{
    margin-top:30px;
    margin-bottom:15px;
    color:var(--secondary-color);
    font-weight:700
}
.post-content-body h2{
    font-size:1.8em
}
.post-content-body h3{
    font-size:1.5em
}
.post-content-body img{
    max-width:100%;
    height:auto;
    border-radius:8px;
    margin:25px 0;
    box-shadow:0 4px 15px rgba(0,0,0,0.1)
}
.post-content-body ul,.post-content-body ol{
    margin:20px 0;
    padding-left:30px
}
.post-content-body li{
    margin-bottom:10px
}
.post-content-body blockquote{
    margin:30px 0;
    padding:20px 30px;
    border-left:4px solid var(--primary-color);
    background:#f8f9fa;
    font-style:italic;
    color:#666
}
.page-links{
    margin:30px 0;
    padding:20px;
    background:#f8f9fa;
    border-radius:8px;
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap
}
.page-links-title{
    font-weight:700;
    color:var(--secondary-color);
    margin-right:10px
}
.page-links span{
    display:inline-block;
    min-width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    border-radius:6px;
    background:#fff;
    border:2px solid #ddd;
    transition:all 0.3s ease
}
.page-links span:hover,.page-links .current{
    background:var(--primary-color);
    border-color:var(--primary-color);
    color:#fff
}
.post-tags-section{
    display:flex;
    align-items:center;
    gap:15px;
    padding:25px;
    background:#f8f9fa;
    border-radius:12px;
    margin-bottom:30px;
    flex-wrap:wrap
}
.tags-label{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--secondary-color)
}
.tags-label i{
    color:var(--primary-color);
    font-size:1.2em
}
.tags-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    flex:1
}
.tag-badge{
    display:inline-block;
    padding:8px 18px;
    background:#fff;
    border:2px solid #e0e0e0;
    border-radius:25px;
    font-size:0.9em;
    font-weight:600;
    color:#666;
    transition:all 0.3s ease;
    text-decoration:none
}
.tag-badge:hover{
    background:var(--primary-color);
    border-color:var(--primary-color);
    color:#fff;
    text-decoration:none;
    transform:translateY(-2px)
}
.post-share-section{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    background:linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius:12px;
    margin-bottom:30px;
    border:2px solid #e8e8e8
}
.share-label{
    display:flex;
    align-items:center;
    gap:8px;
    color:var(--secondary-color)
}
.share-label i{
    color:var(--primary-color);
    font-size:1.2em
}
.share-buttons{
    display:flex;
    gap:12px
}
.share-btn{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:1.1em;
    transition:all 0.3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,0.15)
}
.share-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 4px 15px rgba(0,0,0,0.25);
    text-decoration:none
}
.share-facebook{
    background:#1877f2
}
.share-facebook:hover{
    background:#0d5dbd
}
.share-twitter{
    background:#1da1f2
}
.share-twitter:hover{
    background:#0c85d0
}
.share-linkedin{
    background:#0077b5
}
.share-linkedin:hover{
    background:#005582
}
.share-email{
    background:#666
}
.share-email:hover{
    background:#444
}
.post-author-box{
    display:flex;
    gap:20px;
    padding:30px;
    background:linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius:12px;
    margin-bottom:30px;
    border-left:4px solid var(--primary-color);
    box-shadow:0 2px 10px rgba(0,0,0,0.05)
}
.author-avatar img{
    border-radius:50%;
    border:3px solid var(--primary-color);
    box-shadow:0 4px 12px rgba(0,0,0,0.1)
}
.author-info{
    flex:1
}
.author-name{
    margin:0 0 10px 0;
    color:var(--secondary-color);
    font-size:1.4em
}
.author-bio{
    margin:0;
    color:#666;
    line-height:1.6
}
.post-navigation-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px
}
.nav-item{
    padding:25px;
    background:#fff;
    border:2px solid #e8e8e8;
    border-radius:12px;
    transition:all 0.3s ease
}
.nav-item:hover{
    border-color:var(--primary-color);
    box-shadow:0 4px 15px rgba(200, 163, 95, 0.2);
    transform:translateY(-3px)
}
.nav-prev{
    text-align:left
}
.nav-next{
    text-align:right
}
.nav-label{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:0.9em;
    color:#888;
    margin-bottom:10px
}
.nav-next .nav-label{
    justify-content:flex-end
}
.nav-title{
    display:block;
    font-size:1.1em;
    font-weight:600;
    color:var(--secondary-color);
    transition:color 0.3s ease
}
.nav-title:hover{
    color:var(--primary-color);
    text-decoration:none
}
#comments{
    padding:40px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 2px 15px rgba(0,0,0,0.08)
}
#comments .comments-title{
    font-size:1.8em;
    margin-bottom:30px;
    color:var(--secondary-color);
    padding-bottom:15px;
    border-bottom:3px solid var(--primary-color)
}
.comment-list{
    list-style:none;
    padding:0;
    margin:0
}
.comment{
    padding:25px;
    margin-bottom:20px;
    background:#f8f9fa;
    border-radius:12px;
    border-left:3px solid var(--primary-color)
}
.comment-author{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px
}
.comment-author img{
    border-radius:50%;
    border:2px solid var(--primary-color)
}
.comment-author-name{
    font-weight:700;
    color:var(--secondary-color);
    font-size:1.1em
}
.comment-meta{
    font-size:0.9em;
    color:#888
}
.comment-content{
    margin-bottom:15px;
    line-height:1.6
}
.comment-reply-link{
    display:inline-flex;
    align-items:center;
    gap:5px;
    padding:6px 15px;
    background:var(--primary-color);
    color:#fff;
    border-radius:20px;
    font-size:0.9em;
    font-weight:600;
    transition:all 0.3s ease
}
.comment-reply-link:hover{
    background:var(--secondary-color);
    color:#fff;
    text-decoration:none;
    transform:translateX(3px)
}
#respond{
    padding:30px;
    background:#fff;
    border-radius:12px;
    margin-top:30px;
    border:2px solid #e8e8e8
}
#respond .comment-reply-title{
    font-size:1.5em;
    margin-bottom:25px;
    color:var(--secondary-color)
}
.comment-form p{
    margin-bottom:20px
}
.comment-form label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:var(--secondary-color)
}
.comment-form input[type="text"],.comment-form input[type="email"],.comment-form input[type="url"],.comment-form textarea{
    width:100%;
    padding:12px 18px;
    border:2px solid #e0e0e0;
    border-radius:8px;
    font-size:1em;
    transition:border-color 0.3s ease
}
.comment-form input:focus,.comment-form textarea:focus{
    outline:none;
    border-color:var(--primary-color)
}
.comment-form textarea{
    min-height:150px;
    resize:vertical
}
.comment-form .form-submit{
    margin-top:20px
}
.comment-form .submit{
    padding:12px 40px;
    background:linear-gradient(135deg, var(--primary-color) 0%, #b8924f 100%);
    color:#fff;
    border:none;
    border-radius:50px;
    font-size:1.1em;
    font-weight:600;
    cursor:pointer;
    transition:all 0.3s ease;
    box-shadow:0 4px 15px rgba(200, 163, 95, 0.3)
}
.comment-form .submit:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 20px rgba(200, 163, 95, 0.4)
}
.col-lg-4 .widget,.col-md-5 .widget{
    background:#fff;
    border-radius:12px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    border-top:4px solid var(--primary-color)
}
.widget-title{
    font-size:1.4em;
    margin:0 0 20px 0;
    color:var(--secondary-color);
    font-weight:700;
    padding-bottom:15px;
    border-bottom:2px solid #f0f0f0
}
.widget ul{
    list-style:none;
    padding:0;
    margin:0
}
.widget ul li{
    padding:12px 0;
    border-bottom:1px solid #f0f0f0;
    transition:all 0.3s ease
}
.widget ul li:last-child{
    border-bottom:none
}
.widget ul li a{
    color:#666;
    display:flex;
    align-items:center;
    gap:10px;
    transition:all 0.3s ease
}
.widget ul li a:before{
    content:"\f105";
    font-family:"FontAwesome";
    color:var(--primary-color);
    transition:transform 0.3s ease
}
.widget ul li:hover{
    padding-left:10px
}
.widget ul li a:hover{
    color:var(--primary-color);
    text-decoration:none
}
.widget ul li a:hover:before{
    transform:translateX(5px)
}
.widget_recent_entries ul li{
    padding:15px 0
}
.widget_recent_entries .post-date{
    display:block;
    font-size:0.85em;
    color:#999;
    margin-top:5px
}
.widget_categories ul li{
    display:flex;
    justify-content:space-between;
    align-items:center
}
.widget_categories ul li .post-count{
    background:var(--primary-color);
    color:#fff;
    padding:3px 10px;
    border-radius:15px;
    font-size:0.85em;
    font-weight:600
}
.widget_search .search-form{
    display:flex;
    gap:10px
}
.widget_search .search-field{
    flex:1;
    padding:12px 18px;
    border:2px solid #e0e0e0;
    border-radius:25px;
    transition:border-color 0.3s ease
}
.widget_search .search-field:focus{
    outline:none;
    border-color:var(--primary-color)
}
.widget_search .search-submit{
    padding:12px 25px;
    background:var(--primary-color);
    color:#fff;
    border:none;
    border-radius:25px;
    cursor:pointer;
    transition:all 0.3s ease
}
.widget_search .search-submit:hover{
    background:var(--secondary-color);
    transform:translateY(-2px)
}
.tagcloud a{
    display:inline-block;
    padding:6px 15px;
    margin:5px;
    background:#f0f0f0;
    border-radius:20px;
    font-size:0.9em !important;
    color:#666;
    transition:all 0.3s ease
}
.tagcloud a:hover{
    background:var(--primary-color);
    color:#fff;
    text-decoration:none;
    transform:translateY(-2px)
}
@media (max-width:991px){
    .single-post-article{
        padding:25px
    }
    .post-share-section,.post-tags-section{
        flex-direction:column;
        align-items:flex-start
    }
    .share-buttons{
        width:100%;
        justify-content:space-around
    }
    .post-author-box{
        flex-direction:column;
        text-align:center
    }
    .post-navigation-section{
        grid-template-columns:1fr
    }
    .nav-next{
        text-align:left
    }
    .nav-next .nav-label{
        justify-content:flex-start
    }
}
.footer-links{
    display:none !important
}
.footer-left:not(:empty),.footer-right:not(:empty){
    display:block
}
.footer-links a[href*="sitemap"],.footer-links a[href*="privacy"],.footer-links a[href*="guestbook"],.footer-links a[href*="guest-book"],.footer-links a[href*="gallery"],.footer-links a[href*="reservations"],.footer-links a[href*="help"]{
    display:none !important
}
.myrent-book-button{
    width:100%;
    padding:10px 24px !important;
    margin-top:15px !important;
    margin-bottom:15px !important;
    font-size:0.95em !important;
    font-weight:600 !important;
    border-radius:50px !important;
    cursor:pointer;
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
    text-transform:none;
    letter-spacing:0.5px;
    box-shadow:0 4px 15px rgba(0,0,0,0.1)
}
.myrent-book-button.btn-primary-gradient{
    background:linear-gradient(135deg, var(--primary-color) 0%, #b8924f 100%) !important;
    color:#fff !important;
    border:2px solid transparent !important;
    position:relative
}
.myrent-book-button.btn-primary-gradient::before{
    content:'';
    position:absolute;
    top:-2px;
    left:-2px;
    right:-2px;
    bottom:-2px;
    background:linear-gradient(45deg,var(--primary-color),#d4af6a,var(--primary-color),#b8924f,var(--primary-color));
    background-size:400% 400%;
    border-radius:50px;
    z-index:-1;
    opacity:0;
    transition:opacity 0.4s ease;
    animation:gradientFlow 3s ease infinite
}
.myrent-book-button.btn-primary-gradient:hover::before{
    opacity:1
}
@keyframes gradientFlow{
    0%{
        background-position:0% 50%
    }
    50%{
        background-position:100% 50%
    }
    100%{
        background-position:0% 50%
    }
}
.myrent-book-button.btn-primary-gradient:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(200, 163, 95, 0.4)
}
.myrent-book-button.btn-secondary{
    background:#fff !important;
    color:var(--primary-color) !important;
    border:1px solid var(--primary-color) !important;
    position:relative;
    margin-top:15px !important;
    margin-bottom:15px !important;
    padding:4px 10px !important
}
.myrent-book-button.btn-secondary::before{
    content:'';
    position:absolute;
    top:-3px;
    left:-3px;
    right:-3px;
    bottom:-3px;
    background:linear-gradient(45deg,var(--primary-color),#d4af6a,var(--primary-color),#b8924f,var(--primary-color));
    background-size:400% 400%;
    border-radius:50px;
    z-index:-1;
    opacity:0;
    transition:opacity 0.4s ease;
    animation:gradientFlow 3s ease infinite
}
.myrent-book-button.btn-secondary:hover{
    background:linear-gradient(135deg, rgba(200, 163, 95, 0.1) 0%, rgba(184, 146, 79, 0.1) 100%) !important;
    color:var(--primary-color) !important;
    border-color:transparent !important;
    transform:translateY(-3px);
    box-shadow:0 8px 25px rgba(200, 163, 95, 0.3)
}
.myrent-book-button.btn-secondary:hover::before{
    opacity:1
}
.myrent-book-button i{
    margin-left:8px;
    transition:transform 0.3s ease
}
.myrent-book-button:hover i{
    transform:translateX(5px)
}
.myrent-book-button::after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    width:0;
    height:0;
    border-radius:50%;
    background:rgba(255, 255, 255, 0.3);
    transform:translate(-50%, -50%);
    transition:width 0.6s, height 0.6s
}
.myrent-book-button:hover::after{
    width:300px;
    height:300px
}
.myrent-book-button span,.myrent-book-button .text{
    position:relative;
    z-index:1
}
@media (max-width:767px){
    .myrent-book-button{
        padding:14px 25px !important;
        font-size:1em !important;
        margin-top:20px !important;
        margin-bottom:20px !important
    }
}
.myrent-book-button.btn-secondary{
    display:none !important
}
.property-image-link{
    display:block;
    text-decoration:none;
    overflow:hidden;
    border-radius:12px
}
.property-image-link:hover .myrent-property-image{
    transform:scale(1.05);
    transition:transform 0.3s ease
}
.property-title-link{
    text-decoration:none;
    color:inherit
}
.property-title-link:hover .myrent-property-title{
    color:var(--primary-color);
    transition:color 0.3s ease
}
.property-gallery{
    margin:50px 0;
    padding:40px 0;
    border-top:1px solid #e0e0e0
}
.property-gallery h3{
    font-size:2rem;
    margin-bottom:10px;
    color:var(--secondary-color)
}
.gallery-subtitle{
    color:#666;
    font-size:0.95rem;
    margin-bottom:30px
}
.gallery-viewer{
    background:#f8f9fa;
    padding:20px;
    border-radius:12px
}
.gallery-main{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px
}
.gallery-main-image-container{
    position:relative;
    flex:1;
    background:#000;
    border-radius:8px;
    overflow:hidden
}
.gallery-main-image-container img{
    width:100%;
    height:500px;
    object-fit:contain;
    display:block;
    cursor:pointer
}
.gallery-nav{
    background:rgba(255, 255, 255, 0.9);
    border:none;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all 0.3s ease;
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
    z-index:2
}
.gallery-nav:hover{
    background:var(--primary-color);
    color:white;
    transform:scale(1.1)
}
.gallery-nav i{
    font-size:1.2rem
}
.gallery-counter{
    position:absolute;
    bottom:15px;
    left:15px;
    background:rgba(0, 0, 0, 0.7);
    color:white;
    padding:8px 15px;
    border-radius:20px;
    font-size:0.9rem;
    font-weight:600
}
.gallery-fullscreen{
    position:absolute;
    top:15px;
    right:15px;
    background:rgba(0, 0, 0, 0.7);
    border:none;
    color:white;
    width:40px;
    height:40px;
    border-radius:50%;
    cursor:pointer;
    transition:all 0.3s ease;
    display:flex;
    align-items:center;
    justify-content:center
}
.gallery-fullscreen:hover{
    background:var(--primary-color);
    transform:scale(1.1)
}
.gallery-fullscreen i{
    font-size:1.1rem
}
.gallery-thumbnails{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:10px 5px;
    scroll-behavior:smooth
}
.gallery-thumbnails::-webkit-scrollbar{
    height:8px
}
.gallery-thumbnails::-webkit-scrollbar-track{
    background:#e0e0e0;
    border-radius:4px
}
.gallery-thumbnails::-webkit-scrollbar-thumb{
    background:var(--primary-color);
    border-radius:4px
}
.gallery-thumb{
    flex-shrink:0;
    width:100px;
    height:75px;
    border-radius:6px;
    overflow:hidden;
    cursor:pointer;
    border:3px solid transparent;
    transition:all 0.3s ease;
    position:relative
}
.gallery-thumb img{
    width:100%;
    height:100%;
    object-fit:cover
}
.gallery-thumb:hover{
    transform:translateY(-3px);
    box-shadow:0 4px 12px rgba(0,0,0,0.2)
}
.gallery-thumb.active{
    border-color:var(--primary-color);
    box-shadow:0 4px 15px rgba(200, 163, 95, 0.4)
}
@media (max-width:768px){
    .property-gallery h3{
        font-size:1.5rem
    }
    .gallery-viewer{
        padding:15px
    }
    .gallery-main{
        gap:10px
    }
    .gallery-nav{
        width:40px;
        height:40px
    }
    .gallery-nav i{
        font-size:1rem
    }
    .gallery-main-image-container img{
        height:300px
    }
    .gallery-thumb{
        width:80px;
        height:60px
    }
}
@media (max-width:480px){
    .gallery-main{
        flex-direction:column
    }
    .gallery-nav-prev,.gallery-nav-next{
        position:absolute;
        top:50%;
        transform:translateY(-50%);
        z-index:3
    }
    .gallery-nav-prev{
        left:10px
    }
    .gallery-nav-next{
        right:10px
    }
    .gallery-main-image-container img{
        height:250px
    }
}
/* ===================================v3.6.65:Subscribe Section Hidden=================================== */section.subscribe{
    display:none !important
}
/* ===================================v3.6.65:Footer with Brand Gradient=================================== */footer{
    padding:30px 0 15px 0 !important;
    background:linear-gradient(to top,#1a1a1a 0%,#2a2520 50%,#3d3328 100%) !important;
    color:#fff !important;
    position:relative
}
footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:var(--primary-color, #c8a35f)
}
footer a{
    color:rgba(255, 255, 255, 0.85) !important;
    transition:color 0.3s ease
}
footer a:hover{
    color:var(--primary-color, #c8a35f) !important
}
/* ===================================v3.6.65:Footer Widget Areas (3 columns)=================================== */.footer-widgets{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    padding:20px 0;
    border-bottom:1px solid rgba(200, 163, 95, 0.2)
}
.footer-widget{
    color:rgba(255, 255, 255, 0.8)
}
.footer-widget h4,.footer-widget .widget-title{
    color:var(--primary-color, #c8a35f);
    font-size:1.1em;
    margin-bottom:15px;
    font-weight:600
}
.footer-widget ul{
    list-style:none;
    padding:0;
    margin:0
}
.footer-widget ul li{
    margin-bottom:8px
}
.footer-widget ul li a{
    color:rgba(255, 255, 255, 0.7);
    text-decoration:none;
    transition:color 0.3s ease;
    font-size:0.95em
}
.footer-widget ul li a:hover{
    color:var(--primary-color, #c8a35f)
}
@media (max-width:768px){
    .footer-widgets{
        grid-template-columns:1fr;
        gap:25px;
        text-align:center
    }
}
.footer-social{
    padding:10px 0 !important;
    margin:0
}
.footer-social .row{
    margin:0
}
.footer-social .col-sm-12.hidden,.footer-social .icons{
    display:none !important
}
.footer-social .copyright{
    padding:5px 0;
    margin:0;
    text-align:center
}
.footer-social .copyright small{
    font-size:12px;
    color:rgba(255, 255, 255, 0.5)
}
.footer-social .copyright a,.footer-social .copyright strong{
    color:var(--primary-color, #c8a35f) !important
}
/* ===================================v3.6.65:Properties Map - Mobile First with Prices (Airbnb Style)=================================== */@media (max-width:991px){
    .properties-map-page .row{
        display:flex;
        flex-direction:column
    }
    .properties-map-page .map-column{
        order:1 !important;
        width:100%;
        height:50vh;
        min-height:350px;
        position:relative
    }
    .properties-map-page .properties-list-column{
        order:2 !important;
        width:100%;
        height:auto;
        max-height:none;
        overflow:visible
    }
    .properties-map-page .map-wrapper{
        height:100%;
        position:relative
    }
    .properties-map-page #properties-map{
        height:100% !important
    }
    .properties-map-page .properties-list-wrapper{
        padding:20px 15px
    }
}
.sticky-map-button{
    display:none;
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:1000;
    background:#222;
    color:#fff;
    padding:12px 24px;
    border-radius:24px;
    font-weight:600;
    font-size:14px;
    box-shadow:0 4px 20px rgba(0,0,0,0.3);
    cursor:pointer;
    transition:all 0.3s ease;
    border:none
}
.sticky-map-button:hover{
    background:#000;
    transform:translateX(-50%) scale(1.05)
}
.sticky-map-button i{
    margin-right:8px
}
@media (max-width:991px){
    .sticky-map-button.visible{
        display:flex;
        align-items:center
    }
}
.price-marker{
    background:#fff;
    border-radius:20px;
    padding:6px 12px;
    font-weight:700;
    font-size:13px;
    color:var(--primary-color, #c8a35f);
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
    border:2px solid var(--primary-color, #c8a35f);
    white-space:nowrap;
    cursor:pointer;
    transition:all 0.2s ease
}
.price-marker:hover,.price-marker.active{
    background:var(--primary-color, #c8a35f);
    color:#fff;
    transform:scale(1.1);
    z-index:10
}
.price-marker.highlighted{
    background:var(--primary-color, #c8a35f);
    color:#fff;
    border-color:var(--primary-color, #c8a35f)
}
.map-info-window{
    max-width:280px;
    padding:10px
}
.map-info-window img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:12px
}
.map-info-window h4{
    margin:0 0 8px 0;
    font-size:16px;
    font-weight:600
}
.map-info-window .price{
    color:var(--primary-color, #c8a35f);
    font-weight:700;
    font-size:15px;
    margin-bottom:8px
}
.map-info-window a{
    color:var(--primary-color, #c8a35f);
    text-decoration:none;
    font-weight:500
}
.property-list-card.map-highlighted{
    border-color:var(--primary-color, #c8a35f);
    box-shadow:0 0 0 2px var(--primary-color, #c8a35f)
}
.form-newsletter{
    display:flex
}
.form-newsletter input{
    border:none;
    padding:8px 12px;
    border-radius:8px 0 0 8px;
    color:black;
    flex:1
}
.form-newsletter button{
    background:var(--primary-color);
    border:none;
    padding:8px 12px;
    border-radius:0 8px 8px 0;
    transform:none !important;
    color:#fff;
    cursor:pointer
}
.form-newsletter button:hover{
    opacity:0.9
}
.property-image-link{
    border-radius:12px 12px 0 0;
    display:block;
    overflow:hidden
}
.post-hero-meta .meta-item{
    padding:14px 16px;
    border-radius:10px
}
.post-hero-meta i{
    font-size:1.9rem
}
.meta-item i{
    margin-bottom:5px
}
ol.wp-block-latest-comments{
    padding:0;
    list-style:none
}
.wp-block-latest-comments__comment{
    margin-bottom:15px;
    padding-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,0.1)
}
.wp-block-latest-comments__comment:last-child{
    border-bottom:none
}
.wp-block-latest-comments__comment-meta{
    font-size:0.9em;
    color:rgba(255,255,255,0.8)
}
.wp-block-latest-comments__comment-author{
    font-weight:600;
    color:#fff
}
.wp-block-latest-comments__comment-link{
    color:var(--primary-color)
}
.wp-block-latest-comments__comment-link:hover{
    text-decoration:underline
}
/* ===================================v3.6.92:Advanced Search Modal Datepicker Fix=================================== */.advanced-filters-modal .daterangepicker{
    position:fixed !important;
    top:120px !important;
    left:50% !important;
    transform:translateX(-50%) !important;
    z-index:10003 !important;
    max-width:320px !important;
    border-radius:12px !important;
    box-shadow:0 15px 50px rgba(0,0,0,0.3) !important;
    background:#fff !important
}
@media (min-width:768px){
    .advanced-filters-modal .daterangepicker{
        top:100px !important;
        min-width:300px !important;
        max-width:340px !important
    }
}
@media (max-width:767px){
    .advanced-filters-modal .daterangepicker{
        top:80px !important;
        left:10px !important;
        right:10px !important;
        transform:none !important;
        max-width:calc(100% - 20px) !important
    }
}
@media (max-width:767px){
    .advanced-filters-modal .daterangepicker{
        width:calc(100% - 20px) !important;
        left:10px !important;
        right:10px !important;
        transform:none !important
    }
    .advanced-filters-modal .daterangepicker .drp-calendar{
        max-width:100% !important;
        width:100% !important
    }
    .hero-search-section .daterangepicker,.search-form-wrapper .daterangepicker{
        position:fixed !important;
        top:50% !important;
        left:50% !important;
        transform:translate(-50%, -50%) !important;
        width:calc(100vw - 30px) !important;
        max-width:350px !important;
        z-index:10002 !important;
        border-radius:16px !important;
        box-shadow:0 15px 50px rgba(0,0,0,0.3) !important
    }
    .hero-search-section .daterangepicker .drp-calendar,.search-form-wrapper .daterangepicker .drp-calendar{
        max-width:100% !important;
        width:100% !important;
        padding:10px !important
    }
    .hero-search-section .daterangepicker .calendar-table,.search-form-wrapper .daterangepicker .calendar-table{
        width:100% !important
    }
    .hero-search-section .daterangepicker td,.hero-search-section .daterangepicker th,.search-form-wrapper .daterangepicker td,.search-form-wrapper .daterangepicker th{
        width:14.28% !important;
        height:40px !important;
        font-size:14px !important
    }
}
/* ===================================v3.6.97:OpenStreetMap / Leaflet Styles=================================== */.leaflet-price-marker{
    background:transparent !important;
    border:none !important
}
.leaflet-price-marker .price-marker-content{
    background:#fff;
    color:#333;
    padding:6px 12px;
    border-radius:20px;
    font-weight:600;
    font-size:13px;
    box-shadow:0 2px 8px rgba(0,0,0,0.2);
    white-space:nowrap;
    border:2px solid var(--primary-color);
    transition:all 0.2s ease
}
.leaflet-price-marker:hover .price-marker-content{
    background:var(--primary-color);
    color:#fff;
    transform:scale(1.1)
}
.leaflet-popup-content{
    margin:0;
    padding:0
}
.leaflet-popup-content .map-popup{
    min-width:200px
}
.leaflet-popup-content .map-popup img{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:8px 8px 0 0
}
.leaflet-popup-content .map-popup h4{
    margin:10px;
    font-size:14px;
    font-weight:600
}
.leaflet-popup-content .map-popup p{
    margin:0 10px 10px;
    color:var(--primary-color);
    font-weight:600
}
.leaflet-popup-content .map-popup .btn{
    margin:0 10px 10px;
    display:block;
    text-align:center
}
.leaflet-container{
    font-family:var(--body-font)
}
.leaflet-pin-marker{
    background:transparent !important;
    border:none !important
}
.leaflet-pin-marker .pin-marker-content{
    color:var(--primary-color);
    font-size:28px;
    text-shadow:0 2px 4px rgba(0,0,0,0.3);
    transition:all 0.2s ease
}
.leaflet-pin-marker:hover .pin-marker-content{
    transform:scale(1.2);
    color:var(--secondary-color)
}
.leaflet-price-marker .price-marker-content{
    background:var(--primary-color);
    color:#fff
}
.map-popup .price{
    color:var(--primary-color);
    font-weight:600;
    font-size:16px
}
.map-popup .popup-meta{
    display:flex;
    gap:12px;
    margin:8px 10px;
    font-size:13px;
    color:#666
}
.map-popup .popup-meta span{
    display:flex;
    align-items:center;
    gap:4px
}
.map-popup .popup-meta i{
    color:var(--primary-color)
}
/* ===================================v3.6.101:Unified Property Card Design=================================== */.property-list-card .property-card-image{
    position:relative;
    height:200px;
    overflow:hidden
}
.property-list-card .property-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.3s ease
}
.property-list-card:hover .property-card-image img{
    transform:scale(1.05)
}
.property-card-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:15px;
    background:linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color:#fff
}
.property-card-overlay .property-card-title{
    color:#fff;
    font-size:16px;
    font-weight:600;
    margin:0 0 5px 0;
    text-shadow:0 1px 3px rgba(0,0,0,0.5)
}
.property-card-overlay .property-card-location{
    color:rgba(255,255,255,0.9);
    font-size:13px
}
.property-card-overlay .property-card-location i{
    margin-right:5px;
    color:var(--primary-color)
}
/* Override default card content spacing for map page - use overlay layout */
/* Map page cards now use image+overlay only; hide any residual content block if present */
.properties-map-page .property-list-card .property-card-content{
    display:none !important;
}
.properties-map-page .property-list-card .property-card-meta,
.properties-map-page .property-list-card .property-card-excerpt{
    display:none !important;
}
.property-list-card .property-price-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:var(--primary-color);
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    z-index:2;
    width:auto;
    max-width:fit-content
}
.property-list-card .property-card-content > .property-card-title,.property-list-card .property-card-content > .property-card-location{
    display:none
}
/* ===================================v3.6.102:Inline Property Details=================================== */.property-details-inline .property-meta-inline{
    display:flex;
    flex-wrap:wrap;
    gap:20px 30px;
    padding:0;
    margin:0
}
.property-details-inline .meta-inline-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:15px;
    color:var(--primary-color);
    background:none;
    border:none;
    padding:0
}
.property-details-inline .meta-inline-item i{
    font-size:18px;
    color:var(--primary-color);
    width:22px;

/* Map page: clean text overlay styles for unified card design */
.properties-map-page .map-list-card .property-card-meta { display: none !important; }

.properties-map-page .map-list-card .property-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.properties-map-page .map-list-card .property-card-location-text {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.properties-map-page .map-list-card .property-card-meta-text {
    margin: 0 0 6px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
}

.properties-map-page .map-list-card .property-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
}

.properties-map-page .map-list-card .property-card-overlay {
    padding: 16px 18px 20px;
}

    text-align:center
}
.property-details-inline .meta-inline-item span{
    color:var(--primary-color);
    font-weight:500
}
.property-details-inline .property-meta-large{
    display:none
}
.booking-card .input-with-icon i.fa-calendar,.booking-card .input-with-icon i.fa-user,.booking-card .input-with-icon i.fa-paw{
    color:var(--primary-color);
    font-size:16px
}
@media (max-width:767px){
    .property-details-inline .property-meta-inline{
        gap:12px 20px
    }
    .property-details-inline .meta-inline-item{
        font-size:14px
    }
    .property-details-inline .meta-inline-item i{
        font-size:16px
    }
}
/* ===================================v3.6.103:Daterangepicker Header Primary Color=================================== */.daterangepicker .drp-calendar .calendar-table .month,.daterangepicker .monthselect,.daterangepicker .yearselect,.daterangepicker select.monthselect,.daterangepicker select.yearselect{
    background-color:var(--primary-color) !important;
    color:#fff !important;
    border-color:var(--primary-color) !important
}
.daterangepicker th.month{
    background-color:var(--primary-color) !important;
    color:#fff !important;
    padding:8px !important;
    border-radius:4px
}
.daterangepicker th.prev,.daterangepicker th.next{
    color:var(--primary-color) !important
}
.daterangepicker th.prev:hover,.daterangepicker th.next:hover{
    background-color:rgba(var(--primary-color-rgb), 0.1) !important
}
.daterangepicker .drp-buttons .applyBtn,.daterangepicker .drp-buttons .btn-primary{
    background-color:var(--primary-color) !important;
    border-color:var(--primary-color) !important;
    color:#fff !important
}
.daterangepicker .drp-buttons .applyBtn:hover,.daterangepicker .drp-buttons .btn-primary:hover{
    background-color:var(--secondary-color) !important;
    border-color:var(--secondary-color) !important
}
.daterangepicker .drp-buttons .cancelBtn{
    color:var(--primary-color) !important;
    border-color:var(--primary-color) !important
}
.daterangepicker td.active:not(.off),.daterangepicker td.active:hover:not(.off){
    background-color:var(--primary-color) !important;
    border-color:var(--primary-color) !important;
    color:#fff !important
}
.daterangepicker td.in-range:not(.off){
    background-color:rgba(200, 163, 95, 0.2) !important
}
.daterangepicker td.start-date,.daterangepicker td.end-date{
    background-color:var(--primary-color) !important;
    color:#fff !important
}
/* ===================================v3.6.105:BUG FIXES - August 2025=================================== *//* FIX 1:Blog Post Meta Icons - Larger icons, no boxes, inline rowURL:https://simplybooky.com/istraselect/2020/10/01/historic/---------------------------------------------------------------- */.post-hero-meta{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:20px !important;
    align-items:center !important;
    font-size:1em !important
}
.post-hero-meta .meta-item{
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
    padding:0 !important;
    background:transparent !important;
    backdrop-filter:none !important;
    border:none !important;
    border-radius:0 !important;
    color:rgba(255, 255, 255, 0.9) !important;
    font-weight:500 !important;
    font-size:1em !important;
    transition:color 0.3s ease !important
}
.post-hero-meta .meta-item:hover{
    background:transparent !important;
    transform:none !important;
    color:#fff !important
}
.post-hero-meta .meta-separator{
    display:inline-block !important;
    color:rgba(255, 255, 255, 0.5) !important;
    font-size:0.6em !important
}
.post-hero-meta i,.post-hero-meta .meta-item i{
    color:var(--primary-color) !important;
    font-size:1.1em !important;
    text-shadow:none !important
}
.blog-post-meta{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:15px !important;
    align-items:center !important;
    font-size:0.9em !important;
    color:#666 !important;
    margin-bottom:12px !important
}
.blog-post-meta .meta-item{
    display:inline-flex !important;
    align-items:center !important;
    gap:6px !important;
    padding:0 !important;
    background:transparent !important;
    border:none !important;
    color:#666 !important;
    font-size:0.95em !important
}
.blog-post-meta .meta-item i{
    color:var(--primary-color) !important;
    font-size:1em !important
}
/* FIX 2:Property Card Meta Icons - Use FontAwesome for bedrooms/bathroomsURL:https://simplybooky.com/istraselect/------------------------------------------------------------------------ */.myrent-property-meta{
    display:flex !important;
    gap:15px !important;
    margin:15px 0 !important;
    font-size:0.9em !important;
    color:#666 !important;
    flex-wrap:wrap !important
}
.myrent-property-meta span{
    display:inline-flex !important;
    align-items:center !important;
    gap:6px !important
}
.myrent-property-meta span i{
    color:var(--primary-color) !important;
    font-size:1.1em !important
}
/* FIX 3:Featured Properties Hover Transition - Match blog carousel smoothness---------------------------------------------------------------------------- */.myrent-property-card{
    transition:transform 0.4s ease, box-shadow 0.4s ease !important
}
.myrent-property-card:hover{
    transform:translateY(-8px) !important;
    box-shadow:0 12px 35px rgba(0,0,0,0.15) !important
}
.myrent-property-card .property-image-wrapper{
    overflow:hidden !important
}
.myrent-property-card .myrent-property-image{
    transition:transform 0.5s ease !important
}
.myrent-property-card:hover .myrent-property-image{
    transform:scale(1.08) !important
}
.featured-properties .myrent-property-card,.myrent-property-grid .myrent-property-card{
    transition:transform 0.4s ease, box-shadow 0.4s ease !important
}
/* FIX 4:Single Property Page - Transparent Header over Hero BannerURL:single-property.php------------------------------------------------------------------ */body.single-property header:not(.sticked),body.single-property .header-new:not(.sticked){
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    z-index:1000 !important;
    background:transparent !important;
    background-color:transparent !important;
    box-shadow:none !important
}
body.single-property header:not(.sticked) .header-menu a,body.single-property .header-new:not(.sticked) .header-menu a{
    color:#fff !important;
    text-shadow:1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.3) !important;
    font-weight:600 !important
}
body.single-property header:not(.sticked) .header-logo img,body.single-property .header-new:not(.sticked) .header-logo img{
    filter:brightness(0) invert(1) drop-shadow(1px 1px 2px rgba(0,0,0,0.5)) !important
}
body.single-property .property-detail{
    padding-top:0 !important;
    margin-top:0 !important
}
body.single-property .property-hero{
    margin-top:0 !important
}
body.single-property header.site-header:not(.sticked),body.single-property .site-header:not(.sticked){
    background:transparent !important;
    position:absolute !important
}
body.single-property header:not(.sticked) nav.navigation-top,body.single-property header:not(.sticked) .navigation-top{
    background:transparent !important;
    border-bottom:1px solid rgba(255, 255, 255, 0.15) !important
}
body.single-property header:not(.sticked) nav.navigation-top .box,body.single-property header:not(.sticked) .navigation-top .box{
    color:#fff !important;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5) !important
}
body.single-property header:not(.sticked) nav.navigation-main,body.single-property header:not(.sticked) .navigation-main{
    background:transparent !important
}
body.single-property header:not(.sticked) nav.navigation-main .navigation-block ul li a,body.single-property header:not(.sticked) .navigation-main .navigation-block ul li a{
    color:#fff !important;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5) !important;
    font-weight:600 !important
}
body.single-property header.sticked,body.single-property .header-new.sticked{
    position:fixed !important;
    background:rgba(255, 255, 255, 0.98) !important;
    box-shadow:0 2px 15px rgba(0, 0, 0, 0.1) !important
}
body.single-property header.sticked .header-menu a,body.single-property .header-new.sticked .header-menu a{
    color:#333 !important;
    text-shadow:none !important
}
body.single-property header.sticked .header-logo img,body.single-property .header-new.sticked .header-logo img{
    filter:none !important
}
body.single-property header.sticked nav.navigation-top,body.single-property header.sticked .navigation-top{
    background:#f8f9fa !important;
    border-bottom:1px solid #e5e5e5 !important
}
body.single-property header.sticked nav.navigation-top .box{
    color:#333 !important;
    text-shadow:none !important
}
body.single-property header.sticked nav.navigation-main,body.single-property header.sticked .navigation-main{
    background:#fff !important
}
body.single-property header.sticked nav.navigation-main .navigation-block ul li a{
    color:#333 !important;
    text-shadow:none !important
}
@media (max-width:991px){
    body.single-property header:not(.sticked) .mobile-toggle,body.single-property .header-new:not(.sticked) .mobile-toggle{
        color:#fff !important;
        text-shadow:1px 1px 3px rgba(0, 0, 0, 0.5) !important
    }
    body.single-property header.sticked .mobile-toggle{
        color:#333 !important;
        text-shadow:none !important
    }
}
/* ===================================v3.6.105 ADDITIONAL FIX:Single Property Header TransparencyForce transparent header on property pages=================================== */body.single-property header.header-new:not(.sticked),body.single-property .header-new:not(.sticked){
    background:transparent !important;
    background-color:transparent !important;
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    z-index:1000 !important;
    box-shadow:none !important
}
body.single-property header.header-new:not(.sticked) .header-wrapper,body.single-property header.header-new:not(.sticked) .container{
    background:transparent !important
}
body.single-property header.header-new:not(.sticked) .header-menu li a,body.single-property header.header-new:not(.sticked) .header-navigation a{
    color:#fff !important;
    text-shadow:1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.4) !important;
    font-weight:600 !important
}
body.single-property header.header-new:not(.sticked) .header-menu li a:hover{
    color:var(--primary-color) !important
}
body.single-property header.header-new:not(.sticked) .header-logo img,body.single-property header.header-new:not(.sticked) .custom-logo{
    filter:brightness(0) invert(1) drop-shadow(1px 1px 3px rgba(0,0,0,0.5)) !important
}
body.single-property header.header-new:not(.sticked) .mobile-toggle,body.single-property header.header-new:not(.sticked) .header-mobile-toggle,body.single-property header.header-new:not(.sticked) .menu-toggle{
    color:#fff !important;
    text-shadow:1px 1px 3px rgba(0,0,0,0.5) !important
}
body.single-property header.header-new:not(.sticked) .mobile-toggle span,body.single-property header.header-new:not(.sticked) .mobile-toggle i{
    color:#fff !important;
    background-color:#fff !important
}
body.single-property header.header-new:not(.sticked) .header-phone,body.single-property header.header-new:not(.sticked) .header-contact{
    color:#fff !important;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5) !important
}
body.single-property header.header-new:not(.sticked) .header-phone i,body.single-property header.header-new:not(.sticked) .header-contact i{
    color:#fff !important
}
body.single-property header.header-new:not(.sticked) .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle,body.single-property header.header-new:not(.sticked) .language-switcher a{
    color:#fff !important;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5) !important
}
body.single-property header.header-new:not(.sticked) .header-menu .sub-menu,body.single-property header.header-new:not(.sticked) .header-menu ul ul{
    background:rgba(255, 255, 255, 0.98) !important;
    box-shadow:0 5px 20px rgba(0,0,0,0.15) !important
}
body.single-property header.header-new:not(.sticked) .header-menu .sub-menu a{
    color:#333 !important;
    text-shadow:none !important
}
body.single-property header.header-new:not(.sticked) .header-menu .sub-menu a:hover{
    color:var(--primary-color) !important;
    background:rgba(0,0,0,0.03) !important
}
body.single-property header.header-new.sticked{
    position:fixed !important;
    background:rgba(255, 255, 255, 0.98) !important;
    box-shadow:0 2px 15px rgba(0, 0, 0, 0.1) !important
}
body.single-property header.header-new.sticked .header-menu li a{
    color:#333 !important;
    text-shadow:none !important
}
body.single-property header.header-new.sticked .header-logo img,body.single-property header.header-new.sticked .custom-logo{
    filter:none !important
}
body.single-property header.header-new.sticked .mobile-toggle,body.single-property header.header-new.sticked .mobile-toggle span{
    color:#333 !important;
    background-color:#333 !important
}
body.single-property header.header-new.sticked .header-phone,body.single-property header.header-new.sticked .header-contact{
    color:#333 !important;
    text-shadow:none !important
}
body.single-property .property-hero,body.single-property .property-gallery-hero,body.single-property .property-slider{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .property-detail,body.single-property main{
    padding-top:0 !important;
    margin-top:0 !important
}
@media (max-width:991px){
    body.single-property header.header-new:not(.sticked) .mobile-menu,body.single-property header.header-new:not(.sticked) .header-mobile-menu{
        background:rgba(0, 0, 0, 0.95) !important
    }
    body.single-property header.header-new:not(.sticked) .mobile-menu a,body.single-property header.header-new:not(.sticked) .header-mobile-menu a{
        color:#fff !important;
        text-shadow:none !important
    }
}
/* ===================================v3.6.106:FIX - Remove white space above hero on single property pages=================================== */body.single-property{
    padding-top:0 !important;
    margin-top:0 !important
}
body.single-property .wrapper{
    padding-top:0 !important;
    margin-top:0 !important
}
body.single-property header.header-new{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    z-index:1000 !important
}
body.single-property header.header-new + *,body.single-property header.header-new ~ section:first-of-type,body.single-property header + section.property-detail,body.single-property .wrapper > section.property-detail{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property section.property-detail{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .property-hero,body.single-property section.property-hero{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .property-hero-media{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property.admin-bar header.header-new:not(.sticked){
    top:32px !important
}
@media screen and (max-width:782px){
    body.single-property.admin-bar header.header-new:not(.sticked){
        top:46px !important
    }
}
body.single-property header,body.single-property header.header-new,body.transparent-header-page header,body.transparent-header-page header.header-new{
    position:absolute !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    background:transparent !important;
    background-color:transparent !important;
    border-bottom:none !important
}
body.single-property .wrapper,body.transparent-header-page .wrapper{
    padding-top:0 !important;
    margin-top:0 !important
}
body.single-property .wrapper > *:first-child,body.single-property .wrapper > header + *,body.transparent-header-page .wrapper > *:first-child{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property section:first-of-type,body.single-property .property-detail,body.single-property section.property-detail{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .property-hero,body.single-property section.property-hero,body.single-property .property-hero-media{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .property-hero-slider,body.single-property .property-hero-slider .hero-slide{
    margin-top:0 !important
}
body.single-property nav.navigation-top,body.single-property .navigation-top{
    display:none !important
}
body.single-property .wrapper > header.header-new{
    position:absolute !important;
    top:0 !important
}
body.single-property section.property-detail{
    position:relative !important;
    z-index:1 !important;
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .property-hero{
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property .wrapper > *:not(header):not(section.property-detail):not(.property-detail):first-child{
    display:none !important
}
body.single-property .property-hero-slider,body.single-property .property-hero-media,body.single-property .hero-slide{
    margin-top:0 !important
}
body.single-property,body.single-property.custom-background,body.transparent-header-page,body.transparent-header-page.custom-background{
    margin:0 !important;
    padding:0 !important;
    margin-top:0 !important;
    padding-top:0 !important;
    background-position:top left !important
}
html{
    margin:0 !important;
    padding:0 !important;
    margin-top:0 !important;
    padding-top:0 !important
}

/* ==================================================================
   Booking widget: T&C + Pets inputs visibility on single property
   ================================================================== */
.single-property .booking-consent .amenity-checkbox input[type="checkbox"],
.single-property .booking-consent .amenity-checkbox input[type="radio"] {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    cursor: pointer;
    vertical-align: middle;
    accent-color: var(--primary-color, #c8a35f);
}

/* ==================================================================
   Booking modal: force two-column layout (summary left, form right)
   ================================================================== */
#booking-modal .booking-modal-columns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

@media (max-width: 767px) {
    #booking-modal .booking-modal-columns {
        grid-template-columns: 1fr !important;
    }
}

#booking-modal .booking-modal-summary {
    grid-column: 1 !important;
    grid-row: 1 !important;
}

#booking-modal .booking-modal-form {
    grid-column: 2 !important;
    grid-row: 1 !important;
}

@media (max-width: 767px) {
    #booking-modal .booking-modal-summary,
    #booking-modal .booking-modal-form {
        grid-column: 1 !important;

/* FORCE booking modal two-column layout - override all conflicts */
#booking-modal .booking-modal-columns {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

#booking-modal .booking-modal-summary,
#booking-modal .booking-modal-form {
    flex: 0 0 48% !important;
    max-width: 48% !important;
    width: 48% !important;
    min-width: 0 !important;
}

@media (max-width: 767px) {
    #booking-modal .booking-modal-columns {
        flex-direction: column !important;
    }

    #booking-modal .booking-modal-summary,
    #booking-modal .booking-modal-form {
        flex: 1 1 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

    }
}

/* ==================================================================
   Booking consent: STRONG CONTRAST for hover/checked states
   ================================================================== */
.booking-consent .amenity-checkbox,
.booking-consent label.amenity-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    background: #ffffff !important;
    border: 2px solid #d0d0d0 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
}

/* STRONG HOVER - very visible gold background */
.booking-consent .amenity-checkbox:hover,
.booking-consent label.amenity-checkbox:hover {
    border-color: #c8a35f !important;
    background: #f5e6c8 !important;
    box-shadow: 0 4px 12px rgba(200, 163, 95, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* STRONG CHECKED - even more visible gold/amber */
.booking-consent .amenity-checkbox:has(input:checked),
.booking-consent label.amenity-checkbox:has(input:checked) {
    border-color: #b8933f !important;
    background: #f0d890 !important;
    box-shadow: 0 4px 16px rgba(184, 147, 63, 0.4) !important;
}

.booking-consent .amenity-checkbox:has(input:checked)::after,
.booking-consent label.amenity-checkbox:has(input:checked)::after {
    content: '✓' !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #7a6025 !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

/* Hide the actual input but keep it functional for accessibility */
.booking-consent .amenity-checkbox input[type="checkbox"],
.booking-consent .amenity-checkbox input[type="radio"],
.booking-consent label.amenity-checkbox input[type="checkbox"],
.booking-consent label.amenity-checkbox input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    cursor: pointer !important;
    z-index: 2 !important;
    margin: 0 !important;
}

/* Custom checkbox/radio visual indicator */
.booking-consent .amenity-checkbox::before,
.booking-consent label.amenity-checkbox::before {
    content: '' !important;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    border: 2px solid #aaa !important;
    border-radius: 4px !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
}

/* For radio buttons, make it circular */
.booking-consent .amenity-checkbox:has(input[type="radio"])::before,
.booking-consent label.amenity-checkbox:has(input[type="radio"])::before {
    border-radius: 50% !important;
}

/* Checked indicator - filled gold */
.booking-consent .amenity-checkbox:has(input:checked)::before,
.booking-consent label.amenity-checkbox:has(input:checked)::before {
    background: #b8933f !important;
    border-color: #8a6d2f !important;
}

.booking-consent .amenity-checkbox span,
.booking-consent label.amenity-checkbox span {
    flex: 1 !important;
    font-size: 1em !important;
    line-height: 1.3 !important;
    color: #333 !important;
    padding-right: 28px !important;
}

.booking-consent .amenity-checkbox span a,
.booking-consent label.amenity-checkbox span a {
    color: var(--primary-color, #c8a35f) !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

.booking-consent .amenity-checkbox span a:hover,
.booking-consent label.amenity-checkbox span a:hover {
    color: #8a6d2f !important;
}

/* Pets dropdown styling */
.booking-consent select#booking-pets-choice {
    border: 2px solid #d0d0d0 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.95em !important;
    background: #fff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.booking-consent select#booking-pets-choice:hover,
.booking-consent select#booking-pets-choice:focus {
    border-color: #c8a35f !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(200, 163, 95, 0.25) !important;
}

/* ==================================================================
   Booking widget: reduce total price font by 30%
   ================================================================== */
#booking-total-price-display #price-total-amount {
    font-size: 1.4em !important;
}


body.single-property > .wrapper,body.single-property .wrapper{
    margin:0 !important;
    padding:0 !important;
    margin-top:0 !important;
    padding-top:0 !important
}
body.single-property{
    background:transparent !important
}
body.single-property .wrapper{
    background:transparent !important
}
body.single-property section.property-detail{
    background:transparent !important
}
body.single-property header.header-new{
    background:transparent !important
}
/* ================================================v3.6.109:Header Favorites Icon================================================ */.header-favorites{
    display:inline-flex;
    align-items:center;
    margin-right:15px
}
.header-favorites a{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:inherit;
    text-decoration:none;
    padding:8px;
    transition:all 0.3s ease
}
.header-favorites a:hover{
    color:#dc3545
}
.header-favorites i{
    font-size:20px;
    transition:all 0.3s ease
}
.header-favorites a:hover i{
    transform:scale(1.1)
}
.header-favorites.has-favorites i{
    color:#dc3545
}
.header-favorites.has-favorites i::before{
    content:"\f004"
}
.favorites-count{
    position:absolute;
    top:-2px;
    right:-2px;
    min-width:18px;
    height:18px;
    background:#dc3545;
    color:#fff;
    font-size:11px;
    font-weight:600;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 4px;
    box-shadow:0 2px 5px rgba(0,0,0,0.2)
}
body.home .header-favorites a,body.single-property .header-favorites a,body.transparent-header-page .header-favorites a{
    color:#fff;
    text-shadow:1px 1px 3px rgba(0,0,0,0.5)
}
body.home .header-favorites a:hover,body.single-property .header-favorites a:hover,body.transparent-header-page .header-favorites a:hover{
    color:#dc3545;
    text-shadow:none
}
header.sticked .header-favorites a{
    color:#333;
    text-shadow:none
}
header.sticked .header-favorites a:hover,header.sticked .header-favorites.has-favorites a{
    color:#dc3545
}
@media (max-width:991px){
    .header-favorites{
        margin-right:10px
    }
    .header-favorites i{
        font-size:18px
    }
}
/* ================================================v3.6.110:Redesigned Map Popup - Image-focused card================================================ */.leaflet-popup-content-wrapper{
    border-radius:12px;
    padding:0 !important;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,0.2)
}
.leaflet-popup-content{
    margin:0 !important;
    padding:0 !important;
    width:220px !important
}
.map-popup-card{
    display:block;
    text-decoration:none;
    color:inherit;
    cursor:pointer
}
.map-popup-card:hover{
    text-decoration:none
}
.popup-image{
    position:relative;
    width:220px;
    height:140px;
    background-size:cover;
    background-position:center;
    background-color:#eee
}
.popup-image::before{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:70%;
    background:linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events:none
}
.popup-overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:10px 12px;
    z-index:2
}
.popup-title{
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#fff;
    text-shadow:1px 1px 2px rgba(0,0,0,0.5);
    line-height:1.3;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden
}
.popup-fav-btn{
    position:absolute;
    top:8px;
    right:8px;
    width:30px;
    height:30px;
    border-radius:50%;
    border:none;
    background:rgba(255, 255, 255, 0.9);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s ease;
    box-shadow:0 2px 6px rgba(0,0,0,0.2);
    z-index:10
}
.popup-fav-btn:hover{
    background:#fff;
    transform:scale(1.1)
}
.popup-fav-btn i{
    font-size:14px;
    color:#999;
    transition:all 0.3s ease
}
.popup-fav-btn:hover i{
    color:#dc3545
}
.popup-fav-btn.is-favorite{
    background:#dc3545
}
.popup-fav-btn.is-favorite i{
    color:#fff
}
.popup-fav-btn.is-favorite:hover{
    background:#c82333
}
.popup-view-btn{
    position:absolute;
    top:8px;
    left:8px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:rgba(255, 255, 255, 0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    transition:all 0.3s ease;
    box-shadow:0 2px 6px rgba(0,0,0,0.2)
}
.popup-view-btn i{
    font-size:12px;
    color:var(--primary-color, #c8a35f)
}
.map-popup-card:hover .popup-view-btn{
    background:var(--primary-color, #c8a35f)
}
.map-popup-card:hover .popup-view-btn i{
    color:#fff
}
.popup-info-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 12px;
    background:#fff;
    gap:8px
}
.popup-info-left{
    display:flex;
    align-items:center;
    gap:8px
}
.popup-info-right{
    display:flex;
    align-items:center;
    gap:10px
}
.popup-meta-item{
    display:inline-flex;
    align-items:center;
    gap:4px;
    font-size:12px;
    color:#666;
    white-space:nowrap
}
.popup-meta-item i{
    color:var(--primary-color, #c8a35f);
    font-size:11px
}
.popup-meta-item.popup-price{
    font-weight:600;
    color:var(--primary-color, #c8a35f);
    font-size:13px
}
.popup-meta-item.popup-price i{
    color:var(--primary-color, #c8a35f)
}
.popup-total-price{
    background:linear-gradient(135deg, var(--primary-color, #c8a35f) 0%, var(--secondary-color, #2c3e50) 100%);
    color:#fff;
    padding:10px 12px;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    font-size:0.9em
}
.popup-total-price .total-label{
    font-weight:400;
    opacity:0.9
}
.popup-total-price .total-amount{
    font-size:1.3em;
    font-weight:700
}
.popup-total-price .total-nights{
    font-size:0.85em;
    opacity:0.8
}
.map-popup-card:hover .popup-image{
    opacity:0.95
}
.map-popup-card:hover .popup-info-bar{
    background:#f9f9f9
}
/* ===================================v3.7.23:Mobile Floating Booking Button - Clean DesignIMPORTANT:Override booking-enhancements.css=================================== */.mobile-booking-float{
    position:fixed !important;
    bottom:20px !important;
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
    z-index:9999 !important;
    display:none !important;
    background:#fff !important;
    border-radius:25px !important;
    box-shadow:0 2px 12px rgba(0, 0, 0, 0.15) !important;
    padding:0 !important
}
.mobile-booking-float:hover{
    transform:translateX(-50%) translateY(-2px) !important;
    box-shadow:0 4px 16px rgba(0, 0, 0, 0.2) !important
}
@media (max-width:991px){
    .mobile-booking-float{
        display:block !important
    }
}
.mobile-float-content{
    display:inline-flex !important;
    align-items:center !important;
    gap:10px !important;
    background:transparent !important;
    border:none !important;
    border-radius:25px !important;
    padding:10px 16px !important;
    box-shadow:none !important;
    cursor:pointer !important;
    color:#333 !important
}
.mobile-float-content:hover{
    box-shadow:none !important
}
.mobile-float-price{
    display:none !important
}
.mobile-float-btn{
    display:flex !important;
    align-items:center !important;
    gap:6px !important;
    background:var(--primary-color, #c8a35f) !important;
    color:#fff !important;
    padding:10px 18px !important;
    border-radius:20px !important;
    font-weight:600 !important;
    font-size:0.9em !important;
    transition:all 0.3s ease !important;
    white-space:nowrap !important
}
.mobile-float-btn:hover{
    background:var(--secondary-color, #2c3e50) !important
}
.mobile-float-btn i{
    font-size:1em !important
}
.mobile-booking-float.has-dates .mobile-float-price{
    display:flex !important;
    align-items:baseline !important;
    gap:4px !important;
    flex-direction:row !important
}
.mobile-booking-float.has-dates .mobile-float-price .price-label{
    font-size:0.8em !important;
    color:#666 !important;
    opacity:1 !important;
    text-transform:none !important
}
.mobile-booking-float.has-dates .mobile-float-price .price-amount{
    font-size:1.15em !important;
    font-weight:700 !important;
    color:var(--primary-color, #c8a35f) !important;
    line-height:normal !important
}
.mobile-booking-float.has-dates .mobile-float-price .price-period{
    font-size:0.75em !important;
    color:#666 !important;
    opacity:1 !important
}
/* ===================================v3.7.22:Mobile Booking Modal Enhancements=================================== */#mobile-booking-modal .modal-content{
    background:#fff;
    width:100%;
    max-width:100%;
    max-height:90vh;
    border-radius:20px 20px 0 0;
    overflow-y:auto;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    animation:slideUpModal 0.3s ease;
    border:none;
    box-shadow:0 -4px 20px rgba(0, 0, 0, 0.15)
}
@keyframes slideUpModal{
    from{
        transform:translateY(100%)
    }
    to{
        transform:translateY(0)
    }
}
#mobile-booking-modal .modal-overlay{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(0, 0, 0, 0.5)
}
#mobile-booking-modal .modal-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    border-bottom:1px solid #e9ecef;
    position:sticky;
    top:0;
    background:#fff;
    z-index:10;
    border-radius:20px 20px 0 0
}
#mobile-booking-modal .modal-header h4{
    margin:0;
    font-size:1.2em;
    font-weight:600;
    color:var(--secondary-color, #2c3e50)
}
#mobile-booking-modal .modal-close{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#f1f1f1;
    border:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1em;
    color:#666;
    transition:all 0.2s ease
}
#mobile-booking-modal .modal-close:hover{
    background:#e5e5e5;
    color:#333
}
#mobile-booking-modal .modal-body{
    padding:20px
}
#mobile-booking-modal .form-group{
    margin-bottom:18px
}
#mobile-booking-modal .form-group label{
    display:block;
    font-weight:600;
    margin-bottom:6px;
    color:#333;
    font-size:0.95em
}
#mobile-booking-modal .form-control{
    width:100%;
    padding:12px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:1em;
    transition:border-color 0.2s ease
}
#mobile-booking-modal .form-control:focus{
    outline:none;
    border-color:var(--primary-color, #c8a35f)
}
#mobile-booking-modal .mobile-price-display{
    background:linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding:16px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center
}
#mobile-booking-modal .mobile-price-display .nights-label{
    font-size:0.9em;
    color:#666
}
#mobile-booking-modal .mobile-price-display .total-price{
    display:block;
    font-size:1.8em;
    font-weight:700;
    color:var(--primary-color, #c8a35f);
    margin-top:4px
}
@media (max-width:768px){
    .property-section-nav{
        top:73px !important
    }
    .property-section-nav ul{
        gap:15px;
        padding:0 5px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none
    }
    .property-section-nav ul::-webkit-scrollbar{
        display:none
    }
    .property-section-nav a{
        font-size:1rem;
        white-space:nowrap
    }
}
/* ===================================v3.7.32:Property Category Filters=================================== */.category-filter-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:15px
}
.category-btn{
    padding:6px 14px;
    border-radius:20px;
    background:#f0f0f0;
    color:#666;
    text-decoration:none;
    font-size:0.85em;
    transition:all 0.3s ease;
    border:1px solid transparent
}
.category-btn:hover{
    background:var(--primary-color);
    color:#fff;
    border-color:var(--primary-color)
}
.category-btn.active{
    background:var(--primary-color);
    color:#fff;
    border-color:var(--primary-color)
}
.category-breadcrumb a:hover{
    text-decoration:underline
}
@media (max-width:768px){
    .category-filter-buttons{
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
        -webkit-overflow-scrolling:touch
    }
    .category-btn{
        flex-shrink:0;
        white-space:nowrap
    }
}
/* ===================================v3.7.45:Property Highlights (Minimal icon style)=================================== */.property-highlights{
    padding:20px 0;
    border-bottom:1px solid #eee;
    margin-bottom:25px
}
.highlights-grid{
    display:flex;
    flex-wrap:wrap;
    gap:8px 16px;
    align-items:center
}
.highlight-item{
    display:flex;
    align-items:center;
    gap:6px;
    padding:0;
    background:transparent;
    border-radius:0;
    transition:opacity 0.2s ease
}
.highlight-item:hover{
    opacity:0.7
}
.highlight-icon{
    width:auto;
    height:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    background:transparent;
    color:var(--primary-color, #c8a35f);
    border-radius:0;
    font-size:1.35em;
    flex-shrink:0
}
.highlight-text{
    display:flex;
    flex-direction:row;
    align-items:baseline;
    gap:4px
}
.highlight-value{
    font-size:0.95em;
    font-weight:500;
    color:#555;
    line-height:1
}
.highlight-label{
    font-size:0.85em;
    color:#777;
    font-weight:400
}
.highlight-bed-type{
    font-size:0.8em;
    color:#999;
    font-style:normal;
    margin-left:2px
}
.highlight-item:not(:last-child)::after{
    content:none;
}
.sleep-section{
    padding:30px 0;
    border-bottom:1px solid #eee;
    margin-bottom:30px
}
.sleep-section h3{
    font-size:1.5em;
    font-weight:600;
    color:var(--secondary-color, #2c3e50);
    margin-bottom:25px
}
.sleep-rooms-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px
}
.sleep-rooms-container{
    flex:1;
    overflow:hidden;
    min-width:0
}
.sleep-rooms-grid{
    display:flex;
    flex-wrap:nowrap;
    gap:15px;
    transition:transform 0.3s ease
}
.sleep-nav-btn{
    flex-shrink:0;
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid #e0e0e0;
    background:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.2s ease;
    z-index:2
}
.sleep-nav-btn:hover{
    background:var(--primary-color, #c8a35f);
    border-color:var(--primary-color, #c8a35f);
    color:#fff
}
.sleep-nav-btn:disabled{
    opacity:0.3;
    cursor:not-allowed
}
.sleep-nav-btn:disabled:hover{
    background:#fff;
    border-color:#e0e0e0;
    color:inherit
}
.sleep-nav-btn i{
    font-size:14px
}
.sleep-room-card{
    background:#f8f9fa;
    border:1px solid #e9ecef;
    border-radius:12px;
    padding:18px 15px;
    text-align:center;
    transition:all 0.3s ease;
    flex:1 0 auto;
    min-width:120px;
    max-width:160px
}
.sleep-room-card:hover{
    border-color:var(--primary-color, #c8a35f);
    box-shadow:0 4px 15px rgba(0, 0, 0, 0.08)
}
.sleep-room-icon{
    width:45px;
    height:45px;
    margin:0 auto 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, var(--primary-color, #c8a35f) 0%, rgba(200, 163, 95, 0.7) 100%);
    color:#fff;
    border-radius:50%;
    font-size:1.2em
}
.sleep-room-icon .fa-couch:before{
    content:"\f4b8"
}
.sleep-room-info h4{
    font-size:0.95em;
    font-weight:600;
    color:var(--secondary-color, #2c3e50);
    margin:0 0 3px
}
.sleep-room-info p{
    font-size:0.9em;
    color:#666;
    margin:0
}
@media (max-width:991px){
    .highlights-grid{
        gap:6px 12px
    }
}
@media (max-width:576px){
    .property-highlights{
        padding:15px 0
    }
    .highlights-grid{
        gap:4px 10px
    }
    .highlight-item{
        gap:4px
    }
    .highlight-icon{
        font-size:1.2em
    }
    .highlight-value{
        font-size:0.9em
    }
    .highlight-label{
        font-size:0.8em
    }
    .highlight-item:not(:last-child)::after{
        margin-left:0;
    }
    .sleep-rooms-grid{
        flex-wrap:wrap;
        gap:10px
    }
    .sleep-room-card{
        flex:1 0 calc(50% - 5px);
        min-width:calc(50% - 5px);
        max-width:calc(50% - 5px);
        padding:15px 10px
    }
    .sleep-room-icon{
        width:40px;
        height:40px;
        font-size:1.1em
    }
}
body.single-property .wrapper{
    overflow:visible !important
}
@media (min-width:992px){
    .property-sidebar{
        z-index:98;
        transition:none
    }
    .col-md-4{
        position:relative
    }
}
.hero-slide-img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform-origin:center center
}
@media (max-width:991px){
    .property-hero-slider .hero-slide{
        background-position:center top !important
    }
}
/* ===================================    v3.9.17: Responsive Images - Better Image Positioning    =================================== */  /* Hero slider - position images to show room properly (not just ceiling) */ .property-hero-slider .hero-slide {
    background-position: center 25% !important;
    /* Show more of the room, less ceiling */
}
/* On mobile, center images more */ @media (max-width: 991px) {
    .property-hero-slider .hero-slide {
        background-position: center 30% !important;
    }
}
/* Property cards - better image positioning */ .property-image img, .property-card .property-image img, .featured-card-image {
    object-position: center 30%;
}
/* Gallery thumbnails */ .gallery-thumb img {
    object-fit: cover;
    object-position: center 30%;
}
/* Main gallery image */ #gallery-main-image {
    object-fit: contain;
    max-height: 600px;
    width: 100%;
}
/* Homepage featured cards */ .featured-card-image {
    background-position: center 30% !important;
}
/* ===================================    v3.9.17: Fix Image Aspect Ratio    Keep original image proportions, don't crop badly    =================================== */  /* Gallery main image - show full image without cropping */ #gallery-main-image, .gallery-main-image-container img {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-height: 70vh !important;
    background: #f5f5f5;
}
/* Gallery thumbnails - crop to square but focus on center */ .gallery-thumb img {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
}
/* Property cards - keep aspect ratio */ .property-card .property-image img {
    object-fit: cover !important;
    object-position: center 30% !important;
    width: 100% !important;
    height: 100% !important;
}
/* Hero slider on single property - use contain to show full image */ .property-hero-slider .hero-slide {
    background-size: cover !important;
    background-position: center 30% !important;
}
/* On smaller screens, center more */ @media (max-width: 768px) {
    .property-hero-slider .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    #gallery-main-image,     .gallery-main-image-container img {
        max-height: 50vh !important;
    }
}
/* Featured cards on homepage */ .featured-card-image {
    background-size: cover !important;
    background-position: center 30% !important;
}
/* ===================================    v3.9.19: Better Image Display - Show Full Image Centered    =================================== */  /* Hero slider - show full image, centered, with empty space on sides if needed */ .property-hero-slider .hero-slide {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #1a1a1a !important;
    /* Dark background for empty space */
}
/* For homepage hero - keep cover for dramatic effect but better position */ .hero-search-section .hero-slide-bg, .hero-slider .hero-slide-bg {
    background-size: cover !important;
    background-position: center 40% !important;
}
/* Single property hero - contain to show full image */ .single-property .property-hero-slider .hero-slide, .property-hero-slider .hero-slide {
    background-size: contain !important;
    background-position: center center !important;
    background-color: #1a1a1a !important;
}
/* On mobile - use cover with better positioning for better fill */ @media (max-width: 768px) {
    .property-hero-slider .hero-slide {
        background-size: cover !important;
        background-position: center 35% !important;
        background-color: transparent !important;
    }
}
/* Featured cards on homepage - contain with padding */ .featured-card-image {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #f5f5f5 !important;
}
/* Property cards in archive - contain */ .property-card .property-image {
    background-color: #f5f5f5;
}
.property-card .property-image img {
    object-fit: contain !important;
    object-position: center center !important;
    background-color: #f5f5f5;
    width: 100%;
    height: 100%;
}
/* Gallery main image - always show full image */ #gallery-main-image, .gallery-main-image-container img {
    object-fit: contain !important;
    object-position: center center !important;
    max-height: 70vh !important;
    width: 100% !important;
    height: auto !important;
    background-color: #f8f8f8;
}
/* Gallery thumbnails - crop to fit square */ .gallery-thumb img {
    object-fit: cover !important;
    object-position: center center !important;
}
/* ===================================    v3.9.21: Hero Images - COVER on all devices    Image fills entire space, may be cropped    =================================== */  /* Desktop: Cover to fill space */ @media (min-width: 992px) {
    .property-hero-slider .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    .property-hero-slider {
        height: 520px !important;
    }
    .property-hero-slider .hero-slide {
        height: 520px !important;
    }
}
/* Tablet: Cover to fill space */ @media (max-width: 991px) {
    .property-hero-slider .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    .property-hero-slider {
        height: 350px !important;
    }
    .property-hero-slider .hero-slide {
        height: 350px !important;
    }
}
/* Mobile: Cover to fill space */ @media (max-width: 576px) {
    .property-hero-slider .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    .property-hero-slider,     .property-hero-slider .hero-slide {
        height: 280px !important;
    }
}
/* Featured cards - use cover on all sizes for better look */ .featured-card-image {
    background-size: cover !important;
    background-position: center 35% !important;
    background-color: #f5f5f5 !important;
}
/* Property cards - use cover */ .property-card .property-image img {
    object-fit: cover !important;
    object-position: center 35% !important;
}
/* ============================================    v3.9.23: Hero Slider with IMG tags    Like VipHolidayBooker - uses <img> instead of background-image    for better mobile compatibility    ============================================ */  /* Main slider container */ .property-hero-slider {
    position: relative !important;
    width: 100% !important;
    height: 520px !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
}
/* Slide container */ .property-hero-slider .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 0.5s ease-in-out !important;
    background: none !important;
}
/* Active slide */ .property-hero-slider .hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}
/* Picture element - full container */ .property-hero-slider .hero-slide picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
/* IMG tag inside slide - CRITICAL for mobile */ .property-hero-slider .hero-slide img, .property-hero-slider .hero-slide .hero-slide-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
/* Mobile optimization - smaller height */ @media (max-width: 991px) {
    .property-hero-slider {
        height: 350px !important;
        min-height: 350px !important;
    }
    .property-hero-slider .hero-slide {
        height: 350px !important;
    }
    .property-hero-slider .hero-slide img,     .property-hero-slider .hero-slide .hero-slide-img {
        height: 350px !important;
        object-position: center 30% !important;
        /* Show more of top of image */
    }
}
@media (max-width: 576px) {
    .property-hero-slider {
        height: 300px !important;
        min-height: 300px !important;
    }
    .property-hero-slider .hero-slide {
        height: 300px !important;
    }
    .property-hero-slider .hero-slide img,     .property-hero-slider .hero-slide .hero-slide-img {
        height: 300px !important;
        object-position: center 25% !important;
    }
}
/* Ensure hero-media container has correct height */ .property-hero-media {
    position: relative !important;
    overflow: hidden !important;
    max-height: none !important;
    height: auto !important;
}
/* Navigation arrows z-index fix */ .hero-nav-manual {
    z-index: 100 !important;
}
.property-hero-overlay {
    z-index: 3 !important;
}
.property-hero-content {
    z-index: 4 !important;
}
/* ============================================    v3.9.24: Hero Meta - All amenities in one row on mobile    Fix: guests, bedrooms, bathrooms always in single row    ============================================ */  /* Base hero meta - always single row */ .property-hero-meta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
    justify-content: flex-start !important;
    align-items: center !important;
}
/* Meta items - compact on mobile */ .property-hero-meta span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
    background: rgba(0,0,0,0.4) !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}
/* Tablet and smaller - even more compact */ @media (max-width: 991px) {
    .property-hero-meta {
        gap: 6px !important;
        font-size: 0.95rem !important;
    }
    .property-hero-meta span {
        padding: 3px 7px !important;
        gap: 3px !important;
    }
}
/* Small mobile - most compact */ @media (max-width: 576px) {
    .property-hero-meta {
        gap: 5px !important;
        font-size: 0.85rem !important;
    }
    .property-hero-meta span {
        padding: 2px 6px !important;
        gap: 3px !important;
        font-size: 0.8rem !important;
    }
    .property-hero-meta i {
        font-size: 0.75rem !important;
    }
}
/* Very small screens (under 400px) - ultra compact */ @media (max-width: 400px) {
    .property-hero-meta {
        gap: 4px !important;
        font-size: 0.75rem !important;
    }
    .property-hero-meta span {
        padding: 2px 5px !important;
        gap: 2px !important;
        font-size: 0.7rem !important;
    }
    .property-hero-meta i {
        font-size: 0.65rem !important;
    }
}
/* Extra small screens (under 360px) */ @media (max-width: 360px) {
    .property-hero-meta {
        gap: 3px !important;
        font-size: 0.7rem !important;
    }
    .property-hero-meta span {
        padding: 2px 4px !important;
        gap: 2px !important;
        font-size: 0.65rem !important;
    }
    .property-hero-meta i {
        font-size: 0.6rem !important;
    }
}
/* ============================================    v3.9.25: Hero Slider - Show FULL image (like VipHolidayBooker)    Uses object-fit: contain to show entire image without cropping    ============================================ */  /* Override hero slider to show full image */ .property-hero-slider {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    max-height: 70vh !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
/* Slide container - auto height to fit image */ .property-hero-slider .hero-slide {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    background: #1a1a1a !important;
}
/* Active slide visible */ .property-hero-slider .hero-slide.active {
    display: flex !important;
    z-index: 2 !important;
}
/* Picture element */ .property-hero-slider .hero-slide picture {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    align-items: center !important;
    justify-content: center !important;
}
/* IMG - CONTAIN to show full image without cropping */ .property-hero-slider .hero-slide img, .property-hero-slider .hero-slide .hero-slide-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 70vh !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #1a1a1a !important;
}
/* Desktop - larger max height */ @media (min-width: 992px) {
    .property-hero-slider {
        max-height: 75vh !important;
    }
    .property-hero-slider .hero-slide img,     .property-hero-slider .hero-slide .hero-slide-img {
        max-height: 75vh !important;
    }
}
/* Tablet */ @media (max-width: 991px) {
    .property-hero-slider {
        min-height: 250px !important;
        max-height: 60vh !important;
    }
    .property-hero-slider .hero-slide {
        min-height: 250px !important;
    }
    .property-hero-slider .hero-slide img,     .property-hero-slider .hero-slide .hero-slide-img {
        max-height: 60vh !important;
    }
}
/* Mobile */ @media (max-width: 576px) {
    .property-hero-slider {
        min-height: 200px !important;
        max-height: 50vh !important;
    }
    .property-hero-slider .hero-slide {
        min-height: 200px !important;
    }
    .property-hero-slider .hero-slide img,     .property-hero-slider .hero-slide .hero-slide-img {
        max-height: 50vh !important;
    }
}
/* Hero media container - auto height */ .property-hero-media {
    position: relative !important;
    overflow: hidden !important;
    max-height: none !important;
    height: auto !important;
    background: #1a1a1a !important;
}
/* Overlay positioning for auto-height container */ .property-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0) 60%) !important;
    z-index: 3 !important;
    pointer-events: none !important;
}
/* Content positioning */ .property-hero-content {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 4 !important;
    width: 100% !important;
    max-width: 1200px !important;
    padding: 0 30px !important;
}
/* Navigation arrows */ .hero-nav-manual {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
    pointer-events: none !important;
}
@media (max-width: 576px) {
    .property-hero-content {
        bottom: 15px !important;
        padding: 0 15px !important;
    }
}
/* ============================================    v3.9.26: Hero Slider - Fixed aspect ratio like VipHolidayBooker    Uses aspect-ratio container instead of fixed height    Image fills container with object-fit: cover    ============================================ */  /* Override ALL previous hero slider styles */ .property-hero-slider {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    max-height: 80vh !important;
    min-height: auto !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
}
/* Slide - absolute positioned, fill container */ .property-hero-slider .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 0.5s ease-in-out !important;
    display: block !important;
    background: none !important;
    min-height: auto !important;
}
/* Active slide */ .property-hero-slider .hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}
/* Picture element */ .property-hero-slider .hero-slide picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
/* IMG - cover the container, centered */ .property-hero-slider .hero-slide img, .property-hero-slider .hero-slide .hero-slide-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
/* Tablet - slightly taller aspect ratio to show more */ @media (max-width: 991px) {
    .property-hero-slider {
        aspect-ratio: 16 / 10 !important;
        max-height: 60vh !important;
    }
}
/* Mobile - even taller to show more content */ @media (max-width: 576px) {
    .property-hero-slider {
        aspect-ratio: 4 / 3 !important;
        max-height: 50vh !important;
    }
}
/* Very small mobile */ @media (max-width: 400px) {
    .property-hero-slider {
        aspect-ratio: 1 / 1 !important;
        max-height: 45vh !important;
    }
}
/* Hero media container */ .property-hero-media {
    position: relative !important;
    overflow: hidden !important;
    max-height: none !important;
    height: auto !important;
    background: #1a1a1a !important;
}
/* ============================================    v3.9.28: Hero Slider - Remove black bar on large screens    No max-height limits - image fills container naturally    ============================================ */  /* Override ALL previous hero slider height restrictions */ .property-hero-slider {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: hidden !important;
    background: transparent !important;
}
/* Hero media - no height restrictions */ .property-hero-media {
    position: relative !important;
    overflow: hidden !important;
    max-height: none !important;
    height: auto !important;
    background: transparent !important;
}
/* Slide fills container completely */ .property-hero-slider .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 0.5s ease-in-out !important;
    display: block !important;
    background: transparent !important;
    min-height: auto !important;
    max-height: none !important;
}
.property-hero-slider .hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}
/* Picture element - full size */ .property-hero-slider .hero-slide picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
/* IMG - cover entire container */ .property-hero-slider .hero-slide img, .property-hero-slider .hero-slide .hero-slide-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}
/* Tablet - slightly different aspect ratio */ @media (max-width: 991px) {
    .property-hero-slider {
        aspect-ratio: 16 / 10 !important;
        max-height: none !important;
    }
}
/* Mobile - taller aspect ratio to show more */ @media (max-width: 576px) {
    .property-hero-slider {
        aspect-ratio: 4 / 3 !important;
        max-height: none !important;
    }
}
/* Very small mobile */ @media (max-width: 400px) {
    .property-hero-slider {
        aspect-ratio: 1 / 1 !important;
        max-height: none !important;
    }
}
/* Property hero section - no extra padding/margin */ .property-hero, section.property-hero, .single-property .property-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* ============================================    v3.9.29: Hero Slider - Fix content overlay like VipHolidayBooker    Content always visible at bottom of hero    ============================================ */  /* Property hero wrapper - relative positioning context */ .property-hero, section.property-hero, .single-property .property-hero {
    position: relative !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Hero media - contains slider, overlay, and content */ .property-hero-media {
    position: relative !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    background: transparent !important;
}
/* Hero slider - aspect ratio based */ .property-hero-slider {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
}
/* Slides */ .property-hero-slider .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    z-index: 1 !important;
    transition: opacity 0.5s ease-in-out !important;
}
.property-hero-slider .hero-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
}
.property-hero-slider .hero-slide picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}
.property-hero-slider .hero-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
/* Gradient overlay - MUST be visible */ .property-hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(         to top,         rgba(0, 0, 0, 0.7) 0%,         rgba(0, 0, 0, 0.4) 30%,         rgba(0, 0, 0, 0.1) 60%,         rgba(0, 0, 0, 0) 100%     ) !important;
    z-index: 5 !important;
    pointer-events: none !important;
}
/* Hero content - ALWAYS at bottom */ .property-hero-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    padding: 30px 40px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    color: #fff !important;
    max-width: none !important;
    width: 100% !important;
    transform: none !important;
    box-sizing: border-box !important;
}
/* Hero main content (title, location, meta) */ .property-hero-main {
    flex: 1 !important;
    min-width: 0 !important;
}
/* Title */ .property-hero-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}
/* Location */ .property-hero-location {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.property-hero-location i {
    color: #c8a35f !important;
}
/* Meta (guests, bedrooms, bathrooms) */ .property-hero-meta {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 10px !important;
    color: #fff !important;
}
.property-hero-meta span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 5px 12px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 20px !important;
    font-size: 0.95rem !important;
    color: #fff !important;
    white-space: nowrap !important;
}
.property-hero-meta i {
    color: #c8a35f !important;
}
/* Price box */ .property-hero-price {
    text-align: right !important;
    flex-shrink: 0 !important;
    color: #fff !important;
}
.property-hero-price .hero-total-price {

/* Extra fees merged into featured amenities grid */

    background: rgba(0, 0, 0, 0.6) !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    color: #fff !important;
}
/* Navigation arrows */ .hero-nav-manual {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 20 !important;
    pointer-events: none !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: space-between !important;
}
.hero-nav-btn {
    pointer-events: all !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}
.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.6) !important;
}
/* Tablet adjustments */ @media (max-width: 991px) {
    .property-hero-slider {
        aspect-ratio: 16 / 10 !important;
    }
    .property-hero-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px 20px !important;
    }
    .property-hero-title {
        font-size: 1.8rem !important;
    }
    .property-hero-price {
        margin-top: 15px !important;
        text-align: left !important;
    }
}
/* Mobile adjustments */ @media (max-width: 576px) {
    .property-hero-slider {
        aspect-ratio: 4 / 3 !important;
    }
    .property-hero-content {
        padding: 15px !important;
    }
    .property-hero-title {
        font-size: 1.4rem !important;
    }
    .property-hero-location {
        font-size: 0.9rem !important;
    }
    .property-hero-meta span {
        padding: 4px 8px !important;
        font-size: 0.8rem !important;
    }
    .hero-nav-btn {
        width: 40px !important;
        height: 40px !important;
    }
}
/* Very small mobile */ @media (max-width: 400px) {
    .property-hero-slider {
        aspect-ratio: 1 / 1 !important;
    }
    .property-hero-meta {
        gap: 5px !important;
    }
    .property-hero-meta span {
        padding: 3px 6px !important;
        font-size: 0.7rem !important;
    }
}
/* ============================================    v3.9.30: FINAL FIX - Hero content visibility    Force all elements to be visible    ============================================ */  /* Hero section - positioning context */ section.property-hero, .property-hero {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Hero media - MUST be relative for absolute children */ .property-hero-media {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
}
/* Slider container */ .property-hero-slider {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    background: #222 !important;
}
/* Slides */ .property-hero-slider .hero-slide {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}
.property-hero-slider .hero-slide.active {
    opacity: 1 !important;
}
.property-hero-slider .hero-slide picture, .property-hero-slider .hero-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
/* OVERLAY - gradient at bottom for text readability */ .property-hero-media > .property-hero-overlay, .property-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 10 !important;
    pointer-events: none !important;
    background: linear-gradient(         180deg,         transparent 0%,         transparent 40%,         rgba(0, 0, 0, 0.3) 70%,         rgba(0, 0, 0, 0.7) 100%     ) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* CONTENT - title, location, amenities at bottom */ .property-hero-media > .property-hero-content, .property-hero-content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 20 !important;
    padding: 25px 30px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    gap: 15px !important;
    box-sizing: border-box !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Main content area */ .property-hero-content .property-hero-main, .property-hero-main {
    flex: 1 1 auto !important;
    min-width: 250px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* Title - large white text */ .property-hero-content .property-hero-title, .property-hero-title, h1.property-hero-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
}
/* Location */ .property-hero-content .property-hero-location, .property-hero-location {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 1rem !important;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 12px !important;
}
.property-hero-location i {
    color: #c8a35f !important;
}
/* Meta - guests, bedrooms, bathrooms pills */ .property-hero-content .property-hero-meta, .property-hero-meta {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin: 0 !important;
}
.property-hero-meta > span {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    padding: 6px 14px !important;
    background: rgba(0, 0, 0, 0.55) !important;
    border-radius: 24px !important;
    font-size: 1.3rem !important; /* usklađeno s overlay karticama */
    color: #fff !important;       /* brojevi ostaju bijeli */
    white-space: nowrap !important;
    margin-right: 16px !important;
}
.property-hero-meta > span:last-child {
    margin-right: 0 !important;
}
.property-hero-meta span i {
    font-size: 1.4rem !important; /* ikone malo veće od brojeva */
    margin-right: 8px !important; /* razmak između ikone i broja */
    background: linear-gradient(135deg, var(--primary-color,#c8a35f), #ffffff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important; /* prikaži gradijent kroz tekst */
}
/* Price area */ .property-hero-content .property-hero-price, .property-hero-price {
    flex: 0 0 auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: right !important;
}
.property-hero-price:empty {
    display: none !important;
}
.hero-total-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 4px !important;
    padding: 12px 16px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
}
/* Navigation arrows */ .property-hero-media > .hero-nav-manual, .hero-nav-manual {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 15 !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 15px !important;
    pointer-events: none !important;
}
.hero-nav-btn {
    pointer-events: auto !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #fff !important;
    cursor: pointer !important;
}
.hero-nav-btn:hover {
    background: rgba(0, 0, 0, 0.7) !important;
}
/* Responsive - Tablet */ @media (max-width: 991px) {
    .property-hero-slider {
        aspect-ratio: 16 / 10 !important;
    }
    .property-hero-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }
    .property-hero-title {
        font-size: 1.6rem !important;
    }
    .property-hero-price {
        margin-top: 10px !important;
        text-align: left !important;
    }
    .hero-total-price {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 8px !important;
    }
}
/* Responsive - Mobile */ @media (max-width: 576px) {
    .property-hero-slider {
        aspect-ratio: 4 / 3 !important;
    }
    .property-hero-content {
        padding: 15px !important;
    }
    .property-hero-title {
        font-size: 1.3rem !important;
    }
    .property-hero-location {
        font-size: 0.85rem !important;
    }
    .property-hero-meta > span {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }
    .hero-nav-btn {
        width: 38px !important;
        height: 38px !important;
    }
}
/* Very small mobile */ @media (max-width: 400px) {
    .property-hero-slider {
        aspect-ratio: 1 / 1 !important;
    }
    .property-hero-meta {
        gap: 4px !important;
    }
    .property-hero-meta > span {
        padding: 3px 6px !important;
        font-size: 0.65rem !important;
    }
}
/* ============================================    v3.9.36: FINAL FIX - Override all old hero styles    This MUST be at the end of file to override everything    ============================================ */  /* FORCE hero height - override 520px */ .property-hero-media, .single-property .property-hero-media, section.property-hero .property-hero-media, body.single-property .property-hero-media {
    height: calc(100vh - 120px) !important;
    max-height: 700px !important;
    min-height: 450px !important;
}
.property-hero-slider, .single-property .property-hero-slider, section.property-hero .property-hero-slider, body.single-property .property-hero-slider {
    height: 100% !important;
    max-height: none !important;
}
.property-hero-slider .hero-slide, .single-property .property-hero-slider .hero-slide {
    height: 100% !important;
}
/* FORCE remove section margins */ section.property-hero, .property-hero, .single-property section.property-hero, body.single-property .property-hero {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* FORCE section nav to be immediately after hero */ .property-section-nav, nav.property-section-nav, #property-section-nav {
    margin-top: 0 !important;
    position: relative !important;
    z-index: 100 !important;
}
/* Mobile */ @media (max-width: 991px) {
    .property-hero-media,     .single-property .property-hero-media {
        height: calc(100vh - 100px) !important;
        max-height: 550px !important;
        min-height: 350px !important;
    }
}
@media (max-width: 576px) {
    .property-hero-media,     .single-property .property-hero-media {
        height: calc(100vh - 80px) !important;
        max-height: 450px !important;
        min-height: 300px !important;
    }
}
/* ============================================    v3.9.37: KILL remaining gap - absolute zero spacing    ============================================ */  /* Remove ANY remaining gap */ section.property-hero, .property-hero, body.single-property section.property-hero, body.single-property .property-hero {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
/* Hero media - no bottom spacing */ .property-hero-media, body.single-property .property-hero-media {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
/* Section closing divs - no spacing */ section.property-hero > div, .property-hero > div {
    margin: 0 !important;
    padding: 0 !important;
}
/* Section nav - stick directly to hero */ nav.property-section-nav, .property-section-nav, #property-section-nav {
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Kill gap from adjacent sibling combinator */ section.property-hero + nav, section.property-hero + .property-section-nav, .property-hero + nav, .property-hero + .property-section-nav {
    margin-top: 0 !important;
}
/* Container after nav */ nav.property-section-nav + .container, .property-section-nav + .container, #property-section-nav + .container {
    margin-top: 20px !important;
}
/* ============================================    v3.9.38: RESET - Fix black space on left side    Simple fullwidth without complex transforms    ============================================ */  /* Hero section - simple fullwidth */ section.property-hero, .property-hero, body.single-property section.property-hero, body.single-property .property-hero {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none !important;
    position: relative !important;
}
/* Hero media - fullwidth container */ .property-hero-media, body.single-property .property-hero-media, section.property-hero .property-hero-media {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: relative !important;
    height: calc(100vh - 120px) !important;
    max-height: 650px !important;
    min-height: 400px !important;
    overflow: hidden !important;
    background: #222 !important;
}
/* Slider - fill parent completely */ .property-hero-slider, body.single-property .property-hero-slider {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}
/* Slides - absolute fill */ .property-hero-slider .hero-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}
.property-hero-slider .hero-slide.active {
    opacity: 1 !important;
}
/* Picture and IMG - cover entire slide */ .property-hero-slider .hero-slide picture {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.property-hero-slider .hero-slide img, .property-hero-slider .hero-slide .hero-slide-img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
}
/* Section nav - no gap */ nav.property-section-nav, .property-section-nav, #property-section-nav {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}
.property-section-nav ul {
    margin: 0 !important;
    padding: 15px 0 !important;
}
/* Mobile */ @media (max-width: 991px) {
    .property-hero-media,     body.single-property .property-hero-media {
        height: calc(100vh - 100px) !important;
        max-height: 500px !important;
        min-height: 350px !important;
    }
}
@media (max-width: 576px) {
    .property-hero-media,     body.single-property .property-hero-media {
        height: calc(100vh - 80px) !important;
        max-height: 400px !important;
        min-height: 300px !important;
    }
}
/* ============================================    v3.9.39: Section nav at bottom of hero - NO white space    Nav is positioned at bottom of hero section    ============================================ */  /* Hero section - relative for nav positioning */ section.property-hero, .property-hero, body.single-property section.property-hero {
    position: relative !important;
    padding-bottom: 50px !important;
    /* Space for nav */     margin-bottom: 0 !important;
}
/* Section nav - absolute at bottom of hero */ nav.property-section-nav, .property-section-nav, #property-section-nav {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    z-index: 200 !important;
}
.property-section-nav ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 12px 15px !important;
    flex-wrap: wrap !important;
}
.property-section-nav li {
    margin: 0 !important;
    padding: 0 !important;
}
.property-section-nav a {
    display: block !important;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 5px 0 !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.2s ease !important;
}
.property-section-nav a:hover {
    color: #c8a35f !important;
    border-bottom-color: #c8a35f !important;
}
/* Container after hero - small top margin */ section.property-hero + .container, .property-hero + .container, nav.property-section-nav + .container {
    margin-top: 25px !important;
}
/* Mobile adjustments */ @media (max-width: 768px) {
    section.property-hero,     .property-hero {
        padding-bottom: 45px !important;
    }
    .property-section-nav ul {
        gap: 15px !important;
        padding: 10px 10px !important;
    }
    .property-section-nav a {
        font-size: 0.85rem !important;
    }
}
@media (max-width: 480px) {
    section.property-hero,     .property-hero {
        padding-bottom: 40px !important;
    }
    .property-section-nav ul {
        gap: 10px !important;
        padding: 8px 8px !important;
    }
    .property-section-nav a {
        font-size: 0.75rem !important;
    }
}
/* ============================================    v3.9.40: Sticky section nav when scrolling    Nav sticks to top when user scrolls past hero    ============================================ */  /* Section nav - sticky behavior */ nav.property-section-nav, .property-section-nav, #property-section-nav {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: #fff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* v4.1.2: Center nav items on larger screens */
@media (min-width: 992px) {
    .property-section-nav ul {
        justify-content: center !important;
        max-width: 800px !important;
        margin: 0 auto !important;
    }
}
@media (min-width: 1200px) {
    .property-section-nav ul {
        max-width: 900px !important;
        gap: 40px !important;
    }
}
@media (min-width: 1400px) {
    .property-section-nav ul {
        max-width: 1000px !important;
        gap: 50px !important;
    }
}

/* When nav becomes sticky, add subtle shadow */ .property-section-nav.is-sticky {
    box-shadow: 0 2px 15px rgba(0,0,0,0.15) !important;
}
/* ============================================    v3.9.41: Sticky nav - OUTSIDE hero section    Must be outside hero for sticky to work    ============================================ */  /* Remove padding-bottom from hero */ section.property-hero, .property-hero, body.single-property section.property-hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
/* Section nav - sticky at top, no gap from hero */ nav.property-section-nav, .property-section-nav, #property-section-nav {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    z-index: 9999 !important;
    box-shadow: none !important;
    transition: box-shadow 0.3s ease !important;
}
/* Shadow when scrolled */ nav.property-section-nav.scrolled, .property-section-nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}
.property-section-nav ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 25px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 12px 15px !important;
    flex-wrap: wrap !important;
}
/* ============================================    v3.9.42: Bigger nav fonts + stronger shadow on scroll    ============================================ */  /* Section nav - larger font */ nav.property-section-nav, .property-section-nav, #property-section-nav {
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}
.property-section-nav ul {
    gap: 30px !important;
    padding: 15px 20px !important;
}
.property-section-nav a {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    letter-spacing: 0.3px !important;
}
.property-section-nav a:hover {
    color: #c8a35f !important;
}
/* Stronger shadow when scrolling */ nav.property-section-nav.scrolled, .property-section-nav.scrolled, #property-section-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border-bottom: 1px solid #ddd !important;
}
/* Mobile */ @media (max-width: 768px) {
    .property-section-nav ul {
        gap: 20px !important;
        padding: 12px 15px !important;
    }
    .property-section-nav a {
        font-size: 0.95rem !important;
    }
}
@media (max-width: 480px) {
    .property-section-nav ul {
        gap: 12px !important;
        padding: 10px 10px !important;
    }
    .property-section-nav a {
        font-size: 0.85rem !important;
    }
}
/* ============================================    v3.9.43: Nav font size 1.25rem    ============================================ */  .property-section-nav a {
    font-size: 1.25rem !important;
}
/* ============================================    v3.9.44: Bigger nav font on mobile too    ============================================ */  @media (max-width: 768px) {
    .property-section-nav a {
        font-size: 1.1rem !important;
    }
}
@media (max-width: 480px) {
    .property-section-nav a {
        font-size: 1rem !important;
    }
}
/* ============================================    v3.9.45: Force sticky nav on mobile    ============================================ */  @media (max-width: 991px) {
    nav.property-section-nav,     .property-section-nav,     #property-section-nav {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #fff !important;
    }
}
@media (max-width: 768px) {
    nav.property-section-nav,     .property-section-nav,     #property-section-nav {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #fff !important;
    }
}
@media (max-width: 480px) {
    nav.property-section-nav,     .property-section-nav,     #property-section-nav {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #fff !important;
    }
}
/* ============================================    v3.9.46: Fix mobile nav fonts + hamburger menu    ============================================ */  /* Bigger nav fonts on larger mobile screens */ @media (max-width: 991px) and (min-width: 769px) {
    .property-section-nav a {
        font-size: 1.15rem !important;
    }
}
@media (max-width: 768px) and (min-width: 481px) {
    .property-section-nav a {
        font-size: 1.1rem !important;
    }
}
@media (max-width: 480px) {
    .property-section-nav a {
        font-size: 1rem !important;
    }
}
/* ============================================    Hamburger Menu Fix - White background    ============================================ */  /* Hamburger icon - make it visible */ .navbar-toggler, .menu-toggle, button.navbar-toggler, .mobile-menu-toggle {
    background: #333 !important;
    border: 2px solid #333 !important;
    border-radius: 5px !important;
    padding: 8px 10px !important;
}
.navbar-toggler-icon, .navbar-toggler span, .menu-toggle span {
    background-color: #fff !important;
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    margin: 4px 0 !important;
    border-radius: 2px !important;
}
/* Mobile menu dropdown - solid white background */ .navbar-collapse, .mobile-menu, .main-navigation .menu, #mobile-menu, .nav-menu, nav.navbar .navbar-collapse, .navbar-nav {
    background: #fff !important;
    background-color: #fff !important;
}
/* When menu is open */ .navbar-collapse.show, .navbar-collapse.in, .mobile-menu.active, .mobile-menu.open, #mobile-menu.active {
    background: #fff !important;
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
    border-radius: 0 0 10px 10px !important;
}
/* Menu items */ .navbar-nav .nav-link, .navbar-nav a, .mobile-menu a, .main-navigation .menu a, #mobile-menu a {
    color: #333 !important;
    background: #fff !important;
    padding: 12px 20px !important;
    display: block !important;
    border-bottom: 1px solid #eee !important;
}
.navbar-nav .nav-link:hover, .navbar-nav a:hover, .mobile-menu a:hover {
    background: #f5f5f5 !important;
    color: #c8a35f !important;
}
/* Ensure menu is not transparent */ @media (max-width: 991px) {
    .navbar-collapse,     .mobile-menu,     nav .menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        z-index: 9999 !important;
    }
    .navbar-nav,     .mobile-menu ul,     nav .menu ul {
        background: #fff !important;
        width: 100% !important;
    }
    .navbar-nav .nav-item,     .mobile-menu li,     nav .menu li {
        background: #fff !important;
        width: 100% !important;
    }
}
/* ============================================    v3.9.48: FIX - Homepage hero image full width    ============================================ */  /* Hero search section - full width */ .hero-search-section, .hero-search-section.hero-fullscreen, section.hero-search-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}
/* Hero slider on homepage */ .hero-slider, .hero-slider.owl-carousel, .hero-search-section .hero-slider {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Owl carousel items */ .hero-slider .owl-stage-outer {
    width: 100% !important;
    overflow: hidden !important;
}
.hero-slider .owl-stage {
    display: flex !important;
}
.hero-slider .owl-item {
    width: 100% !important;
    flex-shrink: 0 !important;
}
/* Hero slide */ .hero-slide, .hero-slider .hero-slide {
    width: 100% !important;
    min-width: 100% !important;
    position: relative !important;
}
/* Hero slide image */ .hero-slide-img, .hero-slide img, .hero-slider .hero-slide img, .hero-slider .hero-slide-img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
}
/* ============================================    v3.9.49: CRITICAL FIX - Homepage hero slider full width    Force Owl Carousel elements to 100% width    ============================================ */  /* Force hero-search-section to be full viewport width */ body.home .hero-search-section, body.page-id-2 .hero-search-section, .hero-search-section.hero-fullscreen {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}
/* Owl Carousel stage - CRITICAL for centering */ .hero-slider.owl-carousel .owl-stage-outer, .hero-search-section .owl-stage-outer {
    width: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}
.hero-slider.owl-carousel .owl-stage, .hero-search-section .owl-stage {
    width: 100% !important;
    display: flex !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
}
/* Owl item - force 100% width */ .hero-slider.owl-carousel .owl-item, .hero-search-section .owl-item {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Hero slide container */ .hero-slider .hero-slide, .hero-search-section .hero-slide, .owl-item .hero-slide {
    width: 100% !important;
    min-width: 100% !important;
    height: 100vh !important;
    min-height: 600px !important;
    max-height: 900px !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Hero slide image - CRITICAL */ .hero-slide-img, .hero-slide img.hero-slide-img, .hero-slider .hero-slide-img, .hero-search-section .hero-slide-img, .owl-item .hero-slide-img {
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}
/* Prevent any left offset issues */ .hero-search-section *, .hero-slider * {
    box-sizing: border-box !important;
}
/* Ensure body doesn't have horizontal overflow */ body.home, body.page-id-2 {
    overflow-x: hidden !important;
}
/* Wrapper overflow control */ body.home .wrapper, body.page-id-2 .wrapper {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}
/* Mobile responsive */ @media (max-width: 991px) {
    .hero-slider .hero-slide,     .hero-search-section .hero-slide {
        height: 70vh !important;
        min-height: 400px !important;
        max-height: 600px !important;
    }
}
@media (max-width: 768px) {
    .hero-slider .hero-slide,     .hero-search-section .hero-slide {
        height: 60vh !important;
        min-height: 350px !important;
        max-height: 500px !important;
    }
}
/* ============================================    v3.9.51: Hamburger Menu - Brad Traversy Style    White background overlay with smooth animation    ============================================ */  /* CSS Variables for hamburger menu */ :root {
    --hamburger-menu-speed: 0.5s;
    --hamburger-menu-bg: rgba(255, 255, 255, 0.98);
    --hamburger-line-color: #333;
    --hamburger-line-color-light: #fff;
}
/* Menu wrapper - fixed positioning */ .menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
}
/* Hidden checkbox toggler */ .menu-wrap .menu-toggler {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10002;
    cursor: pointer;
    width: 50px;
    height: 50px;
    opacity: 0;

/* removed property-hero-meta override: now using hero-overlay-meta in custom-theme.css */

    margin: 0;
    padding: 0;
}
/* Hamburger icon container */ .menu-wrap .hamburger {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10001;
    width: 50px;
    height: 50px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 4px;
    transition: background 0.3s ease;
}
/* Hamburger lines container */ .menu-wrap .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 3px;
    background: var(--hamburger-line-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border-radius: 2px;
}
/* When header is sticked or not home - dark hamburger lines */ header.sticked .menu-wrap .hamburger > div, body:not(.home) .menu-wrap .hamburger > div {
    background: var(--hamburger-line-color);
}
/* Hamburger lines - top & bottom */ .menu-wrap .hamburger > div::before, .menu-wrap .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 3px;
    background: inherit;
    border-radius: 2px;
    transition: all 0.4s ease;
}
/* Bottom line position */ .menu-wrap .hamburger > div::after {
    top: 10px;
}
/* Toggler Animation - rotate middle line */ .menu-wrap .menu-toggler:checked + .hamburger > div {
    transform: rotate(135deg);
    background: var(--hamburger-line-color) !important;
}
/* Turn lines into X */ .menu-wrap .menu-toggler:checked + .hamburger > div::before, .menu-wrap .menu-toggler:checked + .hamburger > div::after {
    top: 0;
    transform: rotate(90deg);
}
/* Rotate on hover when checked */ .menu-wrap .menu-toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
}
/* Menu overlay container */ .menu-wrap .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
/* Menu background circle that expands */ .menu-wrap .mobile-menu-overlay > div {
    background: var(--hamburger-menu-bg);
    border-radius: 50%;
    width: 250vw;
    height: 250vw;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform var(--hamburger-menu-speed) ease;
}
/* Menu content wrapper */ .menu-wrap .mobile-menu-overlay > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}
/* Show menu when toggler is checked */ .menu-wrap .menu-toggler:checked ~ .mobile-menu-overlay {
    visibility: visible;
}
.menu-wrap .menu-toggler:checked ~ .mobile-menu-overlay > div {
    transform: scale(1);
    transition-duration: var(--hamburger-menu-speed);
}
.menu-wrap .menu-toggler:checked ~ .mobile-menu-overlay > div > div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
}
/* Menu list styles */ .menu-wrap .mobile-menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-wrap .mobile-menu-overlay ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.menu-wrap .mobile-menu-overlay ul li:last-child {
    border-bottom: none;
}
.menu-wrap .mobile-menu-overlay ul li a {
    color: #333 !important;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.menu-wrap .mobile-menu-overlay ul li a:hover {
    color: var(--primary-color, #c9a227) !important;
    transform: scale(1.05);
}
/* Sub-menu styles */ .menu-wrap .mobile-menu-overlay ul ul {
    margin-top: 10px;
    padding-left: 20px;
}
.menu-wrap .mobile-menu-overlay ul ul li {
    padding: 8px 0;
    border-bottom: none;
}
.menu-wrap .mobile-menu-overlay ul ul li a {
    font-size: 1.1rem;
    font-weight: 400;
}
/* Hide hamburger menu on desktop */ @media (min-width: 992px) {
    .menu-wrap {
        display: none !important;
    }
}
/* Show hamburger menu on tablet and mobile */ @media (max-width: 991px) {
    .menu-wrap {
        display: block !important;
    }
    /* Hide old mobile toggle */     .mobile-toggle {
        display: none !important;
    }
    /* Ensure navigation is hidden on mobile */     .header-navigation {
        display: none !important;
    }
}
/* Close button style when menu is open */ .menu-wrap .menu-toggler:checked + .hamburger {
    background: rgba(0, 0, 0, 0.05);
}
/* Body scroll lock when menu is open */ body.mobile-menu-open {
    overflow: hidden !important;
}
/* Additional mobile menu styling */ .menu-wrap .mobile-menu-overlay .menu-logo {
    margin-bottom: 30px;
}
.menu-wrap .mobile-menu-overlay .menu-logo img {
    max-width: 150px;
    height: auto;
}
/* Phone link in mobile menu */ .menu-wrap .mobile-menu-overlay .menu-phone {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.menu-wrap .mobile-menu-overlay .menu-phone a {
    color: var(--primary-color, #c9a227) !important;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
}
.menu-wrap .mobile-menu-overlay .menu-phone i {
    margin-right: 10px;
}
/* ============================================    v3.9.56: CLEAN Hero CSS - Pure CSS Solution    Slika uvijek centrirana, Ken Burns efekt    ============================================ */  /* Hero section container */ .hero-search-section, section.hero-search-section {
    position: relative !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 50% !important;
    margin-left: -50vw !important;
}
/* Hero slider - works with or without Owl */ .hero-slider, .hero-slider.owl-carousel, div.hero-slider {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}
/* Owl Carousel wrapper elements */ .hero-slider .owl-wrapper-outer, .hero-slider .owl-stage-outer {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}
.hero-slider .owl-wrapper, .hero-slider .owl-stage {
    height: 100% !important;
}
.hero-slider .owl-item {
    height: 100% !important;
    float: left !important;
}
/* Hero slide */ .hero-slide, .hero-slider .hero-slide, div.hero-slide {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    overflow: hidden !important;
}
/* Hide non-first slides before Owl loads */ .hero-slider:not(.owl-loaded) .hero-slide:not(:first-child) {
    display: none !important;
}
/* ============================================    HERO IMAGE - Critical CSS    ============================================ */ .hero-slide-img, img.hero-slide-img, .hero-slide img.hero-slide-img, .hero-slider .hero-slide-img, .owl-item .hero-slide-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    max-width: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
}
/* Ken Burns Animation */ @keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}
/* Apply animation */ .hero-slider:not(.owl-loaded) .hero-slide:first-child .hero-slide-img, .owl-item.active .hero-slide-img {
    animation: kenBurns 25s ease-out forwards;
}
.owl-item:not(.active) .hero-slide-img {
    animation: none !important;
    transform: scale(1) !important;
}
/* Hero overlay */ .hero-overlay, .hero-slide .hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(         180deg,         rgba(0,0,0,0.15) 0%,         rgba(0,0,0,0.05) 40%,         rgba(0,0,0,0.3) 100%     ) !important;
    z-index: 1 !important;
}
/* Hero content */ .hero-slide .container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    width: 100% !important;
    max-width: 1200px !important;
    text-align: center !important;
    padding: 0 20px !important;
}
.hero-content {
    text-align: center !important;
}
.hero-title, .hero-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Responsive */ @media (max-width: 768px) {
    .hero-search-section,     .hero-slide {
        height: 100vh !important;
        min-height: 500px !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
    }
}
/* v3.9.61: Mobile hero content positioning - above search form */ @media (max-width: 991px) {
    /* Move hero content to upper-middle portion of hero */     .hero-slide .container {
        top: 38% !important;
        transform: translate(-50%, -50%) !important;
    }
    .hero-content {
        padding: 0 15px !important;
    }
    .hero-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    }
    /* Search form at bottom */     .search-form-wrapper {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 100 !important;
        padding: 15px !important;
    }
}
@media (max-width: 576px) {
    .hero-slide .container {
        top: 35% !important;
    }
    .hero-title {
        font-size: 1.4rem !important;
    }
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
}
/* ============================================    v3.9.53: Hamburger Menu - Inside Header Navigation    Aligned with other header icons    ============================================ */  /* Remove old fixed menu-wrap styles */ .menu-wrap {
    display: none !important;
}
/* New inline hamburger wrapper - inside header */ .menu-wrap-inline {
    position: relative;
    display: none;
    /* Hidden on desktop */     align-items: center;
    justify-content: center;
    margin-left: 15px;
}
/* Show on mobile/tablet */ @media (max-width: 991px) {
    .menu-wrap-inline {
        display: flex !important;
    }
}
/* Hamburger toggler checkbox - invisible but clickable */ .menu-wrap-inline .menu-toggler {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    cursor: pointer;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    padding: 0;
}
/* Hamburger icon - matching other header icons */ .menu-wrap-inline .hamburger {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
}
/* Hamburger lines container */ .menu-wrap-inline .hamburger > div {
    position: relative;
    flex: none;
    width: 20px;
    height: 2px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 1px;
}
/* When header is sticked or not home - dark hamburger lines */ header.sticked .menu-wrap-inline .hamburger > div, body:not(.home) .menu-wrap-inline .hamburger > div {
    background: #333;
}
/* Hamburger lines - top & bottom */ .menu-wrap-inline .hamburger > div::before, .menu-wrap-inline .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -7px;
    width: 100%;
    height: 2px;
    background: inherit;
    border-radius: 1px;
    transition: all 0.3s ease;
}
/* Bottom line position */ .menu-wrap-inline .hamburger > div::after {
    top: 7px;
}
/* Toggler Animation - rotate middle line when menu is open */ body.mobile-menu-open .menu-wrap-inline .hamburger > div {
    transform: rotate(135deg);
    background: #333 !important;
}
/* Turn lines into X when menu is open */ body.mobile-menu-open .menu-wrap-inline .hamburger > div::before, body.mobile-menu-open .menu-wrap-inline .hamburger > div::after {
    top: 0;
    transform: rotate(90deg);
}
/* Menu overlay wrapper - fixed fullscreen */ /* v3.9.91: Slower closing animation */ .menu-overlay-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    z-index: 999999 !important;
    /* v3.9.60: Very high z-index to be above everything */     pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    /* Slower closing */
}
/* Show overlay when menu is open */ body.mobile-menu-open .menu-overlay-wrap {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
/* v3.9.60: Ensure menu overlay is above sub-navigation and header */ body.mobile-menu-open .menu-overlay-wrap .mobile-menu-overlay {
    z-index: 999999 !important;
}
/* Menu overlay container */ .menu-overlay-wrap .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}
/* v3.9.82: Smooth dark overlay background */ body.mobile-menu-open .menu-overlay-wrap .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.5);
}
/* Menu background that slides in - v3.9.91: Slower closing animation */ .menu-overlay-wrap .mobile-menu-overlay > div {
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    height: 100%;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Slower closing */
}
/* Slide in when menu is open */ body.mobile-menu-open .menu-overlay-wrap .mobile-menu-overlay > div {
    transform: translateX(0);
}
/* Menu content wrapper - v3.9.91: Slower closing animation */ .menu-overlay-wrap .mobile-menu-overlay > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Slower fade out */     padding: 20px;
    padding-top: 70px;
    /* v3.9.91: Add padding to prevent overlap with close button */     position: relative;
}
/* v3.9.82: Fade in content with slight delay - faster open, slower close */ body.mobile-menu-open .menu-overlay-wrap .mobile-menu-overlay > div > div {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
    /* Fast open */
}
/* Show content when menu is open */ body.mobile-menu-open .menu-overlay-wrap .mobile-menu-overlay > div > div {
    opacity: 1;
    transition: opacity 0.3s ease 0.2s;
}
/* Close button */ /* v3.9.91: Improved close button positioning - moved higher and more to the right */ .menu-close-btn {
    position: fixed;
    top: 15px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #333;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    /* Hidden by default */     opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.menu-close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* v3.9.91: Show close button when menu is open */ body.mobile-menu-open .menu-close-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
/* Menu list styles */ .menu-overlay-wrap .mobile-menu-overlay ul, .menu-overlay-wrap .mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-overlay-wrap .mobile-menu-overlay ul li, .menu-overlay-wrap .mobile-nav-menu li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.menu-overlay-wrap .mobile-menu-overlay ul li:last-child, .menu-overlay-wrap .mobile-nav-menu li:last-child {
    border-bottom: none;
}
.menu-overlay-wrap .mobile-menu-overlay ul li a, .menu-overlay-wrap .mobile-nav-menu li a {
    color: #333 !important;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}
.menu-overlay-wrap .mobile-menu-overlay ul li a:hover, .menu-overlay-wrap .mobile-nav-menu li a:hover {
    color: var(--primary-color, #c9a227) !important;
}
/* Sub-menu styles */ .menu-overlay-wrap .mobile-menu-overlay ul ul, .menu-overlay-wrap .mobile-nav-menu .sub-menu {
    margin-top: 8px;
    padding-left: 15px;
}
.menu-overlay-wrap .mobile-menu-overlay ul ul li, .menu-overlay-wrap .mobile-nav-menu .sub-menu li {
    padding: 6px 0;
    border-bottom: none;
}
.menu-overlay-wrap .mobile-menu-overlay ul ul li a, .menu-overlay-wrap .mobile-nav-menu .sub-menu li a {
    font-size: 1rem;
    font-weight: 400;
}
/* Menu logo */ .menu-overlay-wrap .menu-logo {
    margin-bottom: 30px;
}
.menu-overlay-wrap .menu-logo img {
    max-width: 150px;
    height: auto;
}
/* Phone link in mobile menu */ .menu-overlay-wrap .menu-phone {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.menu-overlay-wrap .menu-phone a {
    color: var(--primary-color, #c9a227) !important;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}
.menu-overlay-wrap .menu-phone i {
    margin-right: 10px;
}
/* Hide desktop navigation on mobile */ @media (max-width: 991px) {
    .header-navigation {
        display: none !important;
    }
    /* Ensure header mobile actions show */     .header-mobile-actions {
        display: flex !important;
        align-items: center;
        gap: 15px;
    }
    /* Style header icons consistently */     .header-mobile-actions .header-favorites a,     .header-mobile-actions .header-phone a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        transition: color 0.3s ease;
    }
    header.sticked .header-mobile-actions .header-favorites a,     header.sticked .header-mobile-actions .header-phone a,     body:not(.home) .header-mobile-actions .header-favorites a,     body:not(.home) .header-mobile-actions .header-phone a {
        color: #333;
    }
    /* Hide phone number text on mobile, show only icon */     .header-mobile-actions .header-phone .phone-number {
        display: none;
    }
}
/* Hide on desktop */ @media (min-width: 992px) {
    .menu-wrap-inline {
        display: none !important;
    }
    /* v3.9.81: menu-overlay-wrap hidden on desktop EXCEPT when menu is open */     .menu-overlay-wrap {
        display: none !important;
    }
    /* v3.9.81: Show menu overlay when body has mobile-menu-open class (from hamburger click) */     body.mobile-menu-open .menu-overlay-wrap {
        display: block !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}
/* ============================================    v3.9.62: Property Section Nav - Hamburger Menu & Larger Fonts    ============================================ */  /* Property section nav base styles with larger fonts */ .property-section-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #fff !important;
    padding: 0 20px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}
.property-section-nav ul {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: wrap !important;
}
/* Desktop: +20% larger fonts (base was ~14px, now ~17px) */ .property-section-nav ul li a {
    display: block !important;
    padding: 18px 20px !important;
    font-size: 1.02rem !important;
    /* ~17px - 20% larger than ~14px */     font-weight: 500 !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}
.property-section-nav ul li a:hover, .property-section-nav ul li a.active {
    color: var(--primary-color, #c8a35f) !important;
}
/* Hamburger in section nav - hidden by default */ .section-nav-hamburger {
    display: none;
}
/* Mobile styles */ @media (max-width: 991px) {
    .property-section-nav {
        padding: 0 15px !important;
    }
    .property-section-nav ul {
        flex: 1 !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    .property-section-nav ul::-webkit-scrollbar {
        display: none !important;
    }
    /* Mobile: +50% larger fonts (base was ~12px, now ~18px) */     .property-section-nav ul li a {
        padding: 15px 12px !important;
        font-size: 1.125rem !important;
        /* ~18px - 50% larger than ~12px */
    }
    /* Show hamburger in section nav on mobile */     .section-nav-hamburger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 10px !important;
        flex-shrink: 0 !important;
    }
    .section-nav-hamburger .hamburger-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 40px !important;
        height: 40px !important;
        padding: 8px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        gap: 5px !important;
    }
    .section-nav-hamburger .hamburger-line {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        background-color: var(--primary-color, #c8a35f) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    .section-nav-hamburger .hamburger-toggle:hover .hamburger-line {
        background-color: var(--secondary-color, #2c3e50) !important;
    }
}
/* Extra small screens */ @media (max-width: 576px) {
    .property-section-nav ul li a {
        padding: 12px 10px !important;
        font-size: 1rem !important;
        /* Still larger than before */
    }
}
/* ============================================    v3.9.63: Single Property - Hide header hamburger, keep in section nav    ============================================ */  /* Hide header hamburger only on single property pages */ body.single-property .menu-wrap-inline, .single-property .menu-wrap-inline {
    display: none !important;
}
/* Property section nav - single row, no wrap */ .property-section-nav ul {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}
.property-section-nav ul::-webkit-scrollbar {
    display: none !important;
}
.property-section-nav ul li {
    flex-shrink: 0 !important;
}
.property-section-nav ul li a {
    white-space: nowrap !important;
}
/* ============================================    v3.9.64: Property Section Nav - Complete Redesign    Single row, better visual design    ============================================ */  /* Override previous styles - complete reset */ .property-section-nav, nav.property-section-nav, #property-section-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid #e5e5e5 !important;
    width: 100% !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}
/* Nav list - FORCE single row */ .property-section-nav ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    flex: 1 !important;
    gap: 0 !important;
}
.property-section-nav ul::-webkit-scrollbar {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
}
/* Nav items - no shrink, no wrap */ .property-section-nav ul li {
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
/* Nav links - clean design */ .property-section-nav ul li a {
    display: flex !important;
    align-items: center !important;
    padding: 16px 18px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: #555 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    border-bottom: 3px solid transparent !important;
    letter-spacing: 0.3px !important;
}
.property-section-nav ul li a:hover {
    color: var(--primary-color, #c8a35f) !important;
    background: rgba(200, 163, 95, 0.05) !important;
}
.property-section-nav ul li a.active, .property-section-nav ul li.active a {
    color: var(--primary-color, #c8a35f) !important;
    border-bottom-color: var(--primary-color, #c8a35f) !important;
    font-weight: 600 !important;
}
/* Hamburger in section nav */ .section-nav-hamburger {
    display: flex !important;
    flex-shrink: 0 !important;
    padding: 0 15px !important;
    border-left: 1px solid #e5e5e5 !important;
    align-items: center !important;
}
.section-nav-hamburger .hamburger-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 44px !important;
    height: 44px !important;
    padding: 10px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    gap: 5px !important;
    border-radius: 4px !important;
    transition: background 0.2s ease !important;
}
.section-nav-hamburger .hamburger-toggle:hover {
    background: rgba(200, 163, 95, 0.1) !important;
}
.section-nav-hamburger .hamburger-line {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    background-color: var(--primary-color, #c8a35f) !important;
    border-radius: 1px !important;
    transition: all 0.3s ease !important;
}
/* Mobile - show hamburger */ @media (max-width: 991px) {
    .property-section-nav ul li a {
        padding: 14px 14px !important;
        font-size: 0.85rem !important;
    }
    .section-nav-hamburger {
        display: flex !important;
        align-items: center !important;
    }
}
@media (max-width: 576px) {
    .property-section-nav ul li a {
        padding: 12px 10px !important;
        font-size: 0.8rem !important;
    }
}
/* Smooth scroll offset for anchor links */ #section-overview, #section-amenities, #section-availability, #section-gallery, #section-location {
    scroll-margin-top: 70px !important;
}
/* ============================================    v3.9.65: Property Section Nav - Larger fonts, single row, left aligned    ============================================ */  /* Complete override - force single row with larger fonts */ .property-section-nav, nav.property-section-nav, #property-section-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #fff !important;
    padding: 0 10px !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border-bottom: 1px solid #e5e5e5 !important;
    width: 100% !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    min-height: 50px !important;
}
/* Nav list - single row, left aligned */ .property-section-nav ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    flex: 0 1 auto !important;
    gap: 0 !important;
    justify-content: flex-start !important;
    align-items: center !important;
}
/* Nav items */ .property-section-nav ul li {
    display: inline-flex !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
/* Nav links - LARGER fonts, smaller padding */ .property-section-nav ul li a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 14px 8px !important;
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    color: #555 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.2s ease !important;
    border-bottom: 3px solid transparent !important;
    letter-spacing: 0.2px !important;
}
.property-section-nav ul li a:hover {
    color: var(--primary-color, #c8a35f) !important;
}
.property-section-nav ul li a.active, .property-section-nav ul li.active a {
    color: var(--primary-color, #c8a35f) !important;
    border-bottom-color: var(--primary-color, #c8a35f) !important;
    font-weight: 600 !important;
}
/* Hamburger stays on right */ .section-nav-hamburger {
    display: none !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    padding: 0 5px !important;
    border-left: 1px solid #e5e5e5 !important;
}
/* Mobile */ @media (max-width: 991px) {
    .property-section-nav {
        padding: 0 5px !important;
    }
    .property-section-nav ul li a {
        padding: 12px 6px !important;
        font-size: 0.95rem !important;
    }
    .section-nav-hamburger {
        display: flex !important;
        align-items: center !important;
    }
}
@media (max-width: 768px) {
    .property-section-nav ul li a {
        padding: 10px 5px !important;
        font-size: 0.88rem !important;
    }
}
@media (max-width: 480px) {
    .property-section-nav ul li a {
        padding: 10px 4px !important;
        font-size: 0.82rem !important;
    }
}
/* ============================================    v3.9.66: Section Nav - 20% larger fonts, hamburger on all devices    ============================================ */  /* Nav links - 20% LARGER fonts */ .property-section-nav ul li a {
    font-size: 1.26rem !important;
    /* 1.05 * 1.2 = 1.26 */
}
/* Hamburger visible on ALL devices including desktop */ .property-section-nav .section-nav-hamburger, .section-nav-hamburger {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    padding: 0 10px !important;
    border-left: 1px solid #e5e5e5 !important;
}
/* Mobile adjustments - also 20% larger */ @media (max-width: 991px) {
    .property-section-nav ul li a {
        font-size: 1.14rem !important;
        /* 0.95 * 1.2 = 1.14 */
    }
}
@media (max-width: 768px) {
    .property-section-nav ul li a {
        font-size: 1.05rem !important;
        /* 0.88 * 1.2 ≈ 1.05 */
    }
}
@media (max-width: 480px) {
    .property-section-nav ul li a {
        font-size: 0.98rem !important;
        /* 0.82 * 1.2 ≈ 0.98 */
    }
}
/* ============================================    v3.9.67: Daterangepicker z-index fix    ============================================ */ .daterangepicker {
    z-index: 99999 !important;
}
/* Ensure datepicker is above other elements on archive page */ .destination-hero .daterangepicker, .search-form-wrapper .daterangepicker, #dest-filters-modal .daterangepicker {
    z-index: 999999 !important;
}
/* ============================================    v3.9.70: Property Section Nav - FINAL FIX    Single row, left aligned, all items visible    ============================================ */  /* Force single row - highest specificity */ body .property-section-nav, body nav.property-section-nav, body #property-section-nav, .single-property .property-section-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: #fff !important;
    padding: 0 5px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    width: 100% !important;
    overflow: visible !important;
}
/* v4.1.2: Center nav on larger screens with padding-left */
@media (min-width: 992px) {
    body .property-section-nav, body nav.property-section-nav, body #property-section-nav, .single-property .property-section-nav {
        padding: 0 0 2px 30% !important;
        justify-content: center !important;
    }
}
body .property-section-nav ul, body nav.property-section-nav ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    gap: 0 !important;
    flex: 0 1 auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
}
body .property-section-nav ul li, body nav.property-section-nav ul li {
    display: inline-block !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    list-style: none !important;
}
/* Links - compact padding for single row */ body .property-section-nav ul li a, body nav.property-section-nav ul li a {
    display: inline-block !important;
    padding: 14px 6px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #555 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    border-bottom: 3px solid transparent !important;
}
body .property-section-nav ul li a:hover {
    color: var(--primary-color, #c8a35f) !important;
}
body .property-section-nav ul li a.active, body .property-section-nav ul li.active a {
    color: var(--primary-color, #c8a35f) !important;
    border-bottom-color: var(--primary-color, #c8a35f) !important;
}
/* Hamburger on right */ body .property-section-nav .section-nav-hamburger, body .section-nav-hamburger {
    display: flex !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    padding: 0 10px !important;
}
/* Mobile - smaller fonts to fit */ @media (max-width: 768px) {
    body .property-section-nav ul li a,     body nav.property-section-nav ul li a {
        padding: 12px 4px !important;
        font-size: 0.95rem !important;
    }
}
@media (max-width: 480px) {
    body .property-section-nav ul li a,     body nav.property-section-nav ul li a {
        padding: 10px 3px !important;
        font-size: 0.85rem !important;
    }
}
/* ============================================    v3.9.71: Property Section Nav - Custom Font Sizes    ============================================ */  /* Up to 991px */ @media (max-width: 991px) {
    body .property-section-nav ul li a,     body nav.property-section-nav ul li a {
        padding: 14px 25px !important;
        font-size: 1.35rem !important;
    }
}
/* Up to 768px */ @media (max-width: 768px) {
    body .property-section-nav ul li a,     body nav.property-section-nav ul li a {
        padding: 12px 12px !important;
        font-size: 1.25rem !important;
    }
}
/* Up to 480px */ @media (max-width: 480px) {
    body .property-section-nav ul li a,     body nav.property-section-nav ul li a {
        padding: 10px 6px !important;
        font-size: 1.05rem !important;
    }
}
/* ============================================    v3.9.72: Booking Widget - Compact Date Hint    Ensures Book Now button stays visible    ============================================ */  /* Calendar booking hint - compact style */ .calendar-booking-hint {
    background: #d4edda !important;
    color: #155724 !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    margin: 6px 0 !important;
    font-size: 0.8rem !important;
    text-align: center !important;
    line-height: 1.3 !important;
    animation: fadeInHint 0.3s ease-out;
}
@keyframes fadeInHint {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Ensure booking widget doesn't overflow on mobile */ @media (max-width: 991px) {
    .booking-card,     .booking-widget,     .card.booking-card {
        max-height: none !important;
        overflow: visible !important;
    }
    .calendar-booking-hint {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
        margin: 4px 0 !important;
    }
}
/* Sticky booking widget - ensure button visible */ .booking-card .btn-book, .booking-card .book-now-btn, .booking-widget .btn-book {
    position: relative !important;
    z-index: 10 !important;
}
/* ============================================    v3.9.73: Load More Properties Button    ============================================ */  #load-more-container {
    text-align: center;
    padding: 30px 0;
}
#load-more-btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
#load-more-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}
#load-more-btn i.fa-spinner {
    margin-right: 8px;
}
/* Property card lazy load animation */ .myrent-property-card {
    animation: fadeInUp 0.3s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* v3.9.75: Map popup lazy loading styles */ .map-popup-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    color: #666;
    font-size: 14px;
}
.map-popup-loading i {
    color: var(--primary-color, #c8a35f);
    font-size: 18px;
}
.map-popup-error {
    padding: 20px;
    text-align: center;
    color: #dc3545;
    font-size: 13px;
}
/* v3.9.76: Search actions row - Search + Advanced Filters + Clear X in one line */ /* v3.9.78: Actions row goes BELOW input fields on desktop */ /* v3.9.79: Fixed - actions row was hidden behind map */ .search-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    position: relative;
    z-index: 10;
    width: 100%;
}
.search-actions-row .search-btn {
    padding: 12px 28px;
    font-size: 1rem;
    white-space: nowrap;
}
.search-actions-row .btn-advanced-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.search-actions-row .btn-advanced-toggle:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: var(--primary-color);
}
.search-actions-row .btn-advanced-toggle .toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.search-actions-row .btn-advanced-toggle.active .toggle-icon {
    transform: rotate(180deg);
}
.search-actions-row .clear-x-button {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}
.search-actions-row .clear-x-button:hover {
    background: #c82333;
    transform: scale(1.05);
}
/* Hide old advanced-filters-toggle container */ .advanced-filters-toggle {
    display: none !important;
}
/* v3.9.79: Desktop - input fields in row, actions BELOW in separate row */ @media (min-width: 992px) {
    .search-form-compact {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 15px;
        align-items: end;
    }
    .search-form-compact .search-field {
        grid-row: 1;
    }
    /* Actions row spans all 3 columns - goes to second row */     .search-form-compact .search-actions-row {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 5px;
        justify-content: flex-start;
    }
}
/* Mobile: stack vertically */ @media (max-width: 991px) {
    .search-form-compact {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .search-actions-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .search-actions-row .search-btn {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }
    .search-actions-row .btn-advanced-toggle {
        flex: 1;
    }
}
/* v3.9.83: Unavailable property styles */ .property-list-card.property-unavailable .property-card-image {
    position: relative;
}
.property-list-card.property-unavailable .property-card-image img {
    filter: grayscale(70%) brightness(0.7);
    transition: filter 0.3s ease;
}
.property-list-card.property-unavailable:hover .property-card-image img {
    filter: grayscale(50%) brightness(0.8);
}
.unavailable-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.unavailable-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.unavailable-badge i {
    font-size: 1.1rem;
}
/* Map popup unavailable style */ .map-popup-card.popup-unavailable .popup-image {
    position: relative;
}
.map-popup-card.popup-unavailable .popup-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.map-popup-card.popup-unavailable .popup-image::after {
    content: 'Not Available';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}
.map-popup-card.popup-unavailable .popup-image {
    filter: grayscale(60%);
}
/* v3.9.83: Popup unavailable badge */ .popup-unavailable-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.95);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.popup-unavailable-badge i {
    font-size: 1rem;
}
.map-popup-card.popup-unavailable .popup-image {
    filter: grayscale(60%) brightness(0.7);
}
/* v3.9.85: Property distances section */ .property-distances {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}
.property-distances h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.4rem;
    color: #333;
}
/* v3.9.92: Updated grid layout - 4 columns on mobile */ .distances-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.distance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.distance-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.distance-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color, #c8a35f);
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}
.distance-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.distance-place {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.2;
}
.distance-value {
    color: #666;
    font-size: 0.85rem;
}
/* Tablet adjustments */ @media (max-width: 991px) {
    .distances-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    .distance-item {
        padding: 12px 6px;
    }
    .distance-item i {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .distance-place {
        font-size: 0.8rem;
    }
    .distance-value {
        font-size: 0.75rem;
    }
}
/* Mobile adjustments - Keep 4 columns */ @media (max-width: 767px) {
    .property-distances {
        padding: 20px 15px;
        margin-top: 30px;
    }
    .distances-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .distance-item {
        padding: 10px 4px;
        gap: 6px;
    }
    .distance-item i {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .distance-place {
        font-size: 0.7rem;
        word-break: break-word;
        hyphens: auto;
    }
    .distance-value {
        font-size: 0.65rem;
    }
}
/* Very small screens - still 4 columns but more compact */ @media (max-width: 480px) {
    .property-distances {
        padding: 15px 10px;
    }
    .distances-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    .distance-item {
        padding: 8px 3px;
        gap: 4px;
    }
    .distance-item i {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    .distance-place {
        font-size: 0.6rem;
    }
    .distance-value {
        font-size: 0.55rem;
    }
}
/* v3.9.86: Language Switcher Styles */ /* v3.9.87: Dropdown style */ .myrent-lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.myrent-lang-switcher.dropdown-style .lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.header-new:not([style*="transparent"]) .lang-dropdown-toggle {
    border-color: #ddd;
}
.myrent-lang-switcher.dropdown-style .lang-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
.header-new:not([style*="transparent"]) .lang-dropdown-toggle:hover {
    background: #f5f5f5;
    border-color: #ccc;
}
.myrent-lang-switcher .lang-dropdown-toggle .lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}
.myrent-lang-switcher .lang-dropdown-toggle .lang-code {
    font-weight: 600;
    font-size: 0.8rem;
}
.myrent-lang-switcher .lang-dropdown-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}
.myrent-lang-switcher.dropdown-style.open .lang-dropdown-toggle i {
    transform: rotate(180deg);
}
/* Dropdown menu */ .myrent-lang-switcher .lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}
.myrent-lang-switcher.dropdown-style.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.myrent-lang-switcher .lang-dropdown-menu li {
    margin: 0;
}
.myrent-lang-switcher .lang-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}
.myrent-lang-switcher .lang-dropdown-menu li a:hover {
    background: #f5f5f5;
}
.myrent-lang-switcher .lang-dropdown-menu li.active a {
    background: #f0f7ff;
    color: var(--primary-color, #c8a35f);
}
.myrent-lang-switcher .lang-dropdown-menu li a .lang-flag {
    font-size: 1.3rem;
}
.myrent-lang-switcher .lang-dropdown-menu li a .lang-name {
    flex: 1;
}
.myrent-lang-switcher .lang-dropdown-menu li a .fa-check {
    color: var(--primary-color, #c8a35f);
    font-size: 0.8rem;
}
/* Header language switcher position */ .header-lang-switcher {
    margin-right: 10px;
}
/* Mobile adjustments */ @media (max-width: 767px) {
    .myrent-lang-switcher.dropdown-style .lang-dropdown-toggle {
        padding: 6px 10px;
    }
    .myrent-lang-switcher .lang-dropdown-toggle .lang-code {
        display: none;
    }
    .myrent-lang-switcher .lang-dropdown-menu {
        right: -10px;
        min-width: 140px;
    }
}
/* v3.9.92: Mobile header - reduced spacing between flag, heart and hamburger */ @media (max-width: 767px) {
    .header-mobile-actions {
        gap: 4px !important;
    }
    .header-lang-switcher {
        margin-right: 2px;
    }
    .header-favorites {
        margin-right: 2px !important;
    }
    .header-favorites a {
        padding: 4px !important;
    }
    .header-favorites i {
        font-size: 18px !important;
    }
    .menu-wrap-inline {
        margin-left: 2px;
    }
    .lang-dropdown-toggle {
        padding: 4px 6px !important;
    }
    .lang-dropdown-toggle img {
        width: 20px !important;
        height: 14px !important;
    }
    .hamburger {
        width: 22px !important;
        height: 16px !important;
    }
}
/* v3.9.93: Single property sub-navigation mobile fixes */ /* Reduced font size for German/longer words */ @media (max-width: 991px) {
    .property-section-nav {
        position: sticky !important;
        position: -webkit-sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #fff !important;
    }
    .property-section-nav ul {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding: 10px 60px 10px 10px !important;
        margin: 0 !important;
        list-style: none !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .property-section-nav ul::-webkit-scrollbar {
        display: none;
    }
    .property-section-nav li {
        flex-shrink: 0 !important;
    }
    .property-section-nav a {
        font-size: 0.75rem !important;
        white-space: nowrap !important;
        padding: 4px 8px !important;
    }
    .section-nav-hamburger {
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        z-index: 10 !important;
    }
    .section-nav-hamburger .hamburger-toggle {
        width: 36px !important;
        height: 36px !important;
        padding: 8px !important;
        background: #fff !important;
        border: 1px solid #e5e5e5 !important;
        border-radius: 4px !important;
        cursor: pointer !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
    }
    .section-nav-hamburger .hamburger-line {
        width: 18px !important;
        height: 2px !important;
        background: #333 !important;
        display: block !important;
    }
}
@media (max-width: 576px) {
    .property-section-nav ul {
        gap: 6px !important;
        padding: 8px 55px 8px 8px !important;
    }
    .property-section-nav a {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
    }
    .section-nav-hamburger {
        right: 8px !important;
    }
    .section-nav-hamburger .hamburger-toggle {
        width: 32px !important;
        height: 32px !important;
        padding: 6px !important;
    }
    .section-nav-hamburger .hamburger-line {
        width: 16px !important;
    }
}
/* =========================================    v3.9.93: Homepage Mobile Improvements    - Search form positioned lower    - Hero title/subtitle centered    - Advanced search button visible on mobile    ========================================= */  /* Mobile filters button - always visible on mobile */ .mobile-filters-btn {
    display: none;
    margin-top: 15px;
    text-align: center;
}
.mobile-filters-btn .btn-advanced-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}
.mobile-filters-btn .btn-advanced-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}
.mobile-filters-btn .btn-advanced-toggle i {
    font-size: 0.85rem;
}
.mobile-filters-btn .toggle-icon {
    transition: transform 0.3s ease;
}
/* Mobile specific adjustments */ @media (max-width: 991px) {
    /* Show mobile advanced button */     .mobile-filters-btn {
        display: block !important;
    }
    /* Hide desktop advanced button on mobile */     .search-field.advanced-button {
        display: none !important;
    }
    /* Hero section - increase height for more image visibility */     .hero-search-section.hero-fullscreen {
        min-height: 100vh !important;
        height: 100vh !important;
    }
    .hero-slider.owl-slider-fullscreen,     .hero-slider.owl-slider-fullscreen .hero-slide {
        min-height: 100vh !important;
        height: 100vh !important;
    }
    /* Hero content positioning - move up to center better */     .hero-content {
        position: absolute !important;
        top: 15% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: auto !important;
        text-align: center !important;
        width: 90% !important;
        padding: 0 15px !important;
    }
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
        text-align: center !important;
    }
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    /* Search form wrapper - position at bottom with more space */     .search-form-wrapper {
        position: absolute !important;
        bottom: 25px !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        padding: 0 15px !important;
        z-index: 100 !important;
    }
    /* Search form inner - vertical layout on mobile */     .hero-search-form .search-form-inner {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    .hero-search-form .search-field {
        width: 100% !important;
        flex: none !important;
    }
    .hero-search-form .search-field.search-button {
        margin-top: 5px !important;
    }
    .hero-search-form .search-field.search-button .btn {
        width: 100% !important;
    }
}
/* Smaller mobile screens */ @media (max-width: 576px) {
    /* Hero content - adjust for very small screens */     .hero-content {
        top: 12% !important;
        width: 95% !important;
    }
    .hero-title {
        font-size: 1.6rem !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
    }
    /* Search form */     .search-form-wrapper {
        bottom: 20px !important;
        padding: 0 10px !important;
    }
    .hero-search-form .search-form-inner {
        padding: 12px !important;
        gap: 8px !important;
    }
    .mobile-filters-btn .btn-advanced-toggle {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
/* =========================================    v3.9.94: FIXED Homepage Mobile Layout    - Hero title/subtitle centered vertically    - Search form at bottom, starting above hero image    - Advanced search button visible    ========================================= */  /* Reset and override previous mobile styles */ @media (max-width: 991px) {
    /* Hero section full height */     .hero-search-section,     .hero-search-section.hero-fullscreen,     .hero-slider,     .hero-slider.owl-slider-fullscreen,     .hero-slide {
        min-height: 100vh !important;
        height: 100vh !important;
    }
    /* Hero content - CENTER VERTICALLY in top half of screen */     .hero-slide .hero-content,     .hero-content,     .hero-slider .hero-content {
        position: absolute !important;
        top: 30% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        bottom: auto !important;
        width: 90% !important;
        max-width: 500px !important;
        text-align: center !important;
        padding: 0 !important;
        z-index: 50 !important;
    }
    /* Hero title styling */     .hero-title,     .hero-slide .hero-title,     h1.hero-title {
        font-size: 1.8rem !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }
    /* Hero subtitle styling */     .hero-subtitle,     .hero-slide .hero-subtitle,     p.hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        line-height: 1.4 !important;
        opacity: 0.95 !important;
    }
    /* Search form wrapper - at bottom, overlapping edge of hero */     .search-form-wrapper,     .hero-search-section .search-form-wrapper {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        padding: 0 15px 20px 15px !important;
        z-index: 100 !important;
        transform: translateY(30%) !important;
    }
    /* Search form background */     .hero-search-form,     .search-form-wrapper .hero-search-form {
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 16px !important;
        box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15), 0 10px 40px rgba(0, 0, 0, 0.2) !important;
        padding: 20px !important;
    }
    /* Search form inner - vertical layout */     .hero-search-form .search-form-inner,     .search-form-inner {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .hero-search-form .search-field,     .search-form-inner .search-field {
        width: 100% !important;
        flex: none !important;
    }
    /* Labels dark on white background */     .hero-search-form .search-field label {
        color: #333 !important;
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
    /* Inputs styling */     .hero-search-form .form-control {
        background: #f5f5f5 !important;
        border: 1px solid #e0e0e0 !important;
        color: #333 !important;
    }
    .hero-search-form .input-with-icon i {
        color: #666 !important;
    }
    /* Search button full width */     .hero-search-form .search-field.search-button {
        margin-top: 5px !important;
    }
    .hero-search-form .search-field.search-button .btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
    }
    /* Hide desktop advanced button on mobile */     .search-field.advanced-button {
        display: none !important;
    }
    /* SHOW mobile advanced filters button */     .mobile-filters-btn,     .advanced-filters-toggle.mobile-filters-btn {
        display: block !important;
        margin-top: 12px !important;
        text-align: center !important;
    }
    .mobile-filters-btn .btn-advanced-toggle {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 10px 20px !important;
        background: var(--primary-color, #c8a35f) !important;
        border: none !important;
        border-radius: 25px !important;
        color: #fff !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    }
    .mobile-filters-btn .btn-advanced-toggle:hover,     .mobile-filters-btn .btn-advanced-toggle:active {
        background: var(--secondary-color, #2c3e50) !important;
        transform: translateY(-1px) !important;
    }
    .mobile-filters-btn .btn-advanced-toggle i {
        font-size: 0.85rem !important;
    }
}
/* Smaller mobile screens */ @media (max-width: 576px) {
    /* Hero content position - slightly higher */     .hero-slide .hero-content,     .hero-content {
        top: 28% !important;
        width: 95% !important;
    }
    .hero-title,     h1.hero-title {
        font-size: 1.5rem !important;
    }
    .hero-subtitle,     p.hero-subtitle {
        font-size: 0.9rem !important;
    }
    /* Search form */     .search-form-wrapper {
        padding: 0 10px 15px 10px !important;
        transform: translateY(25%) !important;
    }
    .hero-search-form {
        padding: 15px !important;
        border-radius: 12px !important;
    }
    .hero-search-form .search-form-inner {
        gap: 10px !important;
    }
    .mobile-filters-btn .btn-advanced-toggle {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
}
/* Very small screens */ @media (max-width: 400px) {
    .hero-slide .hero-content,     .hero-content {
        top: 25% !important;
    }
    .hero-title {
        font-size: 1.3rem !important;
    }
    .hero-subtitle {
        font-size: 0.85rem !important;
    }
    .search-form-wrapper {
        transform: translateY(20%) !important;
    }
}