@charset "UTF-8";

/* g1 Utilities { color } */
/* g1.1 container-video */
/* g2 Homepage - Buttons */
/* g3 Homepage Select2 - no border */
/* g3.1 Homepage slider-category-icons */
/* g4 Homepage - Section Head -> Line, Dot *
/* g5 Homepage - CategorySwiper  */
/* g6 Homepage - VendorCard Css */
/* g7 Homepage - photographer section */
/* g8 Homepage - how-it-works  */
/* g9 Homepage - Testimonial  */
/* g10 Vendor Listing - Hero  */
/* g11 Vendor Profile Card  */
/* g11.1 Vendor Profile Card - Model  */
/* g12 About Us  */
/* g13 Contact us  */
/* g14 FAQ  */
/* g15 Login  */
/* g16 User Register  */
/* g16 User Register  */
/* g17 Vendor Register  */
/* g18 Account Page  */


:root {
    --primary-slider-color: #f57c20;


    /* About us */
    --brand-orange: #f58220;
    --brand-orange-dark: #e7772e;
    --brand-teal: #0d9488;
    --brand-teal-dark: #143442;
    --brand-blue: #6881af;
    --brand-slate: #6b9aa6;


    /* login */
    --brand-orange: #ff9800;
    --brand-orange-dark: #f0a14a;
    --brand-bg: #f7f4ef;
    --brand-peach: #f9f3eb;
    --brand-blob: #f6dfc6;
    --brand-line: #b9ab99;
    --brand-line-soft: #c2b2a0;

    /* User Registration */
    --brand: #ff8a00;
    --brand-dark: #f27f00;

    /* Right Side */
    --brand-light: #faf4ee;
}



/* -------------------- g1.1 -------------------- */

/* -------------------- g1 -------------------- */
.text-orange {
    color: #F58220;
}

.bg-orange {
    color: #F58220;
    background-color: #F58220 !important;
}

.bg-orange-light {
    color: #F58220;
    background-color: #FFF8F2 !important;
}

.bg-teal {
    color: #3bbfb2;
}


.border-orange {
    border-color: #F58220 !important;
}

.border-cyan {
    border-color: #3bbfb2 !important;
}

.bg-orange-gradient {
    background: linear-gradient(to right, #ff8a00, #ff5e00);
    font-size: 17px;
    border: none;
    border-radius: 12px;
    color: #fff;
}

.bg-orange-gradient:hover {
    /* background: linear-gradient(to right, #ff8a00, #ff5e00); */
    color: #fff;
}


/* -------------------- g2 -------------------- */

/* Homepage - ViewAll well no data is there */
.btn-viewall {
    transition: all 0.25s ease;
}

.btn-viewall:hover {
    background: #ff7a00 !important;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
}


/* -------------------- g3 -------------------- */
.select2-container--default .select2-selection--single {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}


/* -------------------- g3.1 -------------------- */
/* ==========================================
   DESKTOP FEATURED CATEGORY BAR
========================================== */

.featured-category-container {
    /* width: 680px; */
    height: 74px;

    display: flex;

    background: #c3c3c34f;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(1px);

    /* border: 1px solid rgba(255, 255, 255, 0.12); */
    border-radius: 40px;

    overflow: hidden;
}


/* Each desktop category */
.featured-category-item {
    flex: 0 0 136px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 8px 5px;

    border-right: 1px solid rgba(0, 0, 0, 0.45);

    transition: background-color .2s ease;
}

.featured-category-item:last-child {
    border-right: 0;
}


/* Active */
.featured-category-item.active {
    background: #2858f6;
}


/* Hover */
.featured-category-item:not(.active):hover {
    background: #F97B14;
}

.featured-category-item.active:hover {
    background: #2858f6;
}


/* Icon */
.featured-category-icon {
    width: 26px;
    height: 26px;

    object-fit: contain;

    margin-bottom: 3px;

    filter: brightness(0) invert(1);
}


/* Name */
.featured-category-name {
    font-size: 14px;
    font-weight: 500;

    line-height: 1.1;
    text-align: center;

    white-space: nowrap;
}


/* ==========================================
   BELOW MD
   3 CARDS + 2 CARDS
========================================== */

@media (max-width: 767.98px) {

    .featured-category-container {
        width: auto;
        height: auto;

        display: grid;

        grid-template-columns: repeat(3, 74px);

        gap: 8px;

        justify-content: center;
        align-items: center;

        background: transparent;

        backdrop-filter: none;
        -webkit-backdrop-filter: none;

        border: 0;
        border-radius: 0;

        overflow: visible;
    }


    /* Small individual card */
    .featured-category-item {
        width: 74px;
        height: 52px;

        min-width: 0;

        display: flex;

        padding: 4px 2px;

        background: rgba(50, 50, 50, 0.45);

        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: 4px;

        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        box-sizing: border-box;
    }


    .featured-category-item:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.10);
    }


    /* Active mobile card */
    .featured-category-item.active {
        background: #2858f6;
    }


    /* Icon */
    .featured-category-icon {
        width: 20px;
        height: 20px;

        margin-bottom: 2px;
    }


    /* Name */
    .featured-category-name {
        width: 100%;

        font-size: 9px;
        font-weight: 500;

        line-height: 1;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;

        text-align: center;
    }
}


