/* Top bar meni */
.trsm-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #262728;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.trsm-top-nav ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

/* Logo levo */
.trsm-top-nav .trsm-logo img {
    height: 50px;
}

/* Lista linkova – horizontalno skrolovanje na mobilnom */
.trsm-top-nav ul {
    list-style: none !important;
    padding: 0;
    margin: 0 !important;
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    justify-content: center;
    flex-grow: 1;
    padding: 0 20px;
}
.trsm-top-nav ul::-webkit-scrollbar {
    display: none;
}

/* Pojedinačni tab – ceo <li> je klikabilan */
.trsm-top-nav ul li {
    position: relative;              /* Ključno za pseudo-element */
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background-color: #262728;
    border: 4px solid #464646;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer !important;
    flex-shrink: 0;
}

/* Ceo tab pokriven pseudo-elementom za klik */
.trsm-top-nav ul li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;                      /* Iznad pozadine, ispod teksta */
}

/* Link unutar taba – zauzima ceo prostor */
.trsm-top-nav ul li a {
    position: relative;
    z-index: 2;                      /* Tekst/ikona iznad pseudo-elementa */
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
    pointer-events: auto !important;
}

/* Hover efekat na ceo tab */
.trsm-top-nav ul li:hover {
    background-color: #414550 !important;
    border-color: #ff0100 !important;
}

/* Aktivan tab */
.trsm-top-nav ul li.active {
    background-color: #262728 !important;
    border: 4px solid #ff0100 !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

/* Ikone */
.trsm-top-nav i.fas {
    margin-right: 10px;
}

/* Forsiraj pointer-events ako tema blokira */
.trsm-top-nav ul li,
.trsm-top-nav ul li a,
.trsm-top-nav ul li::after {
    pointer-events: auto !important;
}



/* Mobilni hamburger */
.trsm-top-nav .trsm-hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Desktop: centriraj ili poravnaj levo */
@media (min-width: 1025px) {
    .trsm-top-nav ul {
        justify-content: center;
        overflow-x: visible;
        gap: 15px;
    }
}

/* Mobilni */
@media (max-width: 1024px) {
    .trsm-top-nav ul {
        display: none; /* sakrij horizontalnu listu */
    }
    .trsm-top-nav .trsm-hamburger {
        display: block;
    }
}








/* ==================== */
/* MOBILNI DROPDOWN     */
/* ==================== */

.trsm-mobile-dropdown {
    position: fixed;
    top: 70px;                /* ili 102px/116px kad je admin-bar */
    left: 0;
    right: 0;
    background: #1a1b1c;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 9999;
}

.trsm-mobile-dropdown.open {
    max-height: 80vh;         /* ili 100vh - 70px ako želiš skoro pun ekran */
    overflow-y: auto;
}

/* Lista unutar dropdown-a */
div.trsm-mobile-dropdown.open ul {margin: 0;}

.trsm-mobile-dropdown ul {
    margin: 0;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trsm-mobile-dropdown ul li {
    margin: 0 16px;
    border: 4px solid #3a3a3a;
    background: #262728;
    overflow: hidden;
    transition: all 0.25s ease;
}

.trsm-mobile-dropdown ul li:hover {
    background: #35383f;
    border-color: #ff0100;
    transform: translateX(4px);
}

.trsm-mobile-dropdown ul li a {
    padding: 10px 15px;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: color 0.2s;
	text-decoration: none;
}

.trsm-mobile-dropdown ul li a:hover {
    color: #ffffff;
}

.trsm-mobile-dropdown ul li.active {
    background-color: #262728 !important;
    border: 4px solid #ff0100 !important;
    color: #ffffff !important;
    font-weight: bold !important;
}


/* Dodatni razmak iznad prvog i ispod poslednjeg elementa */
.trsm-mobile-dropdown ul li:first-child {
    margin-top: 12px;
}
.trsm-mobile-dropdown ul li:last-child {
    margin-bottom: 20px;
}

/* Scrollbar lepši (opcionalno) */
.trsm-mobile-dropdown::-webkit-scrollbar {
    width: 7px;
}
.trsm-mobile-dropdown::-webkit-scrollbar-track {
    background: #1e1e1e;
}
.trsm-mobile-dropdown::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}
.trsm-mobile-dropdown::-webkit-scrollbar-thumb:hover {
    background: #777;
}


 




/* Dinamički pomeraj top menija i sadržaja ispod WP Admin Bara */
body.admin-bar .trsm-top-nav {
    top: 32px !important; /* standardna visina admin bara na desktopu */
}

body.admin-bar .trsm-content-wrapper {
    margin-top: 122px !important; /* 70px (tvoj top bar) + 32px (admin bar) + malo razmaka */
}

/* Na mobilnom – admin bar je 46px visok */
@media screen and (max-width: 782px) {
    body.admin-bar .trsm-top-nav {
        top: 46px !important;
    }
    body.admin-bar .trsm-content-wrapper {
        margin-top: 136px !important; /* 70px + 46px + razmak */
    }
}

/* Ako koristiš mobilni dropdown – pomeraj ga dole */
body.admin-bar .trsm-mobile-dropdown {
    top: 102px !important; /* 70px top bar + 32px admin bar */
}

@media screen and (max-width: 782px) {
    body.admin-bar .trsm-mobile-dropdown {
        top: 116px !important; /* 70px + 46px */
    }
}