/* ============================================
   PROPERTY DETAIL - RE/MAX Metropolitana
   Estilos del shortcode [propiedad]
   Basados en la guía oficial de estilos
   ============================================ */

/* Variables de la guía de estilos RE/MAX */
:root {
    --remax-blue: #003DA5;
    --remax-blue-dark: #002764;
    --remax-red: #E11B22;
    --remax-red-dark: #DC1C2E;
    --remax-red-darker: #B91726;
    --success-green: #00AB4A;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --text-gray-light: #64748b;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #F5F5F5;
    --border-color: #e5e7eb;
    --border-radius-md: 10px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 32px rgba(0, 61, 165, 0.15);
}

/* ============================================
   CONTAINER PRINCIPAL
   ============================================ */
.mt-prop-detail__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    padding: 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.mt-prop-detail__container > .mt-prop-detail__gallery {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .mt-prop-detail__container {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

.mt-prop-detail__main {
    min-width: 0;
}

/* ============================================
   GALERÍA DE IMÁGENES
   ============================================ */
.mt-prop-detail__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: clamp(112px, 22.4vw, 288px);
    gap: 12px;
    margin: 0 0 24px 0;
    position: relative;
}

.mt-prop-detail__gallery .mt-prop-detail__img {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mt-prop-detail__gallery .mt-prop-detail__img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.mt-prop-detail__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.mt-prop-detail__gallery .mt-prop-detail__img:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .mt-prop-detail__gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 8px;
        margin: 0 0 20px 0;
    }
}

/* Imagen destacada */
.mt-prop-detail__img--featured {
    grid-column: 1 / span 1;
    grid-row: 1 / span 2;
}

/* Variantes de galería según cantidad de imágenes */
.gallery--1 {
    grid-template-columns: 1fr;
}

.gallery--1 .mt-prop-detail__img--featured {
    grid-row: auto;
}

.gallery--2 .mt-prop-detail__img--featured {
    grid-row: 1 / span 2;
}

.gallery--2 .mt-prop-detail__img--thumb:nth-of-type(2) {
    grid-column: 2 / span 1;
    grid-row: 1 / span 2;
}

.gallery--3 .mt-prop-detail__img--thumb {
    grid-column: 2 / span 1;
}

/* Botón "Ver más fotos" */
.mt-gallery__more {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    border: 0;
    border-radius: var(--border-radius-full);
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mt-gallery__more:hover {
    background: var(--remax-blue);
    transform: scale(1.05);
}

/* ============================================
   MODAL DE GALERÍA
   ============================================ */
.mt-gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000;
}

.mt-gallery-modal.is-open {
    display: block;
}

.mt-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(2px);
}

.mt-gallery__wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mt-gallery__view {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.mt-gallery__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: 0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.mt-gallery__close:hover {
    background: var(--remax-blue);
    color: white;
    transform: scale(1.1);
}

.mt-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.mt-gallery__nav:hover {
    background: var(--remax-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.mt-gallery__nav.prev {
    left: 20px;
}

.mt-gallery__nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .mt-gallery__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .mt-gallery__nav {
        width: 44px;
        height: 44px;
    }
    
    .mt-gallery__nav.prev {
        left: 10px;
    }
    
    .mt-gallery__nav.next {
        right: 10px;
    }
}

/* ============================================
   HEADER Y TÍTULO
   ============================================ */
.mt-property-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.mt-prop-detail__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mt-prop-detail__title {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .mt-prop-detail__title {
        font-size: 24px;
    }
}

.mt-prop-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
}

.mt-prop-detail__price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark);
}

.mt-prop-detail__loc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.mt-prop-detail__code {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray-light);
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
}

/* ============================================
   VARIANTES DE NEGOCIO (COLORES DE PRECIO)
   ============================================ */
.is-sale .mt-prop-detail__price,
.is-lease .mt-prop-detail__price,
.is-project .mt-prop-detail__price {
    color: var(--remax-blue);
}

/* ============================================
   BOTONES DE ACCIÓN RÁPIDA
   ============================================ */
.mt-prop-detail__quick-actions {
    display: flex;
    gap: 12px;
    margin: 16px 0 20px 0;
    padding: 0;
}

.mt-prop-detail__quick-actions .mt-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    white-space: nowrap;
}

.mt-prop-detail__quick-actions .mt-btn svg {
    flex-shrink: 0;
}

