    .content {
  padding: 16px;
  padding-bottom: 90px; /* space for bottom bar */
}

/* 🔻 Bottom Navigation Bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}
.label{
    color: black;
    font-weight: 600;
}
/* Nav Item */
.nav-item {
  flex: 1;
  text-align: center;
  display: grid;
  justify-content: center;
  color: #777;
  font-size: 12px;
  cursor: pointer;
}

.nav-item .icon {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

/* Active Tab */
.nav-item.active {
  color: #e53935;
  font-weight: 600;
}

    .navbar-toggler-icon, .navbar-toggler-icon:after, .navbar-toggler-icon:before{
        background-color: #ffffff !important;
    }
    .logo-img{
        width:60%;
    }
    
    #search-suggestions-desktop,
#search-suggestions-mobile {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    margin-top: 6px;
}

/* single suggestion row */
.search-item {
    padding: 10px 10px;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-item:hover {
    background: #f5f7fa;
    transform: translateX(4px);
}

/* product image */
.search-thumb {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #eaeaea;
    background: #fafafa;
}

/* product name */
.search-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
}

/* highlight matched keyword */
.highlight {
    color: #198754;
    font-weight: 700;
}

.detecting-text {
  color: #198754; /* bootstrap green */
  font-weight: 600;
}

/* Animated dots */
.dots span {
  animation: blink 1.4s infinite both;
  font-size: 22px;
  color: #198754;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% { opacity: .2; }
  20% { opacity: 1; }
  100% { opacity: .2; }
}

/* Green processing lines */
.spinner-line {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.spinner-line span {
  width: 8px;
  height: 8px;
  background: #198754;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out;
}

.spinner-line span:nth-child(2) {
  animation-delay: .2s;
}
.spinner-line span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* empty state */
#search-suggestions-desktop .list-group-item,
#search-suggestions-mobile .list-group-item {
    border: none;
    font-size: 14px;
}

/* 📱 Mobile specific tweaks */
@media (max-width: 767px) {
    #search-suggestions-mobile {
        border-radius: 16px;
    }

    .search-item {
        padding: 14px 16px;
    }

    .search-thumb {
        width: 20px;
        height: 20px;
    }

    .search-title {
        font-size: 12px;
    }
}

    .category-box {
  background: #f7f9fc;
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-box img {
  max-height: 70px;
  object-fit: contain;
}

.category-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.category-box:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.products-item-card{
        border: 1px solid #e1e0e0;
    box-shadow: 0px 0px 2px 0px #fffbfb;
    border-radius: 10px;
}
@media (max-width: 800px)
{
   .navbar-toggler-icon{
    display:none !important;
} 
.logo-img {
    width: 60%;
    position: relative;
    right: 25%;
}
.cart-icon-mobile{
    display:none !important;
}
}
@media (min-width: 800px)
{
.bottom-bar{ 
    display:none !important;
}
}
