.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 2px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 99;
}

.bottom-nav > ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bottom-nav > ul >li {
  flex: 1;
  text-align: center;
  color: var(--theme-color);
  font-weight: normal;
}

.bottom-nav > ul> li >a {
  color: #8b004e;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  position: relative;
  padding-bottom: 5px;
  font-family: 'Tajawal', sans-serif;
}

.bottom-nav > ul>li>a i {
  font-size: 18px;
  display: block;
  margin-bottom: 3px;
}

/*.bottom-nav .current-menu-item {
  border-bottom: 2px solid var(--theme-color);
}*/

.bottom-nav .current-menu-item a::before, .bottom-nav .current-menu-item span {
  font-weight: bold;
}

.bottom-nav .current-menu-item a::after {
   content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background-color: #8b004e;
  border-radius: 2px;
}

.bottom-nav .add-ad.current-menu-item a::after {
  content: unset;
  width: 0;
  height: 0;
}

.bottom-nav > ul > li > a:before {
    font-size: 12px;
     font-family: Font Awesome\ 5 Pro;
     display: block;
}

/*.bottom-nav .home-menu-item a:before {
  content: "\f015";
  display: block;
}

.bottom-nav .listings-menu-item a:before {
  content: "\f0a1";
  display: block;
}*/

/*.bottom-nav .mobile-menu-categories a:before {
    content: "\f077";
    margin-inline-end: 4px;
}*/

.bottom-nav .my_profile_menu {
  position: relative;
}

/* Central Add Ad Button */
.bottom-nav .add-ad a {
  background: #8b004e;
  color: white !important;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  flex-direction: column; /* stack icon above label */
  justify-content: center;
  align-items: center;
  margin-top: -30px; /* lift it above nav */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
  font-size: 12px; /* text size */
  text-align: center;
  line-height: 1.2;
}

.bottom-nav .add-ad a .menu-item-label {
 color: white;
  font-size: 12px;
  display: block;
}

.bottom-nav .add-ad a::before {
  content: "\f067"; 
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 22px;
  color: white;
  margin-bottom: 4px;
}

.bottom-nav .add-ad a i {
  margin-bottom: 0;
}

/* Mobile Only */
@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

.bottom-nav .dashboard-submenu-bottom-nav {
  position: absolute;
  bottom: 22px;
    left: 2px;
    padding: 0 0 0;
    max-width: unset;
    background: #fff;
    border: none;
    border-top: 1px solid #ccc;
    display: none;
    margin-top: 20px;
    box-shadow: unset;
    margin-bottom: 23px;
    transition: 0.2s all;
    z-index: -1;
    max-height: 70vh;
    overflow-y: auto;
    width: 187px;
    text-align: start;
}

.bottom-nav .dashboard-submenu-bottom-nav li {
    padding-bottom: 4px;
    padding-top: 4px;
    display: block;
    margin-inline-start: 5px;
    border-bottom: 1px solid #eee;
}

.bottom-nav .dashboard-submenu-bottom-nav li a {
     display: flex;
     gap: 3px;
    font-size: 1.1em;
    color: #272727;
    padding: 0.5em 0 0;
    font-weight: 300;
    transition: 0.5s all;
    padding-inline-end: 7px;
}