:root {
    --color_1: #FF9800;
    --color_2: white;
    --color_3: #f5f5f5;
    --color_4: #2e3131;
    --color_5: #00000096;
    --color_6: #ff8f46;
    --color_7: #8BC34A;
    --color_success: #146c43;
    --color_danger: red;
    --header_height: 81px;
}

@media (max-width: 992px) {
    :root {
        --header_height: 72px;
    }
}

.clr-orange {
    color: var(--color_1) !important
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

a:hover {
    color: unset;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #d9dae1;
    min-height: 80px;
}

::-webkit-scrollbar-thumb:window-inactive {
    background-color: #d9dae1;
}

body {
    background-color: var(--color_3);
    font-family: "Ubuntu";
    color: var(--color_4);
}

.overflow_hidden {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

a {
    color: var(--color_1);
}

a, a:hover, a:focus {
    text-decoration: none;
}

.btn {
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.form-control.input_error {
    border: 1px solid red;
}

.form-control:focus {
    border-color: var(--color_4);
    box-shadow: unset !important;
}

.modal-backdrop {
    background-color: var(--color_5);
}

body main {
    padding-top: var(--header_height);
}

body .content {
    display: inline-block;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding-top: 30px;
}

body .content .note {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

body .content > section {
    min-height: calc(100vh - 160px);
}

a:hover {
    text-decoration: none;
}

.alert-fixed {
    position: fixed;
    top: 95px;
    right: 20px;
    z-index: 9999;
    width: 360px;
    max-width: calc(100% - 40px);
}

.app-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
    border: 0;
    border-radius: 14px;
    background: #fff;
    color: var(--color_4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .06);
    position: relative;
    overflow: hidden;
}

.js-msg-alert-holder:not(.d-none) .app-toast {
    animation: appToastIn .32s cubic-bezier(.21, 1.02, .73, 1) both;
}

@keyframes appToastIn {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.app-toast::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--color_1);
}

.app-toast__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 152, 0, .14);
    color: var(--color_1);
}

.app-toast__icon .ico {
    width: 20px;
    height: 20px;
    display: none;
}

.app-toast__body {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    padding-right: 4px;
}

.app-toast .app-toast__close {
    flex: 0 0 auto;
    padding: 0;
    margin: 0;
    width: 22px;
    height: 22px;
    opacity: .45;
    background-size: 11px;
    transition: opacity .2s ease;
}

.app-toast .app-toast__close:hover {
    opacity: .85;
}

.app-toast.alert-success::before {
    background: var(--color_success);
}
.app-toast.alert-success .app-toast__icon {
    background: rgba(20, 108, 67, .12);
    color: var(--color_success);
}
.app-toast.alert-success .ico-success {
    display: block;
}

.app-toast.alert-danger::before {
    background: #dc3545;
}
.app-toast.alert-danger .app-toast__icon {
    background: rgba(220, 53, 69, .12);
    color: #dc3545;
}
.app-toast.alert-danger .ico-danger {
    display: block;
}

.app-toast.alert-warning::before {
    background: var(--color_1);
}
.app-toast.alert-warning .ico-warning {
    display: block;
}

.radio label, .checkbox label {
    width: 100%;
    cursor: pointer;
}

.remove_cart_item {
    font-size: 20px;
    cursor: pointer;
    padding-top: 10px;
    color: var(--color_danger);
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
}

@media (max-width: 992px) {
    .row-flex {
        row-gap: 15px;
    }

    .alert-fixed {
        top: 90px;
        bottom: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: 460px;
    }

    body[data-action-id="cart"] .content .container {
        padding: 0;
    }

    [data-action-id="cart"] .inner-container {
        overflow: hidden;
        background-color: transparent;
        box-shadow: unset;
    }
}

/*HEADER*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1010;
    background-color: #fff;
    box-shadow: 0 1px 12px rgba(0, 0, 0, .06);
    transition: top .25s ease;
}

@media (max-width: 992px) {
    body.header_hidden .header {
        top: calc(-1 * var(--header_height));
    }
}

.header nav {
    padding: 10px 0;
    background-color: #fff;
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
}

.header .logo img {
    max-width: 165px;
}

.header .android_app img {
    border-radius: 5px;
    max-width: 140px;
    transition: all .3s ease-in-out;
}

.header .android_app img:hover {
    opacity: 0.8;
    transition: all .3s ease-in-out;
}

.header a.header_btn {
    background-color: var(--color_1);
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 5px;
    margin-right: 15px;
    transition: all .3s ease-in-out;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header a.header_btn:hover {
    background-color: black;
    transition: all .3s ease-in-out;
}

.header a.header_btn.all_stores {
    background-color: transparent;
    color: var(--color_1);
    border: 1px solid var(--color_1);
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    gap: 7px;
    padding: 0 14px;
}

.header a.header_btn.all_stores .all_stores_icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
}

.header a.header_btn.all_stores:hover {
    background-color: var(--color_1);
    color: #fff;
}

@media (max-width: 991px) {
    .header {
        height: 72px;
        display: flex;
        align-items: center;
    }

    .header .container {
        width: 100%;
        padding-left: 8px;
        padding-right: 8px;
    }

    .header nav .row {
        flex-wrap: nowrap;
        align-items: center;
    }

    .header nav .row > div:first-child {
        flex: 0 0 auto;
        width: auto;
        padding-right: 6px;
    }

    .header nav .row > div:last-child {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        column-gap: 6px;
    }

    .header .row .logo img {
        max-width: 130px;
        margin-left: -10px;
    }

    .header nav .city_select {
        margin: 0;
        padding: 0 8px;
        gap: 5px;
        height: 38px;
    }

    .header a.header_btn.all_stores {
        margin-right: 0;
        font-size: 13px;
        gap: 5px;
        padding: 0 11px;
        height: 38px;
    }

    .header a.header_btn.all_stores .all_stores_icon {
        width: 15px;
        height: 15px;
    }
}

/* ./HEADER */

.btn-check:active + .btn-danger:focus, .btn-check:checked + .btn-danger:focus, .btn-danger.active:focus, .btn-danger:active:focus, .show > .btn-danger.dropdown-toggle:focus,
.btn-check:active + .btn-success:focus, .btn-check:checked + .btn-success:focus, .btn-success.active:focus, .btn-success:active:focus, .show > .btn-success.dropdown-toggle:focus,
.btn-check:focus + .btn, .btn:focus {
    box-shadow: none;
}

