#geo-popup {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #000000;
    z-index: 999999;
	padding: 0px 35px;
    transform: translateY(120%);
    opacity: 0;
    visibility: hidden;
    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        opacity 0.35s ease,
        visibility 0.35s ease;
}

#geo-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

#geo-popup.hidden-scroll {
    transform: translateY(120%);
    opacity: 0;
}

#geo-popup .geo-popup-inner-wrap {
    width: 100%;
    max-width: var(--content-width, var(--e-con-container-max-width, 1550px));
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
}

#geo-popup .geo-popup-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

#geo-popup .geo-left {
    flex: 1;
}

#geo-popup .geo-eyebrow {
    margin-bottom: 20px;
    color: #FF0827;
    font-family: var(--e-global-typography-34a4d9f-font-family), Sans-serif;
    font-size: var(--e-global-typography-34a4d9f-font-size);
    font-weight: var(--e-global-typography-34a4d9f-font-weight);
    line-height: var(--e-global-typography-34a4d9f-line-height);
}

#geo-popup .geo-title {
    margin: 0 0 20px !important;
    font-size: var(--e-global-typography-5283123-font-size);
    line-height: var(--e-global-typography-5283123-line-height);
    font-family: var(--e-global-typography-5283123-font-family), Sans-serif;
    color: #ffffff !important;
    font-weight: var(--e-global-typography-5283123-font-weight);
}

#geo-popup .geo-desc {
    margin: 0 !important;
    color: #ffffff;
    font-size: var(--e-global-typography-e6f7272-font-size);
    line-height: var(--e-global-typography-e6f7272-line-height);
    font-family: var(--e-global-typography-e6f7272-font-family), Sans-serif;
    max-width: 820px;
}

#geo-popup .geo-right {
    width: 420px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#geo-popup .geo-select-wrap {
    width: 100%;
    position: relative;
    font-family: "D-DIN Pro", Sans-serif;
}

#geo-popup #geo-select {
    display: none;
}

#geo-popup .geo-dropdown {
    position: relative;
    width: 100%;
    min-width: 0;
    font-family: "D-DIN Pro", Sans-serif;
}

/* ── TOGGLE ─────────────────────────────────────────────── */
#geo-popup .geo-dropdown-toggle {
    width: 100% !important;
    min-width: 0 !important;
    height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 15px 30px !important;
    border: none !important;
    outline: none !important;
    border-radius: 100px !important;
    background: rgba(255, 255, 255, .80) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10) !important;
    backdrop-filter: blur(12.5px) !important;
    -webkit-backdrop-filter: blur(12.5px) !important;
    color: #4D4D4D !important;
    font-family: "D-DIN Pro", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: normal !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transform-origin: center center;
    transform: translateZ(0);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease !important;
}

#geo-popup .geo-dropdown-toggle:focus,
#geo-popup .geo-dropdown-toggle:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10) !important;
}

@media (hover: hover) {
    #geo-popup .geo-dropdown-toggle:hover {
        transform: scale(1.02) !important;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .16) !important;
        background: rgba(255, 255, 255, .92) !important;
        color: #000 !important;
    }
}

/* ── TOGGLE KAD JE OTVOREN ───────────────────────────────── */
#geo-popup .geo-dropdown.open .geo-dropdown-toggle {
    background: #FF0827 !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10) !important;
}

@media (hover: hover) {
    #geo-popup .geo-dropdown.open .geo-dropdown-toggle:hover {
        background: #FF0827 !important;
        color: #fff !important;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .16) !important;
        transform: scale(1.02) !important;
    }
}

/* ── SELECTED / LABEL / CARET ────────────────────────────── */
#geo-popup .geo-dropdown-selected {
    min-width: 0;
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

#geo-popup .geo-dropdown-globe {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    color: currentColor;
}

#geo-popup .geo-dropdown-globe path {
    stroke: currentColor;
}

#geo-popup .geo-dropdown-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-family: "D-DIN Pro", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: currentColor;
}

#geo-popup .geo-dropdown-caret {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    display: block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
    color: currentColor;
}

#geo-popup .geo-dropdown.open .geo-dropdown-caret {
    transform: rotate(-135deg) translateY(-1px);
}

/* ── DROPDOWN MENU ───────────────────────────────────────── */
#geo-popup .geo-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: rgba(255, 255, 255, .80) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .10) !important;
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border: none !important;
    outline: none !important;
    border-radius: 27px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    box-sizing: border-box;
    z-index: 999;
}

#geo-popup .geo-dropdown.open .geo-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

#geo-popup .geo-dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
    border: none !important;
    background: transparent !important;
}

/* ── OPCIJE ──────────────────────────────────────────────── */
#geo-popup .geo-dropdown-option,
#geo-popup .geo-dropdown-current {
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 44px !important;
    padding: 10px 16px !important;
    box-sizing: border-box !important;
    border-radius: 100px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #4D4D4D !important;
    text-decoration: none !important;
    text-align: left !important;
    font-family: "D-DIN Pro", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: normal !important;
    cursor: pointer !important;
    transition: color .2s ease !important;
}

#geo-popup .geo-dropdown-option::after,
#geo-popup .geo-dropdown-current::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 8px;
    height: 2px;
    width: 0;
    background-color: #FF0827;
    transition: width .4s ease;
}

#geo-popup .geo-dropdown-option:hover,
#geo-popup .geo-dropdown-option:focus,
#geo-popup .geo-dropdown-option:active,
#geo-popup .geo-dropdown-current:hover,
#geo-popup .geo-dropdown-option.is-active {
    color: #000 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
}

#geo-popup .geo-dropdown-option:hover::after,
#geo-popup .geo-dropdown-current:hover::after,
#geo-popup .geo-dropdown-option.is-active::after {
    width: calc(100% - 32px);
}

/* ── STAY ────────────────────────────────────────────────── */
#geo-popup .geo-stay {
    margin-top: 16px;
    color: #ffffff;
    font-size: var(--e-global-typography-e6f7272-font-size);
    line-height: var(--e-global-typography-e6f7272-line-height);
    font-family: var(--e-global-typography-e6f7272-font-family), Sans-serif;
    cursor: pointer;
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
}

#geo-popup .geo-stay::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: currentColor;
    transition: width 0.4s ease;
}

#geo-popup .geo-stay:hover::after {
    width: 100%;
}

/* ── CLOSE ───────────────────────────────────────────────── */
#geo-popup .geo-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.2s;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

#geo-popup .geo-close:hover {
    color: #fff;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    #geo-popup .geo-popup-inner-wrap {
        padding: 22px 18px;
    }

    #geo-popup .geo-popup-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    #geo-popup .geo-right {
        width: 100%;
    }

    #geo-popup .geo-dropdown {
        width: 100%;
    }

    #geo-popup .geo-dropdown-toggle {
        height: 54px !important;
        padding: 0 20px !important;
    }

    #geo-popup .geo-dropdown-menu {
        position: static;
        width: 100%;
        margin: 10px 0 0 0;
        padding: 8px;
        background: rgba(255, 255, 255, .80) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .10) !important;
        backdrop-filter: blur(12.5px);
        -webkit-backdrop-filter: blur(12.5px);
        border: none !important;
        border-radius: 27px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-sizing: border-box;
    }

    #geo-popup .geo-dropdown.open .geo-dropdown-menu {
        display: block;
    }

    #geo-popup .geo-eyebrow {
        font-size: 16px;
        margin-bottom: 10px;
    }

    #geo-popup .geo-title {
        font-size: 25px !important;
    }

    #geo-popup .geo-desc {
        font-size: 14px;
    }
}