:root{
    --bg:#031720;
    --bg2:#052230;
    --panel:#0a2532;
    --panel2:#0c2c3b;
    --text:#ffffff;
    --muted:#9fb3bb;
    --gold:#d4b179;
    --gold-soft:#f0d3a0;
    --line:rgba(255,255,255,.08);
    --white:#f1f1ef;
    --green:#1bdd6f;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%;height:auto}

.ewpt-container{
    width:min(1280px, 94%);
    margin:0 auto;
}

.ewpt-topbar{
    background:linear-gradient(180deg,#072531,#041a22);
    border-bottom:1px solid rgba(212,177,121,.14);
}
.ewpt-topbar-inner{
    min-height:92px;
    display:grid;
    grid-template-columns:220px 1fr;
    gap:20px;
    align-items:center;
}
.ewpt-site-title,.custom-logo-link{
    color:var(--gold-soft);
    font-size:34px;
    font-weight:700;
    letter-spacing:.3px;
}
.ewpt-main-nav ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
}
.ewpt-main-nav a{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#d7d7d2;
}

.ewpt-subbar{
    background:var(--white);
    border-bottom:1px solid rgba(0,0,0,.08);
}
.ewpt-category-nav ul{
    list-style:none;
    margin:0;
    padding:0;
    min-height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex-wrap:wrap;
}
.ewpt-category-nav a{
    color:#222;
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:1.7px;
}

.ewpt-hero{
    padding:30px 0 18px;
    background:linear-gradient(180deg, var(--bg2), var(--bg));
}
.ewpt-hero-box{
    background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
    border:1px solid var(--line);
    padding:30px;
}
.ewpt-hero-mini{
    display:inline-block;
    padding:8px 12px;
    background:rgba(212,177,121,.16);
    color:var(--gold-soft);
    text-transform:uppercase;
    letter-spacing:1.6px;
    font-size:10px;
}
.ewpt-hero-box h1{
    margin:16px 0 12px;
    font-size:42px;
    font-weight:700;
}
.ewpt-hero-box p{
    margin:0;
    color:var(--muted);
    max-width:720px;
    line-height:1.7;
}

.ewpt-listing-section{
    padding:16px 0 44px;
}
.ewpt-toolbar{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:18px;
    margin-bottom:22px;
}
.ewpt-toolbar-left{
    display:flex;
    align-items:center;
    gap:16px;
}
.ewpt-filter-btn{
    height:36px;
    min-width:88px;
    border:0;
    background:var(--gold);
    color:#1d1d1d;
    text-transform:uppercase;
    letter-spacing:1.6px;
    font-size:10px;
    cursor:pointer;
    font-weight:700;
}
.ewpt-found-count{
    color:#c9d4d7;
    font-size:11px;
    letter-spacing:.6px;
}

.ewpt-cards-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:26px;
}
.ewpt-card{
    background:transparent;
}
.ewpt-card-image-link{
    display:block;
    position:relative;
    overflow:hidden;
    background:#0d2430;
}
.ewpt-card-image{
    width:100%;
    aspect-ratio:1 / 1.28;
    object-fit:cover;
}
.ewpt-no-image{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8ea1a8;
}
.ewpt-online-box{
    position:absolute;
    top:12px;
    left:12px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:36px;
    padding:0 14px;
    background:rgba(0,0,0,.62);
    border-radius:999px;
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
}
.ewpt-online-name{
    font-weight:700;
    max-width:180px;
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
}
.ewpt-blink-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--green);
    box-shadow:0 0 0 rgba(27,221,111,.7);
    animation:ewptBlinkPulse 1.2s infinite;
}
@keyframes ewptBlinkPulse{
    0%{transform:scale(1); box-shadow:0 0 0 0 rgba(27,221,111,.7); opacity:1;}
    70%{transform:scale(1.12); box-shadow:0 0 0 10px rgba(27,221,111,0); opacity:.85;}
    100%{transform:scale(1); box-shadow:0 0 0 0 rgba(27,221,111,0); opacity:1;}
}

