body {
  margin: 0;
  background-color: #e6b800;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

h2{
  color:#000
}

.mustard-top {
  background-color: #000;
  padding: 10px 20px;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn.btn-menu {
  background-color: transparent;
  border: none;
  color: white;
}

.btn.btn-menu:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.navbar-info img {
  max-height: 80px;
}

.offcanvas-red {
  background-color: #e6b800;
  color: #000;
}

.offcanvas-red .nav-link {
  color: #000;
}

.offcanvas-red .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.offcanvas-red hr {
  border-color: #000;
}

.offcanvas-body .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offcanvas-body .nav-link i {
  margin-left: 10px;
  color: #000;
}

.card-custom {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-6px);
}

.object-fit-cover {
  object-fit: cover;
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    flex: 0 0 20%;
  }
}

.btn-custom {
  background-color: #e6b800;
  color: #000;
  border: none;
  font-weight: bold;
}

.btn-custom:hover {
  background-color: #e6b800;
  color: #000;
}

footer {
  background-color: #222;
  color: #ccc;
  padding-top: 40px;
  padding-bottom: 40px;
}

footer h5 {
  color: #fff;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

.search-bar {
  width: 100%;
  max-width: 100%;
}

.search-input-group {
  display: flex;
  align-items: center;
}

.search-input-group input {
  flex: 1;
  padding-left: 2.5rem;
  font-size: 0.9rem;
}

.search-input-group .bi-search {
  position: absolute;
  left: 10px;
  font-size: 1rem;
  color: #999;
}

.mt-product-footer {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .search-bar {
    width: 80% !important;
  }
}

@media (max-width: 767.98px) {
  .search-bar {
    width: 50% !important;
  }
}