/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    width: 100%;
}


/* =========================================================
   LOGO
========================================================= */

.main-header .logo-img {
    width: auto;
    height: 52px;
    max-width: 230px;
    object-fit: contain;
}


/* =========================================================
   DESKTOP MAIN NAV
========================================================= */

.main-header .navbar-nav {
    gap: 18px;
}

.main-header .navbar-nav .nav-item {
    position: relative;
}

.main-header .navbar-nav .nav-link {
    position: relative;

    color: #333333;

    font-size: 16px;
    font-weight: 600;

    padding: 28px 8px 25px !important;

    transition: color 0.25s ease;
}


/* =========================================================
   NAV HOVER
========================================================= */

.main-header .navbar-nav .nav-link:hover {
    color: #ed4264 !important;
}


/* =========================================================
   NAV ACTIVE
========================================================= */

.main-header .navbar-nav .nav-link.active {
    color: #ed4264 !important;
}


/* =========================================================
   ACTIVE / HOVER UNDERLINE
========================================================= */

.main-header .navbar-nav .nav-link::before {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 11px;

    width: 0;
    height: 3px;

    background: #ed4264;

    border-radius: 10px;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


/* Active */

.main-header .navbar-nav .nav-link.active::before {
    width: 45px;
}


/* Hover */

.main-header .navbar-nav .nav-link:hover::before {
    width: 45px;
}


/* =========================================================
   VENDOR LINK
========================================================= */

.main-header .vendor-main-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
}

.main-header .vendor-main-link::after {
    display: none !important;
}

.vendor-chevron {
    font-size: 9px;
    transition: transform 0.25s ease;
}

.vendor-mega-dropdown:hover .vendor-chevron {
    transform: rotate(180deg);
}


/* =========================================================
   VENDOR MEGA DROPDOWN
========================================================= */

.vendor-mega-dropdown {
    position: static !important;
}

.vendor-mega-menu {

    position: absolute;

    top: 80%;
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: min(770px, calc(100vw - 40px));

    background: #ffffff;

    border-radius: 0 0 12px 12px;

    padding: 28px 36px 22px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.12);

    border-top: 2px solid #ed4264;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 99999;
}


/* Invisible bridge */

.vendor-mega-menu::before {

    content: "";

    position: absolute;

    top: -15px;
    left: 0;

    width: 100%;
    height: 15px;

    background: transparent;
}


/* Show menu */

.vendor-mega-dropdown:hover .vendor-mega-menu {

    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform:
        translateX(-50%) translateY(0);
}


/* =========================================================
   VENDOR MENU GRID
========================================================= */

.vendor-menu-inner {

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 70px;
}


/* =========================================================
   VENDOR MENU ITEM
========================================================= */

