@import url('fonts.css');
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.close-svg-icon,
.sidebar-close-icon,
.mobile-nav-plus-icon,
.enteco-cookie-close-icon,
.footer-social-icon {
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
    pointer-events: none;
}

.container {
    width: min(var(--container-width), calc(100% - var(--container-gap)));
    margin: 0 auto;
}

.otp-back-icon {
    display: block;
    width: 15px;
    height: 15px;
    flex: 0 0 18px;
    object-fit: contain;
    margin: 0;
    pointer-events: none;
    opacity: .85;
}

.carousel-controls button .otp-back-icon,
.mini-calendar-nav button .otp-back-icon,
.enteco-calendar-head button .otp-back-icon,
.property-gallery-modal-nav .otp-back-icon,
.properties-pagination button .otp-back-icon {
    margin: auto;
}


/* Native hidden attribute must override component display rules. */
[hidden] {
    display: none !important;
}

/* Global custom select and date picker components */
.enteco-native-select,
.enteco-native-date,
.enteco-native-time {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.enteco-custom-select,
.enteco-date-picker,
.enteco-time-picker {
    position: relative;
    width: 100%;
    font-family: var(--font-primary);
}

.enteco-select-current,
.enteco-date-current,
.enteco-time-current {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 22px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    background: var(--color-white-soft);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.enteco-select-current {
    border: none;
    background: var(--color-white);
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.enteco-select-current:hover {
    border: 1px solid var(--color-olive);
    box-shadow: 0 0 0 4px var(--color-olive-09);
}

.enteco-date-current:hover,
.enteco-time-current:hover,
.enteco-custom-select.is-open .enteco-select-current,
.enteco-date-picker.is-open .enteco-date-current,
.enteco-time-picker.is-open .enteco-time-current {
    border-color: var(--color-olive);
    box-shadow: 0 0 0 4px var(--color-olive-09);
    background: var(--color-white);
}

.enteco-select-caret,
.enteco-date-icon,
.enteco-time-icon {
    flex: 0 0 auto;
    color: var(--color-text);
    font-size: var(--fs-md);
    transition: transform .2s ease;
}

.enteco-custom-select.is-open .enteco-select-caret,
.enteco-date-picker.is-open .enteco-date-icon,
.enteco-time-picker.is-open .enteco-time-icon {
    transform: rotate(180deg);
}

.enteco-select-menu,
.enteco-calendar-popover,
.enteco-time-popover {
    position: fixed;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 999999;
    width: min(100%, 420px);
    max-height: calc(100vh - 24px);
    padding: 16px;
    border: 1px solid var(--color-line);
    border-radius: calc(var(--radius-xl) + 8px);
    background: var(--color-white-98);
    box-shadow: var(--shadow-main);
    overflow: hidden;
}

.enteco-select-menu {
    display: flex;
    flex-direction: column;
}

.enteco-calendar-popover,
.enteco-time-popover {
    overflow-y: auto;
}

.enteco-time-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.enteco-time-head strong {
    color: var(--color-text);
    font-size: var(--fs-md);
    font-weight: 800;
}

.enteco-time-head button {
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--color-olive-soft);
    color: var(--color-olive-dark);
    font-family: var(--font-primary);
    font-size: var(--fs-micro);
    font-weight: 800;
    cursor: pointer;
}

.enteco-time-periods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px;
    border-radius: var(--radius-pill);
    background: var(--color-white-soft);
}

.enteco-time-periods button {
    min-height: 38px;
    border: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--color-muted);
    font-family: var(--font-primary);
    font-size: var(--fs-xs);
    font-weight: 800;
    cursor: pointer;
}

.enteco-time-periods button.is-active {
    background: var(--color-olive);
    color: var(--color-white);
}

.enteco-time-options {
    max-height: min(300px, calc(100vh - 220px));
    overflow-y: auto;
    display: grid;
    gap: 6px;
    padding: 2px;
}

.enteco-time-option {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--color-white-soft);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.enteco-time-option:hover {
    transform: translateY(-1px);
    background: var(--color-olive-soft);
}

.enteco-time-option.is-selected {
    background: var(--color-olive);
    color: var(--color-white);
}

