body{
    background:#f7f0c8;
}

.detalle-wrap{
    max-width:1250px;
    margin:auto;
    padding:20px;
}

.detalle-grid{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:20px;
}

.foto-principal-box{
    background:#fff;
    padding:10px;
    border-radius:18px;
}

.foto-principal{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:14px;
}

.miniaturas{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:12px;
}

.mini{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    border:2px solid #eee;
}

.mini:hover{
    border-color:#f4d64b;
}

.detalle-card,
.contacto-box{
    background:#fff;
    padding:22px;
    border-radius:18px;
    margin-top:15px;
}

.detalle-card h1{
    margin:0 0 10px;
    font-size:34px;
}

.precio{
    font-size:36px;
    font-weight:900;
    margin-bottom:8px;
}

.ciudad{
    color:#666;
    margin-bottom:18px;
}

.descripcion{
    line-height:1.6;
}

.btn-contacto,
.btn-secundario{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:12px;
    font-weight:900;
    text-decoration:none;
    margin-bottom:12px;
}

.btn-contacto{
    background:#f4d64b;
    color:#111;
}

.btn-secundario{
    background:#111;
    color:#fff;
}

@media(max-width:900px){

.detalle-grid{
    grid-template-columns:1fr;
}

.foto-principal{
    height:320px;
}

}