.company_categories .category_scroller {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.company_categories .btn.btn-category {
    flex: 0 0 auto;
    margin: 0;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    color: #555;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    box-shadow: none;
    white-space: nowrap;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.company_categories .btn.btn-category:hover,
.company_categories .btn.btn-category:focus {
    color: var(--color_1);
    border-color: var(--color_1);
    background: #fff;
}

.city_intro {
    margin: 40px 0 20px;
}

.city_intro_title {
    margin: 0;
    font-weight: 900;
    font-size: 34px;
    color: var(--color_4);
}


.company_categories .btn.btn-category.active {
    background-color: var(--color_1);
    border-color: var(--color_1);
    color: #fff;
}

@media (max-width: 991px) {
    /* jedan red koji se skroluje bocno, sa bleedom do ivice ekrana */
    .company_categories .category_scroller {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        margin: 14px calc(var(--bs-gutter-x, 24px) * -.5) 0;
        padding: 2px calc(var(--bs-gutter-x, 24px) * .5) 4px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }

    .company_categories .category_scroller::-webkit-scrollbar {
        display: none;
    }

    .company_categories .btn.btn-category {
        padding: 9px 16px;
        font-size: 13px;
    }
}

.header-cart-holder {
    position: relative;
    width: auto;
    min-width: 130px;
    gap: 8px;
    justify-content: center;
    border: 1px solid var(--color_1);
    padding: 0 14px;
    height: 43px;
    transition: all .3s ease-in-out;
    border-radius: 6px;
}

.header-cart-holder:hover {
    color: white;
    background-color: var(--color_1);
    transition: all .3s ease-in-out;
}

.header-cart-holder:hover .header-cart-price {
    color: white;
}

.header-cart-holder .header-cart-price {
    font-weight: bold;
    color: black;
    white-space: nowrap;
}

.header-cart-holder svg {
    padding: 2px;
    position: relative;
    right: auto;
    flex-shrink: 0;
}

.header-cart-holder .cart-qty {
    font-size: 11px;
    color: #fff;
    background-color: var(--color_1);
    border-radius: 500px;
    position: absolute;
    top: 3px;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    transition: all .3s ease-in-out;
}

.header-cart-holder .cart-icon {
    display: inline-flex;
    flex: 0 0 auto;
}

.header-cart-holder .cart-text {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

/* vidljivi samo na mobilnoj traci korpe */
.header-cart-holder .cart-label,
.header-cart-holder .cart-chevron {
    display: none;
}

.modal-content {
    border: 0;
}

@media (max-width: 1200px) {

    /* traka korpe: puna sirina dna, pojavljuje se tek kad ima artikala */
    .header-cart-holder {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        width: auto;
        min-width: 0;
        height: 56px;
        gap: 10px;
        padding: 0 16px;
        z-index: 101;
        color: #fff;
        background-color: var(--color_1);
        border: 0;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
        transition: transform .28s cubic-bezier(.22, .61, .36, 1), opacity .2s ease;
    }

    .header-cart-holder.is-empty {
        transform: translateY(calc(100% + 24px));
        opacity: 0;
        pointer-events: none;
    }

    .header-cart-holder:hover,
    .header-cart-holder:active {
        color: #fff;
        background-color: var(--color_1);
    }

    .header-cart-holder .cart-icon {
        order: 1;
        position: relative;
    }

    .header-cart-holder .cart-icon svg {
        width: 24px;
        height: 24px;
        padding: 0;
    }

    .header-cart-holder .cart-text {
        order: 2;
        flex: 1 1 auto;
        justify-content: space-between;
        gap: 10px;
    }

    .header-cart-holder .cart-label {
        display: block;
        min-width: 0;
        font-size: 15px;
        font-weight: 700;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-cart-holder .header-cart-price,
    .header-cart-holder:hover .header-cart-price {
        flex: 0 0 auto;
        color: #fff;
        font-size: 15px;
        font-weight: 800;
    }

    .header-cart-holder .cart-chevron {
        order: 3;
        display: block;
        flex: 0 0 auto;
        opacity: .85;
    }

    .header-cart-holder .cart-qty {
        top: -6px;
        right: -7px;
        color: var(--color_1);
        background-color: #fff;
        border-color: var(--color_1);
    }

    /* da poslednji proizvod ne ostane ispod trake */
    [data-action-id="menu"] .content {
        padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    }
}

.banners.owl-carousel .owl-item {
    border: 0;
    background: transparent;
    padding: 0 8px;
    border-radius: 0;
}

.banners .banner_thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.banners .banner_thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    border-radius: 16px;
}

.banners .banner_thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, .12) 62%, rgba(0, 0, 0, .3));
    pointer-events: none;
}

.banners .banner_thumb .banner_text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    padding: 16px 18px;
    color: #fff;
}

.banners .banner_thumb .banner_title {
    flex: 1 1 auto;
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.01em;
    text-align: left;
    text-wrap: balance;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .5);
}

.banners .banner_thumb .banner_arrow {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 2px;
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
}

/* segmentirani indikator napretka slajdera */
.banners.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.banners.owl-carousel .owl-dot {
    flex: 0 0 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, .12);
    overflow: hidden;
    cursor: pointer;
}

.banners.owl-carousel .owl-dot span {
    display: block;
    width: 0;
    height: 100%;
    margin: 0;
    border-radius: inherit;
    background: var(--color_1);
}

.banners.owl-carousel .owl-dot.active span {
    animation: banner_progress var(--banner_progress_duration, 5s) linear forwards;
}

@keyframes banner_progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 991px) {
    /* bez bocnog paddinga da baner bude iste sirine kao kartice radnji */
    .banners.owl-carousel .owl-item {
        padding: 0;
    }

    .banners .banner_thumb .banner_text {
        padding: 14px 16px;
    }

    .banners .banner_thumb .banner_title {
        font-size: 18px;
    }

    .banners.owl-carousel .owl-dots {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        z-index: 4;
        gap: 5px;
        margin: 0;
    }

    .banners.owl-carousel .owl-dot {
        flex: 1 1 0;
        height: 3px;
        background: rgba(255, 255, 255, .45);
        box-shadow: 0 1px 4px rgba(0, 0, 0, .45);
    }

    .banners.owl-carousel .owl-dot span {
        background: #fff;
    }
}

@media (prefers-reduced-motion: reduce) {
    .banners.owl-carousel .owl-dot.active span {
        width: 100%;
        animation: none;
    }
}

.company_categories {
    margin-bottom: 20px;
}

.company_categories .company_categories_thumb {
    position: relative;
    opacity: 0.7;
    cursor: pointer;
}

.company_categories .company_categories_thumb.active {
    opacity: 1;
}

.company_categories.owl-carousel .owl-item img {
    display: block;
    border-radius: 9px;
    width: 100%;
}

.company_categories .company_categories_thumb .thumb_text {
    position: absolute;
    z-index: 9;
    bottom: 0px;
    font-size: 15px;
    font-weight: 700;
    text-shadow: 2px 2px black;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

.company_thumb {
    height: 100%;
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.company_thumb a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.company_thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

.company_thumb_main.noactive {
    display: none;
}

.companies_empty {
    margin: 0 0 40px;
    font-size: 15px;
    color: #6b7075;
}

.companies_empty.noactive {
    display: none;
}

.company_thumb .image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.company_thumb .image img.company_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.company_thumb:hover .image img.company_cover {
    transform: scale(1.05);
}

.company_thumb .rate {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    color: #fff;
    background: rgba(17, 17, 17, .78);
    font-weight: 700;
    font-size: 13px;
    border-radius: 999px;
}

.company_thumb .rate svg {
    color: #ffc107;
}

.company_thumb .closed_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 4px 10px;
    color: #fff;
    background: rgba(17, 17, 17, .78);
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
}

.company_thumb .logo_bedge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

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

.company_thumb .company_body {
    padding: 12px 14px 14px;
    text-align: left;
}

.company_thumb .title {
    margin: 0 0 6px;
    padding: 0;
    background: none;
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
}

.company_thumb .delivery_info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
}

.company_thumb .delivery_info .info_item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    background: none;
    color: #7a7a7a;
    font-size: 13px;
    font-weight: 500;
}

.company_thumb .delivery_info .info_item svg {
    flex: 0 0 auto;
    color: var(--color_1);
}

.company_thumb .delivery_badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    padding: 4px 10px;
    color: var(--color_4);
    background: rgba(255, 255, 255, .92);
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
}

.company_thumb .delivery_badge--off {
    color: #6b7280;
    background: rgba(233, 233, 233, .92);
}

.company_thumb.disabled {
    cursor: not-allowed;
}

.company_thumb.disabled .image img.company_cover {
    filter: grayscale(.5);
    opacity: .6;
}