.enteco-select-search {
    width: 100%;
    height: 58px;
    margin: 0 0 12px;
    padding: 0 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    background: var(--color-white-soft);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    outline: none;
}

.enteco-select-search:focus {
    border-color: var(--color-olive);
    box-shadow: 0 0 0 4px var(--color-olive-09);
}

.enteco-select-options {
    max-height: min(310px, calc(100vh - 190px));
    min-height: 0;
    overflow-y: auto;
    display: grid;
    gap: 4px;
    padding: 2px;
}

.enteco-select-option {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    border: 0;
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.enteco-select-option:hover,
.enteco-select-option.is-selected {
    background: var(--color-olive-soft);
    color: var(--color-olive-dark);
}

.enteco-select-option.is-selected::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background: var(--color-olive);
    -webkit-mask: url('/assets/images/check.svg') center / contain no-repeat;
    mask: url('/assets/images/check.svg') center / contain no-repeat;
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    cursor: pointer;
    background: var(--color-text-dark);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='black' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='black' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.enteco-select-empty {
    padding: 16px;
    color: var(--color-muted);
    font-size: var(--fs-sm);
    text-align: center;
}

.enteco-calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.enteco-calendar-head strong {
    color: var(--color-text);
    font-size: var(--fs-lg);
    font-weight: 800;
}

.enteco-calendar-head button,
.enteco-calendar-actions button {
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--color-olive-soft);
    color: var(--color-olive-dark);
    font-family: var(--font-primary);
    font-weight: 800;
    cursor: pointer;
}

.enteco-calendar-head button {
    width: 42px;
    height: 42px;
    font-size: var(--fs-xl);
}

.enteco-calendar-weekdays,
.enteco-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.enteco-calendar-weekdays {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: var(--radius-pill);
    background: var(--color-white-soft);
}

.enteco-calendar-weekdays span {
    color: var(--color-muted);
    font-size: var(--fs-micro);
    font-weight: 800;
    text-align: center;
}

.enteco-calendar-empty {
    min-height: 42px;
}

.enteco-calendar-day {
    min-height: 44px;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--color-white-soft);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}

.enteco-calendar-day:hover {
    transform: translateY(-1px);
    background: var(--color-olive-soft);
}

.enteco-calendar-day.is-today {
    box-shadow: inset 0 0 0 1px var(--color-olive-35);
}

.enteco-calendar-day.is-selected {
    background: var(--color-olive);
    color: var(--color-white);
}

.enteco-calendar-day.is-disabled,
.enteco-calendar-day:disabled {
    opacity: .35;
    cursor: not-allowed;
    transform: none;
}

.enteco-calendar-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.enteco-calendar-actions button {
    min-height: 40px;
    padding: 0 18px;
    font-size: var(--fs-xs);
}

.has-field-error .enteco-select-current,
.has-field-error .enteco-date-current,
.has-field-error .enteco-time-current,
select.is-field-invalid + .enteco-custom-select .enteco-select-current,
input.is-field-invalid + .enteco-date-picker .enteco-date-current,
input.is-field-invalid + .enteco-time-picker .enteco-time-current {
    border-color: var(--color-error) !important;
    background: var(--color-error-soft) !important;
    box-shadow: 0 0 0 4px var(--color-error-20) !important;
}

@media (max-width: 768px) {
    .enteco-select-current,
    .enteco-date-current,
    .enteco-time-current {
        min-height: 58px;
        padding: 0 18px;
        font-size: var(--fs-sm);
    }

    .enteco-select-menu,
    .enteco-calendar-popover,
    .enteco-time-popover {
        padding: 12px;
        border-radius: var(--radius-xl);
    }

    .enteco-select-options,
    .enteco-time-options {
        max-height: 280px;
    }

    .enteco-calendar-weekdays,
    .enteco-calendar-days {
        gap: 6px;
    }

    .enteco-calendar-day {
        min-height: 40px;
        font-size: var(--fs-xs);
    }
}
.enteco-select-group {
    padding: 12px 14px 6px;
    color: var(--color-muted);
    font-family: var(--font-bold);
    font-size: var(--fs-micro);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white-94);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo-link{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
}

.property-image{
    opacity:0;
    transform:scale(1.03);
    transition:opacity .5s ease, transform .5s ease;
}

