
.venue-photo-page {
    padding: 10px 0 50px;
    background: #fff;
}


/* Breadcrumb */

.venue-photo-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 0 18px;

    font-size: 14px;
    color: #666;
}

.venue-photo-breadcrumb a {
    color: #ed4264;
    text-decoration: none;
}

.venue-photo-breadcrumb span {
    color: #999;
}


/* Header */

.venue-photo-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.venue-photo-header h1 {
    margin: 0;

    font-size: 28px;
    font-weight: 700;

    color: #333;
}

.venue-photo-header p {
    margin: 5px 0 0;

    color: #777;
    font-size: 14px;
}


/* Back button */

.back-to-venue {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 9px 18px;

    border: 1px solid #ed4264;
    border-radius: 25px;

    color: #ed4264;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.2s ease;
}

.back-to-venue:hover {
    background: #ed4264;
    color: #fff;
}


/* =========================================================
   ALL PHOTOS GRID
========================================================= */

.venue-all-photos {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


/* Photo */

.venue-photo-item {
    width: 100%;
    height: 300px;

    overflow: hidden;

    border-radius: 12px;

    background: #f5f5f5;
}

.venue-photo-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.venue-photo-item:hover img {
    transform: scale(1.04);
}


/* No photos */

.venue-no-photos {
    min-height: 350px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #f7f7f7;

    border-radius: 12px;

    text-align: center;

    color: #888;
}

.venue-no-photos i {
    font-size: 45px;
    color: #ccc;

    margin-bottom: 12px;
}

.venue-no-photos h3 {
    margin: 0 0 5px;

    color: #555;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .venue-all-photos {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .venue-photo-item {
        height: 260px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .venue-photo-page {
        padding-top: 5px;
    }

    .venue-photo-breadcrumb {
        font-size: 12px;

        overflow-x: auto;
        white-space: nowrap;
    }

    .venue-photo-header {
        align-items: flex-start;

        gap: 15px;

        flex-direction: column;

        margin-bottom: 18px;
    }

    .venue-photo-header h1 {
        font-size: 22px;
    }

    .back-to-venue {
        font-size: 13px;
        padding: 8px 15px;
    }

    .venue-all-photos {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .venue-photo-item {
        height: 280px;

        border-radius: 10px;
    }

}
   

.vendor-gallery {
    width: 100%;
    margin: 0;
}


/* =========================================================
   DESKTOP
========================================================= */

.vendor-gallery-desktop {
    width: 100%;
    height: 500px;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 8px;

    overflow: hidden;
}


/* =========================================================
   3+ IMAGES - LEFT MAIN
========================================================= */

.vg-main {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 14px;
}

.vg-main img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.vg-right {
    width: 100%;
    height: 500px;

    display: grid;

    grid-template-rows: 250px 250px;

    gap: 8px;

    overflow: hidden;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.vg-small {
    width: 100%;
    height: 250px;

    overflow: hidden;

    border-radius: 14px;

    position: relative;
}

.vg-small img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   VIEW ALL
========================================================= */

.vg-view-all {
    position: absolute;

    right: 12px;
    bottom: 12px;

    z-index: 20;

    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    background: rgba(0, 0, 0, 0.82);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.vg-view-all:hover {
    color: #fff;
    background: #db2777;
}


/* =========================================================
   2 IMAGES
========================================================= */

.vg-two-image {
    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 14px;
}

.vg-two-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   SINGLE IMAGE / NO GALLERY
========================================================= */

.vg-single {
    width: 100%;
    height: 500px;

    grid-column: 1 / -1;

    overflow: hidden;

    border-radius: 14px;
}

.vg-single img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   MOBILE
========================================================= */

.vendor-gallery-mobile {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .vendor-gallery-desktop {
        height: 450px;
    }

    .vg-main,
    .vg-single,
    .vg-two-image {
        height: 450px;
    }

    .vg-right {
        height: 450px;
        grid-template-rows: 221px 221px;
    }

    .vg-small {
        height: 221px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vendor-gallery-desktop {
        display: none !important;
    }

    .vendor-gallery-mobile {
        display: block;
        width: 100%;
    }

    .vg-slider {
        width: 100%;

        display: flex;

        gap: 10px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .vg-slider::-webkit-scrollbar {
        display: none;
    }

    .vg-slide {
        flex: 0 0 92%;

        width: 92%;

        height: 300px;

        scroll-snap-align: center;

        overflow: hidden;

        border-radius: 14px;
    }

    .vg-slide img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
    }

    .vg-mobile-view-all {
        display: flex;

        width: fit-content;

        margin: 10px 0 0 auto;

        padding: 8px 14px;

        background: #212529;

        color: #fff;

        border-radius: 50px;

        text-decoration: none;

        font-size: 13px;
        font-weight: 600;
    }

    .vg-mobile-view-all:hover {
        color: #fff;
        background: #db2777;
    }

    .vg-mobile-single {
        width: 100%;
        height: 300px;

        overflow: hidden;

        border-radius: 14px;
    }

    .vg-mobile-single img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .vg-slide {
        flex: 0 0 94%;
        width: 94%;
        height: 260px;
    }

    .vg-mobile-single {
        height: 260px;
    }
    /* =========================================================
   MOBILE SLIDER WITH PREV / NEXT BUTTONS
========================================================= */

.vg-mobile-slider-wrapper {
    position: relative;
    width: 100%;
}


/* Slider */

.vg-slider {
    width: 100%;

    display: flex;
    gap: 10px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;

    scroll-behavior: smooth;
}

.vg-slider::-webkit-scrollbar {
    display: none;
}


/* Slide */

.vg-slide {
    flex: 0 0 92%;

    width: 92%;

    height: 300px;

    scroll-snap-align: center;

    overflow: hidden;

    border-radius: 14px;
}

.vg-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   PREV / NEXT BUTTON
========================================================= */

.vg-slider-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);

    transition: all 0.2s ease;
}

.vg-slider-btn:hover {
    background: #db2777;
    color: #fff;
}

.vg-slider-btn i {
    font-size: 14px;
}


/* LEFT */

.vg-slider-prev {
    left: 10px;
}


/* RIGHT */

.vg-slider-next {
    right: 10px;
}


/* =========================================================
   MOBILE VIEW ALL
========================================================= */

.vg-mobile-view-all {
    display: flex;

    width: fit-content;

    margin: 10px 0 0 auto;

    padding: 8px 14px;

    background: #212529;

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;
}

.vg-mobile-view-all:hover {
    color: #fff;
    background: #db2777;
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .vg-slide {
        flex: 0 0 94%;
        width: 94%;
        height: 260px;
    }

    .vg-slider-btn {
        width: 34px;
        height: 34px;
    }

    .vg-slider-prev {
        left: 7px;
    }

    .vg-slider-next {
        right: 7px;
    }
}
}

          .similar-venue-card .vendor-info-wrapper {
                        position: absolute;
                        bottom: 12px;
                        right: 12px;
                        z-index: 10;
                    }

                    .similar-venue-card .vendor-info-trigger {
                        cursor: pointer;
                        width: 26px;
                        height: 26px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: rgba(255, 255, 255, 0.9);
                        color: #334155;
                        border-radius: 50%;
                        font-size: 0.85rem;
                        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
                        transition: all 0.2s ease;
                    }

                    .similar-venue-card .vendor-info-trigger:hover {
                        background: #ffffff;
                        color: #db2777;
                    }

                    .similar-venue-card .vendor-info-tooltip {
                        position: absolute;
                        bottom: 35px;
                        right: 0;
                        width: 260px;
                        background: #ffffff;
                        color: #1e293b;
                        padding: 12px;
                        border-radius: 12px;
                        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
                        border: 1px solid #e2e8f0;
                        opacity: 0;
                        visibility: hidden;
                        transform: translateY(10px);
                        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
                        pointer-events: none;
                    }

                    .similar-venue-card .vendor-info-wrapper:hover .vendor-info-tooltip {
                        opacity: 1;
                        visibility: visible;
                        transform: translateY(0);
                    }

                    .similar-venue-card .bottom-card-badges {
                        position: absolute;
                        bottom: 12px;
                        left: 10px;
                        z-index: 10;
                    }


                    .similar-venue-card .vendor-info-wrapper {
                    position: absolute;
                    bottom: 12px;
                    right: 12px;
                    z-index: 10;
                }

                .similar-venue-card .vendor-info-trigger {
                    cursor: pointer;
                    width: 26px;
                    height: 26px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: rgba(255, 255, 255, 0.9);
                    color: #334155;
                    border-radius: 50%;
                    font-size: 0.85rem;
                    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
                    transition: all 0.2s ease;
                }

                .similar-venue-card .vendor-info-trigger:hover {
                    background: #ffffff;
                    color: #db2777;
                }

                .similar-venue-card .vendor-info-tooltip {
                    position: absolute;
                    bottom: 35px;
                    right: 0;
                    width: 260px;
                    background: #ffffff;
                    color: #1e293b;
                    padding: 12px;
                    border-radius: 12px;
                    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
                    border: 1px solid #e2e8f0;
                    opacity: 0;
                    visibility: hidden;
                    transform: translateY(10px);
                    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
                    pointer-events: none;
                }

                .similar-venue-card .vendor-info-wrapper:hover .vendor-info-tooltip {
                    opacity: 1;
                    visibility: visible;
                    transform: translateY(0);
                }

                .similar-venue-card .bottom-card-badges {
                    position: absolute;
                    bottom: 12px;
                    left: 10px;
                    z-index: 10;
                }

                /* =========================================================
       VENUE GALLERY
    ========================================================= */

                .venue-gallery-wrapper {
                    width: 100%;
                    margin-bottom: 25px;
                }


                /* =========================================================
       DESKTOP GALLERY
    ========================================================= */

                .venue-gallery-desktop {
                    width: 100%;
                    height: 500px;

                    display: grid;
                    grid-template-columns: 2fr 1fr;

                    gap: 6px;

                    overflow: hidden;
                    border-radius: 14px;
                }


                /* =========================================================
       MAIN LARGE IMAGE
    ========================================================= */

                .venue-gallery-main {
                    width: 100%;
                    height: 500px;
                    overflow: hidden;
                    border-radius: 14px;
                }


                .venue-gallery-main img {
                    width: 100%;
                    height: 500px;

                    display: block;

                    object-fit: cover;

                    transition: transform 0.4s ease;
                }


                .venue-gallery-main:hover img {
                    transform: scale(1.02);
                }


                /* =========================================================
       RIGHT SIDE
    ========================================================= */

                .venue-gallery-side {
                    width: 100%;
                    height: 500px;
                    display: grid;
                    grid-template-rows: 1fr 1fr;
                    overflow: hidden;
                    gap: 6px;
                }


                /* =========================================================
       SIDE IMAGE
    ========================================================= */

                .venue-gallery-side-image {
                    position: relative;
                    width: 100%;
                    height: 247px;
                    overflow: hidden;
                    border-radius: 14px;
                }


                .venue-gallery-side-image img {
                    width: 100%;
                    height: 100%;

                    display: block;

                    object-fit: cover;

                    transition: transform 0.4s ease;
                }


                .venue-gallery-side-image:hover img {
                    transform: scale(1.02);
                }


                /* =========================================================
       VIEW ALL PHOTOS BUTTON
    ========================================================= */

                .venue-view-all-btn {
                    position: absolute;

                    right: 12px;
                    bottom: 12px;

                    display: inline-flex;

                    align-items: center;
                    justify-content: center;

                    gap: 7px;

                    padding: 9px 13px;

                    border: 0;
                    border-radius: 20px;

                    background: rgba(0, 0, 0, 0.75);

                    color: #ffffff;

                    font-size: 12px;
                    font-weight: 600;

                    cursor: pointer;

                    transition:
                        background 0.2s ease,
                        transform 0.2s ease;
                }          


                .venue-view-all-btn i {
                    font-size: 11px;
                }


                /* =========================================================
       SINGLE IMAGE
    ========================================================= */

                .venue-gallery-single {
                    width: 100%;
                    height: 500px;

                    overflow: hidden;

                    border-radius: 14px;
                }


                .venue-gallery-single img {
                    width: 100%;
                    height: 100%;

                    display: block;

                    object-fit: cover;
                }


                /* =========================================================
       NO GALLERY
    ========================================================= */

                .venue-gallery-empty {
                    width: 100%;
                }


                .venue-gallery-placeholder {
                    width: 100%;
                    min-height: 400px;

                    display: flex;

                    flex-direction: column;

                    align-items: center;
                    justify-content: center;

                    gap: 10px;

                    border-radius: 14px;

                    background: #f5f5f5;

                    color: #999999;

                    font-size: 15px;
                }


                .venue-gallery-placeholder i {
                    font-size: 42px;
                    color: #cccccc;
                }


                /* =========================================================
       MOBILE GALLERY
    ========================================================= */

                .venue-gallery-mobile {
                    display: none;

                    position: relative;

                    width: 100%;

                    overflow: hidden;

                    border-radius: 12px;
                }


                .venue-gallery-mobile .carousel-item {
                    width: 100%;

                    height: 300px;
                }


                .venue-gallery-mobile .carousel-item img {
                    width: 100%;
                    height: 100%;

                    object-fit: cover;
                }


                /* =========================================================
       MOBILE PHOTO COUNT
    ========================================================= */

                .venue-mobile-photo-count {
                    position: absolute;

                    right: 12px;
                    bottom: 12px;

                    z-index: 5;

                    display: flex;

                    align-items: center;

                    gap: 6px;

                    padding: 7px 11px;

                    border-radius: 20px;

                    background: rgba(0, 0, 0, 0.7);

                    color: #ffffff;

                    font-size: 12px;
                    font-weight: 600;
                }


                /* =========================================================
       MOBILE CONTROLS
    ========================================================= */

                .venue-gallery-mobile .carousel-control-prev,
                .venue-gallery-mobile .carousel-control-next {
                    width: 40px;

                    opacity: 1;
                }


                .venue-gallery-mobile .carousel-control-prev-icon,
                .venue-gallery-mobile .carousel-control-next-icon {
                    width: 30px;
                    height: 30px;

                    padding: 7px;

                    border-radius: 50%;

                    background-color: rgba(0, 0, 0, 0.55);

                    background-size: 55%;
                }


                /* =========================================================
       TABLET
    ========================================================= */

                @media (max-width: 991.98px) {

                    .venue-gallery-desktop {
                        display: none;
                    }

                    .venue-gallery-mobile {
                        display: block;
                    }

                    .venue-gallery-single {
                        height: 350px;
                    }

                }


                /* =========================================================
       MOBILE
    ========================================================= */

                @media (max-width: 575.98px) {

                    .venue-gallery-mobile {
                        border-radius: 10px;
                    }

                    .venue-gallery-mobile .carousel-item {
                        height: 260px;
                    }

                    .venue-gallery-single {
                        height: 260px;
                        border-radius: 10px;
                    }

                    .venue-gallery-placeholder {
                        min-height: 260px;
                        border-radius: 10px;
                    }

                }

                .venue-view-all-btn {
                    position: absolute;
                    right: 12px;
                    bottom: 12px;

                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 7px;

                    padding: 9px 13px;

                    border: 0;
                    border-radius: 20px;

                    background: rgba(0, 0, 0, 0.75);

                    color: #fff;
                    font-size: 12px;
                    font-weight: 600;

                    text-decoration: none;

                    cursor: pointer;
                    transition: all 0.2s ease;
                }

                .venue-view-all-btn:hover {
                    background: rgba(0, 0, 0, 0.9);
                    color: #fff;
                    transform: translateY(-2px);
                }
           