


.share-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;

}

.share-link a {
    margin-left: 8px;
    font-size: 16px;
    font-family: var(--mr-body-font-family);
    font-weight: 600;
    line-height: 24px;
    color: var(--mr-dark-gray);
}

.mr_top_image_gallery {
    position: relative;
    width: 100%;
    border-radius: var(--mr-border-radius);
    overflow: hidden;
    display: grid;
    grid-template-areas:
        "header-img-large header-img-large header-img-2"
        "header-img-large header-img-large header-img-3";
    gap: 6px;
    margin-bottom: 50px;
}

.header-img-large {
    grid-area: header-img-large;
}

.header-img-2 {
    grid-area: header-img-2;
}

.header-img-3 {
    grid-area: header-img-3;
}

.mr_gallery_item {
    position: relative;
    overflow: hidden;
}

.mr_gallery_item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.01);

    transition: background-color 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.mr_gallery_item:hover::before {
    background-color: rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.mr_gallery_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.show-all-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: calc(var(--mr-border-radius)/2);
    z-index: 10;
    cursor: pointer;

}

.show-all-button:hover {
    background-color: #f0f0f0;
}

.show-all-button p {
    text-decoration: none;
    color: var(--mr-dark-gray);
    font-family: var(--mr-body-font-family);
    font-weight: 500;
    line-height: 24px;
    font-size: 14px;
    margin-left: 8px;
}

/* Content Section*/
.mr_content {
    display: flex;
    gap: 40px;

}

/* Left Column*/
.mr_left_column {
    flex: 2;
}

.mr_left_column_content {
    padding-right: 40px;
}

.mr_title {
    font-family: var(--mr-title-font-family);
    font-size: 34px;
    color: var(--mr-body-font-color);
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 24px;
}

.mr_basic_info_date_location {
    margin-bottom: 40px;
}

.mr_basic_info_date {
    font-family: var(--mr-body-font-family);
    font-weight: 500;
    line-height: 34px;
    color: var(--mr-title-color);
    font-size: 24px;
    margin-bottom: 4px;
}

.mr_basic_info_location {
    font-family: var(--mr-body-font-family);
    font-weight: 400;
    line-height: 26px;
    color: var(--mr-title-color);
    font-size: 20px;
}

/** Booking Count*/
.mr_booking_count {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 4px;
}
.mr_booking_count_text {
    font-family: var(--mr-body-font-family);
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    color: rgb(248, 168, 13);
}

/* Host Section*/
.mr_host_section {
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.mr_host_section .mr_host_img img {
    object-fit: cover;
    object-position: center center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid white;
}

.mr_host_section .mr_hosted_by,
.mr_host_name,
.mr_host_followers {
    font-family: var(--mr-body-font-family);
}

.mr_hosted_by {
    font-size: 10px;
    font-weight: 600;
    line-height: 14px;
    color: var(--mr-light-gray);
    text-transform: uppercase;
}

.mr_host_name a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--mr-title-color);
    text-decoration: none;
}

.mr_host_followers {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--mr-light-gray);
    margin-top: 2px;
}

/* Other basic info  */
.mr_other_basic_info {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.mr_other_basic_info .mr_other_info_row_one,
.mr_other_info_row_two {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}

.mr_other_basic_info_content {
    margin-left: 24px;
    font-family: var(--mr-body-font-family);
    font-weight: 500;
    line-height: 26px;
    color: var(--mr-title-color);
    font-size: 18px;
}

/* Highlight Section */
.mr_highlights {
    margin-top: 24px;
    margin-bottom: 40px;
}

.mr_highlight_title {
    font-family: var(--mr-body-font-family);
    font-weight: 600;
    line-height: 26px;
    color: var(--mr-title-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.mr_highlight_ul {
    margin-inline-start: 16px;
}

.mr_highlight_li {
    font-family: var(--mr-body-font-family);
    font-weight: 300;
    margin-bottom: 6px;
    margin-left: 6px;
    ;
    font-size: 18px;
    line-height: 26px;
}

/* Details Section */

.mr_title {
    font-family: var(--mr-body-font-family);
    font-weight: 700;
    line-height: 33px;
    color: var(--mr-title-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.mr_section_content{
    margin-top: 20px;
    font-family: var(--mr-body-font-family);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--mr-body-font-color);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

}
.mr_details_content p {
    margin-bottom: 1rem;
}
.mr_show_more {
    margin-top: 20px;
    margin-bottom: 40px;
}

.mr_show_more a {
    font-family: var(--mr-body-font-family);
    font-weight: 500;
    line-height: 23px;
    color: var(--mr-title-color);
    font-size: 16px;
    text-decoration: none;
    border-bottom: 2px solid rgb(21, 23, 23);
}
.mr_show_more img {
    margin-inline: 0.5rem 0px;
}

/* Location  */
.mr_section_sub_title {
    font-size : 18px;
    line-height: 23px;
    color: var(--mr-body-font-color);
    font-weight: 600;
    margin-bottom: 20px;
}
.mr_fw_section{

}
.mr_fw_section iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--mr-border-radius);
    margin-bottom: 30px;

}

/** Venue */
.mr_venue_ratings{
    margin-top: -15px;
    margin-bottom: 20px;
}
.mr_venue_rating_count a, .mr_venue_rating_star,.mr_venue_ratings_value{
    font-size: 14px;
    line-height: 19px;
    font-weight: 500;
    color: var(--mr-dark-gray);
}
.mr_one_image{
    margin-bottom: 30px;
    position: relative;
    z-index: 20;
}

.mr_one_image img{
    width: 100%;
    border-radius: var(--mr-border-radius);
    object-fit: cover;

}

.mr_prompt_image_link {
    position: relative;
    display: inline-block;
    /* Ensures the link only takes up the space of the image */
    line-height: 0;
    /* Removes any extra space below the image */
    /* overflow: hidden; */
}

.mr_prompt_image_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.01);
    transition: background-color 0.6s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: var(--mr-border-radius);
}