.property-image.lazy-loaded{
    opacity:1;
    transform:scale(1);
}

.site-logo{
    display:block;
    width:120px;
    max-width:100%;
    height:auto;
    object-fit:contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: var(--fs-sm);
    font-weight: 700;
}

.desktop-nav a {
    padding: 28px 0;
    color: var(--color-text-nav);
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--color-olive);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.primary-btn,
.phone-btn,
.search-form button,
.newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius-sm);
    color: var(--color-white);
    background: var(--color-olive);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.search-form button {
    background: none;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    cursor: pointer;
}

.phone-btn-icon {
    width: 24px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.phone-btn span {
    font-size: 16px;
    font-weight: 500;
}

.search-form button:hover {
    transform: scale(1.01);
    transform: translateY(-1px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.primary-btn:hover,
.newsletter-form button:hover {
    background: var(--color-olive-dark);
    transform: translateY(-1px);
}

.phone-btn {
    color: var(--color-olive-dark);
    background: var(--color-white);
    border: 1px solid var(--color-olive);
}

.menu-toggle,
.sidebar-close {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--color-text-dark);
    font-size: var(--fs-h4);
}

.sidebar-close-icon {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    opacity: 0;
    background: var(--color-overlay-black);
    transition: opacity .25s ease;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: min(360px, 88vw);
    height: 100vh;
    padding: 24px;
    background: var(--color-white);
    transform: translateX(-105%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-sidebar);
}

.sidebar-open .sidebar-overlay {
    pointer-events: auto;
    opacity: 1;
}

.sidebar-open .mobile-sidebar {
    transform: translateX(0);
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mobile-nav {
    display: grid;
    gap: 6px;
}

.mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-line);
    font-weight: 800;
}

.sidebar-cta {
    width: 100%;
    margin-top: 24px;
}

.lazy-section {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s ease, transform .75s ease;
}

.lazy-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-footer {
    margin-top: 70px;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 34px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow-main);
    transform: translateY(35px);
    position: relative;
    z-index: 2;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--color-muted);
    font-weight: 700;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--color-olive-soft);
    color: var(--color-olive);
    font-size: var(--fs-h5);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: min(440px, 100%);
}

.newsletter-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
}

.footer-main {
    padding: 90px 0 26px;
    color: var(--color-white-78);
    background: radial-gradient(circle at 50% 0, var(--color-olive-footer), var(--color-olive-deep) 62%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 50px;
}

.footer-grid h4 {
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: var(--fs-lg);
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin: 0 0 10px;
    font-size: var(--fs-sm);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.socials a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    background: var(--color-white);
    margin: 0;
    transition: opacity .2s ease, transform .2s ease;
}

.socials a:hover {
    transform: scale(1.12);
}

.footer-social-icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--color-white-12);
    font-size: var(--fs-xs);
}

/* Multi level desktop navigation */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-arrow {
    font-size: var(--fs-xs);
    line-height: 1;
    color: var(--color-olive);
}

.dropdown-menu,
.subdropdown-menu {
    position: absolute;
    z-index: 1005;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-xl);
    background: var(--color-white-98);
    box-shadow: var(--shadow-main);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.dropdown-menu {
    top: calc(100% - 10px);
    left: -18px;
}

.subdropdown-menu {
    top: -10px;
    left: calc(100% + 10px);
    transform: translateX(-6px);
}

.nav-item:hover > .dropdown-menu,
.nav-item:focus-within > .dropdown-menu,
.dropdown-item:hover > .subdropdown-menu,
.dropdown-item:focus-within > .subdropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover > .subdropdown-menu,
.dropdown-item:focus-within > .subdropdown-menu {
    transform: translateX(0);
}

.dropdown-menu a,
.subdropdown-menu a,
.dropdown-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--fs-sm);
    font-weight: 800;
    white-space: nowrap;
}

.dropdown-menu a:hover,
.subdropdown-menu a:hover,
.dropdown-item:hover > a {
    color: var(--color-olive-dark);
    background: var(--color-olive-soft);
}

.dropdown-item {
    position: relative;
}

/* Multi level mobile navigation */
.mobile-nav-group {
    border-bottom: 1px solid var(--color-line);
}

