/* ==================================================
   Bottom Header / Navbar (Categories & Menu)
   ================================================== */
.bottom-header {
    background-color: #0B081D;
    border-bottom: 1px solid #1F1B36;
}

/* Left Side: All Categories Button */
.all-categories-wrapper {
    position: relative;
}

.cat-btn {
    background: linear-gradient(90deg, #3b82f6 0%, #a855f7 100%); 
    color: #ffffff;
    border: none;
    padding: 16px 35px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

/* Right Side: Main Menu Navigation */
.main-menu ul {
    display: flex;
    gap: 35px; 
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    padding: 18px 0; /* প্যাডিং দেওয়া হয়েছে যেন আন্ডারলাইনটি একদম নিচে বসে */
    display: block;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover and Active State (Yellow text & underline) */
.main-menu ul li.active a,
.main-menu ul li a:hover {
    color: #FFD700;
}

.main-menu ul li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
}