/* telefon: kartice preko cele sirine, veca slika i citljiviji podaci */
@media (max-width: 575.98px) {
    .company_thumb {
        border-radius: 16px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 8px 22px rgba(0, 0, 0, .06);
    }

    .company_thumb .image {
        aspect-ratio: 16 / 9;
    }

    .company_thumb .company_body {
        padding: 14px 16px 16px;
    }

    .company_thumb .title {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .company_thumb .delivery_info {
        gap: 8px 16px;
    }

    .company_thumb .delivery_info .info_item {
        font-size: 13px;
    }

    .company_thumb .logo_bedge {
        left: 12px;
        bottom: 12px;
        width: 54px;
        height: 54px;
        border-radius: 14px;
    }

    .company_thumb .rate,
    .company_thumb .closed_badge {
        top: 12px;
    }

    .company_thumb .rate {
        right: 12px;
    }

    .company_thumb .closed_badge {
        left: 12px;
    }

    .company_thumb .delivery_badge {
        right: 12px;
        bottom: 12px;
        padding: 5px 12px;
    }
}

@media (hover: none) {
    .company_thumb:hover {
        transform: none;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    }

    .company_thumb:hover .image img.company_cover {
        transform: none;
    }
}

@media (max-width: 991px) {
    .companies {
        margin-top: 4px;
    }

    .companies .row {
        --bs-gutter-x: 12px;
    }

    .companies .company_thumb_main {
        margin-bottom: 12px !important;
    }
}

@media (max-width: 575.98px) {
    .companies .company_thumb_main {
        margin-bottom: 14px !important;
    }
}

/** ./HOME **/
/** MENU **/
.company_hero {
    margin-bottom: 15px;
    text-align: left;
}

.company_hero_photo {
    border-radius: 14px;
    overflow: hidden;
    height: 240px;
}

.company_hero_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company_hero_bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 22px;
    padding: 16px 25px;
    margin: -45px 20px 0;
    position: relative;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
}

.company_hero_logo {
    max-height: 58px;
    max-width: 100px;
    width: auto;
    border-radius: 10px;
    flex: 0 0 auto;
}

.company_hero_info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: auto;
}

.company_hero_title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.company_hero_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.company_hero_meta_item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 0, 0, .04);
    color: var(--color_4);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: 500px;
}

.company_hero_meta_item svg {
    color: var(--color_1);
    flex: 0 0 auto;
}

.company_hero_rate svg {
    color: #ffc107;
}

.company_hero_closed {
    background-color: rgba(220, 53, 69, .1);
    color: #b02a37;
}

.company_hero_closed svg {
    color: #dc3545;
}

.company_hero_notice {
    flex: 1 0 100%;
    margin: 0;
    padding: 9px 14px;
    border-radius: 10px;
    background-color: rgba(220, 53, 69, .08);
    color: #b02a37;
    font-size: 13px;
    font-weight: 600;
}

.company_hero_delivery--off {
    color: #8a8a8a;
}

.company_hero_contact_item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.company_hero_contact_item svg {
    color: var(--color_1);
    flex: 0 0 auto;
}

@media (min-width: 993px) {
    .company_hero {
        display: flex;
        align-items: stretch;
        margin-bottom: 20px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, .06);
        border-radius: 18px;
        overflow: hidden;
    }

    .company_hero_photo {
        flex: 0 0 38%;
        max-width: 430px;
        height: auto;
        aspect-ratio: 2 / 1;
        border-radius: 0;
    }

    .company_hero_bar {
        flex: 1 1 0;
        align-items: center;
        align-content: center;
        gap: 12px 18px;
        margin: 0;
        padding: 20px 28px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .company_hero_logo {
        height: 72px;
        max-height: none;
        max-width: 92px;
        object-fit: contain;
        padding: 6px;
        border: 1px solid rgba(0, 0, 0, .07);
    }

    .company_hero_info {
        gap: 10px;
    }

    .company_hero_contact_item {
        position: absolute;
        right: 28px;
        bottom: 18px;
        flex: 0 0 auto;
    }

    .company_hero_bar:has(.company_hero_notice) .company_hero_contact_item {
        position: static;
        flex: 1 0 100%;
    }

    .company_hero_title {
        font-size: 26px;
        letter-spacing: -.02em;
    }

    .company_hero_notice {
        flex: 0 0 auto;
        align-self: stretch;
    }
}

@media (max-width: 992px) {
    .company_hero {
        margin-bottom: 8px;
    }

    .company_hero_photo {
        height: 132px;
    }

    .company_hero_bar {
        margin: -28px 8px 0;
        padding: 12px 14px;
        gap: 8px 12px;
    }

    .company_hero_logo {
        max-height: 42px;
        max-width: 76px;
    }

    .company_hero_title {
        font-size: 19px;
    }

    .company_hero_meta_item {
        font-size: 12px;
        padding: 5px 10px;
    }

    .company_hero_contact_item {
        font-size: 12px;
        gap: 6px;
    }

    .company_hero_notice {
        font-size: 12px;
        padding: 8px 12px;
    }
}

.content #navbar-categories {
    background-color: transparent;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
}

#navbar-categories .nav-item {
    display: grid;
    margin: 5px;
}

#navbar-categories .nav-item a {
    font-weight: 600;
    font-size: 15px;
    text-transform: none;
    letter-spacing: normal;
    background-color: #fff;
    padding: 9px 18px;
    color: var(--color_4);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
    text-wrap: nowrap;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
    #navbar-categories .nav-item a:hover {
        background-color: var(--color_1);
        color: #fff;
        box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
    }
}

#navbar-categories a.active,
#navbar-categories a.active:hover {
    background-color: var(--color_1);
    color: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
    transform: none;
}


.product-holder .product-block {
    background: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
    border-radius: 14px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow .18s ease;
}

.product-holder .product-block:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, .1);
}

.product-holder .product-block.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.product-holder .product-block .product-main {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 10px;
    height: 100%;
    cursor: pointer;
}

.product-holder .product-block .product-image {
    flex: 0 0 150px;
}

.product-holder .product-block .product-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.product-holder .product-block .product-image.product-image-placeholder {
    aspect-ratio: 4 / 3;
    align-self: flex-start;
    border-radius: 10px;
    background: #faf6f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9bd9a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E") center / 34px no-repeat;
}

.product-holder .product-block .product-data {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: black;
}

.product-holder .product-block .product-data .product-info-block {
    align-self: flex-start;
}

.product-holder .product-block .product-title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 4px;
}

.product-holder .product-block .product-data .product-description {
    font-size: 14px;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.product-holder .product-block .product-price {
    margin-top: auto;
    align-self: flex-end;
    font-weight: 700;
    color: var(--color_1);
    font-size: 16px;
    padding-top: 6px;
    white-space: nowrap;
}

.content .category_products .category-title {
    display: none;
}

@media (max-width: 992px) {

    .content .categories_bar {
        position: sticky;
        top: var(--header_height);
        z-index: 9;
        padding: 0;
        background-color: rgba(255, 255, 255, .82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .05);
        transition: top .25s ease;
    }

    @supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
        .content .categories_bar {
            background-color: #fff;
        }
    }

    body.header_hidden .content .categories_bar {
        top: 0;
    }

    .content #navbar-categories {
        flex-wrap: nowrap;
        align-items: center;
        border: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding: 8px 14px;
        background-color: transparent;
    }

    .content #navbar-categories::-webkit-scrollbar {
        display: none;
    }

    .content #navbar-categories.has_fade_start {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px);
        mask-image: linear-gradient(to right, transparent 0, #000 24px);
    }

    .content #navbar-categories.has_fade_end {
        -webkit-mask-image: linear-gradient(to left, transparent 0, #000 24px);
        mask-image: linear-gradient(to left, transparent 0, #000 24px);
    }

    .content #navbar-categories.has_fade_start.has_fade_end {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    }

    #navbar-categories .nav-item {
        margin: 0;
    }

    #navbar-categories .nav-item a {
        font-size: 14px;
        padding: 7px 14px;
        box-shadow: 0 1px 3px rgba(9, 30, 66, .1);
    }

    #navbar-categories a.active {
        box-shadow: 0 1px 3px rgba(9, 30, 66, .1);
    }

    .content .category_products .category-title {
        display: block;
        text-align: left;
        font-weight: 700;
        font-size: 18px;
        margin: 0 0 8px;
    }

    .product-holder .product-block .product-main {
        gap: 10px;
        padding: 8px;
    }

    .product-holder .product-block .product-image {
        flex: 0 0 128px;
    }

    .product-holder .product-block .product-image.product-image-placeholder {
        background-size: 26px;
    }

    .product-holder .product-block .product-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .product-holder .product-block .product-price {
        font-size: 13px;
    }

    .product-holder .product-block .product-data .product-description {
        font-size: 12px;
    }
}

