/* Global hide print-featured-img */
.print-featured-img { display: none; }

/* ═══════════════════════════════════════════════════════════════
   UNAGUI PROP — Single Property (Houzez Inspired)
   All styles class-based, no inline CSS.
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
    --up-primary: #00aeef;
    --up-primary-dk: #0091c7;
    --up-green: #34d399;
    --up-text: #1e293b;
    --up-muted: #64748b;
    --up-border: #e2e8f0;
    --up-bg-light: #f8fafc;
    --up-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    --up-radius: 0px;
}

body {
    background-color: #f7f8f9;
}

/* ─── RESET ─── */
.single-property-page {
    background: #f7f8f9;
}

/* ═══════════════════════════════════
   CUSTOM HEADER (Houzez Style)
   ═══════════════════════════════════ */
.prop-custom-header {
    background: #fff;
    padding: 30px 0;
    font-family: var(--unagui-font);
    border-bottom: 1px solid var(--up-border);
}

/* Breadcrumbs & Actions */
.prop-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.prop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4b5563;
}

.prop-breadcrumb a {
    color: var(--up-primary);
    text-decoration: none;
}

.prop-breadcrumb a:hover {
    text-decoration: underline;
}

.prop-breadcrumb .prop-sep {
    color: #9ca3af;
}

.prop-breadcrumb .prop-current {
    color: #9ca3af;
}

.prop-address-wrap svg {
    width: 16px;
    height: 16px;
    color: var(--up-primary);
}

.prop-header-dates {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
    margin-bottom: 5px;
}

.prop-date-item {
    font-size: 12px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.prop-date-item svg {
    color: #94a3b8;
    margin-bottom: 3px;
}

.prop-icon-home {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.prop-actions {
    display: flex;
    gap: 8px;
}

.prop-action-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s ease;
}

.prop-action-btn:hover {
    border-color: #9ca3af;
    background: #f3f4f6;
    color: #111827;
}

.prop-action-btn svg {
    width: 16px;
    height: 16px;
}

/* Title & Price */
.prop-header-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 15px;
}

.prop-title-wrap {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .prop-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
    line-height: 1.2;
}

.prop-price {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.prop-price span {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
    margin-left: 4px;
}

.prop-prices-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}

.prop-price-consult {
    font-size: 24px;
    color: #1e293b;
}

/* Address Map Pin */
.prop-address-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 5px;
}

.prop-icon-pin {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #94a3b8;
}

/* Badges */
.prop-badges-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prop-badge { display: none !important; }
    #searchform, .search-form, .unagui-prop-buscador-wrapper { display: none !important; }
    .prop-map-embed { display: block !important; }
    .prop-videos-card { display: none !important; }

.prop-badge-sale {
    background: var(--up-primary);
    color: #fff;
}

.prop-badge-rent {
    background: #54c12c;
    color: #fff;
}

.prop-badge-temp {
    background: #f59e0b;
    color: #fff;
}

.prop-badge-status {
    background: #6b7280;
    color: #fff;
}

/* ═══════════════════════════════════
   GALLERY
   ═══════════════════════════════════ */
.prop-gallery-block {
    margin-bottom: 30px;
}

.prop-gallery-main {
    border-radius: var(--up-radius);
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
    position: relative;
    box-shadow: var(--up-shadow);
}

.prop-gallery-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.2s;
}

.prop-gallery-main img:hover {
    opacity: 0.95;
}

.prop-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.prop-gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.prop-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.prop-thumb {
    flex: 0 0 auto;
    width: 85px;
    height: 85px;
    max-width: 85px;
    max-height: 85px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0.6;
}

.prop-thumb.active,
.prop-thumb:hover {
    opacity: 1;
}

.prop-gal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--up-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.prop-gal-nav:hover {
    background: var(--up-primary-dk);
}

.prop-gal-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.prop-gal-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.prop-gal-nav span {
    font-size: 24px;
    color: #fff;
    width: 24px;
    height: 24px;
}

.prop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image Modal */
.prop-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prop-image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.prop-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
}

/* ═══════════════════════════════════
   CARDS & PANELS
   ═══════════════════════════════════ */
