/* =========================================================
   PLUXDOM REAL ESTATE - SINGLE INTERNO TEST
========================================================= */

.pluxdom-single-test{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:20px;
    background:#05070a;
    color:#fff;
}

/* =========================================================
   HERO
========================================================= */
.pluxdom-single-hero{
    position:relative;
    width:100%;
    border-radius:28px;
    overflow:hidden;
    margin-bottom:28px;
    background:#111;
}

.pluxdom-single-image{
    width:100%;
    max-height:700px;
}

.pluxdom-single-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.pluxdom-single-overlay{
    position:absolute;
    inset:0;
    pointer-events:none;
}

.pluxdom-single-badge{
    position:absolute;
    top:20px;
    padding:12px 20px;
    border-radius:14px;
    font-weight:800;
    font-size:16px;
}

.pluxdom-single-badge.tipo{
    left:20px;
    background:#ffd400;
    color:#000;
}

.pluxdom-single-badge.estado{
    right:20px;
    background:#16a34a;
    color:#fff;
}

.pluxdom-single-location{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(0,0,0,.72);
    padding:12px 18px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
}

/* =========================================================
   CONTENT
========================================================= */
.pluxdom-single-content{
    background:#02070d;
    border-radius:28px;
    padding:28px;
}

/* =========================================================
   HEADER
========================================================= */
.pluxdom-single-header{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:28px;
    flex-wrap:wrap;
}

.pluxdom-single-title-wrap{
    flex:1;
    min-width:300px;
}

.pluxdom-single-title-wrap h1{
    margin:0 0 10px;
    font-size:clamp(34px,5vw,64px);
    line-height:1.1;
    font-weight:900;
}

.pluxdom-single-title-wrap p{
    margin:0;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.6;
}

.pluxdom-single-price-wrap{
    text-align:right;
    min-width:250px;
}

.pluxdom-single-price{
    font-size:clamp(34px,5vw,64px);
    font-weight:900;
    color:#28d146;
    line-height:1;
}

.pluxdom-single-price-note{
    margin-top:8px;
    color:#cfcfcf;
    font-size:18px;
}

/* =========================================================
   SPECS
========================================================= */
.pluxdom-single-specs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:34px;
}

.spec-box{
    background:#0b1118;
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    padding:26px 12px;
    text-align:center;
}

.spec-box strong{
    display:block;
    font-size:40px;
    margin-bottom:10px;
    color:#fff;
}

.spec-box span{
    font-size:16px;
    color:#d1d1d1;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.pluxdom-single-description h2{
    font-size:32px;
    margin-bottom:18px;
}

.pluxdom-description-box{
    background:#0b1118;
    border-radius:20px;
    padding:24px;
    line-height:1.8;
    color:#e2e2e2;
    font-size:17px;
}

/* =========================================================
   MOBILE
========================================================= */
@media(max-width:991px){

    .pluxdom-single-specs{
        grid-template-columns:repeat(2,1fr);
    }

    .pluxdom-single-price-wrap{
        text-align:left;
    }
}

@media(max-width:768px){

    .pluxdom-single-test{
        padding:10px;
    }

    .pluxdom-single-content{
        padding:18px;
    }

    .pluxdom-single-specs{
        grid-template-columns:1fr;
    }

    .pluxdom-single-title-wrap h1{
        font-size:38px;
    }

    .pluxdom-single-price{
        font-size:42px;
    }
}



/* DEFAULT: SOLO ESPAÑOL */
.pluxdom-related-en{
    display:none;
}

/* SI EXISTE /en-us/ → SOLO INGLÉS */
body.pluxdom-en-us .pluxdom-related-es{
    display:none;
}

body.pluxdom-en-us .pluxdom-related-en{
    display:block;
}





/* ======================================================
   BREADCRUMB PLUXDOM - VERSIÓN DEFINITIVA
   ====================================================== */
.pluxdom-single-extra-html-wrap {
    display: block !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    background: transparent !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
}

.breadcrumb-realestate-pluxdom {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    font-family: inherit;
}

.breadcrum-realestate-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transform: translateX(10px);
}

.breadcrumb-link, .breadcrumb-current {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    color: #ffffff !important;
    background: transparent !important;
}
.breadcrumb-link:hover {
    color: #ffd966 !important;
    text-decoration: underline;
}
.breadcrumb-current {
    font-weight: 600;
    cursor: default;
}

.breadcrumb-icon-home, .breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.breadcrumb-icon-home svg {
    width: 18px;
    height: 18px;
    display: block;
}
.breadcrumb-separator svg {
    width: 12px;
    height: 12px;
    display: block;
    fill: #f5b400;
}

@media (max-width: 768px) {
    .pluxdom-single-extra-html-wrap {
        font-size: 12px !important;
        padding: 0 0 12px 0 !important;
    }
    .breadcrum-realestate-wrap {
        gap: 4px;
        transform: translateX(4px);
    }
    .breadcrumb-icon-home svg {
        width: 16px;
        height: 16px;
    }
    .breadcrumb-separator svg {
        width: 10px;
        height: 10px;
    }
}