/* ==========================================
   VERY SMALL PHONES
========================================== */

@media (max-width: 360px) {

    .featured-category-container {
        grid-template-columns: repeat(3, 68px);
        gap: 6px;
    }

    .featured-category-item {
        width: 68px;
    }

    .featured-category-name {
        font-size: 8px;
    }
}


/* -------------------- g4 -------------------- */
.line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #ff7a00, transparent);
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #ff7a00;
}


/* -------------------- g5 -------------------- */

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}


.gallery-slider {
    width: 100%;
    height: 340px;
}

.gallery-slider .swiper-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-slider .swiper-slide .swiper-caption {
    border-radius: 8px;
}

.swiper-caption,
.swiper-thumbs {
    height: 100%;
}

.swiper-caption {
    padding-right: 1rem;
    position: relative;
    z-index: 1;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-slider .swiper-slide .swiper-caption__ctg {
    transform: translate3d(0, 45px, 0);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.gallery-slider .swiper-slide:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 60%);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.gallery-slider .swiper-slide-active:after,
.gallery-slider .swiper-slide-duplicate-active:after {
    opacity: 1;
}

.swiper-caption__ctg {
    letter-spacing: 8px;
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: "Tuesday Night";
    color: var(--primary-slider-color);
}

.gallery-slider .swiper-slide .swiper-caption__ttl {
    transform: translate3d(0, 55px, 0);
    opacity: 0;
    transition: all 0.7s ease-out;
}

.gallery-slider .swiper-slide-active .swiper-caption__ctg,
.gallery-slider .swiper-slide-duplicate-active .swiper-caption__ctg {
    opacity: 1;
    transform: none;
}

.gallery-slider .swiper-slide-active .swiper-caption__ttl,
.gallery-slider .swiper-slide-duplicate-active .swiper-caption__ttl {
    opacity: 1;
    transform: none;
}

.swiper-caption__ttl {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: normal;
    color: #333;
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.thumbs-container {
    height: 100%;
    display: flex;
    align-items: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.gallery-thumbs {
    padding: 0;
}

.gallery-thumbs .swiper-slide {
    text-align: center;
    overflow: hidden;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    opacity: 0.5;
    padding: 25px 0;
}

.thumbs-container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ccc;
}

.gallery:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(hsla(0, 0%, 100%, 0.8),
            hsla(0, 0%, 100%, 0.9) 50%,
            var(--white));
}

.gallery-thumbs .swiper-slide:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ccc;
}

.gallery-thumbs .swiper-slide:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-slider-color);
    transition: 0.3s ease;
}

.gallery-thumbs .swiper-slide-active {
    color: var(--primary-slider-color);
    opacity: 1;
}

.gallery-thumbs .swiper-slide-active:after {
    width: 100%;
}

.gallery-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) .swiper-caption {
    visibility: hidden;
}

.swiper-caption {
    transition:
        visibility 0.3s ease,
        opacity 0.4s ease,
        transform 0.4s ease;
}

.gallery-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-duplicate-active) .swiper-caption {
    visibility: hidden;
    opacity: 0;
}


.gallery-slider .swiper-slide.swiper-slide-active .swiper-caption,
.gallery-slider .swiper-slide.swiper-slide-duplicate-active .swiper-caption {
    visibility: visible;
    opacity: 1;
}


.swiper-caption {
    transition:
        opacity 0.6s ease-in-out,
        transform 0.6s ease-in-out;
}

.swiper-slide-active .swiper-caption__ctg,
.swiper-slide-active .swiper-caption__ttl {
    transform: translateY(0);
    opacity: 1;
}