.prop-card {
    background: #fff;
    /*
    border: 1px solid var(--up-border);
    */
    border-radius: var(--up-radius);
    padding: 30px;
    margin-bottom: 30px;
    /*
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    */
}

.prop-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.prop-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--up-text);
    margin: 0;
}

.prop-card-id {
    font-size: 12px;
    color: var(--up-text);
    font-weight: 700;
}

.prop-card-id span {
    font-weight: 400;
    color: var(--up-muted);
}

.prop-card-sep {
    height: 1px;
    background: #f1f5f9;
    margin: 0 -30px 25px -30px;
}

.prop-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
    align-items: start;
}

.prop-stat {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.prop-stat-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    flex-shrink: 0;
    font-size: 22px;
}

.prop-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prop-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--up-text);
    line-height: 1.2;
}

.prop-stat-label {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
}

/* ═══════════════════════════════════
   MAIN CONTENT GRID
   ═══════════════════════════════════ */
.prop-body-section {
    padding: 50px 0;
}

.prop-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 40px;
    align-items: start;
}

.prop-main-column {
    min-width: 0;
}

/* ═══════════════════════════════════
   SECTIONS
   ═══════════════════════════════════ */
.prop-section {
    margin-bottom: 44px;
}

.prop-section-heading {
    font-size: 19px;
    font-weight: 700;
    color: var(--up-text);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--up-border);
    position: relative;
}

.prop-section-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--up-primary);
}

/* Description */
.prop-description {
    font-size: 14px;
    line-height: 1.85;
    color: #4b5563;
}

.prop-btn-maps {
    background: #00aeef;
    color: #fff;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.prop-btn-maps:hover {
    background: #0091c7;
    color: #fff;
}

.prop-btn-maps .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Details Table */
.prop-details-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 0;
}

.prop-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 10px;
}

.prop-detail-label {
    font-weight: 600;
    color: var(--up-text);
    font-size: 14px;
    flex-shrink: 0;
}

.prop-detail-value {
    color: var(--up-muted);
    font-size: 14px;
    text-align: right;
}

/* Features: Services & Amenities */
.prop-features-section {
    margin-bottom: 30px;
}

.prop-features-section:last-child {
    margin-bottom: 0;
}

.prop-features-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: var(--up-text);
    margin-bottom: 20px;
    border-left: 3px solid var(--up-primary);
    padding-left: 12px;
    line-height: 1;
}

.prop-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
}

.prop-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prop-feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--up-primary);
    background: #fff;
    flex-shrink: 0;
}

.prop-feature-name {
    font-size: 14px;
    color: #475569;
}

/* Amenities Taxonomy (Deprecated in favor of split Grid) */
.prop-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.prop-amenity {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--up-text);
}

.prop-amenity-check {
    color: var(--up-green);
    font-size: 16px;
    flex-shrink: 0;
}

/* Videos */
.prop-videos-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prop-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--up-radius);
}

.prop-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.prop-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--up-primary);
    font-weight: 600;
}

/* Map */
.prop-map-embed {
    border-radius: var(--up-radius);
    overflow: hidden;
    height: 300px;
}

.prop-map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.prop-map-static {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--up-radius);
    display: block;
}

/* ═══════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════ */
.prop-sidebar-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Agent Card */
.prop-agent-card.prop-sidebar-card {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 20px;
    padding: 24px;
    align-items: flex-start;
    background: #fff;
    box-shadow: var(--up-shadow);
    border: 1px solid var(--up-border);
}

.prop-agent-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--up-border);
}

.prop-agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prop-agent-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prop-agent-info {
    margin-bottom: 5px;
}

.prop-agent-name {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--up-text);
}

.prop-agent-cmcp {
    font-size: 11px;
    color: var(--up-muted);
    margin-top: 2px;
}

.prop-agent-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 5px;
}

.prop-agent-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
}

.prop-agent-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.prop-agent-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #fff !important;
    margin: 0;
}

