/* ========== BOTTOM NAVIGATION ========== */

.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  border-radius: 16px;
  background: #0A0A0A;
  backdrop-filter: blur(20px);
  z-index: 999;
  box-shadow: inset 0px 3px 4px 0px rgba(250, 250, 250, 0.4);
}

.bottom-nav a {
  text-decoration: none;
  color: #FAFAFA;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  white-space: nowrap;
  
  padding: 10px 18px;
}

.bottom-nav a:hover {
  color: #6f00ff;
}

.bottom-nav .cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #7D40FF;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.bottom-nav .cta:hover {
  transform: scale(1.05);
  color: #fff;
  box-shadow: 0 0 25px rgba(140, 0, 255, 0.6);
  background: linear-gradient(135deg, #6f00ff, #9d4dff);;
}

.cta-space {
  display: none;
}

.nav-shape {
  display: none;
}
.item .icon {
  display: none;
}

.item .label {
  display: inline;
}
@media (max-width: 768px) {
    
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    
    width: 100%;
    height: 100px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    border-radius: 16px 16px 0 0;

    z-index: 50;
            gap: 0;

 
  }

 

  .bottom-nav a {
    font-size: 12px;
    text-align: center;
    z-index: 2;
  }

  /* CTA */
  .bottom-nav .cta {
       width: 50px;
    height: 50px;
        justify-content: center;
  
  }
  span.label {
    display: none;
}
  .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .item .icon {
    display: block;
    font-size: 18px;
  }

  .item .label {
    display: block;
    font-size: 11px;
  }
}

@media (max-width: 550px) {
  .bottom-nav {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
              height: 72px;
  }
  .bottom-nav  a {
      width: auto;
      padding: 0;
  }
  
      .bottom-nav .cta {
        width: 50px;
        height: 50px;
      }
      
       .item .label {
    display: none;
  }

  .item .icon {
    font-size: 20px;
  }
  
}