.mobile-nav-group.is-nested {
    border-bottom: 0;
}

.mobile-nav-toggle {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-text);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-plus {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    color: var(--color-olive);
    background: var(--color-olive-soft);
    transition: transform .2s ease;
}

.mobile-nav-plus-icon {
    width: 14px;
    height: 14px;
}

.mobile-nav-group.is-open > .mobile-nav-toggle .mobile-nav-plus {
    transform: rotate(45deg);
}

.mobile-subnav {
    display: none;
    padding: 0 0 10px 16px;
}

.mobile-subnav .mobile-subnav {
    padding-left: 16px;
}

.mobile-subnav a {
    display: block;
    padding: 11px 0;
    color: var(--color-muted);
    font-size: var(--fs-sm);
    font-family: var(--font-light);
    border: none;
}

@media (max-width: 1100px) {
    .desktop-nav,
    .phone-btn,
    .header-actions .primary-btn {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .desktop-language-switch {
        display: none;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - var(--container-gap), var(--container-width));
    }

    .header-inner {
        height: 68px;
    }

    .newsletter,
    .newsletter-form,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-policy-links {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom span {
        order: 1;
    }

    .footer-bottom nav {
        order: 0;
    }
    .footer-policy-links {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-policy-links a {
        white-space: normal;
    }
}

@media(max-width:575px){
    .site-logo{
        width:145px;
    }
}

/* Language switch */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.language-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.language-current {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--color-olive-35);
    border-radius: var(--radius-pill);
    color: var(--color-olive-dark);
    background: var(--color-white);
    font-size: var(--fs-xs);
    font-weight: 900;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.language-current:hover,
.language-dropdown.is-open .language-current,
.language-dropdown.is-hover-open .language-current,
.language-dropdown:hover .language-current {
    border-color: var(--color-olive);
    box-shadow: 0 8px 24px var(--color-olive-12);
}

.language-flag {
    font-size: var(--fs-md);
    line-height: 1;
}

.language-caret {
    color: var(--color-olive);
    font-size: var(--fs-xs);
    transition: transform .2s ease;
}

.language-dropdown.is-open .language-caret,
.language-dropdown.is-hover-open .language-caret,
.language-dropdown:hover .language-caret {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    min-width: 170px;
    padding: 8px;
    border: 1px solid var(--color-olive-14);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    box-shadow: var(--shadow-language);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.language-dropdown:hover .language-menu,
.language-dropdown.is-hover-open .language-menu,
.language-dropdown.is-open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}


.language-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.language-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 0;
    border-radius: var(--radius-md);
    color: var(--color-text);
    background: transparent;
    font-size: var(--fs-sm);
    font-weight: 850;
    text-align: left;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.language-option:hover,
.language-option.is-active {
    color: var(--color-olive-dark);
    background: var(--color-olive-09);
}

.mobile-language-block {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--color-line);
}

.mobile-language-title {
    color: var(--color-muted);
    font-size: var(--fs-xs);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mobile-language-switch,
.mobile-language-switch .language-current {
    width: 100%;
}

.mobile-language-switch .language-current {
    justify-content: space-between;
    min-height: 48px;
    border-radius: var(--radius-lg);
}

.mobile-language-switch .language-menu {
    position: absolute;
    display: none;
    min-width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
}

.mobile-language-switch.is-open .language-menu {
    display: block;
}


footer .property-image {
    height: auto;
}
/* Global back-to-top button */
.enteco-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1800;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-olive-35);
    border-radius: var(--radius-round);
    color: var(--color-white);
    background: var(--color-olive);
    box-shadow: var(--shadow-main);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.96);
    transition: opacity .24s ease, transform .24s ease, background .2s ease;
    cursor: pointer;
}

.enteco-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.enteco-back-to-top:hover {
    background: var(--color-olive-dark);
}

/* Cookie consent */
.enteco-cookie-open {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1800;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-olive-35);
    border-radius: var(--radius-round);
    color: var(--color-olive);
    background: none !important;
    box-shadow: var(--shadow-main);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(.96);
    transition: opacity .24s ease, transform .24s ease, background .2s ease, color .2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.enteco-cookie-open.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.enteco-cookie-open:hover {
    transform: scale(1.1);
}