.vendor-menu-item {

    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 47px;

    padding: 7px 0;

    color: #222222;

    text-decoration: none;

    font-size: 16px;

    font-weight: 500;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


/* Icon */

.vendor-category-icon {

    width: 22px;
    min-width: 22px;

    text-align: center;

    color: #111111;

    font-size: 15px;

    transition: color 0.2s ease;
}


/* Hover */

.vendor-menu-item:hover {

    color: #ed4264;

    transform: translateX(4px);
}

.vendor-menu-item:hover .vendor-category-icon {

    color: #ed4264;
}


/* =========================================================
   DESKTOP RIGHT LINKS
========================================================= */

.header-right-link {
    transition: color 0.25s ease;
}

.header-right-link:hover {
    color: #ed4264 !important;
}


/* =========================================================
   MOBILE HEADER ACTIONS
========================================================= */

.mobile-header-actions {
    gap: 18px;
}


/* =========================================================
   MOBILE LOGIN BUTTON
========================================================= */

.mobile-login-btn {

    border: 1px solid #ed4264 !important;

    color: #ed4264 !important;

    background: #ffffff;

    border-radius: 30px;

    padding: 8px 16px;

    font-size: 15px;

    line-height: 1.2;

    transition: all 0.2s ease;
}

.mobile-login-btn:hover {

    background: #ed4264 !important;

    color: #ffffff !important;
}


/* =========================================================
   MOBILE HAMBURGER
========================================================= */

.mobile-menu-toggle {

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* Hamburger */

.mobile-menu-icon {

    width: 32px;
    height: 25px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


/* Hamburger lines */

.mobile-menu-icon span {

    display: block;

    width: 100%;
    height: 2px;

    background: #555555;

    border-radius: 10px;

    transition: all 0.25s ease;
}


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

/*
IMPORTANT:

Bootstrap offcanvas ka default z-index 1045 hota hai.
Aapka header pehle 9999 tha.

Isliye offcanvas header ke neeche chala ja raha tha.

Ab:
Header    = 1030
Backdrop  = 1040
Offcanvas = 1050

Isse drawer header sabse upar dikhega.
*/

.mobile-main-offcanvas {

    width: 72% !important;

    max-width: 390px;

    height: 100vh !important;

    background: #ffffff;

    border: 0 !important;

    box-shadow:
        8px 0 30px rgba(0, 0, 0, 0.15);

    z-index: 1050 !important;
}


/* =========================================================
   MOBILE BACKDROP
========================================================= */

.offcanvas-backdrop {

    z-index: 1040 !important;

    background-color:
        rgba(15, 23, 42, 0.55);
}

.offcanvas-backdrop.show {

    opacity: 1;
}


/* =========================================================
   OFFCANVAS HEADER
========================================================= */

.mobile-offcanvas-header {

    height: 120px;

    min-height: 120px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 20px 22px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: relative;

    z-index: 2;
}


/* =========================================================
   MOBILE DRAWER LOGO
========================================================= */

.mobile-menu-logo {

    display: flex;

    align-items: center;

    text-decoration: none;

    flex-shrink: 0;
}

.mobile-menu-logo img {

    display: block;

    width: auto;

    max-width: 230px;

    height: 58px;

    object-fit: contain;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.mobile-menu-close {

    position: relative;

    width: 42px;
    height: 42px;

    min-width: 42px;

    padding: 0;
    margin: 0;

    border: 0 !important;
    outline: none !important;

    background: transparent !important;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    transition:
        transform 0.25s ease;
}


/* =========================================================
   CLOSE X LINES
========================================================= */

.mobile-menu-close .close-line {

    position: absolute;

    width: 30px;

    height: 3px;

    background: #64748b;

    border-radius: 10px;

    left: 50%;
    top: 50%;

    transform-origin: center;

    transition:
        background 0.2s ease;
}


/* First line */

.mobile-menu-close .close-line-1 {

    transform:
        translate(-50%, -50%)
        rotate(45deg);
}


/* Second line */

.mobile-menu-close .close-line-2 {

    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}


/* Hover */

.mobile-menu-close:hover {

    transform: rotate(90deg);
}

.mobile-menu-close:hover .close-line {

    background: #ed4264;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {

    padding: 12px 20px 30px;

    background: #ffffff;
}


/* =========================================================
   MOBILE NAV ITEM
========================================================= */

.mobile-nav-item {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 22px;

    color: #444444;

    text-decoration: none;

    font-size: 20px;

    font-weight: 600;

    border-bottom: 1px solid #eeeeee;

    transition:
        color 0.2s ease,
        background 0.2s ease;
}


/* Hover */

.mobile-nav-item:hover {

    color: #ed4264;

    background: #fff5f8;

}


/* Active */

.mobile-nav-item.active {

    color: #ed4264;

    background: #fff0f5;

    border-radius: 12px;

    border-bottom-color: transparent;

    margin: 4px 0;
}


/* =========================================================
   MOBILE VENDOR ARROW
========================================================= */

.mobile-vendor-arrow {

    font-size: 13px;

    color: #64748b;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.mobile-nav-item:hover .mobile-vendor-arrow {

    color: #ed4264;

    transform: translateX(3px);
}


/* =========================================================
   MOBILE ONLY
========================================================= */

@media (max-width: 991.98px) {

    .main-header {

        z-index: 1030 !important;
    }


    .main-header .container {

        min-height: 88px;

        padding-top: 10px;
        padding-bottom: 10px;
    }


    .main-header .logo-img {

        max-height: 58px;

        width: auto;

        max-width: 230px;
    }


    .main-header .navbar-nav {

        gap: 0;
    }


    .main-header .navbar-nav .nav-link {

        padding: 12px 15px !important;
    }


    .main-header .navbar-nav .nav-link::before {

        display: none;
    }


    .main-header .navbar-nav .nav-link.active {

        color: #ed4264 !important;
    }

}


/* =========================================================
   DESKTOP ONLY
========================================================= */

@media (min-width: 992px) {

    .mobile-main-offcanvas {

        display: none !important;
    }

    .mobile-header-actions {

        display: none !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .mobile-main-offcanvas {

        width: 82% !important;

        max-width: 360px;
    }


    .mobile-offcanvas-header {

        height: 105px;

        min-height: 105px;

        padding: 15px 18px;
    }


    .mobile-menu-logo img {

        max-width: 210px;

        height: 55px;
    }


    .mobile-menu-close {

        width: 40px;

        height: 40px;

        min-width: 40px;
    }


    .mobile-menu-close .close-line {

        width: 28px;

        height: 3px;
    }


    .mobile-nav {

        padding:
            10px 18px 30px;
    }


    .mobile-nav-item {

        min-height: 50px;

        padding: 0 20px;

        font-size: 18px;
    }


    .mobile-header-actions {

        gap: 14px;
    }


    .mobile-login-btn {

        padding: 8px 14px;

        font-size: 14px;
    }


    .mobile-menu-icon {

        width: 30px;

        height: 24px;
    }

}
/* Clean Bootstrap Modal Z-Index Fix */
#masterSearchModal {
    z-index: 1060 !important; /* Modal ko sabse upar laane ke liye */
}

.modal-backdrop {
    z-index: 1050 !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(2px);
}

/* Modal Content & Focus Styling */
#masterSearchModal .modal-content {
    background: #ffffff !important;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1065 !important; /* Content always clickable */
}

#masterSearchModal .form-select:focus,
#masterSearchModal .form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

#masterSearchModal .btn-danger {
    background-color: #ff385c;
    border-color: #ff385c;
    transition: all 0.3s ease;
}

#masterSearchModal .btn-danger:hover {
    background-color: #e02b4c;
    border-color: #e02b4c;
    transform: translateY(-1px);
}
/* =========================================================
   SHAADIYARI PREMIUM SEARCH
========================================================= */

.sy-search-modal {
    z-index: 1060 !important;
    padding: 0 !important;
}


/* =========================================================
   MODAL
========================================================= */

.sy-search-dialog {
    width: 100%;
    max-width: none;

    height: 100vh;

    margin: 0;
}

.sy-search-modal-content {
    position: relative;

    width: 100%;
    min-height: 100vh;

    border: 0 !important;
    border-radius: 0 !important;

    background:
        radial-gradient(
            circle at 50% -25%,
            rgba(255, 56, 92, 0.08),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffafb 100%
        ) !important;

    overflow-y: auto;

    box-shadow: none !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.sy-search-container {
    width: min(1020px, calc(100% - 100px));

    margin: 0 auto;

    padding-top: 70px;
    padding-bottom: 70px;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.sy-search-close {
    position: absolute;

    top: 30px;
    right: 38px;

    width: 46px;
    height: 46px;

    border: 1px solid #e8e8e8;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #222;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.07);

    transition: all .25s ease;
}

.sy-search-close:hover {
    color: #fff;

    background: #ff385c;

    border-color: #ff385c;

    transform: rotate(90deg);

    box-shadow:
        0 8px 25px rgba(255, 56, 92, .25);
}


/* =========================================================
   HEADING
========================================================= */

.sy-search-heading {
    text-align: center;

    max-width: 720px;

    margin: 0 auto 42px;
}

.sy-search-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 15px;

    color: #d93655;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.7px;
}

.sy-search-eyebrow i {
    font-size: 12px;
}

.sy-search-heading h2 {
    margin: 0;

    color: #151515;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

    font-weight: 750;

    letter-spacing: -1.5px;
}

.sy-search-heading p {
    max-width: 600px;

    margin: 15px auto 0;

    color: #777;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   SEARCH FORM
========================================================= */

.sy-search-form {
    position: relative;

    display: flex;
    align-items: stretch;

    width: 100%;

    padding: 8px;

    background: #fff;

    border: 1px solid #e3e3e3;

    border-radius: 18px;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, .025),
        0 18px 55px rgba(0, 0, 0, .07);

    transition: all .3s ease;
}

.sy-search-form:focus-within {
    border-color: rgba(255, 56, 92, .3);

    box-shadow:
        0 0 0 4px rgba(255, 56, 92, .05),
        0 20px 60px rgba(0, 0, 0, .08);
}


/* =========================================================
   SEARCH FIELD
========================================================= */

.sy-search-field {
    position: relative;

    min-height: 60px;

    display: flex;

    align-items: center;

    padding: 0 22px;

    background: #fff;
}


/* Dividers */

.sy-search-field:not(:last-of-type)::after {
    content: "";

    position: absolute;

    top: 17px;
    right: 0;

    width: 1px;
    height: 38px;

    background: #e6e6e6;
}


/* Category */

.sy-category-field {
    width: 24%;
}


/* Keyword */

.sy-keyword-field {
    width: 100%;
}


/* Location */

.sy-location-field {
    width: 24%;
}


/* =========================================================
   FIELD ICON
========================================================= */

.sy-field-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 12px;

    border-radius: 12px;

    background: #fff2f5;

    color: #ed3154;

    font-size: 15px;
}

.sy-field-content {
    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.sy-field-content label {
    display: block;

    margin-bottom: 4px;

    color: #888;

    font-size: 11px;

    line-height: 1;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* =========================================================
   INPUTS
========================================================= */

.sy-field-content input,
.sy-field-content select {
    width: 100%;

    height: 30px;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #222;

    font-size: 14px;

    font-weight: 600;
}

.sy-field-content input::placeholder {
    color: #999;

    font-weight: 500;
}

.sy-field-content select {
    appearance: none;

    cursor: pointer;
}


/* =========================================================
   SELECT ARROW
========================================================= */

.sy-select-arrow {
    margin-left: 10px;

    color: #777;

    font-size: 11px;

    pointer-events: none;
}


/* =========================================================
   SEARCH BUTTON
========================================================= */

.sy-search-submit {
    position: relative;

    width: 150px;
    min-width: 150px;

    margin: 0;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #ff385c 0%,
            #e52d56 48%,
            #c91850 100%
        );

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 9px 24px rgba(224, 38, 79, .24);

    overflow: hidden;

    transition: all .3s ease;
}


/* Button shine */

.sy-search-submit::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.22),
        transparent
    );

    transform: skewX(-20deg);

    transition: left .6s ease;
}

