.imakash-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 6px;
    border-top: 1px solid #eee;
    z-index: 9999;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.05);
}

.imakash-bottom-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    width: 20%;
    padding: 6px 0;
    border-radius: 12px;
    transition: all 0.25s ease;
    color: #666;
}

/* ICON */
.imakash-bottom-menu .dashicons {
    font-size: 18px;
    margin-bottom: 4px;
}

/* ACTIVE */
.imakash-bottom-menu a.active {
    background: var(--active-color, #6c5ce7);
    color: #fff;
    transform: translateY(-4px);
}

.imakash-bottom-menu a.active .dashicons {
    color: #fff;
}

/* HOVER */
.imakash-bottom-menu a:hover {
    transform: translateY(-2px);
}

/* ❌ REMOVE WHATSAPP SPECIAL STYLE */
.imakash-bottom-menu a.whatsapp {
    transform: none;
}

.imakash-bottom-menu a.whatsapp .dashicons {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    color: inherit;
}

/* MOBILE ONLY */
@media (min-width: 768px) {
    .imakash-bottom-menu {
        display: none;
    }
}