/** ./MENU **/
/** ADMIN PAGE **/
[data-action-id="admin"] label {
    color: var(--color_5);
}

[data-action-id="admin"] .form-control {
    font-size: 15px;
    box-shadow: unset;
}

[data-action-id="admin"] [type="submit"] {
    background-color: var(--color_1);
}

/** ./ADMIN PAGE **/
/** INDEX PAGE **/
[data-action-id="index"] .working_time {
    color: white;
}

[data-action-id="index"] .index_btns {
    padding-top: 15vh;
}

.modal-dialog .modal-content {
    background: var(--color_2);
    color: var(--color_4);
}

.btn_category {
    -webkit-animation: btn_light 3s infinite; /* Safari 4.0 - 8.0 */
    animation: btn_light 3s infinite;
}

.notification {
    background-color: var(--color_3);
    font-weight: 600;
    font-size: 18px;
    color: var(--color_1);
    text-transform: uppercase;
    padding: 40px;

}

.phone_numbers {
    color: orange;
    font-size: 20px;
    margin-top: 5%;
    padding: 10px;
}

.phone .fa.fa-phone {
    color: red;
    font-size: 35px;
    margin-top: 25px;
}

.location {
    position: relative;
    width: 100%;
    margin: auto;
    display: inline-block;
}

.location iframe {
    width: 100%;
    height: 25vh;

}

@media (max-width: 992px) {
    .location {
        width: 100%;
    }

    .location iframe {
        height: 16vh;
    }
}

/** ./INDEX PAGE **/
/** MENU **/
.nav-tabs > li > a {
    white-space: nowrap;
}

.nav-tabs {
    border-bottom: unset;
    display: block;
    overflow: hidden;
    overflow-x: auto;
    margin-bottom: 10px;
}

.nav-tabs::-webkit-scrollbar {
    width: 2px;
    height: 4px;
}

.nav-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    width: 2px;
}

.nav-tabs::-webkit-scrollbar-thumb {
    background: var(--color_1);
}

.nav-tabs::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nav-tabs > li > a {
    border-radius: unset;
}

.nav-tabs a {
    color: var(--color_4);
    font-size: medium;
    background-color: #f1f0ed1a;
    border-radius: unset;
    text-transform: uppercase;
    padding: 7px;
    letter-spacing: 2px;
}

.title h2 {
    color: var(--color_4);
}

.content .login_form, h2 {
    color: var(--color_4);
}

body[data-action-id="admin"] .page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

body[data-action-id="admin"] main {
    flex: 1 1 auto;
    display: flex;
    padding-top: 0;
}

body[data-action-id="admin"] .content {
    display: flex;
    min-height: unset;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--color_3);
}

body[data-action-id="admin"] .content .container {
    display: flex;
    padding: 0;
    max-width: 100%;
}

.customer-data .form-label .required,
.delivery-data .form-label .required,
.login-field .form-label .required,
.login-field label .required {
    color: #d9534f;
    font-weight: 700;
    margin-left: 2px;
}

/* ===== Login (root /admin) ===== */
.login-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(46, 49, 49, 0.10);
    padding: 40px 34px 34px;
    text-align: center;
}

.login-brand {
    margin-bottom: 22px;
}

.login-brand img {
    max-height: 46px;
    width: auto;
}

.login-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color_4);
    margin: 0 0 6px;
}

.login-subtitle {
    font-size: 14px;
    color: #8a9090;
    margin: 0 0 28px;
}

.login-card .login_form {
    text-align: left;
}

.login-field {
    margin-bottom: 18px;
}

.login-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color_4);
    margin-bottom: 7px;
}

.login-input {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b6b6;
    font-size: 17px;
    pointer-events: none;
}

.login-input .form-control {
    height: 48px;
    padding: 10px 14px 10px 42px;
    border: 1px solid #e2e5e5;
    border-radius: 12px;
    font-size: 15px;
    background: #fafbfb;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.login-input .form-control:focus {
    border-color: var(--color_1);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
    outline: none;
}

.login-input .form-control:focus + .login-input-icon,
.login-input:focus-within .login-input-icon {
    color: var(--color_1);
}

.login-submit {
    height: 48px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color_1);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: filter .15s ease, transform .05s ease;
}

.login-submit:hover {
    background: var(--color_1);
    color: #fff;
    filter: brightness(1.06);
}

.login-submit:active {
    transform: translateY(1px);
}

.login-card .errorMessage,
.login-card div.error {
    color: #d9534f;
    font-size: 12.5px;
    margin-top: 6px;
}

.login-input .form-control.error {
    border-color: #d9534f;
    background: #fff;
}

.login-input .form-control:-webkit-autofill,
.login-input .form-control:-webkit-autofill:hover,
.login-input .form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 40px #fafbfb inset;
    box-shadow: 0 0 0 40px #fafbfb inset;
    -webkit-text-fill-color: var(--color_4);
    caret-color: var(--color_4);
}

.error-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 56px;
}

.error-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(46, 49, 49, 0.10);
    padding: 40px 34px 34px;
    text-align: center;
}

.error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 152, 0, .12);
    color: var(--color_1);
    font-size: 28px;
}

.error-code {
    margin: 18px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #b0b6b6;
}

.error-title {
    margin: 6px 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color_4);
}

.error-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #8a9090;
}