.swiper-caption__ctg {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.swiper-caption__ttl {
    transform: translateY(25px);
    opacity: 0;
    transition: all 0.6s ease;
}

.gallery-thumbs .swiper-slide-active:after {
    background-color: var(--primary-slider-color);
}

.gallery-thumbs .swiper-slide-active:before {
    background-color: var(--primary-slider-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #f48f00 !important;
}

@media (max-width: 767px) {
    .gallery-slider {
        height: 260px;
    }

    .gallery-slider .swiper-slide {
        height: 240px;
    }

    .swiper-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        z-index: 2;
        background: linear-gradient(to top,
                rgba(255, 255, 255, 0.95),
                rgba(255, 255, 255, 0.4),
                transparent);
        box-sizing: border-box;
    }

    .swiper-caption__ttl {
        font-size: 15px;
        line-height: 1.4;
        word-break: break-word;
        white-space: normal;
    }

    .swiper-caption__ctg {
        margin-left: 0;
        letter-spacing: 3px;
        font-size: 12px;
        line-height: 1.2;
        word-break: break-word;
    }

}

/* -------------------- g6 -------------------- */

/* vendor-card-grid */
.vendor-listing-wrap {
    background: #ffffff;
    /* width: 400px; */
    -webkit-transition: all 0.3s ease-in-out;
    /* transition: all 0.5sec ease-in-out; */
}

.vendor-listing-wrap:hover {
    box-shadow: 0 20px 30px 0px #cfcfcf;
}

.featured-status {
    width: 118px;
    padding: 7px 15px 14px 30px;
    background-image: url('/assets/images/frontend/featured-vendor.png');
    right: -9px;
    top: 18px;
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 2;
}

/* vendor image  */
.vendor-img {
    height: 270px;
}

.vendor-img .overlay-box {
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.vendor-img:hover .overlay-box {
    opacity: 1;
}

/* Image zoom effect */
/* .vendor-img .vendor-img-link img {
    transition: transform 0.4s ease-in-out;
}

.vendor-img:hover .vendor-img-link img {
    transform: scale(1.1);
} */



.featured-ribbon {
    top: 15px;
    left: 0;

    font-size: 13px;

    /*  inward cut */
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
}

.featured-ribbon i {
    font-size: 11px;
}

.vendor-listing-wrap:hover .vendor-icon {
    /* background: #D9C2B0; */
    color: #fff;
}

/* like button  */
.like-btn {
    width: 32px;
    height: 32px;

    /* top: 12px;
    right: 22px; */
    z-index: 5;

    cursor: pointer;
    border: 1px solid #ff4d6d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.like-btn:hover {
    transform: scale(1.08);
}

.like-btn i {
    color: #ff4d6d;
    transition: all 0.3s ease;
}

.like-btn:hover i {
    color: #ff4d6d;
}

/* .like-btn.active {
    background: #ff4d6d;
} */


/* vendor icon category */
.vendor-icon-main {
    bottom: -30px;
    left: 16px;
    z-index: 3;

    width: 65px;
    height: 65px;
    border-radius: 100px 100px 0 0;
}


.vendor-icon {
    width: 56px;
    height: 56px;
    border-radius: 100px 100px 0 0;
}

/* Vendor Image */
.vendor-img-link {
    width: 100%;
    height: 100%;
}

.vendor-img-link img {
    width: 100%;
    height: 100%;
}

/* vendor-content */
.vendor-category {
    left: 83px;
    top: -15px
}

.vendor-category a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.vendor-business-name {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.vendor-location a {
    font-size: 14px;
    color: #646464;
    margin-top: 0px;
    line-height: 16px;
}

/* vendor price box  */
.vendor-price p,
h4 {
    font-size: 14px;
    color: #646464;
    margin-top: 0px;
    line-height: 16px;
}


/* Rating */
.rating {
    font-size: 14px;
}

.star-icon {
    font-size: 14px;
}

.rating strong {
    color: #222;
    font-weight: 600;
    font-size: 14px;
}

.review-text {
    color: #888;
    font-size: 14px;
}


/* vendor-card-list */
.vendor-list-wrap {
    transition: all 0.3s ease-in-out;
}

.vendor-list-wrap:hover {
    box-shadow: 0 20px 30px 0px #cfcfcf;
}

.vendor-list {
    max-height: 220px;
    /* border-radius: 0.25rem 0 0 0 !important; */
}


.featured-list-status {
    transform: rotate(180deg) rotateX(180deg);
    width: 115px;
    padding: 7px 15px 14px 30px;
    background-image: url('/assets/images/frontend/featured-vendor.png');
    top: 14px;
    left: 4px;
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.featured-list-status span {
    display: inline-block;
    transform: rotate(180deg) rotateX(180deg);
}

.vendor-icon-main-list {
    /* top: 8px; */
    bottom: 8px;
    right: 20px;

    z-index: 3;

    width: 52px;
    height: 52px;
    border-radius: 100px 100px 100px 100px;
}


.vendor-icon-list {
    width: 45px;
    height: 45px;
    /* border-radius: 100px 100px 0px 100px; */
}

.vendor-icon-list img {
    width: 30px;
}

/* -------------------- g7 -------------------- */

/* Left Side */
.featured-card {
    height: 348px;
}

.featured-card img {
    width: 100%;
    height: 100%;
}


.featured-btn {
    bottom: 19px;
    right: 20px;
    transition: all 0.25s ease;
}

.featured-btn:hover {
    background: #ff7a00 !important;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.25);
}

.featured-content {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.9) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 25px;
    color: #fff;
}

.featured-list-status-home-left {
    transform: rotate(180deg) rotateX(180deg);
    width: 115px;
    padding: 7px 15px 14px 30px;
    background-image: url('/assets/images/frontend/featured-vendor.png');
    top: 14px;
    left: -10px;
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.featured-list-status-home-left span {
    display: inline-block;
    transform: rotate(180deg) rotateX(180deg);
}

.featured-list-status-home-right {
    transform: rotate(180deg) rotateX(180deg);
    width: 115px;
    padding: 7px 15px 14px 30px;
    background-image: url('/assets/images/frontend/featured-vendor.png');
    top: 14px;
    left: -8px;
    color: #ffffff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.featured-list-status-home-right span {
    display: inline-block;
    transform: rotate(180deg) rotateX(180deg);
}


/* Right Side */
.side-card {
    background: #faf9f8;
    height: 50%;

    transition: 0.25s ease;
}

.side-img {
    width: 180px;
    height: 166px;

}

.side-img img {
    width: 100%;
    height: 100%;
}

.btn-side-arrow {
    color: #ff5a1f;
    background: #fff;
    padding: 9px 14px !important;
}

.btn-side-arrow:hover {
    background: #ff5a1f;
    color: #fff;
    border: none !important;
}

.fs-7 {
    font-size: 14px;
}


/* -------------------- g8 -------------------- */

.box {
    width: 316px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/* title */
.title-underline {
    width: 39px;
    height: 1.8px;
}

/* Card 1  */
.badge {
    width: 44px;
    height: 44px;

    top: -20px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);

    background: #f07b3f;
}

.icon-section1 {
    width: 100%;
    height: 130px;
}

.icon-section1 .icon-circle1 {
    width: 100px;
    height: 100px;
    background: #faf4ee;
    color: #f57c20;
}

.icon-section1 .icon-circle1 img {
    width: 44px;
}

.icon-section1 .dot-1 {
    left: 92px;
    top: 36px;

    width: 6px;
    height: 6px;
}

.icon-section1 .dot-2 {
    width: 6px;
    height: 6px;

    right: 91px;
    bottom: 34px;
}

.icon-section1 .arc-ring1 {
    top: 10px;
    right: 100px;

    width: 110px;
    height: 106px;

    border: 2px solid #faeae0;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-44deg);
    opacity: 0.8;
    border-top-color: transparent;
}


/* Bottom wave - Orange */
.bottom-wave1 {
    width: 100%;
    height: 68px;

    border-radius: 90% 90% 20px 20px / 90px 90px 20px 20px;
    background: #faeae0;
}


.bottom-wave1 .bottom-outer-circle1 {
    width: 52px;
    height: 52px;

    top: -55px;
    right: -20px;
    z-index: 10;

    background: #fff;
    border: 1px solid rgba(240, 123, 63, 0.2);
}

.bottom-wave1 img {
    width: 35px;
}

/* Card 2  */
.badge1 {
    width: 44px;
    height: 44px;

    top: -20px;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);

    background: #169A95;
}

.icon-section2 {
    width: 100%;
    height: 130px;
}

.icon-section2 .icon-circle2 {
    width: 100px;
    height: 100px;
    background: #dff0ee;
    color: #3bbfb2;
}

.icon-section2 .icon-circle2 img {
    width: 44px;
}


.icon-section2 .dot-1 {
    left: 92px;
    top: 36px;

    width: 6px;
    height: 6px;
}

.icon-section2 .dot-2 {
    width: 6px;
    height: 6px;

    right: 91px;
    bottom: 34px;
}

.icon-section2 .arc-ring2 {
    top: 10px;
    right: 100px;

    width: 110px;
    height: 106px;

    border: 2px solid #dff0ee;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-44deg);
    opacity: 0.8;
    border-top-color: transparent;
}


/* Bottom wave2 - Cyan */
.bottom-wave2 {
    width: 100%;
    height: 68px;

    border-radius: 90% 90% 20px 20px / 90px 90px 20px 20px;
    background: #dff0ee;
}


.bottom-wave2 .bottom-outer-circle2 {
    width: 48px;
    height: 48px;

    top: -55px;
    right: -20px;
    z-index: 10;

    background: #fff;
    border: 1px solid rgba(59, 191, 178, 0.2);
}

.bottom-wave2 img {
    width: 26px;
}



/* -------------------- g8 -------------------- */
.testimonial .owl-nav {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 55px;
    gap: 15px;
}


.testimonial .owl-carousel .owl-nav button.owl-prev,
.testimonial .owl-carousel .owl-nav button.owl-next {
    position: static !important;

    height: 52px;
    width: 52px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}


.testimonial-card {
    /* min-height: 400px; */
    /* background-color: #FFFFFF; */
    width: 380px;
}

.testimonial-card img {
    width: 40px;
    height: 70px;
}

.testimonial-card .review p {
    min-height: 200px;
    /* font-family: "Roboto"; */
    color: rgb(33 37 41 / 88%) !important;
}

.testimonial-card .name {
    letter-spacing: 0.5px;
}

.testimonial-card .address {
    color: #A4A4A4;
    ;
}

.my-custom-prev {
    width: 50px;
    height: 50px;
}

.my-custom-next {
    width: 50px;
    height: 50px;
}

.bg-testimonial {
    background: #f5f4f97a;
}

/* -------------------- g10 -------------------- */
.hero {
    height: 40vh;
    margin-top: 133px;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}


.hero .overlay {
    height: 40vh;
    margin-top: 133px;

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}


.grid-section,
.list-section {
    padding: 120px 0;
}

/* dusty-cyan */
.btn-dusty-cyan {
    width: 50px;
    height: 50px;

    color: #777;
    background: #fff;
    border: 1px solid #e8e8e8;

    transition: all 0.25s ease;
}

.btn-dusty-cyan.active {
    color: #fff !important;
    background-color: #6897a3;
    border-color: #6897a3;
}

.btn-dusty-cyan:hover {
    color: #6897a3;
    border: 1px solid #6897a3;
}

.search-list {
    overflow-y: auto;
    max-height: 200px;
}

.filter-title {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.filter-box .select2-container--default .select2-selection--single {
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    background: #f8f8f9;
}

.filter .select2-dropdown .select2-dropdown--below {
    border: 1px solid #acacac !important;
}

/* filter btn */
.filter-btn {
    height: 55px;
    width: 178px;
}


/* -------------------- g11 -------------------- */
/* --------- vendor profile ---------- */
.vendor-profile-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.vendor-profile-card:hover {
    box-shadow: 0 20px 30px 0px #cfcfcf;
}


/* Gallery */
.gallery {
    height: 432px;
    overflow: hidden;
}

.gallery-image-wrapper {
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    transform: scale(1.1);
}

.thumbs {
    /* position: absolute; */
    /* bottom: 20px;
    left: 20px;
    right: 20px; */
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    z-index: 5;
}

.thumbs::-webkit-scrollbar {
    display: none;
}

.thumb {
    flex-shrink: 0;
    width: 105px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s ease;
}

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

.thumb.active {
    border: 4px solid #efbf04;
    transform: scale(1.05);
}

.thumb:hover {
    transform: scale(1.04);
}

/* featured badge */
.premium-badge {
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* nav-button */
.nav-btn {
    top: 50%;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 1);

    cursor: pointer;
    z-index: 5;
}

.nav-left {
    left: 20px;
}

.nav-right {
    right: 20px;
}

/* Vendor Info */
.vendor-avatar {
    min-width: 71px;
    width: 71px;
    height: 71px;
}

.verify {
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #d9a441;
    color: #fff;
    font-size: 12px;
}

/* vendor-profile-card - Section -> about, packages, review */
.vendor-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 70px;
    height: 3px;
    background: #f47b20;
    border-radius: 20px;
}

/* =========================================================
   PACKAGES
========================================================= */
.btn-package {
    cursor: pointer;
}

.package-card {
    animation: packageEnter 0.65s ease-out both;
    will-change: opacity, transform;
}

@keyframes packageEnter {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Very subtle stagger */
.package-card:nth-child(1) {
    animation-delay: 0ms;
}

.package-card:nth-child(2) {
    animation-delay: 50ms;
}

.package-card:nth-child(3) {
    animation-delay: 100ms;
}

.package-card:nth-child(4) {
    animation-delay: 150ms;
}

.package-card:nth-child(5) {
    animation-delay: 200ms;
}

.package-card:nth-child(6) {
    animation-delay: 250ms;
}

.package-card:nth-child(7) {
    animation-delay: 300ms;
}

.package-card:nth-child(8) {
    animation-delay: 350ms;
}

.price-side {
    min-width: 150px;
    background: #6897a3;
    color: #fff;
}

.download-btn {
    width: 42px;
    height: 42px;
    margin-top: 18px;
    color: #fff;
    background: #f57c20;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

/* Reviews */
.bg-soft {
    background: #faf7f6;
}

.text-orange {
    color: #f57c20;
}




.progress-bar.bg-orange {
    background-color: #f57c20;
}

.avatar-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.pending-review-card {
    border: 1px solid #f0d8a8;
    background: #fffdf7;
}


/* Right Side */
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon {
    color: var(--brand);
}

.btn-brand {
    background: var(--brand);
    color: #fff;
    width: 100%;
}

.btn-brand:hover {
    color: #fff;
    opacity: .9;
}

.btn-outline-like {
    background: transparent;
    color: var(--brand);
    border: 1px solid var(--brand);
    width: 100%;
}

.btn-outline-like:hover {
    border-color: #dc3545;
    color: #dc3545;
    background: #fff5f5;
}

.btn-outline-like.active {
    background: #ff4d6d;
    border-color: #ff4d6d;
    color: #fff;
}


/* -------------------- g11.1 -------------------- */
.review-container {
    max-height: 445px;
    overflow-y: auto;

    scrollbar-color: #F57C20 #f1f1f1;
    border-radius: 05px;
}


/* -------------------- g12 -------------------- */
.text-brand-orange {
    color: var(--brand-orange) !important;
}

.bg-brand-orange {
    background-color: var(--brand-orange) !important;
}

.bg-brand-orange-subtle {
    background-color: #fdf1e7 !important;
}


.bg-brand-slate-subtle {
    background-color: #eef2f3 !important;
    color: var(--brand-slate) !important;
}

.bg-brand-blue-subtle {
    background-color: #ededf0 !important;
    color: var(--brand-blue) !important;
}

.bg-brand-orange-subtle-2 {
    background-color: #fdf1e7 !important;
    color: var(--brand-orange) !important;
}


/* SECTION 1 HERO */
.about-img {
    height: 400px;
    margin-top: 133px;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-img .overlay {
    height: 400px;
    margin-top: 133px;

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.event-badge {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(30, 27, 26, 0.75);
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 14px;

    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sparkle-icon {
    font-size: 16px;
    opacity: 0.9;
}


/* SECTION 2 STATS SECTION  */
.stats-tag {
    width: 70px;
    height: 70px;
}

.stat-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #dddddd;
}

@media (max-width: 767.98px) {
    .stat-divider::after {
        display: none;
    }
}

/* SECION 3 About  */
.about {
    background: #faf8f6;
}

.about img {
    object-fit: cover;
}


/* SECION 4 SERVICE CARD  */
.hover-lift {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

.hover-lift-sm {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hover-lift-sm:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

.service-card .icon {
    width: 70px;
    height: 70px;
}

.service-card p {
    line-height: 1.9;
}

/* SECION 5 WHY CHOOSE US  */
.why-choose-us {
    background: #f8fafc;
}

.why-choose-us-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(13, 148, 136, .1), rgba(249, 115, 22, .1));
}

.why-choose-us-card p {
    line-height: 1.9;
}

/* SECION 6 PROCESS  */
.process {
    max-width: 900px;
}

.process-number {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--brand-orange);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.18);
}

.process-line {
    width: 2px;
    flex: 1;
    border-left: 2px dashed rgba(17, 24, 39, 0.2);
    margin-top: 8px;
}


.process-wave-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 130, 32, 0.18) 1.4px, transparent 1.4px);
    background-size: 18px 18px;
    opacity: 0.6;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,160 C180,40 360,280 540,160 C720,40 900,280 1080,160 C1260,40 1440,220 1440,220 L1440,320 L0,320 Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,160 C180,40 360,280 540,160 C720,40 900,280 1080,160 C1260,40 1440,220 1440,220 L1440,320 L0,320 Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-position: center;
    pointer-events: none;
    z-index: 0;
}



/* -------------------- g13 -------------------- */
.map-wrap iframe {
    width: 100%;
    height: 650px;
}

.contact-details-wrap {
    box-shadow: 0px 0px 147px 0px rgba(0, 0, 0, 0.07);
}

.contact-details-wrap i {
    left: 0;
    top: 20px;

    width: 100%;
    font-size: 7rem;
    opacity: 0.1;
}

.contact-broken {
    margin-top: -4rem;
}

.contact-details-wrap h3 {
    color: #6897A3
}


/* -------------------- g14 -------------------- */
.custom-faq-item {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
}


.accordion-button::before {
    content: attr(data-number);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    background: #fff4ed;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-right: 20px;
}

.accordion-button::after {
    background-image: none !important;
    content: "▼";
    width: 42px;
    height: 42px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ff7a0f;
    transition: 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}


.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-faq-title {
    flex: 1;
    margin-left: 20px;
}


/* -------------------- g15 -------------------- */

.login-body {
    background: var(--brand-bg);
}

.login-container {
    max-width: 1050px;
}

/* ================= LEFT PANEL ================= */
.left {
    background: var(--brand-peach);
}

.left::before,
.left::after {
    content: "";
    position: absolute;
    background: var(--brand-blob);
    border-radius: 50%;
    opacity: 0.45;
}

.left::before {
    width: 300px;
    height: 300px;
    top: -170px;
    left: -140px;
}

.left::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    right: -90px;
}

.logo {
    width: 60px;
    height: 60px;
    border: 2px solid var(--brand-orange-dark);
    color: var(--brand-orange-dark);
    font-size: 24px;
}

.left h1 {
    font-family: "Outfit", serif;
    font-size: 42px;
    line-height: 1.15;
    color: #1c1c1c;
}

.left p {
    color: #8f8f8f;
    line-height: 1.8;
    max-width: 290px;
}

.door-wrapper {
    width: 180px;
    height: 260px;
}

.door {
    width: 110px;
    height: 190px;
    border: 3px solid var(--brand-line);
    border-radius: 60px 60px 8px 8px;
    position: absolute;
    left: 10px;
    bottom: 0;
}

.door-inner {
    width: 78px;
    height: 145px;
    border: 2px solid var(--brand-line);
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
}

.door-inner::before,
.door-inner::after {
    content: "";
    position: absolute;
    background: var(--brand-line);
}

.door-inner::before {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
}

.door-inner::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
}

