.tb-bottom-bar {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    background: #ffffff;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.tb-bottom-bar.show {
    transform: translateY(0);
}

/* banda roșie FULL WIDTH REAL */
.tb-bottom-header {
    width: 100%;
    background: #e60000;
    height: 60px;
    display: flex;
    align-items: center;
}

/* container interior doar pentru aliniere */
.tb-bottom-header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* stânga */
.tb-badge {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* dreapta */
.tb-close {
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

/* zona albă */
.tb-bottom-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px 20px 30px 20px;
}

/* titlu */
.tb-bottom-title {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.45;
    text-decoration: none;
}

.tb-bottom-title:hover {
    color: #e60000;
}

@media (max-width: 768px) {

    .tb-bottom-header {
        height: auto;
        padding: 10px 0;
    }

    .tb-bottom-header-inner {
        padding: 0 16px;
    }

    .tb-bottom-container {
        padding: 20px 16px 26px 16px;
    }

    .tb-bottom-title {
        font-size: 20px;
    }

    .tb-close {
        color: #ffffff;
    }
}