/* En desktop: ocultar solo el botón de contactar (sidebar ya tiene formulario) */
@media (min-width: 993px) {
    .mt-prop-detail__quick-actions .mt-qa-contact {
        display: none;
    }
    
    .mt-prop-detail__quick-actions .mt-qa-calc {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .mt-prop-detail__quick-actions .mt-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .mt-prop-detail__quick-actions .mt-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   FACTS (CARACTERÍSTICAS)
   ============================================ */
.mt-prop-detail__facts {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.mt-prop-detail__facts ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mt-prop-detail__facts li {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mt-prop-detail__facts li strong {
    color: var(--text-dark);
    font-weight: 700;
}

.mt-facts__icons {
    align-items: center;
}

.mt-facts__icons .mt-icon {
    margin-right: 8px;
    color: var(--remax-blue);
    width: 26px;
    height: 26px;
}

.mt-fact__value {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
}

/* ============================================
   DESCRIPCIÓN
   ============================================ */
.mt-prop-detail__description {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.mt-prop-detail__description p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}

.mt-prop-detail__description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   AMENIDADES
   ============================================ */
.mt-prop-detail__amenities {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin: 0 0 20px 0;
    box-shadow: var(--shadow-sm);
}

.mt-block__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.mt-amenities__group {
    margin: 12px 0;
}

.mt-amenities__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-gray-light);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mt-amenities__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-gray);
}

.feature-chip {
    display: inline-block;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-full);
    padding: 6px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.feature-chip:hover {
    border-color: var(--remax-blue);
    background: white;
}

/* ============================================
   COMPARTIR
   ============================================ */
.mt-prop-detail__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.mt-prop-detail__share a {
    color: var(--remax-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--border-radius-md);
    transition: all 0.2s ease;
}

.mt-prop-detail__share a:hover {
    background: var(--remax-blue);
    color: white;
    text-decoration: none;
}

/* ============================================
   CALCULADORA HIPOTECARIA
   ============================================ */
.mt-prop-detail__mortgage {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.mt-prop-detail__mortgage .mt-mt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .mt-prop-detail__mortgage .mt-mt-grid {
        grid-template-columns: 1fr;
    }
}

.mt-mt-inputs label {
    display: block;
    margin: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.mt-mt-inputs input[type="text"],
.mt-mt-inputs input[type="number"],
.mt-mt-inputs select {
    width: 100%;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 12px 14px;
    background: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mt-mt-inputs input[type="text"]:focus,
.mt-mt-inputs input[type="number"]:focus,
.mt-mt-inputs select:focus {
    outline: none;
    border-color: var(--remax-blue);
    box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.1);
}

/* Slider de pago inicial */
.mt-mt-inputs .mt-mt-down-range {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    margin-bottom: 12px;
    -webkit-appearance: none;
    appearance: none;
}

.mt-mt-inputs .mt-mt-down-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--remax-blue);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 61, 165, 0.3);
    transition: all 0.2s ease;
}

.mt-mt-inputs .mt-mt-down-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 61, 165, 0.4);
}

.mt-mt-inputs .mt-mt-down-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--remax-blue);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 61, 165, 0.3);
}

/* Botón calcular */
.mt-mt-inputs .mt-mt-calc {
    margin-top: 12px;
    appearance: none;
    border: 0;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, var(--remax-blue), var(--remax-blue-dark));
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 20px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 61, 165, 0.25);
    transition: all 0.3s ease;
    width: 100%;
}

.mt-mt-inputs .mt-mt-calc:hover {
    box-shadow: 0 10px 22px rgba(0, 61, 165, 0.3);
    background: linear-gradient(135deg, var(--remax-blue-dark), #001845);
    transform: translateY(-2px);
}

.mt-mt-inputs .mt-mt-calc:active {
    transform: translateY(0);
}

/* Output de resultado */
.mt-mt-output {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-light), white);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.mt-mt-month {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mt-mt-value {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--remax-blue);
}

.mt-mt-output small {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--text-gray-light);
    line-height: 1.5;
    margin-top: 8px;
}

/* Choices.js override para select de banco */
.mt-prop-detail__mortgage .choices {
    margin-bottom: 10px;
}

.mt-prop-detail__mortgage .choices__inner {
    min-height: 44px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 8px 10px;
    box-shadow: none;
    background: white;
}

.mt-prop-detail__mortgage .choices.is-focused .choices__inner {
    border-color: var(--remax-blue);
    box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.1);
}

