/* public/css/inmueble-detalle.css */

:root { --naranja: #e05c1a; }

.foto-galeria {
    width: 100%; height: 320px;
    object-fit: cover; border-radius: 14px;
    cursor: pointer;
}
.foto-thumb {
    width: 70px; height: 60px;
    object-fit: cover; border-radius: 8px;
    cursor: pointer; border: 2px solid transparent;
    transition: border-color 0.2s;
}
.foto-thumb.activa { border-color: var(--naranja); }

.precio-grande {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem; font-weight: 800; color: var(--naranja);
}
.precio-mes { font-size: 1rem; color: #888; font-weight: 400; }

.ficha-card { border-radius: 20px; position: sticky; top: 90px; }

.ficha-titulo {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem; font-weight: 700;
}
.ficha-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 0; border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}
.ficha-item i { color: var(--naranja); font-size: 18px; width: 24px; text-align: center; }
.ficha-label  { color: #888; font-size: 12px; }
.ficha-valor  { font-weight: 600; color: #222; }

.btn-wsp-grande {
    background: #25D366; color: #fff; border: none;
    border-radius: 14px; padding: 14px 20px;
    font-size: 16px; font-weight: 700; width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none; transition: background 0.2s;
}
.btn-wsp-grande:hover { background: #1fb855; color: #fff; }

#mapaDetalle { height: 280px; border-radius: 14px; }

.estado-badge {
    display: inline-block; padding: 5px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.estado-disponible { background: #e8f5e9; color: #2e7d32; }
.estado-reservado  { background: #fff3e0; color: #e65100; }
.estado-vendido    { background: #fce4ec; color: #c62828; }
.estado-alquilado  { background: #e3f2fd; color: #1565c0; }