.knob {
    width: 8px;
    height: 8px;
    background: var(--brand-line);
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 85px;
}

.plant {
    position: absolute;
    left: -5px;
    bottom: 0;
    width: 35px;
    height: 70px;
    border-left: 2px solid var(--brand-line-soft);
}

.plant::before,
.plant::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 10px;
    border: 2px solid var(--brand-line-soft);
    border-radius: 50%;
}

.plant::before {
    left: -16px;
    top: 15px;
    transform: rotate(-35deg);
}

.plant::after {
    left: -8px;
    top: 35px;
    transform: rotate(30deg);
}

.lamp {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 2px;
    height: 65px;
    background: var(--brand-line-soft);
}

.lamp::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 28px;
    border: 2px solid var(--brand-line-soft);
    border-radius: 0 0 12px 12px;
    top: 60px;
    left: -9px;
}

/* ================= TOGGLE (segmented pill control) ================= */

.toggle-box {
    /* max-width: 187px; */
    background: #f4ede4;
}

.toggle-btn {
    color: #8d8d8d;
}

.toggle-btn:hover {
    color: var(--brand-orange);
}

.toggle-btn.active {
    background: #fff;
    color: var(--brand-orange);
}

/* ================= BRAND INPUT FOCUS RING ================= */

.brand-input:focus,
.brand-input:focus-within {
    border-color: var(--brand-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

/* ================= BRAND BUTTONS ================= */
.btn-primary-gradient,
.btn-primary-gradient:disabled,
.btn-primary-gradient:hover:disabled {
    color: #fff;
    /* Step 1: Double the background width to allow shifting */
    background: linear-gradient(90deg, #f59e0b, #f97316, #eab308);
    background-size: 200% auto;
    border: none;
    /* Step 2: Add a transition duration */
    transition: background-position 0.3s ease, transform 0.2s ease;
}

.btn-primary-gradient:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-primary-gradient.focus,
.btn-primary-gradient:focus {
    color: #fff;
    background-color: #ea580c;
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.4);
    /* Enhanced focus ring */
}

.btn-primary-gradient:not(:disabled):not(.disabled).active,
.btn-primary-gradient:not(:disabled):not(.disabled):active,
.show>.btn-primary-gradient.dropdown-toggle {
    color: #fff;
    background-color: #c2410c;
    border-color: #c2410c;
    box-shadow: none !important;
    transform: translateY(0);
    /* Reset lift on click */
}


.btn-outline-brand {
    border: 1.5px solid #f0b16a;
    background: #fff8f1;
    color: var(--brand-orange);
    transition: background 0.2s ease, color 0.2s ease;
    /* Added smooth transition */
}

.btn-outline-brand:hover {
    background: var(--brand-orange);
    color: #fff;
}

/* ================= FORM ACCENTS ================= */

.remember .form-check-input:checked {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.forgot {
    color: var(--brand-orange);
}

/* login input */
.ulogin-otp-boxes input {
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 22px;
    padding: 0;
}

.ulogin-otp-boxes input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(255, 138, 0, .15);
}


/* -------------------- g16 -------------------- */
.ureg-page {
    font-family: "Outfit", sans-serif;
    background: #f7f4ef;
}

.ureg-wrapper {
    max-width: 1050px;
}

.ureg-left {
    background: #fbf4ec;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.ureg-left::before,
.ureg-left::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: #f7dfc7;
    border-radius: 50%;
    opacity: .5;
    z-index: -1;
}

.ureg-left::before {
    top: -120px;
    left: -120px;
}

.ureg-left::after {
    bottom: -120px;
    right: -100px;
}

.icon-brand {
    border: 2px solid var(--brand);
    color: var(--brand);
}


.ureg-scene {
    height: 240px;
}

.ureg-girl {
    width: 150px;
    height: 200px;
}

.ureg-head {
    width: 62px;
    height: 62px;
    background: #ffd7b5;
    border-radius: 50%;
    position: absolute;
    top: 35px;
    left: 99px;
    z-index: 2;
}

.ureg-hair {
    width: 78px;
    height: 85px;
    background: #2f2f2f;
    border-radius: 40px;
    position: absolute;
    top: 24px;
    left: 91px;
    z-index: 1;
}

.ureg-laptop {
    width: 120px;
    height: 65px;
    background: #3f4a5a;
    border-radius: 10px;
    position: absolute;
    bottom: 43px;
    left: 128px;
    transform: skew(-8deg);
    z-index: 4;
}

.ureg-chair {
    width: 180px;
    height: 100px;
    background: var(--brand);
    border-radius: 100px 100px 30px 30px;
    position: absolute;
    bottom: 12px;
    left: 44px;
}

.ureg-plant {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.ureg-pot {
    width: 45px;
    height: 50px;
    background: #e0b48c;
    border-radius: 0 0 12px 12px;
    position: absolute;
    bottom: 4px;
    left: 0;
}

.ureg-leaf {
    width: 16px;
    height: 60px;
    background: #9cb07f;
    border-radius: 20px;
    position: absolute;
    bottom: 35px;
    left: 6px;
    transform: rotate(-20deg);
}

.ureg-leaf2 {
    left: 22px;
    transform: rotate(18deg);
}


.btn-brand {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 138, 0, .25);
}

.btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
}


.ureg-otp-boxes input {
    width: 44px;
    height: 44px;
    text-align: center;
    font-size: 22px;
    padding: 0;
}

.ureg-otp-boxes input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(255, 138, 0, .15);
}

