.single-airbnb_property{background-color:white !important;}
.airbnb-single-container {
    max-width: 1300px !important;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit;
    color: #222;
}

.airbnb-header h1 {
    font-size: 36px !important;
    font-weight: bold !important;
    margin-bottom: 8px;
}

.airbnb-meta-line {
    display: flex;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.airbnb-meta-line span.rating {
    display: flex;
    align-items: center;
}

.airbnb-meta-line .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    margin-right: 4px;
}

/* Gallery Grid */
.airbnb-gallery-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.airbnb-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.show-all-photos {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #e1556e !important;
    border: 1px solid #e1556e;
    border-radius: 8px;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
    z-index: 10;color: #fff;
}

.show-all-photos:hover {
    background: #f7f7f7;
    border-color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.show-all-photos:active {
    transform: translateY(0);
    background: #ebebeb;
}

.show-all-photos .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.airbnb-gallery-grid .main-image {
    height: 100%;
}

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

.airbnb-gallery-grid .side-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 100%;
}

.airbnb-gallery-grid .side-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Layout Columns */
.airbnb-content-columns {
    display: flex;
    gap: 80px;
}

.airbnb-main-content {
    flex: 2;
}

.airbnb-location-summary {
    margin-bottom: 24px;
}

.airbnb-location-summary h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    margin-bottom: 4px;
}

.airbnb-location-summary p {
    font-size: 16px;
    color: #222;
}

.airbnb-rating-bar {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 18px;
}

.rating-item .dashicons {
    color: #ff385c;
}

.rating-count {
    color: #717171;
    font-weight: 400;
}

.airbnb-host-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 0;
    border-top: 1px solid #ddd;
    margin-bottom: 24px;
}

.host-name {
    font-size: 18px;
    font-weight: 600;
}

.airbnb-summary {
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.airbnb-summary h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.details-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.room-details-text {
    color: #717171;
}

.airbnb-section {
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.airbnb-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.details-table {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.detail-row {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-row .label {
    font-weight: 600;
    color: #717171;
    font-size: 14px;
}

.detail-row .value {
    font-size: 16px;
    color: #222;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.amenities-grid li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.amenities-grid li .dashicons {
    margin-right: 10px;
    color: #484848;
}

/* Booking Card */
.booking-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
    position: sticky;
    top: 100px;
}

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

.card-header .price {
    font-size: 22px;
}

.book-button {
    display: block;
    background: #ff385c;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.book-button:hover {
    background: #e31c5f;
    color: #fff;
}

.card-note {
    text-align: center;
    font-size: 14px;
    color: #717171;
}

.airbnb-big-rating {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.airbnb-big-rating .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #222;
    margin-bottom: 10px;
}

.airbnb-big-rating .big-val {
    display: block;
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.rating-subtext {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.airbnb-big-rating p {
    max-width: 400px;
    margin: 0 auto;
    color: #717171;
    font-size: 16px;
}

/* Lightbox */
.airbnb-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    flex-direction: column;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    color: #fff;
    font-size: 16px;
    z-index: 10001;
}

.close-lightbox {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.close-lightbox .dashicons {
    font-size: 20px;
}

.lightbox-counter {
    font-weight: 600;
}

.lightbox-actions .dashicons {
    margin-left: 20px;
    cursor: pointer;
    font-size: 20px;
}

.lightbox-nav-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.prev-lightbox, .next-lightbox {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s;
}

.prev-lightbox:hover, .next-lightbox:hover {
    background: rgba(255,255,255,0.2);
}

.prev-lightbox .dashicons, .next-lightbox .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.airbnb-lightbox-trigger {
    cursor: pointer;
    transition: opacity 0.3s;
}

.airbnb-lightbox-trigger:hover {
    opacity: 0.9;
}

@media (max-width: 950px) {
    .airbnb-content-columns {
        flex-direction: column;
        gap: 40px;
    }

    .airbnb-sidebar {
        order: -1;
        width: 100%;
    }

    .booking-card {
        position: static;
        width: 100%;
        box-sizing: border-box;
    }

    .airbnb-gallery-grid {
        grid-template-columns: 1fr;
        height: 350px;
    }

    .side-images {
        display: none;
    }

    .airbnb-header h1 {
        font-size: 22px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .airbnb-big-rating .big-val {
        font-size: 40px;
    }

    .airbnb-single-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .airbnb-gallery-grid {
        height: 250px;
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
    }
    
    .show-all-photos {
        bottom: 15px;
        right: 15px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .lightbox-header {
        padding: 15px 20px;
        font-size: 14px;
    }

    .prev-lightbox, .next-lightbox {
        width: 36px;
        height: 36px;
    }
}

.show-more-pill {
    background: #DDDDDD;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    color: #222;
    transition: all 0.2s;
    margin-top: 15px;
}

.show-more-pill:hover {
    background: #d0d0d0;
}

/* Modal System */
.airbnb-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.airbnb-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.airbnb-modal-container {
    background: #fff;
    width: 100%;
    max-width: 780px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    overflow: hidden;
}

.airbnb-modal-header {
    padding: 16px 24px;
    display: flex;
    align-items: center;
}

.airbnb-modal-close {
    background: black !important;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.airbnb-modal-close:hover {
    background: #f7f7f7;
}

.airbnb-modal-close .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.airbnb-modal-content {
    padding: 0 32px 32px 32px;
    overflow-y: auto;
    flex: 1;
}

.airbnb-modal-content h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #222;
}

.full-description {
    font-size: 16px;
    line-height: 1.5;
    color: #222;
}

body.airbnb-modal-open {
    overflow: hidden;
}
