.top-bar {
    background: #e91e63;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* KEY for responsiveness */
}

/* Left section */
.top-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.top-left span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-left i {
    margin-right: 6px;
}

/* Right section */
.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-right a {
    font-size: 16px;
}

/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
    .top-bar {
        font-size: 13px;
        text-align: center;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .top-left,
    .top-right {
        justify-content: center;
    }
}

/* ---------- Extra Small Screens ---------- */
@media (max-width: 480px) {
    .top-left {
        flex-direction: column;
        align-items: center;
    }

    .top-right a {
        font-size: 18px; /* easier tap */
    }
}