.ureg-footer a {
    color: var(--brand);
    border: 1px solid var(--brand);
}

.ureg-footer a:hover {
    background: var(--brand);
    color: #fff;
}

/* -------------------- g17 -------------------- */

.vendor-body {
    font-family: "Poppins", sans-serif;
    background: #f7f4ef;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.vendor-wrapper {
    padding: 25px 0;
}

.vendor-container {
    max-width: 1050px;
}

/* LEFT PANEL */
.vendor-left {
    background: #f9f3eb;
    position: relative;
    overflow: hidden;
}

.vendor-left::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #f6dfc6;
    border-radius: 50%;
    top: -170px;
    left: -140px;
    opacity: 0.45;
}

.vendor-left::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: #f6dfc6;
    border-radius: 50%;
    bottom: -120px;
    right: -90px;
    opacity: 0.45;
}

.vendor-logo {
    width: 60px;
    height: 60px;
    border: 2px solid #f0a14a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a14a;
    font-size: 24px;
    z-index: 2;
}

.vendor-heading {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.15;
    color: #1c1c1c;
    z-index: 2;
}

.vendor-text {
    color: #8f8f8f;
    font-size: 15px;
    line-height: 1.8;
    max-width: 290px;
    z-index: 2;
}

/* ILLUSTRATION SCENE */
.vendor-scene {
    position: relative;
    margin-top: 40px;
    height: 240px;
}