.mt-prop-detail__mortgage .choices__list--dropdown {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.mt-prop-detail__mortgage .choices__placeholder {
    opacity: 0.7;
}

/* ============================================
   SIDEBAR (CARD DE CONTACTO)
   ============================================ */
.mt-prop-detail__aside {
    position: relative;
}

.mt-prop-detail__aside-inner {
    position: sticky;
    top: 80px;
}

.mt-prop-detail__aside.is-stopped .mt-prop-detail__aside-inner {
    position: absolute;
    top: auto;
}

@media (max-width: 992px) {
    .mt-prop-detail__aside {
        margin-top: 24px;
    }
    .mt-prop-detail__aside-inner {
        position: static;
    }
}

.mt-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.mt-card__brand {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    background: url('../images/remax_metropolitana_logo.png') center/80% no-repeat;
    border: 3px solid var(--remax-red-dark);
    border-radius: 50%;
}

.mt-card__name {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mt-card__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

/* ============================================
   BOTONES
   ============================================ */
.mt-btn {
    display: inline-block;
    text-align: center;
    border-radius: var(--border-radius-md);
    padding: 14px 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mt-btn--primary {
    background: var(--remax-blue);
    color: white;
    border: none;
}

.mt-btn--primary:hover {
    background: var(--remax-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 61, 165, 0.3);
}

.mt-btn--secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.mt-btn--secondary:hover {
    background: white;
    border-color: var(--remax-blue);
    color: var(--remax-blue);
}

.mt-btn--back {
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
}

/* ============================================
   PROPIEDADES SIMILARES
   ============================================ */
.mt-prop-detail__related {
    margin: 40px 0 0 0;
}

.mt-prop-detail__related .mt-props__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mt-prop-detail__related .mt-prop {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.mt-prop-detail__related .mt-prop:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--remax-blue);
}

.mt-prop-detail__related .mt-prop__media {
    position: relative;
}

.mt-prop-detail__related .mt-prop__slider {
    position: relative;
}

.mt-prop-detail__related .mt-prop__media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: none;
    transition: transform 0.3s ease;
}

.mt-prop-detail__related .mt-prop__media img.is-active {
    display: block;
}

.mt-prop-detail__related .mt-prop:hover .mt-prop__media img.is-active {
    transform: scale(1.05);
}

.mt-prop-detail__related .mt-prop__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 1;
    color: var(--text-dark);
    padding: 0;
    z-index: 2;
}

.mt-prop-detail__related .mt-prop__nav:hover {
    background: var(--remax-blue);
    border-color: var(--remax-blue);
    color: white;
}

.mt-prop-detail__related .mt-prop__nav.prev {
    left: 8px;
}

.mt-prop-detail__related .mt-prop__nav.next {
    right: 8px;
}

.mt-prop-detail__related .mt-prop__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    display: flex;
    gap: 6px;
    justify-content: center;
    z-index: 2;
}

.mt-prop-detail__related .mt-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid white;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.mt-prop-detail__related .mt-dot.is-active {
    background: var(--remax-blue);
    border-color: var(--remax-blue);
}

.mt-prop-detail__related .mt-prop__body {
    padding: 16px;
}

.mt-prop-detail__related .mt-prop__price {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--text-dark);
}

.mt-prop-detail__related .mt-prop__meta {
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.5;
}

.mt-prop-detail__related .mt-prop__code {
    color: var(--text-gray-light);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    margin-top: 2px;
}

.mt-prop-detail__related .mt-prop__facts {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.mt-prop-detail__related .mt-prop__facts .mt-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    color: var(--remax-blue);
}

.mt-prop-detail__related .mt-prop__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--remax-blue);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.mt-prop-detail__related .mt-prop__link:hover {
    color: var(--remax-blue-dark);
    gap: 10px;
}

.mt-prop-detail__related .mt-prop__link::after {
    content: '→';
    font-size: 16px;
}

@media (min-width: 768px) {
    .mt-prop-detail__related .mt-props__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mt-prop-detail__related .mt-prop__media img {
        height: 220px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .mt-prop-detail__container {
        padding: 12px;
    }
    
    .mt-prop-detail__head {
        margin-bottom: 20px;
    }
    
    .mt-prop-detail__facts {
        padding: 16px;
    }
    
    .mt-prop-detail__description {
        padding: 20px;
    }
    
    .mt-prop-detail__amenities {
        padding: 20px;
    }
    
    .mt-prop-detail__mortgage {
        padding: 20px;
    }
    
    .mt-prop-detail__related .mt-props__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .mt-prop-detail__title {
        font-size: 22px;
    }
    
    .mt-prop-detail__price {
        font-size: 20px;
    }
    
    .mt-prop-detail__facts ul {
        gap: 12px;
    }
    
    .mt-mt-value {
        font-size: 24px;
    }
}