.error-debug {
    margin: 16px 0 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fafbfb;
    font-size: 12.5px;
    line-height: 1.45;
    color: #8a9090;
    word-break: break-word;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.error-btn {
    flex: 1 1 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 18px;
    border: 1px solid var(--color_1);
    border-radius: 12px;
    background: var(--color_1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: filter .15s ease, background .15s ease, color .15s ease;
}

.error-btn:hover,
.error-btn:focus {
    color: #fff;
    text-decoration: none;
    filter: brightness(1.06);
}

.error-btn--ghost {
    border-color: #e2e5e5;
    background: #fff;
    color: var(--color_4);
}

.error-btn--ghost:hover,
.error-btn--ghost:focus {
    border-color: var(--color_1);
    background: #fff;
    color: var(--color_1);
    filter: none;
}

.category_products {
    padding-top: 11px;
}

.panel-footer {
    color: white;
    padding: 10px 15px;
    background-color: #f5f5f500;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.modal-content .panel-primary h6 {
    font-size: 18px;
    font-weight: 400;
}

.list-group-item {
    background: black;
    color: white;
}

.label-default {
    background-color: #77777736;
    padding-right: 10px;
}

.margin_total_price {
    padding: 10px;
}

.margin_total_price > span .label-default {
    background: transparent;
}

.margin_total_price > span {
    background-color: #eaeaea;
    color: var(--color_4);
    font-size: 16px;
    font-weight: 300;
    white-space: nowrap;
    border-radius: 5px;
    margin: 0 5px 5px;
    padding: 5px 10px;
    display: inline-block;
}

.margin_total_price > span:nth-child(3) {
    background-color: var(--color_6);
    color: var(--color_3);
}

.margin_total_price span .label-info span {
    font-weight: 600;
}

@media (max-width: 992px) {
    .category_products {
        padding-top: 0px;
        margin-top: 14px;
    }

    .fixed_side_bar {
        position: relative;
        top: 0px;
        z-index: 9;
        /* padding-top: 90px; */
        margin-top: 31px;
        /* margin-bottom: 20px; */
    }

    .mobile_pr_0 {
        padding-right: 0;
    }

    .margin_total_price > span {
        margin-bottom: 5px;
        display: inline-block;
    }

    .nav-tabs {
        border-bottom: unset;
        display: flex;
        overflow: hidden;
        overflow-x: auto;
        margin-bottom: 10px;
    }
}

/** ./MENU **/
/** PRODUCT MODAL **/
.btn-warning {
    background-color: var(--color_1);
}
.product_data_modal .modal-header {
    flex-direction: column;
    border: unset;
    padding: 0px;
}

.product_data_modal .modal-body::-webkit-scrollbar {
    width: 4px;
    border-radius: 10px;
}

.product_data_modal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product_data_modal .modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product_data_modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product_data_modal .btn-close {
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 16px;
    z-index: 9999;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .15);
    opacity: 1;
}

.product_data_modal .modal-body {
    padding: 0px;
    max-height: 82vh;
}

.product_data_modal .modal-content {
    border-radius: 14px;
    border: 0;
    overflow: hidden;
}

.product_data_modal .product_data {
    padding: 15px 18px;
}

.product_data_modal .total_price {
    color: white;
}

.product_data_modal .product-info img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.product_data_modal .product-info-text {
    padding: 16px 18px 0;
    text-align: left;
}

.product_data_modal .product-info-text.no-image {
    padding-top: 20px;
    padding-right: 60px;
}

.product_data_modal .product-info-description {
    color: #666;
    font-size: 13px;
}

.product_data_modal .category_note p {
    display: inline-block;
    margin: 10px 0 0;
    font-size: 12px;
    color: #856404;
    background-color: #fff8e6;
    border-radius: 8px;
    padding: 6px 12px;
}

.product_data_modal .product_modal_subtext {
    font-size: 14px;
    margin: 4px 0 8px;
}

.product_data_modal .meal_accessories_holder {
    display: inline-block;
    width: 100%;
}

.product_data_modal .product_data .nav-tabs {
    width: 100%;
    border: 0;
}

.product_data_modal .product_data .label {
    font-weight: bold;
}

.product_data_modal .product_data .form-control:disabled, .product_data .form-control[readonly] {
    width: 100%;
}

.product_data_modal .product_data .checkbox {
    font-size: 14px;
    border-radius: 10px;
    padding: 8px 6px;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.product_data_modal .product_data .checkbox {
    cursor: pointer;
}

.product_data_modal .product_data .checkbox label {
    cursor: pointer;
}

.product_data_modal .product_data .checkbox input[type=checkbox] {
    display: none;
}

.product_data_modal .product_data .accesories-list .checkbox.active {
    background-color: var(--color_1);
    border-color: var(--color_1);
    color: white;
    font-weight: 500;
}

.product_data_modal .product_data .accesories-list .checkbox label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.product_data_modal .product_data .accesories-list .checkbox .price {
    font-size: 12px;
    color: #888;
}

.product_data_modal .product_data .accesories-list .checkbox.active .price {
    color: rgba(255, 255, 255, .9);
}

.product_data_modal .product_data .accesories-list {
    display: flex;
    width: 100%;
}

.product_data_modal .product_data .meal_types > li {
    cursor: pointer;
    padding: 8px 14px;
    background-color: white;
    font-weight: 600;
    color: var(--color_4);
    min-width: 100px;
    line-height: 1.2;
    text-align: center;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}

.product_data_modal .product_data .meal_types > li p {
    margin: 0 0 3px;
}

.product_data_modal .product_data .meal_types > li.selected-meal-dish {
    background-color: var(--color_1);
    border-color: var(--color_1);
    color: white;
}

.product_data_modal .product_data .meal_types > li.selected-meal-dish .price {
    color: white;
}

.product_data_modal ul.meal_types {
    margin: 0;
    padding: 0;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product_data_modal .meal_accessories_holder {
    display: inline-block;
    width: 100%;
}

.product_data_modal .modal-footer {
    border-top: 1px solid #f0f0f0;
}

.product_data_modal .js-add-to-cart {
    border: 0;
    border-radius: 10px;
    padding: 0 16px;
    height: 46px;
    align-items: center;
    color: #fff;
}

.product_data_modal .js-add-to-cart:hover,
.product_data_modal .js-add-to-cart:active,
.product_data_modal .js-add-to-cart:focus {
    background-color: var(--color_6);
    color: #fff;
}

.product_data_modal .quantity_indicators .form-control[readonly] {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    height: 46px;
}

.quantity_indicators {
    position: relative;
    width: 120px;
    padding: 0 !important;
}

.quantity_indicators .down,
.quantity_indicators .up {
    top: 50%;
    width: 40%;
    transform: translateY(-50%);
    height: 100%;
    color: var(--color_1);
    font-weight: bold;
    font-size: 28px;
    position: absolute;
    padding: 5px;
    cursor: pointer;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity_indicators .form-control[readonly] {
    background-color: white;
    font-weight: bold;
    border: 2px solid var(--color_1);
}

.quantity_indicators .up:hover, .quantity_indicators .down:hover {
    color: black !important;
}

.quantity_indicators .down {
    left: 0;
}

.quantity_indicators .up {
    right: 0;
}

@media (max-width: 992px) {
    .product_data_modal .modal-footer {
        padding: 10px 3px;
    }

    .product_data_modal .modal-body {
        max-height: 75vh;
    }

    .product_data_modal .product_data .checkbox {
        font-size: 12px;
    }
}
/** ./PRODUCT DATA **/
/** CART **/
.empty_cart p {
    color: var(--color_4);
}

[data-action-id="cart"] h2 {
    font-weight: bold;
}

.cart-page {
    background-color: white;
    border-radius: 10px;
}

.form-validation {
    position: absolute;
    top: 4px;
    color: red;
    font-style: italic;
    right: 16px;
}

/* -- Prazna korpa -- */
.cart-empty {
    max-width: 420px;
    margin: 0 auto;
    padding: 50px 20px 60px;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cart-empty-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color_3);
    color: var(--color_1);
    font-size: 44px;
}

.cart-empty-title {
    font-weight: 700;
    color: var(--color_4);
    margin-bottom: 8px;
}

.cart-empty-text {
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}

.cart-empty-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--color_1);
    color: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    transition: filter .15s ease;
}

.cart-empty-btn:hover,
.cart-empty-btn:focus,
.cart-empty-btn:active {
    background-color: var(--color_1);
    color: #fff;
    filter: brightness(1.06);
}

/* -- Artikli (kartice) -- */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 46px 14px 16px;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
}

.cart-item-media {
    flex: 0 0 auto;
}

