/* =====================================================================
   SINGLE PROPERTY PAGE STYLES
   ===================================================================== */

/* Container */
.pl-single-property .pl-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs (inline in right column) */
.pl-breadcrumbs-inline {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}
.pl-breadcrumbs-inline a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}
.pl-breadcrumbs-inline a:hover {
    color: #34a4df;
}
.pl-breadcrumb-sep {
    margin: 0 6px;
    color: #adb5bd;
}

/* Hero Section: 2-column layout */
.pl-hero-section {
    padding: 30px 0 20px;
}
.pl-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column: Gallery */
.pl-hero-left {
    width: 100%;
}
.pl-gallery-main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}
.pl-gallery-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 500px;
}
.pl-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.pl-gallery-thumb {
    flex: 0 0 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.7;
}
.pl-gallery-thumb.active {
    border-color: #34a4df;
    opacity: 1;
}
.pl-gallery-thumb:hover {
    opacity: 1;
}
.pl-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Column */
.pl-hero-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}
.pl-single-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.2;
}

/* Stats Row with Icons (horizontal) */
.pl-stats-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 10px 0;
}
.pl-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pl-stat-item .pl-icon {
    width: 28px;
    height: 28px;
    color: #495057;
}
.pl-stat-info {
    display: flex;
    flex-direction: column;
}
.pl-stat-value {
    font-weight: 700;
    font-size: 20px;
    color: #1a1a2e;
    line-height: 1.2;
}
.pl-stat-label {
    font-size: 13px;
    color: #6c757d;
}

/* Section Links */
.pl-section-links {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
}
.pl-section-link {
    color: #34a4df;
    text-decoration: underline;
    font-size: 15px;
    font-weight: 500;
}
.pl-section-link:hover {
    color: #2889b8;
}
.pl-section-link-sep {
    margin: 0 10px;
    color: #adb5bd;
}

/* Intro text in hero right column */
.pl-hero-intro {
    margin: 10px 0;
}
.pl-hero-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

/* Factory Package note in hero */
.pl-hero-package-note {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

/* Estimated Price in hero */
.pl-hero-price {
    display: inherit;
    flex-direction: column;
    gap: 12px;
    margin: 5px 0;
	justify-content: center;
}
.pl-hero-price-label {
    font-size:18px;
    color: #6c757d;
    font-weight: 500;
}
.pl-hero-price-value {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.2;
}

/* Hero Actions (Contact/Share in right column) */
.pl-hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

/* Property Header (below hero) */
.pl-property-header {
    padding: 30px 0 20px;
    border-bottom: 1px solid #e9ecef;
}
.pl-single-title-sub {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px;
    line-height: 1.2;
}
.pl-single-location {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

/* Intro Section */
.pl-intro-section {
    padding: 30px 0;
}
.pl-intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    max-width: 800px;
}

/* Description */
.pl-description-section {
    padding: 20px 0 30px;
}
.pl-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
}
.pl-description-content {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}
.pl-description-content p {
    margin-bottom: 15px;
}

/* Features Checklist */
.pl-features-section {
    padding: 20px 0 30px;
}
.pl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.pl-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: background 0.2s;
}
.pl-feature-item.included .pl-feature-icon .pl-icon {
    color: #22c55e;
    width: 20px;
    height: 20px;
}
.pl-feature-item.not-included .pl-feature-icon .pl-icon {
    color: #dc3545;
    width: 20px;
    height: 20px;
}
.pl-feature-item.not-included .pl-feature-label {
    color: #999;
    text-decoration: line-through;
}
.pl-feature-label {
    font-size: 15px;
    color: #343a40;
}

/* Factory Package */
.pl-package-section {
    padding: 30px 0;
    background: #f8f9fa;
    margin: 20px 0;
}
.pl-package-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.pl-package-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}
.pl-package-check .pl-icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
}
.pl-package-link {
    display: inline-block;
    color: #34a4df;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}
.pl-package-link:hover {
    color: #2889b8;
}

/* CTA Section */
.pl-cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #1a1a2e;
    padding: 80px 0;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}
.pl-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.75);
}
.pl-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.pl-cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.pl-cta-subheading {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 30px;
}
.pl-cta-button {
    display: inline-block;
    background: #34a4df;
    color: #fff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.pl-cta-button:hover {
    background: #2889b8;
    transform: translateY(-2px);
    color: #fff;
}

.pl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.pl-btn-primary {
    background: #34a4df;
    color: #fff!important;
    border-color: #34a4df;
}
.pl-btn-primary:hover {
    background: #2889b8;
    border-color: #2889b8;
    color: #fff;
}
.pl-btn-outline {
    background: transparent;
    color: #34a4df;
    border-color: #34a4df;
}
.pl-btn-outline:hover {
    background:#c19952;
    color: #fff!important;
}
.pl-btn-outline .pl-icon {
    width: 18px;
    height: 18px;
}

/* Pricing / Preisangaben */
.pl-pricing-section {
    padding: 30px 0;
}
.pl-pricing-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

/* Related Properties */
.pl-related-section {
    padding:1px 0 1px;
    border-top: 1px solid #e9ecef;
}
.pl-related-section .pl-property-grid.pl-columns-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 992px) {
    .pl-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pl-package-list {
        grid-template-columns: 1fr;
    }
    .pl-related-section .pl-property-grid.pl-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pl-cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .pl-hero-grid {
        grid-template-columns: 1fr;
    }
    .pl-single-title {
        font-size: 24px;
    }
    .pl-stats-row {
        gap: 15px;
    }
    .pl-stat-value {
        font-size: 16px;
    }
    .pl-stat-item .pl-icon {
        width: 22px;
        height: 22px;
    }
    .pl-features-grid {
        grid-template-columns: 1fr;
    }
    .pl-gallery-thumb {
        flex: 0 0 80px;
        height: 55px;
    }
    .pl-cta-section {
        padding: 50px 0;
    }
    .pl-cta-heading {
        font-size: 22px;
    }
    .pl-hero-actions {
        flex-direction: column;
    }
    .pl-btn {
        width: 100%;
        justify-content: center;
    }
    .pl-related-section .pl-property-grid.pl-columns-4 {
        grid-template-columns: 1fr;
    }
}
