body {
  background-color: #2c2c2c;
  color: white;
}

.heading {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: tektur;
  color: rgba(224, 17, 17, 0.862);
  font-weight: bold;
}

.container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  border: none;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 320px;
}

.card a {
  text-decoration: none;
  color: red;
  padding: 5px 0 0 0 ;
}

.card a:hover {
  text-decoration: underline;
  color: red;
}

.p-img {
  object-fit: contain;
  height: 140px;
  width: auto;
}

@media only screen and (min-width: 600px) {
  .card {
    height: auto;
    width: 200px;
  }
}

/* Navbar styling */
.navbar {
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.navbar .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: red !important;
}

.cart-icon {
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}
.form-control{
  width: 100%;
}

@media (min-width: 1000px) {
  .drop-hide {
    display: none !important;
  }

  .cart-out {
    display: none;
  }
}

@media (max-width: 1000px) {
  .menu-drop {
    display: none !important;
  }

  .cart-in {
    display: none;
  }
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .cart-icon {
  margin-left: 10px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.cart-icon:hover {
  color: #BB2D3B;
}

/* menu drop */

.menu-drop {
  /* margin-top: 20px; */
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-around;
}

.dropbtn {
  background-color: transparent;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  color: red;
}