.ewpt-card-content{
    padding:14px 0 0;
}
.ewpt-card-title-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
}
.ewpt-card-title-row h3{
    margin:0;
    font-size:24px;
    line-height:1.1;
    font-weight:700;
}
.ewpt-card-title-row h3 a{
    color:#fff;
}
.ewpt-card-price{
    color:#d7d5c9;
    font-size:12px;
    white-space:nowrap;
}
.ewpt-stars{
    display:flex;
    gap:3px;
    color:var(--gold);
    font-size:12px;
    margin:8px 0 10px;
    line-height:1;
}
.ewpt-card-location{
    color:#b8c6cb;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.ewpt-pagination{
    margin-top:30px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.ewpt-pagination a,
.ewpt-pagination span{
    min-width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-size:12px;
    padding:0 10px;
}
.ewpt-empty,
.ewpt-page-box{
    background:#08202b;
    padding:30px;
    border:1px solid var(--line);
}

.ewpt-single-page,
.ewpt-generic-page{
    padding:38px 0 60px;
}
.ewpt-single-wrap{
    display:grid;
    grid-template-columns:minmax(320px, 560px) 1fr;
    gap:34px;
}
.ewpt-single-main-image img,
.ewpt-no-main-image{
    width:100%;
    background:#0d2430;
}
.ewpt-no-main-image{
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8ea1a8;
}
.ewpt-single-status{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:38px;
    padding:0 14px;
    background:rgba(0,0,0,.45);
    border-radius:999px;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:12px;
}
.ewpt-single-content h1{
    margin:16px 0 8px;
    font-size:42px;
    font-weight:700;
}
.ewpt-single-meta{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
    margin:20px 0 26px;
}
.ewpt-single-meta > div{
    background:var(--panel);
    border:1px solid var(--line);
    padding:14px;
}
.ewpt-single-meta strong{
    display:block;
    color:var(--gold);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:6px;
}
.ewpt-single-meta span{
    color:#fff;
    font-size:14px;
}
.ewpt-contact-link{
    color:#fff;
    text-decoration:underline;
}
.ewpt-contact-link.is-whatsapp{
    color:#98f0b8;
}
.ewpt-single-text{
    color:#c9d4d7;
    line-height:1.85;
    font-size:14px;
}
.ewpt-gallery{
    margin-top:24px;
}
.ewpt-gallery h3{
    margin:0 0 14px;
    font-size:24px;
}
.ewpt-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:12px;
}
.ewpt-gallery-item img{
    width:100%;
    aspect-ratio:1 / 1;
    object-fit:cover;
}

.ewpt-cities-section{
    background:var(--white);
    color:#333;
    padding:40px 0;
}
.ewpt-cities-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}
.ewpt-cities-head h3{
    margin:0;
    font-size:30px;
    color:#8b7a5a;
    font-weight:700;
}
.ewpt-cities-head span{
    font-size:12px;
    color:#9e8c72;
}
.ewpt-cities-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:10px 24px;
}
.ewpt-cities-grid a,
.ewpt-cities-grid span{
    color:#5d5d5d;
    font-size:13px;
    padding:6px 0;
    border-bottom:1px solid rgba(0,0,0,.06);
}

.ewpt-footer{
    background:#04161d;
    color:#cbd7db;
}
.ewpt-footer-inner{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:50px;
    padding:40px 0 28px;
}
.ewpt-footer-logo{
    font-size:28px;
    color:var(--gold-soft);
    margin-bottom:10px;
    font-weight:700;
}
.ewpt-footer-col h4{
    margin:0 0 14px;
    font-size:24px;
    color:#fff;
}
.ewpt-footer-col p{
    color:#aab9be;
    font-size:13px;
    line-height:1.8;
}
.ewpt-footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}
.ewpt-footer-col li{
    margin-bottom:9px;
    font-size:13px;
}
.ewpt-copyright{
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
    padding:16px 0;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#96a7ad;
}

@media (max-width: 1100px){
    .ewpt-topbar-inner{
        grid-template-columns:1fr;
        justify-items:center;
        padding:18px 0;
    }
    .ewpt-cards-grid{
        grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .ewpt-footer-inner{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 768px){
    .ewpt-main-nav ul,
    .ewpt-category-nav ul{
        gap:12px;
    }
    .ewpt-toolbar{
        flex-direction:column;
        align-items:flex-start;
    }
    .ewpt-cards-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
        gap:16px;
    }
    .ewpt-card-title-row{
        flex-direction:column;
    }
    .ewpt-card-title-row h3{
        font-size:18px;
    }
    .ewpt-single-wrap{
        grid-template-columns:1fr;
    }
    .ewpt-single-meta{
        grid-template-columns:1fr;
    }
    .ewpt-gallery-grid{
        grid-template-columns:repeat(3, minmax(0,1fr));
    }
    .ewpt-cities-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 480px){
    .ewpt-cards-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
    .ewpt-gallery-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
    .ewpt-footer-inner{
        grid-template-columns:1fr;
        gap:30px;
    }
    .ewpt-cities-head{
        flex-direction:column;
        align-items:flex-start;
    }
}
