
        .prop-page {
            max-width: 1100px;
            margin: 0 auto;
            padding: 28px 5% 60px;
        }
        .prop-breadcrumb {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 18px;
        }
        .prop-breadcrumb a {
            color: var(--accent-text);
            text-decoration: none;
        }
        .prop-breadcrumb a:hover { text-decoration: underline; }

        .prop-page h1 {
            font-size: clamp(1.6rem, 3.6vw, 2.5rem);
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .prop-meta-line {
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 10px 22px;
            margin-bottom: 24px;
        }
        .prop-precio {
            font-family: 'Manrope', sans-serif;
            font-variant-numeric: tabular-nums;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--accent);
        }
        .prop-ubicacion {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Galería: carrusel nativo con scroll-snap (sin JS, compatible con la CSP) */
        .prop-galeria {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            border-radius: 16px;
            margin-bottom: 10px;
            scrollbar-color: var(--accent) transparent;
        }
        .prop-galeria img {
            flex: 0 0 min(88%, 780px);
            width: min(88%, 780px);
            aspect-ratio: 16 / 10;
            object-fit: cover;
            border-radius: 16px;
            scroll-snap-align: center;
            background: var(--surface-mid);
        }
        .prop-galeria-hint {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .prop-layout {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 36px;
            align-items: start;
        }

        .prop-specs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 12px;
            margin: 0 0 28px;
        }
        .prop-spec {
            background: #fff;
            border: 1px solid rgba(15,30,48,0.08);
            border-radius: 14px;
            padding: 14px 16px;
            box-shadow: 0 1px 2px rgba(15,30,48,0.04);
        }
        .prop-spec dt {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .prop-spec dd {
            margin: 0;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            color: var(--text-light);
            font-size: 1.05rem;
        }

        .prop-descripcion h2 {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        .prop-descripcion p {
            color: var(--text-light);
            line-height: 1.75;
            margin-bottom: 14px;
            font-size: 0.97rem;
        }

        /* Panel de contacto pegajoso */
        .prop-contacto {
            position: sticky;
            top: 96px;
            background: linear-gradient(165deg, #143154 0%, #1e4070 100%);
            color: #eef3f8;
            border-radius: 18px;
            padding: 26px;
            box-shadow: 0 22px 48px -22px rgba(15,30,48,0.55);
        }
        .prop-contacto h2 {
            color: #fff;
            font-size: 1.15rem;
            margin-bottom: 6px;
        }
        .prop-contacto p {
            color: rgba(238,243,248,0.78);
            font-size: 0.88rem;
            line-height: 1.55;
            margin-bottom: 18px;
        }
        .btn-whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            background: #25D366;
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
        }
        .prop-contacto .volver {
            display: block;
            text-align: center;
            margin-top: 14px;
            color: var(--gold-light);
            font-size: 0.85rem;
            text-decoration: none;
        }
        .prop-contacto .volver:hover { text-decoration: underline; }

        @media (max-width: 860px) {
            .prop-layout { grid-template-columns: 1fr; }
            .prop-contacto { position: static; }
        }
        @media (prefers-reduced-motion: reduce) {
            .prop-galeria { scroll-behavior: auto; }
            .btn-whatsapp:hover { transform: none; }
        }