.vendor-desk {
    position: absolute;
    bottom: 35px;
    left: 20px;
    width: 320px;
    height: 16px;
    background: #ddb187;
    border-radius: 8px;
}

.vendor-desk::after {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 320px;
    height: 14px;
    background: #c58e60;
    border-radius: 0 0 10px 10px;
}

.vendor-person {
    position: absolute;
    bottom: 55px;
    left: 90px;
    width: 120px;
    height: 180px;
}

.vendor-head {
    width: 52px;
    height: 52px;
    background: #ffd6b3;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 32px;
    z-index: 2;
}

.vendor-hair {
    width: 58px;
    height: 30px;
    background: #2f2f2f;
    border-radius: 30px 30px 20px 20px;
    position: absolute;
    top: -2px;
    left: 29px;
    z-index: 3;
}

.vendor-body-shape {
    width: 90px;
    height: 100px;
    background: #ff8a00;
    position: absolute;
    top: 48px;
    left: 15px;
    border-radius: 20px;
}

.vendor-shirt {
    width: 70px;
    height: 90px;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 25px;
    border-radius: 18px;
    z-index: 2;
}

.vendor-laptop {
    width: 95px;
    height: 55px;
    background: #444;
    position: absolute;
    right: -5px;
    bottom: 45px;
    border-radius: 8px;
    transform: skew(-10deg);
}