.cart-item-media img {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.cart-item-media-placeholder {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    background: #faf6f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9bd9a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E") center / 30px no-repeat;
}

.cart-item-info {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.cart-item-title {
    font-size: 15px;
    color: var(--color_4);
    line-height: 1.2;
}

.cart-item-portion {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.cart-item-meta {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    line-height: 1.5;
}

.cart-item-meta .meta-label {
    font-weight: 600;
    color: var(--color_4);
}

.cart-item-qty {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cart-item-qty-label {
    font-size: 12px;
    color: #888;
}

.cart-item-prices {
    flex: 0 0 auto;
    width: 190px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 13px;
    color: #666;
}

.price-line-value {
    font-weight: 600;
    color: var(--color_4);
    white-space: nowrap;
}

.price-line-total {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
}

.price-line-total .price-line-label {
    font-weight: 700;
    color: var(--color_4);
}

.price-line-total .price-line-value {
    color: var(--color_1);
    font-size: 16px;
}

/* -- Sažetak i potvrda -- */
.cart-summary {
    margin-top: 20px;
    padding: 18px;
    background-color: var(--color_3);
    border-radius: 14px;
}

.cart-totals {
    margin-bottom: 14px;
}

.cart-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    color: #6b7280;
}

.cart-total-row .cart-total-value {
    font-weight: 600;
    color: var(--color_4);
    white-space: nowrap;
}

.cart-total-row .cart-total-value--muted {
    font-weight: 500;
    color: #9ca3af;
}

.cart-total-row .cart-total-value--free {
    color: #1a7f4b;
}

.cart-total-row .cart-total-value--danger {
    color: #b42318;
}

.cart-total-row--grand {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.cart-total-row--single {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.cart-total-row--grand .cart-total-label {
    font-weight: 700;
    font-size: 15px;
    color: var(--color_4);
}

.cart-total-row--grand .cart-total-value {
    font-weight: 700;
    font-size: 22px;
    color: var(--color_1);
}

.cart-total-row--grand .total-currency {
    font-size: 14px;
    font-weight: 600;
}

.cart-order-note {
    margin: 12px 0 0;
    font-size: 13px;
    color: #856404;
    background-color: #fff8e6;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: left;
}

.cart-order-note--danger {
    color: #842029;
    background-color: #fdecea;
}

.cart-order-note--top {
    margin: 0 0 12px;
}

[data-action-id="cart"] {
    color: black;
}

[data-action-id="cart"] .glyphicon {
    color: black;
}

.cart-row .remove_cart_item {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #999;
    font-size: 15px;
    line-height: 1;
    transition: background-color .15s ease, color .15s ease;
}

.cart-row .remove_cart_item:hover {
    background-color: #fdecea;
    color: var(--color_danger);
}

[data-action-id="cart"] .leaflet-bar {
    box-shadow: unset;
}

[data-action-id="cart"] .geoapify-leaflet-control {
    min-width: unset;
    max-width: unset;
    width: 100%;
    z-index: 100;
}

[data-action-id="cart"] .geoapify-clear-button {
    height: 34px;
}

[data-action-id="cart"] .address_input_holder .geocoder-control {
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    z-index: 100;
}

[data-action-id="cart"] .leaflet-overlay-pane svg g {
    opacity: 0;
}

.leaflet-container {
    z-index: 99;
}

.cart-page .geoapify-form {
    margin-bottom: 15px;
}

.cart-page .company_delivery_map {
    border-radius: 6px;
}

.order-pin-icon {
    background: transparent;
    border: 0;
}

.order-pin {
    display: block;
    width: 34px;
    height: 44px;
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .3));
}

.order-pin svg {
    display: block;
    width: 100%;
    height: 100%;
}

.order-pin__body {
    fill: var(--color_1);
    stroke: #fff;
    stroke-width: 1.5;
}

.order-pin__dot {
    fill: #fff;
}

.cart_location_note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0 12px;
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #0c5460;
    background-color: #e8f6f9;
    border: 1px solid #bfe4ec;
    border-radius: 8px;
    text-align: left;
}

.cart_location_note .bi {
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 15px;
    color: #17a2b8;
}

.btn-save-order {
    background-color: var(--color_success) !important;
    width: 100%;
    border: 0;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    padding: 14px;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter .15s ease;
}

.btn-save-order:hover:not([disabled]) {
    filter: brightness(1.08);
    color: white;
}

.btn-save-order[disabled] {
    opacity: .55;
    cursor: not-allowed;
}

@media (max-width: 992px) {

    .cart-row {
        flex-wrap: wrap;
        gap: 12px;
        padding: 14px 14px 16px;
    }

    .cart-item-info {
        flex: 1 1 60%;
    }

    .cart-item-qty {
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        order: 3;
    }

    .cart-item-prices {
        flex: 1 1 100%;
        width: auto;
        order: 4;
        padding-top: 4px;
        border-top: 1px solid #f0f0f0;
    }

    [data-action-id="cart"] .header-wrapper .cart-holder,
    [data-action-id="success"] .header-wrapper .cart-holder {
        display: none;
    }

    .empty-cart-btn {
        width: 100%;
    }

    .cart-page {
        background-color: unset;
        border-radius: unset;
    }

    .cart-page section {
        background-color: white;
        border-radius: 10px;
        padding: 10px;
    }
}

/** ./CART **/

/** BANER ZA PREUZIMANJE APLIKACIJE **/
.app-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
    transform: translateY(calc(100% + 24px));
    opacity: 0;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .32s ease;
}

.app-banner[hidden] {
    display: none;
}

.app-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.app-banner.above-cart-bar {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
}

.app-banner__icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}

.app-banner__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.app-banner__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color_4);
    line-height: 1.2;
}

.app-banner__text {
    font-size: 12.5px;
    color: #7a8089;
    line-height: 1.35;
}

.app-banner__cta {
    flex: 0 0 auto;
    padding: 9px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    background: var(--color_1);
    color: #fff;
    white-space: nowrap;
}

.app-banner__cta:hover {
    background: var(--color_4);
    color: #fff;
}

.app-banner__close {
    position: absolute;
    top: -9px;
    right: -9px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--color_4);
    color: #fff;
    line-height: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/** ./BANER ZA PREUZIMANJE APLIKACIJE **/

footer#mu-footer {
    padding-top: 8px;
    padding-bottom: 10px;
    font-size: 14px;
}

@media (max-width: 992px) {

    .cart_table .quantity_indicators {
        width: 100%;
    }

    .cart_table .td_quantity {
        width: 100% !important;
    }

    .cart_table .image_td {
        width: auto !important;
        display: inline-block !important;
    }

    .cart_table .product_td {
        min-width: auto !important;
        display: inline-block;
        margin-top: 45px;
    }

    .product_data_modal.active {
        position: fixed;
        z-index: 999;
        top: 0px;
        left: 0px;
        height: 100vh;
        overflow-y: auto;
    }

    .product_cart_thumb {
        display: inline-block;
        width: 100%;
        position: relative;
        margin-bottom: 35px;
        margin-top: 10px;
    }

    .product_cart_thumb .remove_cart_item {
        color: var(--color_danger);
        position: absolute;
        top: -18px;
        right: 0;
        font-size: 24px;
    }

    [data-action-id="cart"] .label-warning {
        font-size: 12px;
    }

    .header .android_app img {
        height: 56px !important;
    }

}

@media (max-width: 992px) {
    .header .logo img {
        max-width: 130px;
    }

    .header nav {
        padding: 5px 0;
    }

    .city_intro {
        margin: 26px 0 0;
        text-align: left;
    }

    .city_intro_title {
        font-size: 22px;
    }

}

.order_review .rating-stars {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.order_review a {
    transition: all .3s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 8px;
}

.order_review a svg {
    height: 20px;
    width: 20px;
}

.order_review a:hover {
    transition: all .3s ease-in-out;
}

/** VIEW ORDER **/
.view_order_modal .modal-content {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.view_order_modal .modal-header {
    border-bottom: 1px solid #eceef1;
    padding: 18px 20px;
}

.view_order_modal .vo-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.view_order_modal .vo-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--color_4);
}

.view_order_modal .vo-subtitle {
    font-size: 13px;
    color: #8a9099;
}

.view_order_modal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 20px;
}

/* ITEM */
.view_order_modal .vo-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
}

.view_order_modal .vo-item:not(:last-child) {
    border-bottom: 1px solid #f0f1f3;
}

.view_order_modal .vo-item-media {
    flex: 0 0 auto;
}

.view_order_modal .vo-item-media img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.view_order_modal .vo-item-media-placeholder {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background: #faf6f2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e9bd9a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7'/%3E%3C/svg%3E") center / 26px no-repeat;
}

