.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.listing-title-group h1 {
    font-size: 32px;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: var(--ink);
}
.listing-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-muted);
}
.listing-meta .rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ink);
    font-weight: 600;
}
.listing-meta .rating svg {
    color: #fbbf24;
    fill: #fbbf24;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 8px;
    height: 360px;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: filter 0.2s;
}
.gallery-grid img:hover {
    filter: brightness(0.9);
}
.gallery-grid.count-1 { grid-template-columns: 1fr; }
.gallery-grid.count-2 { grid-template-columns: 1fr 1fr; }
.gallery-grid.count-3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid.count-3 .img-0 { grid-row: 1 / span 2; }
.gallery-grid.count-4 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid.count-4 .img-0 { grid-row: 1 / span 2; }
.gallery-grid.count-4 .img-1 { grid-column: 2; grid-row: 1; }
.gallery-grid.count-4 .img-2 { grid-column: 2; grid-row: 2; }
.gallery-grid.count-4 .img-3 { grid-column: 3; grid-row: 1 / span 2; }
.gallery-grid.count-5 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.gallery-grid.count-5 .img-0 { grid-row: 1 / span 2; }

.btn-view-all {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: white;
    color: var(--ink);
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}
.btn-view-all:hover {
    background: #f8fafc;
}

/* Layout Grid */
.listing-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 992px) {
    .listing-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        height: 200px;
    }
    .listing-title-group h1 {
        font-size: 21px;
    }
}

/* Content Sections */
.listing-section {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
}
.listing-section:last-child {
    border-bottom: none;
}
.listing-section h2 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--ink);
}

/* Quick Facts */
.quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fact-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}
.fact-text {
    font-size: 15px;
    color: var(--ink);
}
.fact-text strong {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Sticky Booking Widget */
.booking-widget {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: sticky;
    top: 24px;
}
.booking-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 24px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}
.lightbox.active {
    display: flex;
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
}
.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
}
.lightbox-content img.active {
    display: block;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-counter {
    position: absolute;
    bottom: -40px;
    font-size: 16px;
    letter-spacing: 2px;
}