.enteco-cookie-banner,
.enteco-cookie-panel {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 1900;
    width: min(1060px, calc(100% - 32px));
    color: var(--color-white);
    background: linear-gradient(135deg, rgba(17, 17, 17, .97), rgba(23, 48, 31, .95));
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 26px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 16px);
    transition: opacity .28s ease, transform .28s ease;
    overflow: hidden;
}

.enteco-cookie-banner.is-visible,
.enteco-cookie-panel.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.enteco-cookie-banner::before,
.enteco-cookie-panel::before {
    content: '';
    position: absolute;
    inset: -35% auto auto -10%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 169, 96, .32), transparent 66%);
    pointer-events: none;
}

.enteco-cookie-banner-inner,
.enteco-cookie-panel-inner {
    position: relative;
    z-index: 1;
}

.enteco-cookie-banner-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 34px;
}

.enteco-cookie-text {
    max-width: 680px;
    margin: 0;
    color: var(--color-white-94);
    font-size: var(--fs-sm);
    line-height: 1.55;
}

.enteco-cookie-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}

.enteco-cookie-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: var(--radius-pill);
    padding: 0 26px;
    color: var(--color-white);
    background: rgba(255, 255, 255, .08);
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.enteco-cookie-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .14);
}

.enteco-cookie-btn.is-primary {
    color: var(--color-text-dark);
    border-color: var(--color-olive-light);
    background: var(--color-olive-light);
}

.enteco-cookie-btn.is-light {
    color: var(--color-text-dark);
    border-color: var(--color-white);
    background: var(--color-white);
}

.enteco-cookie-link {
    color: var(--color-white-78);
    border: 0;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 6px;
    font-weight: 700;
    cursor: pointer;
}

.enteco-cookie-panel {
    width: min(940px, calc(100% - 32px));
    max-height: min(760px, calc(100vh - 36px));
}

.enteco-cookie-panel-inner {
    display: grid;
    max-height: min(760px, calc(100vh - 36px));
    overflow: auto;
    padding: 34px;
}

.enteco-cookie-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.enteco-cookie-panel h2 {
    margin: 0 0 8px;
    color: var(--color-white);
    font-size: var(--fs-h4);
    letter-spacing: -.035em;
}

.enteco-cookie-panel p {
    margin: 0;
    color: var(--color-white-78);
    line-height: 1.6;
}

.enteco-cookie-close {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 4%);
    border-radius: var(--radius-round);
    color: var(--color-white);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.enteco-cookie-close-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    opacity: .85;
}

.enteco-cookie-groups {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.enteco-cookie-group {
    border: 1px solid rgba(255, 255, 255, 4%);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    overflow: hidden;
}
.otp-email-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    aspect-ratio: 1.25/1;
}

.enteco-cookie-open-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin: auto;
}

.enteco-cookie-group button {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    color: var(--color-white);
    background: transparent;
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.enteco-cookie-group button span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.enteco-cookie-group button input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-olive-light);
}

.enteco-cookie-group p {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding: 0 18px 18px;
    color: var(--color-white-72);
    font-size: var(--fs-xs);
}

.enteco-cookie-group.is-open p {
    display: block;
}

.enteco-cookie-panel-foot {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 18px;
    flex-wrap: wrap;
    text-align: right;
}

.footer-policy-links a {
    color: inherit;
    white-space: nowrap;
    transition: color .2s ease, opacity .2s ease;
}

.footer-policy-links a:hover {
    color: var(--color-white);
    opacity: 1;
}

@media (max-width: 880px) {
    .enteco-cookie-panel-foot {
        margin: 10px 0 0;
    }
}
@media (max-width: 760px) {
    .enteco-cookie-banner-inner {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .enteco-cookie-actions,
    .enteco-cookie-panel-foot {
        justify-content: stretch;
    }

    .enteco-cookie-btn,
    .enteco-cookie-link {
        width: 100%;
    }

    .enteco-cookie-panel-inner {
        padding: 24px;
    }

    .enteco-back-to-top {
        right: 16px;
        bottom: 16px;
    }

    .enteco-cookie-open {
        left: 16px;
        bottom: 16px;
    }
}
