/* Background for light grey elements */
.bg-header {
  background-color: #fff;
}
nav.navbar {
  border-bottom: 1px solid #000 !important; /* black border */
}

/* Rounded category / arabic buttons */
.nav-btn {
  background: #f2f2f2;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 18px;
  border: none;
  transition: background 0.2s ease;
}
.nav-btn:hover {
  background: #e2e2e2;
}

/* Search box */
.search-box {
  border-radius: 50px;
  border: none;
  padding: 10px 15px;
  background-color: #f2f2f2;
  width: 100%;
}
.search-box:focus {
  outline: none;
  box-shadow: none;
}

/* Search button */
.search-btn {
  border-radius: 50%;
  background: #0a0a3c;
  color: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.search-btn:hover {
  background: #000028;
}
.nav-btn-arabic {
  background-color: #f2f2f2;
  color: #000;
  height: 42px; /* fixed height */
  width: 110px; /* fixed width */
  border: none; /* no border */
  border-radius: 999px; /* pill shape */
  font-size: 18px;

  display: flex; /* enables flexbox */
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering */
  cursor: pointer;
  outline: none;
  line-height: 1; /* avoid shifting text vertically */
  font-family: "Urbanist", sans-serif; /* clean font */
}

.nav-btn-arabic:focus {
  outline: none;
  box-shadow: none;
}

/* Sign In button */
.signin-btn {
  background: #0a0a3c;
  color: #fff;
  border-radius: 50px;
  display: flex; /* enables flexbox */
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering */
  height: 42px; /* fixed height */
  width: 120px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.signin-btn:hover {
  background: #000028;
  color: #fff;
}

/* Navbar border line */
.navbar {
  border-bottom: 1px solid #ddd;
}

/* Spacing between items */
.nav-items-wrapper {
  display: flex;
  align-items: center;
  gap: 15px; /* Controls spacing between all items */
  flex-grow: 1;
}
/* Keep existing styles unchanged */

/* Responsive tweaks */
/* Mobile Responsive Fix */
/* Footer Responsive Fix */
@media (max-width: 767px) {
  footer .row {
    text-align: center; /* center align all footer items */
  }

  footer h6 {
    margin-bottom: 10px;
  }

  footer ul {
    padding-left: 0;
    margin-bottom: 20px; /* spacing between each section */
  }

  footer ul li a {
    display: inline-block;
    padding: 5px 0; /* touch-friendly links */
  }

  footer .col-6 {
    flex: 0 0 100%;  /* make each col full-width */
    max-width: 100%;
  }

  footer .col-12.col-lg-3 {
    margin-top: 20px; /* spacing above download app section */
  }

  /* Store buttons and QR stacked on mobile */
  .qr-img {
    margin-top: 15px;
  }

  .d-flex.align-items-center.gap-3 {
    flex-direction: column; 
    align-items: center; /* center store buttons + QR */
  }
}