.vendor-laptop::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #666;
    border-radius: 50%;
    top: 18px;
    left: 38px;
}

.vendor-plant {
    position: absolute;
    left: 0;
    bottom: 50px;
}

.vendor-pot {
    width: 40px;
    height: 45px;
    background: #d7b08a;
    border-radius: 0 0 12px 12px;
}

.vendor-leaf {
    width: 14px;
    height: 50px;
    background: #9ab27f;
    border-radius: 20px;
    position: absolute;
    bottom: 35px;
    left: 5px;
    transform: rotate(-20deg);
}

.vendor-leaf2 {
    left: 18px;
    transform: rotate(18deg);
}

.vendor-lamp {
    position: absolute;
    top: 0;
    right: 70px;
}

.vendor-wire {
    width: 2px;
    height: 80px;
    background: #888;
    margin: auto;
}

.vendor-bulb {
    width: 60px;
    height: 35px;
    background: #e9c6a3;
    border-radius: 0 0 35px 35px;
    border: 2px solid #bb916a;
}

/* TITLE */
.vendor-title {
    font-size: 34px;
    color: #1d1d1d;
    font-weight: 700;
}

/* RADIO (brand color override on top of Bootstrap's form-check) */
.vendor-radio:checked {
    background-color: #ff8a00;
    border-color: #ff8a00;
}

/* INPUTS (brand focus color override on top of Bootstrap's form-control/form-select) */
.vendor-input:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 0 0.2rem rgba(255, 138, 0, 0.15);
}

.vendor-eye-btn {
    border-color: #e3e3e3;
}

/* MAIN BUTTON */
.vendor-main-btn {
    height: 54px;
    border: none;
    border-radius: 14px;
    background: #ff8a00;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(255, 138, 0, 0.25);
    transition: 0.3s;
}

.vendor-main-btn:hover {
    background: #f27f00;
    color: #fff;
    transform: translateY(-2px);
}

/* OUTLINE / FOOTER BUTTON */
.vendor-outline-btn {
    border: 1.5px solid #f0b16a;
    background: #fff8f1;
    color: #ff9800;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.vendor-outline-btn:hover {
    background: #ff9800;
    color: #fff;
}



/* -------------------- g18 -------------------- */
.list-group-item.active {
    color: #f87a14;
}

.favourites-table {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.favourites-table table {
    min-width: 700px;
}

@media (max-width: 767px) {
    .favourites-table table {
        min-width: 650px;
    }
}


/* -------------------- g19 -------------------- */