.view_order_modal .vo-item-body {
    flex: 1 1 auto;
    min-width: 0;
}

.view_order_modal .vo-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.view_order_modal .vo-item-title {
    font-weight: 600;
    color: var(--color_4);
    line-height: 1.25;
}

.view_order_modal .vo-item-category {
    font-size: 13px;
    color: #8a9099;
}

.view_order_modal .vo-qty {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--color_1);
    background: rgba(255, 152, 0, 0.12);
    border-radius: 999px;
    padding: 3px 10px;
    line-height: 1.3;
}

.view_order_modal .vo-item-omit {
    margin-top: 6px;
    font-size: 13px;
    color: var(--color_danger);
}

.view_order_modal .vo-item-extra {
    margin-top: 6px;
}

.view_order_modal .vo-item-extra-label {
    font-size: 12px;
    font-weight: 600;
    color: #8a9099;
    margin-bottom: 4px;
}

.view_order_modal .vo-item-extra-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.view_order_modal .vo-badge {
    font-size: 12px;
    font-weight: 500;
    color: #146c43;
    background: #e8f6ee;
    border-radius: 6px;
    padding: 3px 8px;
}

.view_order_modal .vo-item-note {
    margin-top: 6px;
    font-size: 13px;
    font-style: italic;
    color: #6c757d;
}

.view_order_modal .vo-item-price {
    margin-top: 8px;
    text-align: right;
    font-weight: 700;
    color: var(--color_4);
}

/* INFO */
.view_order_modal .vo-info {
    margin-top: 14px;
    padding: 14px;
    background: #f7f8fa;
    border-radius: 12px;
}

.view_order_modal .vo-info-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13.5px;
}

.view_order_modal .vo-info-row:not(:last-child) {
    margin-bottom: 8px;
}

.view_order_modal .vo-info-label {
    color: #8a9099;
    white-space: nowrap;
}

.view_order_modal .vo-info-value {
    font-weight: 600;
    color: var(--color_4);
    text-align: right;
}

/* FOOTER TOTALS */
.view_order_modal .modal-footer {
    display: block;
    border-top: 1px solid #eceef1;
    padding: 16px 20px;
}

.view_order_modal .vo-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 4px 0;
    font-size: 14px;
}

.view_order_modal .vo-total-label {
    color: #6c757d;
}

.view_order_modal .vo-total-value {
    font-weight: 600;
    color: var(--color_4);
}

.view_order_modal .vo-total-row--grand {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed #d9dde1;
}

.view_order_modal .vo-total-row--grand .vo-total-label {
    font-weight: 700;
    color: var(--color_4);
}

.view_order_modal .total_price {
    color: var(--color_1);
    font-weight: 700;
    font-size: 18px;
}
/** ./VIEW ORDER **/

/** SUCCESS PAGE **/
[data-action-id="success"] .inner-container {
    min-height: unset;
    padding-top: 8vh;
    padding-bottom: 8vh;
}

[data-action-id="success"] .order-status {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

[data-action-id="success"] .order-status__card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* HERO (status block) */
[data-action-id="success"] .order-status__hero {
    text-align: center;
}

[data-action-id="success"] .order-status__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
}

[data-action-id="success"] .order-status__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 10px;
    color: var(--color_4);
}

[data-action-id="success"] .order-status__text {
    font-size: 15.5px;
    line-height: 1.55;
    color: #5b6168;
    margin: 0 auto;
    max-width: 360px;
}

[data-action-id="success"] .order-status__text b {
    color: var(--color_4);
    font-weight: 700;
    white-space: nowrap;
}

/* Spinner (pending) */
[data-action-id="success"] .os-spinner {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 6px solid rgba(255, 152, 0, 0.2);
    border-top-color: var(--color_1);
    animation: os-spin 0.9s linear infinite;
}

@keyframes os-spin {
    to { transform: rotate(360deg); }
}

/* Delivering badge (in_delivery) */
[data-action-id="success"] .os-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    font-size: 40px;
}

[data-action-id="success"] .os-badge--delivering {
    background: rgba(255, 152, 0, 0.14);
    color: var(--color_1);
    animation: os-badge-pulse 1.6s ease-in-out infinite;
}

@keyframes os-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

/* Animated check (confirmed / done / taken) */
[data-action-id="success"] .os-check {
    width: 92px;
    height: 92px;
}

[data-action-id="success"] .os-check__circle {
    stroke: var(--color_success);
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: os-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

[data-action-id="success"] .os-check__mark {
    stroke: var(--color_success);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: os-stroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

/* Animated cross (rejected) */
[data-action-id="success"] .os-cross {
    width: 92px;
    height: 92px;
}

[data-action-id="success"] .os-cross__circle {
    stroke: var(--color_danger);
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: os-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

[data-action-id="success"] .os-cross__line {
    stroke: var(--color_danger);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 26;
    stroke-dashoffset: 26;
    animation: os-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes os-stroke {
    to { stroke-dashoffset: 0; }
}

/* SUMMARY */
[data-action-id="success"] .order-summary {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 6px;
    margin: 24px 0 22px;
    padding: 16px 8px;
    background: #f7f8fa;
    border-radius: 14px;
}

[data-action-id="success"] .order-summary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
}

[data-action-id="success"] .order-summary__label {
    font-size: 12px;
    font-weight: 500;
    color: #8a9099;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

[data-action-id="success"] .order-summary__value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color_4);
    white-space: nowrap;
}

[data-action-id="success"] .order-summary__divider {
    width: 1px;
    background: #e4e7eb;
    flex: 0 0 auto;
    margin: 4px 0;
}

/* ACTIONS */
[data-action-id="success"] .order-status__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

[data-action-id="success"] .os-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

[data-action-id="success"] .os-btn i {
    font-size: 18px;
    line-height: 1;
}

[data-action-id="success"] .os-btn--primary {
    background-color: var(--color_1);
    color: #fff;
}

[data-action-id="success"] .os-btn--primary:hover {
    background-color: var(--color_4);
    color: var(--color_1);
}

[data-action-id="success"] .os-btn--ghost {
    background-color: #fff;
    color: var(--color_4);
    border-color: #e4e7eb;
}

[data-action-id="success"] .os-btn--ghost:hover {
    border-color: var(--color_1);
    color: var(--color_1);
}

/* APP DOWNLOAD */
[data-action-id="success"] .order-app {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #eceef1;
}

[data-action-id="success"] .order-app__title {
    font-size: 14px;
    font-weight: 600;
    color: #5b6168;
    margin: 0 0 14px;
}

[data-action-id="success"] .order-app[hidden] {
    display: none;
}

@media (max-width: 992px) {
    [data-action-id="success"] .inner-container {
        padding-top: 0;
        padding-bottom: 24px;
        margin-top: 0;
    }

    [data-action-id="success"] .order-status__card {
        padding: 28px 20px 22px;
        border-radius: 16px;
    }

    [data-action-id="success"] .order-status__title {
        font-size: 21px;
    }

    [data-action-id="success"] .order-status__text {
        font-size: 14.5px;
    }
}

/** ./SUCCESS PAGE **/

/** CITY SELECT (header) **/
.header .city_select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 41px;
    margin: 0 15px 0 0;
    padding: 0 12px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.header .city_select:hover {
    border-color: var(--color_1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .07);
}

.header .city_select_icon {
    display: inline-flex;
    align-items: center;
    color: var(--color_1);
    flex: 0 0 auto;
}

.header .city_select:focus {
    outline: none;
    box-shadow: none;
}

.header .city_select_field {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

.header .city_select_caret {
    display: inline-flex;
    align-items: center;
    color: #9b9b9b;
    flex: 0 0 auto;
}

@media (max-width: 992px) {
    .header .city_select {
        margin-left: 10px;
        padding: 0 8px;
        gap: 5px;
    }

    .header .city_select_field {
        font-size: 13px;
    }
}
/** ./CITY SELECT (header) **/

/** SELECT CITY MODAL **/
.select_city_dialog {
    max-width: 420px;
}

.select_city_content {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    text-align: center;
}

.select_city_content .modal-body {
    position: relative;
    padding: 30px 25px 25px;
}

.select_city_close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #9b9b9b;
    transition: background .2s ease, color .2s ease;
}

.select_city_close:hover {
    background: var(--color_3);
    color: var(--color_4);
}

.select_city_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #fff4e5;
    color: var(--color_1);
}

.select_city_title {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color_4);
}