.sy-search-submit:hover::before {
    left: 130%;
}

.sy-search-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 30px rgba(224, 38, 79, .32);
}

.sy-search-submit i {
    font-size: 13px;

    transition: transform .25s ease;
}

.sy-search-submit:hover i {
    transform: translateX(4px);
}


/* =========================================================
   POPULAR SEARCHES
========================================================= */

.sy-popular-searches {
    margin-top: 75px;
}

.sy-popular-title {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}

.sy-popular-title span {
    color: #222;

    font-size: 18px;

    font-weight: 700;

    white-space: nowrap;
}

.sy-popular-title div {
    height: 1px;

    flex: 1;

    background: linear-gradient(
        90deg,
        #e5e5e5,
        transparent
    );
}


/* =========================================================
   POPULAR TAGS
========================================================= */

.sy-popular-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.sy-popular-tags a {
    display: inline-flex;

    align-items: center;

    min-height: 44px;

    padding: 0 18px;

    border: 1px solid #e3e3e3;

    border-radius: 50px;

    background: #fff;

    color: #444;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: all .25s ease;
}

.sy-popular-tags a:hover {
    color: #e52d56;

    border-color: rgba(229, 45, 86, .35);

    background: #fff7f9;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(229, 45, 86, .08);
}


/* =========================================================
   BOTTOM TRUST
========================================================= */

