/* Redesigned Single Propiedad Styles */

.single-propiedad-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* 1. Header */
.propiedad-header {
    text-align: center;
    margin-bottom: 40px;
}

.propiedad-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.propiedad-header .propiedad-breadcrumb {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 2. Hero Carousel (Rectangular) */
.propiedad-visuals {
    margin-bottom: 50px;
}

.propiedad-hero-slider {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    height: 75vh; /* Adjust to screen height */
    min-height: 400px;
}

.hero-image-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Controls Customization */
.propiedad-hero-slider .swiper-button-next,
.propiedad-hero-slider .swiper-button-prev {
    color: #eb8a3a;
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.propiedad-hero-slider .swiper-button-next::after,
.propiedad-hero-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.propiedad-hero-slider .swiper-pagination-bullet-active {
    background: #eb8a3a;
}

/* 3. Summary Section */
.propiedad-info-section {
    margin-bottom: 60px;
}

.propiedad-summary-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.propiedad-summary-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1e293b;
    border-left: 4px solid #eb8a3a;
    padding-left: 15px;
}

.propiedad-description {
    line-height: 1.8;
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.propiedad-materials-note {
    background: #f1f5f9;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #334155;
}

/* 4. Horizontal Highlights Table */
.propiedad-highlights-table {
    display: flex;
    justify-content: space-between;
    background: #3a3b3d;
    color: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    gap: 20px;
}

.highlight-column {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    min-width: 120px;
}

.highlight-column:last-child {
    border-right: none;
}

.highlight-icon {
    font-size: 2rem;
    color: #eb8a3a;
    margin-bottom: 10px;
}

.highlight-icon i.dashicons {
    font-size: 2rem;
    width: auto;
    height: auto;
}

.highlight-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 5px;
}

.highlight-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.highlight-price {
    color: #eb8a3a;
}

/* 5. Plano Section */
.separator-title {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.separator-title::before, .separator-title::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.separator-title span {
    padding: 0 20px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

.plano-display {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.plano-display img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.05));
}

@media (max-width: 768px) {
    .propiedad-header h1 {
        font-size: 2rem;
    }
    .propiedad-highlights-table {
        flex-direction: column;
        align-items: center;
    }
    .highlight-column {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 15px;
        width: 100%;
    }
    .highlight-column:last-child {
        border-bottom: none;
    }
}