.select_city_text {
    margin: 0 0 22px;
    font-size: 14.5px;
    color: #6b6b6b;
}

.select_city_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select_city_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    color: var(--color_4);
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.select_city_option:hover,
.select_city_option:focus {
    border-color: var(--color_1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    color: var(--color_1);
    text-decoration: none;
}

.select_city_option.selected {
    border-color: var(--color_1);
    background: #fff8f0;
    color: var(--color_1);
}

.select_city_option_title {
    font-size: 16px;
    font-weight: 700;
}

.select_city_option_arrow,
.select_city_option_check {
    flex: 0 0 auto;
    color: #9b9b9b;
}

.select_city_option.selected .select_city_option_check,
.select_city_option:hover .select_city_option_arrow {
    color: var(--color_1);
}

@media (max-width: 576px) {
    .select_city_dialog {
        max-width: none;
    }

    .select_city_content .modal-body {
        padding: 25px 18px 20px;
    }
}
/** ./SELECT CITY MODAL **/

/** CART SECTION TITLE **/
.cart-section-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color_4);
}
/** ./CART SECTION TITLE **/

/** ORDER TYPE SEGMENT (cart) **/
.order-type-segment {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 4px;
    width: 100%;
}

.order-type-segment__item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 10px;
    border-radius: 7px;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.order-type-segment__item:hover {
    color: var(--color_4);
    background: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.order-type-segment__item.active {
    background: #fff;
    color: var(--color_4);
    font-weight: 600;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

@media (max-width: 480px) {
    .order-type-segment {
        gap: 3px;
    }
    .order-type-segment__item {
        padding: 7px 5px;
        font-size: 13px;
    }
}
/** ./ORDER TYPE SEGMENT (cart) **/

/** ****** PRIJAVA RESTORANA (kartica u listi, prazan grad, modal) ****** **/
.partner_thumb {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 22px 20px;
    background: #fff;
    border: 1px dashed #d8dade;
    border-radius: 14px;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.partner_thumb:hover,
.partner_thumb:focus-visible {
    border-color: var(--color_1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .07);
    transform: translateY(-3px);
    outline: none;
}

.partner_thumb_eyebrow {
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #9aa0a6;
}

.partner_thumb_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 14px 0 12px;
    border-radius: 50%;
    background: rgba(255, 152, 0, .12);
    color: var(--color_1);
}

.partner_thumb_title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color_4);
}

.partner_thumb_text {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7075;
}

.partner_thumb_cta {
    margin-top: auto;
    padding-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color_1);
}

.city_empty {
    padding: 40px 0 60px;
}

.city_empty_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 152, 0, .12);
    color: var(--color_1);
}

.city_empty_title {
    margin-top: 18px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color_4);
}

.city_empty_text {
    max-width: 520px;
    margin: 10px auto 0;
    font-size: 15px;
    line-height: 1.6;
    color: #6b7075;
}

.city_empty_offer {
    width: fit-content;
    margin: 16px auto 0;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(255, 152, 0, .1);
    font-size: 15px;
    color: var(--color_4);
}

.city_empty_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.city_empty_btn {
    display: inline-block;
    padding: 13px 28px;
    border: none;
    border-radius: 10px;
    background: var(--color_1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.city_empty_btn:hover {
    background: var(--color_6);
}

.city_empty_demo {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    border: 1px solid #dfe3e6;
    border-radius: 10px;
    background: #fff;
    color: var(--color_4);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.city_empty_demo:hover {
    border-color: var(--color_1);
    color: var(--color_1);
    text-decoration: none;
}

.partner_dialog {
    max-width: 460px;
}

.partner_content {
    position: relative;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.partner_content .modal-body {
    padding: 28px 26px 26px;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: #dcdee2 transparent;
    -webkit-overflow-scrolling: touch;
}

.partner_content .modal-body::-webkit-scrollbar {
    width: 10px;
}

.partner_content .modal-body::-webkit-scrollbar-track {
    background: transparent;
    box-shadow: none;
}

.partner_content .modal-body::-webkit-scrollbar-thumb {
    min-height: 40px;
    border: 3px solid transparent;
    border-radius: 10px;
    background-color: #dcdee2;
    background-clip: padding-box;
}

.partner_content .modal-body::-webkit-scrollbar-thumb:hover {
    background-color: var(--color_1);
}

.partner_close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: var(--color_3);
    color: #6b7075;
    z-index: 2;
}

.partner_close:hover {
    background: #e8e8e8;
    color: var(--color_4);
}

.partner_eyebrow {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--color_3);
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #6b7075;
}

.partner_title {
    margin-top: 12px;
    font-size: 21px;
    font-weight: 700;
    color: var(--color_4);
}

.partner_text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7075;
}

.partner_offer {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 152, 0, .1);
}

.partner_offer_badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--color_1);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.partner_offer_text {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color_4);
}

.partner_benefits {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.partner_benefits li {
    display: flex;
    gap: 10px;
    margin-bottom: 9px;
    font-size: 14px;
    line-height: 1.5;
    color: #5b6168;
}

.partner_benefits li svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--color_success);
}

.partner_demo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 13px 14px;
    border: 1px solid #e0e2e5;
    border-radius: 12px;
    color: var(--color_4);
    transition: border-color .2s ease, background .2s ease;
}

.partner_demo:hover {
    border-color: var(--color_1);
    background: rgba(255, 152, 0, .06);
    color: var(--color_4);
}

.partner_demo_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 152, 0, .12);
    color: var(--color_1);
}

.partner_demo_text {
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 1.45;
    color: #6b7075;
}

.partner_demo_text strong {
    display: block;
    font-size: 14px;
    color: var(--color_4);
}

.partner_demo_arrow {
    flex: 0 0 auto;
    color: #9aa0a6;
}

.partner_demo:hover .partner_demo_arrow {
    color: var(--color_1);
}

.partner_form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.partner_trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.partner_field {
    margin-bottom: 12px;
}

.partner_field label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color_4);
}

.partner_optional {
    font-weight: 400;
    color: #9aa0a6;
}

.partner_field input,
.partner_field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #e0e2e5;
    border-radius: 10px;
    font-size: 15px;
    color: var(--color_4);
    background: #fff;
}

.partner_field input:focus,
.partner_field textarea:focus {
    border-color: var(--color_1);
    outline: none;
}

.partner_field.has_error input,
.partner_field.has_error textarea {
    border-color: var(--color_danger);
}

.partner_error {
    display: none;
    margin: 0 0 10px;
    font-size: 13px;
    color: var(--color_danger);
}

.partner_error.visible {
    display: block;
}

.partner_submit {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: 10px;
    background: var(--color_1);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.partner_submit:hover {
    background: var(--color_6);
}

.partner_submit[disabled] {
    opacity: .6;
}

.partner_note {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: #8a8f94;
}

.partner_note a {
    color: var(--color_1);
    white-space: nowrap;
}

@media (max-width: 576px) {
    .partner_content .modal-body {
        padding: 24px 20px 22px;
    }

    .city_empty_title {
        font-size: 20px;
    }
}
/** ./PRIJAVA RESTORANA **/