.sy-search-bottom {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    margin-top: 65px;

    color: #999;

    font-size: 12px;

    font-weight: 500;
}

.sy-search-bottom span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}

.sy-search-bottom i {
    color: #e52d56;
}


/* =========================================================
   BACKDROP
========================================================= */

.sy-search-modal + .modal-backdrop {
    z-index: 1050 !important;

    background: rgba(20, 17, 18, .64) !important;

    backdrop-filter: blur(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .sy-search-container {
        width: calc(100% - 50px);
    }

    .sy-search-field {
        padding: 0 14px;
    }

    .sy-field-icon {
        width: 36px;
        height: 36px;

        flex-basis: 36px;

        margin-right: 8px;
    }

    .sy-field-content input,
    .sy-field-content select {
        font-size: 13px;
    }

    .sy-search-submit {
        width: 125px;
        min-width: 125px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .sy-search-container {
        width: calc(100% - 30px);

        padding-top: 75px;
        padding-bottom: 50px;
    }

    .sy-search-close {
        top: 18px;
        right: 18px;

        width: 40px;
        height: 40px;
    }

    .sy-search-heading {
        margin-bottom: 30px;
    }

    .sy-search-heading h2 {
        font-size: 28px;
    }

    .sy-search-heading p {
        font-size: 13px;
    }


    /* Form becomes vertical */

    .sy-search-form {
        flex-direction: column;

        padding: 8px;

        border-radius: 16px;
    }

    .sy-search-field {
        width: 100% !important;

        min-height: 60px;

        padding: 0 15px;
    }

    .sy-search-field:not(:last-of-type)::after {
        display: none;
    }

    .sy-search-field + .sy-search-field {
        border-top: 1px solid #eeeeee;
    }

    .sy-search-submit {
        width: 100%;

        min-width: 100%;

        height: 54px;

        margin-top: 7px;
    }


    /* Popular */

    .sy-popular-searches {
        margin-top: 55px;
    }

    .sy-popular-title span {
        font-size: 16px;
    }

    .sy-popular-tags {
        gap: 8px;
    }

    .sy-popular-tags a {
        min-height: 40px;

        padding: 0 14px;

        font-size: 12px;
    }


    /* Trust */

    .sy-search-bottom {
        flex-direction: column;

        gap: 10px;

        margin-top: 45px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .sy-search-container {
        width: calc(100% - 20px);
    }

    .sy-search-eyebrow {
        font-size: 9px;

        letter-spacing: 1.2px;
    }

    .sy-search-heading h2 {
        font-size: 24px;
    }

    .sy-search-heading p {
        padding: 0 10px;
    }

    .sy-field-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

    .sy-popular-title {
        gap: 10px;
    }
}
/* Container Box */
.master-search-results {
    display: none;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-top: 12px;
    max-height: 380px;
    overflow-y: auto;
}

.master-search-results.show {
    display: block;
}

/* Individual Result Row */
.master-search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f4f4f4;
    transition: background-color 0.2s ease;
}

.master-search-result-item:last-child {
    border-bottom: none;
}

.master-search-result-item:hover {
    background-color: #fcf8f9;
}

/* Store Icon Circle */
.master-search-result-item .sy-field-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: #fff0f3;
    color: #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Text Content Area */
.master-search-result-info {
    flex: 1;
    min-width: 0;
}

.master-search-result-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.master-search-result-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.master-search-rating {
    font-weight: 600;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.master-search-dot {
    font-size: 10px;
    color: #9ca3af;
}

.master-search-result-arrow {
    color: #d1d5db;
    font-size: 13px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.master-search-result-item:hover .master-search-result-arrow {
    color: #e11d48;
    transform: translateX(3px);
}
/* Type Dropdown Container & Toggle */
.sy-type-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sy-type-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #f3f4f6;
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sy-type-toggle-btn::after {
    display: none !important; /* Hide default bootstrap arrow */
}

.sy-type-toggle-btn .sy-select-arrow {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.sy-type-toggle-btn[aria-expanded="true"] .sy-select-arrow {
    transform: rotate(180deg);
}

/* Floating Menu Card */
.sy-type-menu {
    min-width: 170px;
    background: #ffffff;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    z-index: 1060;
}

/* Menu Items */
.sy-type-item {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    padding: 10px 14px;
    border-radius: 10px !important;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
}

.sy-type-item:hover {
    background-color: #fff1f2;
    color: #e11d48;
}

.sy-type-item.active,
.sy-type-item:active {
    background-color: #fff1f2 !important;
    color: #e11d48 !important;
    font-weight: 600;
}

.mobile-nav-item[aria-expanded="true"] .mobile-vendor-arrow {
    transform: rotate(180deg);
    transition: transform 0.2s ease-in-out;
}
.mobile-nav-item .mobile-vendor-arrow {
    transition: transform 0.2s ease-in-out;
}