.mr_prompt_image_link:hover::before {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: var(--mr-border-radius);
}

.mr_prompt_image_link:hover {
    cursor: pointer;
}

.mr_prompt_image_link img {
    display: block;
    /* Removes any default spacing around the image */
    width: 100%;
    height: auto;
}

/*
    Meals Section
*/
.mr_meal_header{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.mr_meal_header_items {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 13px;
}

.mr_meal_header_items img {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.mr_meal_header_items_content_section {
    display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
}

.mr_meal_header_items_content_section h3 {
    margin-bottom: 0;
}

.mr_meal_header_content {
        font-size: 16px;
        line-height: 22px;
        color: var(--mr-light-gray);
        white-space: pre-wrap;
        font-weight: 400;
}




































/* Right column  */

.mr_right_column {
    flex: 1;
    display: flex;
    flex-direction: column;

}

/* Card Info  */
.mr_info_card {
    padding-inline: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px 0px;
    position: sticky;
    top: 104px;
    border-radius: var(--mr-border-radius);

}

.mr_date_duration {
    margin-bottom: 20px;
}

.mr_info_date,
.mr_info_duration {
    margin-bottom: 24px;
}

.mr_card_info_title {
    font-family: var(--mr-body-font-family);
    font-weight: 600;
    line-height: 24px;
}

.mr_card_info_content {
    font-family: var(--mr-body-font-family);
    font-weight: 400;
    line-height: 24px;
    color: var(--mr-body-font-color);
}


.mr_card_info_price_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.mr_card_info_price {
    font-family: var(--mr-body-font-family);
    font-weight: 600;
    font-size: 20px;
    color: var(--mr-title-color);
}

.mr_card_info_price_row_text {
    font-family: var(--mr-body-font-family);
    font-weight: 600;
    line-height: 24px;
    font-size: 10px;
    color: var(--mr-light-gray);
    text-transform: uppercase;
}

.mr_card_info_ca_button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;


}

.mr_book_now {
    width: 100%;
    font-family: var(--mr-body-font-family);
    font-weight: 600;
    line-height: 24px;
    font-size: 18px;
    background-color: var(--mr-accent-green);
    padding: 10px;
    border-radius: var(--mr-border-radius);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.mr_book_now:hover {
    background-color: rgb(5, 161, 132);
    color: white;
}


.mr_card_info_helper_text {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr_card_info_helper_text_content {
    text-align: center;
    font-family: var(--mr-body-font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

}


/* Model */
/* Modal backdrop */
#mr_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;

    /* display: flex; */
    justify-content: center;
    align-items: center;
    
}

/* Modal content */
#mr_modal .mr_model_container{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 80%;
    max-width: 600px;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: var(--mr-border-radius);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
    padding: 40px;
    margin-top: 10%;
    
    
}
#mr_modal .modal-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    /* max-height: 80vh; */
    max-height: calc(100vh - 10rem);
    /* margin: 5% auto; */
    padding: 40px;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: var(--mr-border-radius);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}
#mr_model_header {
    margin-bottom: -10px;
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: start;
}
/* Active class to show modal */
#mr_modal.active {
    display: block;
    opacity: 1;
}
body.mr-modal-open {
    overflow: hidden;
}

/* Animate modal content when active */
#mr_modal.active .modal-content {
    transform: translateY(0);
}

#mr_close_btn{
    padding: 0px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    margin-left: -11px;
    
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
#mr_close_btn:hover {
    background-color: #EFF3F3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
}
#mr_close_btn span{
    font-size: 30px;
    width: 34px;
    /* height: 34px; */
    text-align: center;
}
.mr_model_content > p{
    font-family: var(--mr-body-font-family);
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: var(--mr-body-font-color);

}

#mr_modal_content_section {
    overflow-y: auto;
    max-height: 80vh;
    padding-right: 10px;
    
}
/* Scroller bar  */
#mr_modal_content_section::-webkit-scrollbar {
    width: 8px;
}

#mr_modal_content_section::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.mobile-sticky-bar {
    display: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
        /* height of your sticky bar */
    }
    .mr-container {
        /* padding: 0 16px; */
    }
    .mr_content {
        flex-direction: column;
    }

    .mr_right_column {
        display: none !important;
    }

    .mr_left_column {
        flex: none;
        width: 100%;
    }
    .mr_left_column_content {
        padding-right: 0px;
    }

    /* Image gallery Section  */
    .mr_top_image_gallery {
        grid-template-areas:
            "header-img-large header-img-large"
            "header-img-2 header-img-3";
    }

    .header-img-2,
    .header-img-3,
    .mr_gallery_hidden_imgs {
        /* display: none !important; */
    }

    /* Mobile sticky bar  */
    .mobile-sticky-bar {
        position: fixed;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 1000;
        border-bottom-color: var(--mr-separator-color);
        border-bottom-width: 1px;
        background: white;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px 0px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        pointer-events: none;
        display: block !important;
    }
    .mobile-sticky-bar.visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        /* clickable when shown */
    }
    .mobile-sticky-bar-content{
        display: flex;
        -webkit-box-align : center;
        align-items: center;
        -webkit-box-pack: justify;
        justify-content: space-between;
        flex-direction: row;
        height: 100px;
        padding-inline: 24px;
    }

    .mobile-sticky-bar a {
        color: white;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
    }
}