

        /* =========================================================
           ROOT
        ========================================================= */

        :root {
            --primary-branch: #c9143c;
            --primary-branch-dark: #ad0d30;
            --pink-bg: #fff7fa;
            --pink-soft: #fff0f4;
            --pink-border: #f4c9d4;

            --green: #13c66b;
            --green-dark: #0aaa58;
            --green-soft: #e9fff3;

            --yellow: #ffd84d;

            --text: #292929;
            --muted: #858585;
            --border: #eeeeee;

            --white: #ffffff;
        }


        /* =========================================================
           RESET
        ========================================================= */

        
      

        /* =========================================================
           WEBVIEW CONTAINER
        ========================================================= */

        .webview-wrapper {
            width: 100%;
            min-height: 100vh;
        }


        .webview {
    width: 100%;
    max-width: 1320px;
    min-height: 100vh;
    margin: 0 auto;
    background: #fff;
}

       


        /* =========================================================
           HEADER
        ========================================================= */

        .header {
            position: sticky;
            top: 0;
            z-index: 900;

            background: rgba(255,255,255,.97);
            backdrop-filter: blur(10px);

            border-bottom: 1px solid #f5e9ed;
        }

        .header-inner {
            padding: 7px 12px 8px;
        }


        /* Greeting */

        .top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;

            margin-bottom: 7px;
        }

        .greeting {
            font-size: 15px;
            font-weight: 700;
            color: #222;
        }

        .greeting span {
            font-size: 14px;
        }


        /* Profile */

        .profile-button {
            width: 28px;
            height: 28px;

            border: 1px solid #f1b9c7;
            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            color: var(--primary);
            background: #fff7fa;

            font-size: 15px;
        }


        /* =========================================================
           SEARCH ROW
        ========================================================= */

        .search-row {
            display: flex;
            gap: 6px;
        }

        .search-box {
            flex: 1;
            position: relative;
        }

        .search-box i {
            position: absolute;

            left: 11px;
            top: 50%;

            transform: translateY(-50%);

            color: #a4a4a4;
            font-size: 15px;
        }

        .search-box input {
            width: 100%;
            height: 40px;

            border: 1px solid #ececec;
            border-radius: 16px;

            background: #fff;

            padding:
                0 10px 0 30px;

            font-size: 15px;

            outline: none;
        }

        .search-box input:focus {
            border-color: #eab4c1;
        }


        /* Location */

        .location-button {
            height: 40px;

            padding: 0 10px;

            border: 1px solid #f0c6d0;
            border-radius: 16px;

            background: #fff8fa;

            color: var(--primary);

            font-size: 16px;
            font-weight: 700;

            display: flex;
            align-items: center;
            gap: 3px;

            white-space: nowrap;
        }


        /* =========================================================
           CATEGORY TABS
        ========================================================= */

        .category-tabs {
            display: flex;

            overflow-x: auto;

            margin-top: 7px;

            scrollbar-width: none;

            border-bottom: 1px solid #f4f4f4;
        }

        .category-tabs::-webkit-scrollbar {
            display: none;
        }

        .category-tab {
            flex: 0 0 auto;

            padding:
                7px 10px 8px;

            color: #888;

            font-size: 15.5px;
            font-weight: 600;

            position: relative;

            white-space: nowrap;
        }

        .category-tab.active {
            color: var(--primary);
        }

        .category-tab.active::after {
            content: "";

            position: absolute;

            left: 10px;
            right: 10px;
            bottom: 0;

            height: 2px;

            background: var(--primary);

            border-radius: 3px;
        }


        /* =========================================================
           MAIN
        ========================================================= */

        .main {
            padding-bottom: 30px;
        }


        /* =========================================================
           NEARBY HEADER
        ========================================================= */

        .nearby-header {
            display: flex;

            align-items: center;
            justify-content: space-between;

            padding:
                10px 12px 7px;
        }

        .nearby-left {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .location-icon {
            width: 27px;
            height: 27px;

            background: var(--primary);
            color: #fff;

            border-radius: 8px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 14px;
        }

        .nearby-title {
            font-size: 15px;
            font-weight: 800;
            line-height: 1.1;
        }

        .nearby-subtitle {
            color: #888;
            font-size: 13px;
            margin-top: 2px;
        }

        .sort-button {
            border: 0;

            background: #fff2f5;

            color: var(--primary);

            border-radius: 12px;

            padding: 5px 8px;

            font-size: 13px;
            font-weight: 700;
        }


        /* =========================================================
           LOCATION ALERT
        ========================================================= */

        .location-alert {
            margin:
                0 10px 9px;

            padding:
                13px 9px;

            border:
                1px dashed #ee91a8;

            border-radius: 8px;

            background: #fff0f4;

            color: var(--primary);

            display: flex;
            align-items: center;
            gap: 7px;

            font-size: 15px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .location-alert i {
            width: 20px;
            height: 20px;

            border-radius: 50%;

            background: #d9fff0;
            color: var(--green);

            display: flex;
            align-items: center;
            justify-content: center;

            flex-shrink: 0;
        }

        .location-alert span {
            margin-left: auto;
            font-size: 14px;
        }


       /* =========================================
   FEATURED SLIDER
========================================= */

.featured-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* Slider track */

.featured-list {
    display: flex;

    gap: 12px;

    width: 100%;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    cursor: grab;

    padding: 4px 2px 8px;

    -webkit-overflow-scrolling: touch;
}

.featured-list::-webkit-scrollbar {
    display: none;
}

.featured-list.dragging {
    cursor: grabbing;

    scroll-behavior: auto;

    scroll-snap-type: none;
}


/* Card */

.featured-card {

    position: relative;

    flex: 0 0 calc(50% - 6px);

    scroll-snap-align: start;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 16px;

    padding: 12px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .06);

    min-width: 0;
}


/* Logo */

.featured-logo {
    width: 280px;
    height: 180px;

    margin: 18px auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffd84d;

    border-radius: 12px;

    overflow: hidden;
}

.featured-logo img {
    width: 277px;
    height: 177px;

    object-fit: cover;
}

.branch-content{
 padding: 0px 10px;
}


/* Shop */

.shop-label {
    position: absolute;

    top: 10px;
    left: 10px;

    font-size: 13px;

    font-weight: 700;

    color: #c9143c;
}


/* Favourite */

.favorite {
    position: absolute;

    top: 8px;
    right: 8px;

    width: 28px;
    height: 28px;

    border: 1px solid #ddd;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;

    cursor: pointer;

    background: #fff;
}


/* Name */

.featured-name {
    font-size: 15px;

    font-weight: 800;

    color: #222;

    margin-bottom: 5px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* Location */

.featured-location {
    display: flex;

    align-items: center;

    gap: 5px;

    color: #777;

    font-size: 15px;

    margin-bottom: 10px;
}

.featured-location i {
    color: #c9143c;

    font-size: 11px;
}


/* Button */

.order-button {
    width: 50%;

    height: 32px;

    border: 0;
   

    border-radius: 10px;

    background: #13c66b;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;
}

.order-button i {
    margin-left: 4px;
}


/* =========================================
   DOTS
========================================= */

.slider-dots {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin-top: 8px;
}

.slider-dots span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #ddd;

    cursor: pointer;

    transition: all .2s ease;
}

.slider-dots span.active {
    width: 18px;

    border-radius: 10px;

    background: #c9143c;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 768px) {

    .featured-card {
        flex: 0 0 calc(25% - 9px);
    }
    
   

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
 .order-button{
        width:100px !important;
    }
    .featured-card {
        flex: 0 0 calc(50% - 6px);
    }
    
    
    .order-button{
        font-size: 13px;
        height: 26px;
    }

}


/* Very small screens */

@media (max-width: 480px) {

    .featured-card {
        flex: 0 0 85%;
    }

}

        /* Slider dots */

        .slider-dots {
            text-align: center;

            padding-top: 4px;
        }

        .slider-dots span {
            display: inline-block;

            width: 4px;
            height: 4px;

            margin: 0 2px;

            border-radius: 50%;

            background: #ddd;
        }

        .slider-dots span.active {
            width: 12px;

            border-radius: 4px;

            background: var(--primary);
        }


        /* =========================================================
           SECTION TITLE
        ========================================================= */

        .branch-section {
            padding:
                22px 10px 0;
        }

        .section-title {
            display: flex;

            align-items: center;

            gap: 7px;

            padding:
                9px 2px 8px;

            border-bottom:
                1px solid #f2f2f2;
        }

        .section-title-icon {
            width: 20px;
            height: 20px;

            background: #f0f5ff;

            color: #5d77d9;

            border-radius: 6px;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 15px;
        }

        .section-title h2 {
            margin: 0;

            font-size: 20px 1important;
            font-weight: 800;
        }


        .section-title{

            margin-bottom: 0px;

        }


        /* =========================================================
   BRANCH GRID
========================================================= */

.branch-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    padding: 42px 0 20px;
}


