.property-detail-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.property-gallery-main {
    width: 100%;
    height: 100%;
}

.property-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: #0693e3;
}

.gallery-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.property-detail-page {
    padding: 40px 20px;
}

.property-details-section {
    margin-bottom: 40px;
}

.property-details-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.property-description,
.property-accommodations,
.property-location-desc {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

.property-accommodations h3,
.property-location-desc h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.property-amenities-section {
    margin-top: 40px;
}

.property-amenities-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
}

.amenity-item i {
    color: #0693e3;
}

.property-sidebar {
    position: sticky;
    top: 20px;
}

.property-booking-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 20px;
}

.property-price-card {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.property-price-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.price-display {
    font-size: 24px;
    font-weight: 600;
    color: #0693e3;
}

.property-specs {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #666;
}

.spec-item i {
    color: #0693e3;
    width: 20px;
}

.property-check-times {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.check-time {
    margin-bottom: 8px;
    color: #666;
}

.property-policies {
    margin-bottom: 25px;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.policy-item i.fa-check-circle {
    color: #28a745;
}

.policy-item i.fa-times-circle {
    color: #dc3545;
}

.property-map-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
}

.property-map-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

#property-detail-map {
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .property-sidebar {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
}

