 /* Mobile Bottom Nav Styles - Only affects mobile view */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #faf5eb;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    display: none;
    font-family: 'Marcellus', serif;
  }
  
  .mobile-bottom-nav.d-block {
    display: block;
  }
  
  .nav-buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #b69348;
    padding: 10px 0;
    font-size: 16px;
    font-family: 'Marcellus', serif;
  
    flex: 1;
  }
  
  .nav-btn.active {
    color: #b69348;
    
  }
  
  .nav-btn i {
    font-size: 18px;
    
    margin-bottom: 10px;
  }

   .nav-divider {
    width: 1px;
    height: 44px;
    background-color: #e0e0e0;
    margin: 0 4px;
  }
  
    /* Show on both mobile and tablet */
  @media (max-width: 1024px) {
    .mobile-bottom-nav {
      display: block;
    }
  }

  /* Adjustments for larger tablets */
  @media (min-width: 768px) {
    .nav-buttons {
      height: 60px;
    }
    .nav-btn {
      font-size: 16px;
    }
  }