/* Branch card */

.branch-card {
    position: relative;

    min-width: 0;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 12px;

    padding: 10px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);

    transition: .2s ease;
}

.branch-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}


/* Logo */

.branch-logo {
    width: 70px;
    height: 70px;

    margin: 0 auto 8px;

    background: #ffd84d;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.branch-logo img {
    width: 65px;
    height: 65px;

    object-fit: cover;
}


.bi-heart::before{
    vertical-align: middle;
}


/* Shop number */

.branch-shop {
    position: absolute;

    top: 8px;
    left: 8px;

    padding: 3px 6px;

    background: #eafff2;

    color: #0aaa58;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;
}


/* Favourite */

.branch-heart {
    position: absolute;

    top: 8px;
    right: 8px;

    width: 26px;
    height: 26px;

    border: 1px solid #ddd;

    background: #fff;

    border-radius: 50%;

    color: #999;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Content */

.branch-name {
    font-size: 15px;
    font-weight: 800;

    color: #222;

    margin-bottom: 4px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.branch-address {
    color: #514b4b;

    font-size: 15px;

    line-height: 1.4;

    min-height: 38px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* Bottom */

.branch-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 5px;

    margin-top: 8px;
}

.branch-distance {
    font-size: 15px;

    color: #0aaa58;

    background: #eafff2;

    border-radius: 8px;

    padding: 3px 6px;

    white-space: nowrap;
}

.branch-order {
    /*flex: 1;*/
    width:65%;

    height: 27px;

    border: 0;

    border-radius: 10px;

    background: #13c66b;

    color: #fff;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .branch-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 768px) {

    .branch-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

}

.section-title h2{

    font-size:30px;
    color:var(--text);

}


@media (max-width: 480px) {
    
    
    
    
    .branch-list{
        padding: 22px 0 20px;
    }
    
        .branch-name {
        font-size: 14px;
    }
    
     .branch-shop {
    position: absolute;
    top: 8px;
    left: auto;
    right: 8px !important;
    padding: 3px 3px;
    background: #eafff2;
    color: #0aaa58;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 500;
    float: right;
}

    .branch-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .branch-card {
        display: flex;
        align-items: center;

        min-height: 78px;

        padding: 8px;
    }

    .branch-logo {
        width: 52px;
        height: 52px;

        margin: 0;

        flex-shrink: 0;
    }

    .branch-logo img {
        width: 49px;
        height: 49px;
    }

    .branch-content {
        flex: 1;
        min-width: 0;
    }

    .branch-name {
        font-size: 11px;
    }

    .branch-address {
        font-size: 15px;
        min-height: auto;
    }

    .branch-bottom {
        margin-top: 5px;
        width: 140px;
    }

}

        /* =========================================================
           FOOTER
        ========================================================= */

        .powered {
            text-align: center;

            padding:
                15px 10px 25px;

            color: #aaa;

            font-size: 13px;
        }

        .powered strong {
            color: var(--primary);
            font-weight: 800;
        }

        .powered small {
            display: block;

            margin-top: 2px;

            color: #bbb;

            font-size: 13px;
        }


        /* =========================================================
           BACK TO TOP
        ========================================================= */

        .back-top {
            position: fixed;

            bottom: 12px;

            width: 28px;
            height: 28px;

            border: 0;
            border-radius: 50%;

            background: var(--primary);

            color: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 15px;

            box-shadow:
                0 3px 12px rgba(201,20,60,.3);

            cursor: pointer;

            z-index: 2000;

            opacity: 0;
            visibility: hidden;

            transition: .25s;
        }

        .back-top.show {
            opacity: 1;
            visibility: visible;
        }


        /* =========================================================
           DESKTOP
        ========================================================= */

        @media (min-width: 431px) {

            /*body {
                background:
                    linear-gradient(
                        90deg,
                        #fff8fb 0,
                        #fff 50%,
                        #fff8fb 100%
                    );
            }*/

            /*.webview {
                border-left: 1px solid #f3e6ea;
                border-right: 1px solid #f3e6ea;
            }*/

            .back-top {
                margin-left: 180px;
            }
        }


        /* =========================================================
           TABLET
        ========================================================= */

        @media (min-width: 768px) {

           /* .webview {
                max-width: 460px;
            }
*/
            .header-inner {
                padding-left: 14px;
                padding-right: 14px;
            }

            .branch-card {
                min-height: 72px;
            }

            .branch-logo {
                width: 100%;
                height: 149px;
            }

            .branch-logo img {
                width: 100%;
                height: 146px;
            }
        }


        /* =========================================================
           SMALL MOBILE
        ========================================================= */

        @media (max-width: 480px) {

            .header-inner {
                padding-left: 9px;
                padding-right: 9px;
            }

            .category-tab {
                padding-left: 8px;
                padding-right: 8px;
            }

            .branch-section {
                padding-left: 8px;
                padding-right: 8px;
            }

            .branch-card {
                gap: 7px;
            }

            .branch-logo {
                width: 60px;
                height: 80px;
            }

            .branch-logo img {
                width: 100%;
                height: 100%;
            }

            /*.branch-content {*/
            /*    padding-right: 44px;*/
            /*}*/

            .branch-name {
                font-size: 14px;
            }

            .branch-address {
                font-size: 11.5px;
            }

            .branch-order{
                font-size: 13px;
            }


            .branch-shop {
    position: absolute;
    top: 8px;
    left: auto;
    right: 8px !important;
    padding: 3px 3px;
    background: #eafff2;
    color: #0aaa58;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 500;
    float: right;
}
        }



/* =========================================================
   LOCATION DROPDOWN
========================================================= */

.location-wrapper {
    position: relative;
    flex: 0 0 auto;
}


/* Location button */

.location-button {
    height: 40px;
border: solid 1px #c9143c;
    min-width: 150px;

    padding: 0 15px;

    /*border: 0;*/

    border-radius: 24px;

    background: #fff;

    color: #c9143c;

    font-size: 13px;

    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    cursor: pointer;

    box-shadow:
        0 3px 12px rgba(0, 0, 0, .04);
}

.location-button > i:first-child {
    font-size: 16px;
}

.location-arrow {
    font-size: 11px;

    transition:
        transform .2s ease;
}

.location-wrapper.open
.location-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN
========================================================= */

.location-dropdown {

    position: absolute;

    top: calc(100% + 9px);

    right: 0;

    width: 310px;

    max-height: 430px;

    background: #fff;

    border-radius: 0;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .16);

    border: 1px solid #e8e8e8;

    overflow: hidden;

    z-index: 3000;

    display: none;
}


/* Open */

.location-wrapper.open
.location-dropdown {
    display: block;
}


/* Header */

.location-dropdown-header {

    height: 57px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    font-size: 16px;

    color: #222;

    background: #fff;

    border-bottom:
        1px solid #ddd;

}


/* Scroll area */

.location-list {

    max-height: 373px;

    overflow-y: auto;

    overscroll-behavior: contain;

    scrollbar-width: thin;

    scrollbar-color:
        #999 #f5f5f5;
}


/* Webkit scrollbar */

.location-list::-webkit-scrollbar {
    width: 10px;
}

.location-list::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.location-list::-webkit-scrollbar-thumb {
    background: #999;

    border-radius: 8px;
}


/* Location item */

.location-item {

    width: 100%;

    min-height: 35px;

    padding: 0 20px;

    border: 0;

    border-bottom:
        1px solid #ddd;

    background: #fff;

    color: #222;

    text-align: left;

    font-size: 16px;

    cursor: pointer;

    transition:
        background .15s ease,
        color .15s ease;
}


.location-item:hover {
    background: #fff4f7;

    color: #c9143c;
}


.location-item.active {

    background: #fff1f5;

    color: #c9143c;

    font-weight: 700;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .location-dropdown {

        position: fixed;

        top: 56px;

        right: 7px;

        width: calc(100vw - 14px);

        max-width: none;

        max-height: 430px;

        border-radius: 0;

    }

    .location-dropdown-header {
        height: 45px;

        padding: 0 20px;

        font-size: 16px;
    }

    .location-list {
        max-height: 373px;
    }

    .location-item {
        min-height: 55px;

        padding: 0 20px;

        font-size: 16px;
    }

}
   