/* Brand Colors */
.btn-whatsapp { background-color: #25D366; }
.btn-phone    { background-color: #0073aa; }
.btn-email    { background-color: #ea4335; }


.prop-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
    z-index: 100;
}

.prop-sidebar-card {
    background: #fff;
    border-radius: var(--up-radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.prop-sidebar-title-wrap {
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--up-border);
}

.prop-sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--up-dark, #0f172a);
    margin: 0;
}

.prop-sidebar-tabs {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--up-border);
}

.prop-tab-btn {
    flex: 1;
    padding: 16px 10px;
    border: none;
    border-top: 3px solid transparent;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: var(--up-muted);
    transition: all 0.2s;
    font-family: inherit;
}

.prop-tab-btn.active {
    background: #fff;
    color: var(--up-primary);
    border-top-color: var(--up-primary);
}

.prop-sidebar-body {
    padding: 20px 24px 24px;
}

.prop-form-group {
    margin-bottom: 14px;
}

.prop-two-col {
    display: flex;
    gap: 10px;
}

.prop-two-col>div {
    flex: 1;
}

.prop-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--up-border);
    border-radius: 6px;
    font-size: 14px;
    color: var(--up-text);
    /*
    background: #f8fafc;
    */
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.prop-input:focus {
    outline: none;
    border-color: var(--up-primary);
    background: #fff;
}

.prop-submit-btn {
    width: 100%;
    padding: 14px;
    background: #22c55e;
    /* Green like form image */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
    font-family: inherit;
}

.prop-submit-btn:hover:not(:disabled) {
    background: #16a34a;
}

.prop-submit-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
}

.prop-form-response {
    margin-top: 14px;
    font-size: 13px;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
}

.prop-response-ok {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.prop-response-err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 991px) {
    .prop-content-grid {
        grid-template-columns: 1fr;
    }

    .prop-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .prop-features-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .prop-sidebar-card {
        position: static;
        top: 0;
    }
}

@media (max-width: 768px) {
    .prop-details-table {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .prop-header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .prop-header-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .prop-stats-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .prop-title {
        font-size: 22px;
    }

    .prop-price-amount {
        font-size: 24px;
    }

    .prop-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═══════════════════════════════════
   SIMILAR LISTINGS (Houzez Inspired)
   ═══════════════════════════════════ */
.prop-similar-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.prop-similar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--up-text);
    margin-bottom: 25px;
}

.prop-similar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.prop-similar-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.prop-similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Header & Overlays */
.prop-sim-header {
    position: relative;
    height: 220px;
    background: #000;
}

.prop-sim-img-link {
    display: block;
    height: 100%;
}

.prop-sim-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.prop-similar-card:hover .prop-sim-img-link img {
    opacity: 0.85;
}

