    /* ================= USER DROPDOWN ================= */
.tp-user .dropdown-menu {
    background: linear-gradient(180deg, #0f1c2e, #0b1623);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 190px;
    box-shadow: 0 12px 35px rgba(0,0,0,.6);
}

/* items */
.tp-user .dropdown-item {
    color: #cfd6df;
    font-size: 14px;
    padding: 10px 18px;
    font-weight: 500;
}

.tp-user .dropdown-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* separator */
.tp-user .dropdown-menu hr {
    border-color: rgba(255,255,255,0.08);
    margin: 6px 0;
}

/* delogare */
.tp-user .dropdown-item.text-danger {
    color: #ff3c3c !important;
}

.tp-user .dropdown-item.text-danger:hover {
    background: rgba(255,60,60,0.12);
    color: #ff5c5c !important;
}



/* ---------- CONTAINER ---------- */
.tp-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- HEADER TOP ---------- */
.tp-header-top {
    position: relative;
    z-index: 10;
    /* margin-top: 2px;        spatiu intre menu si categorii */
    padding: 10px;
    
}
/* ===== MOBILE BOTTOM BAR ===== */
@media (max-width: 768px) {

    /* ascundem headerul de sus */
    .tp-header-top {
        display: none !important;
    }

    /* mobile bottom bar */
    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;

        background: linear-gradient(180deg,#0b1623,#0a1420);
        border-top: 1px solid rgba(255,255,255,0.08);

        display: flex;
        justify-content: space-around;
        align-items: center;

        padding: 10px 0;
        z-index: 9999;
    }

    .mobile-bottom-bar .tp-action-btn,
    .mobile-bottom-bar .tp-location {
        font-size: 20px;
        color: #fff;
    }

    /* category bar ramane sus */
    .tp-category-bar {
        top: 0 !important;
        padding: 4px 0;
        margin-top: 0 !important; /* ✅ FOARTE IMPORTANT */
        box-shadow: 0 8px 18px rgba(0,0,0,0.45);
    }

    body {
        padding-bottom: 70px; /* spatiu pt bottom bar */
    }
}

@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none !important;
    }
}


.tp-logo img {
    height: 34px;
}

/* MENU */
.tp-nav {
    display: flex;
    gap: 26px;
}
.tp-nav a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* ACTIONS */
.tp-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tp-action-btn {
    color: #fff;
    font-size: 18px;
    position: relative;
}
.tp-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff3c3c;
    color: #fff;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 10px;
}

/* LOCATION */
.tp-location {
    font-size: 13px;
    color: #cfd6df;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tp-location i { color: #ff3c3c; }
.tp-location-change {
    color: #ff3c3c;
    font-size: 12px;
}

/* ---------- CATEGORY BAR ---------- */
.tp-category-bar {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background: #0a1420;
    padding: 10px;
    margin-top: 0; /* ✅ */
}
@media (max-width: 768px) {
    .tp-category-bar {
        position: sticky;
        top: 0px !important;            /* spatiu real sub header */
        background: #0a1420;
        padding: 1px 0; 
        z-index: 1000;
        box-shadow: 0 8px 18px rgba(0,0,0,0.45);
    }
}



.tp-category-scroll {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
    .tp-category-scroll {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tp-category-scroll {
        justify-content: flex-start;
        padding: 0 15px;
    }
}


.tp-category-scroll::-webkit-scrollbar { display: none; }

.tp-category-item {
    color: #cfd6df;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
}
.tp-category-item i,
.tp-category-item img {
    font-size: 22px;
    height: 22px;
    margin-bottom: 3px;
}
.tp-category-item span {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}
.tp-category-item.active,
.tp-category-item:hover {
    color: #ff3c3c;
}