.prop-sim-badges-top {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.prop-sim-badge {
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale { background: var(--up-primary); }
.badge-rent { background: #111; }

.prop-sim-price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.prop-sim-price {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.prop-sim-actions-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.prop-similar-card:hover .prop-sim-actions-overlay {
    opacity: 1;
    transform: translateY(0);
}

.prop-sim-action {
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.prop-sim-action:hover {
    background: var(--up-primary);
}

.prop-sim-action .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Body */
.prop-sim-body {
    padding: 20px;
    flex-grow: 1;
}

.prop-sim-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.prop-sim-title a {
    color: var(--up-text);
    text-decoration: none;
    transition: color 0.2s;
}

.prop-sim-title a:hover {
    color: var(--up-primary);
}

.prop-sim-address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--up-muted);
    margin-bottom: 20px;
}

.prop-sim-address svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.prop-sim-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.prop-sim-feat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--up-text);
}

.prop-sim-feat .dashicons {
    font-size: 16px;
    color: var(--up-muted);
}

.prop-sim-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prop-sim-type {
    font-size: 12px;
    font-weight: 700;
    color: var(--up-text);
    text-transform: uppercase;
}

.prop-sim-btn {
    background: var(--up-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.prop-sim-btn:hover {
    background: var(--up-primary-dk);
    color: #fff;
}

/* Footer */
.prop-sim-footer {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prop-sim-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prop-sim-agent img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.prop-sim-agent span {
    font-size: 12px;
    color: #475569;
}

.prop-sim-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #94a3b8;
}

.prop-sim-date .dashicons {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

/* ─── BLUEPRINTS / PLANOS FRONTEND ─── */
.prop-blueprints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.prop-blueprint-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid var(--up-border);
    border-radius: 8px;
    padding: 16px 20px;
    text-decoration: none !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.prop-blueprint-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--up-primary);
}

.prop-blueprint-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 174, 239, 0.08); /* 0.08 of --up-primary */
    color: var(--up-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.prop-blueprint-button:hover .prop-blueprint-icon {
    background: var(--up-primary);
    color: #ffffff;
}

.prop-blueprint-icon svg {
    width: 24px;
    height: 24px;
}

.prop-blueprint-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0; /* allows text truncation inside flexbox */
}

.prop-blueprint-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--up-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.prop-blueprint-action {
    font-size: 12px;
    font-weight: 500;
    color: var(--up-muted);
    line-height: 1.2;
    transition: color 0.2s ease;
}

.prop-blueprint-button:hover .prop-blueprint-action {
    color: var(--up-primary);
}
/* Share Modal Styles */
.prop-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.prop-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.prop-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.prop-modal-overlay.active .prop-modal-content {
    transform: translateY(0);
}
.prop-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}
.prop-modal-close:hover { color: #1e293b; }
.prop-modal-content h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
}
.prop-share-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prop-share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    width: 100%;
}
.prop-share-item i { font-size: 18px; }
.prop-share-item.whatsapp { background: #25D366; color: #fff; }
.prop-share-item.whatsapp:hover { background: #1ebd5a; }
.prop-share-item.facebook { background: #1877F2; color: #fff; }
.prop-share-item.facebook:hover { background: #166ada; }
.prop-share-item.twitter { background: #000000; color: #fff; }
.prop-share-item.twitter:hover { background: #333333; }
.prop-share-item.copy-link { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.prop-share-item.copy-link:hover { background: #e2e8f0; color: #1e293b; }

/* Print Styles */
@media print {
    @page { size: A4; margin: 15mm; }
    
    /* Ocultar elementos innecesarios */
    .prop-header-top, 
    .prop-gallery-block, 
    .prop-btn-maps, 
    .prop-sidebar-column, 
    .unagui-prop-video-container, 
    .site-header, 
    .site-footer, 
    #wpadminbar, 
    .prop-share-modal {
        display: none !important;
    }
    
    /* Resetear layout general para impresión */
    body, .single-property-page, .prop-custom-header, .prop-body-section {
        background: #fff !important;
        color: #000 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Mostrar cabecera de impresión */
    .prop-print-header {
        display: block !important;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 2px solid #eee;
    }
    .print-logo {
        max-width: 250px;
        height: auto;
        margin-bottom: 10px;
    }
    .print-contact-info p {
        margin: 5px 0;
        font-size: 12pt;
    }
    .print-featured-img {
        display: block !important;
        width: 150px !important;
        height: 150px !important;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 20px;
    }

    /* Expandir columna principal */
    .prop-content-grid {
        display: block !important;
    }
    .prop-main-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ajustar estilos de tarjetas para impresión */
    .prop-card {
        border: none !important;
        box-shadow: none !important;
        padding: 10px 0 !important;
        margin-bottom: 10px !important;
        page-break-inside: avoid;
    }
    .prop-card-header {
        border-bottom: 1px solid #ddd !important;
        padding-bottom: 5px !important;
        margin-bottom: 10px !important;
    }
    .prop-card-sep { display: none !important; }
    
    .prop-card-title {
        font-size: 16pt !important;
        color: #000 !important;
    }
    .prop-detail-label, .prop-stat-label {
        color: #555 !important;
    }
    .prop-detail-value, .prop-stat-value {
        color: #000 !important;
    }

    /* Ajustar cabecera de título */
    .prop-custom-header {
        background: none !important;
        padding: 0 !important;
        margin-bottom: 10px !important;
    }
    .prop-title {
        font-size: 20pt !important;
        color: #000 !important;
    }
    .prop-price {
        color: #000 !important;
        font-size: 18pt !important;
    }
    .prop-badge {
        border: 1px solid #999 !important;
        background: transparent !important;
        color: #000 !important;
    }
}

/* Custom SVG sizing */
.unagui-custom-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    opacity: 0.8;
}
