
  .amazon-header {
    background-color: rgb(19, 25, 33);
    color: white;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 35px; /* This will make the header sticky once you scroll past the ad */
    z-index: 500;
  }

  .amazon-header.is-sticky {
    position: fixed;
    top: 0;
    width: inherit;
    margin: 0 auto;
    z-index: 1000;
  }





  .menu-icon {
    height: 30px;
    width: 30px;
  
    align-self: center;
    margin-right: 9px;
    }
  
  .menu-icon:hover{
    opacity: 0.8;
  
    cursor: pointer; 
  }

  .menu-bottom-850px {
    display: none;
  }
  @media (max-width: 850px) {
    #menu-icon {
      display: none;
    }
    .menu-bottom-850px {
  
      width: 100%; 
      height: 50px;
      background-color: rgb(19, 25, 33);;
      position: fixed;
      bottom: 0;
      z-index: 1000;
      display: block;  
    }
  
    
    .menu-icon-container {
      display: flex;
      justify-content: space-around;
      align-items: center; 
      height: 100%; 
    }
  }

  .ad-banner {
    width: 100%;
    height: 35px;
    background-image: url("../../images/ads/ad-background7.jpg");
  
    color: white;
    text-align: center;
    line-height: 36px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .amazon-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }





  .amazon-header-left-section {
    width: 180px;
  }

  @media (max-width: 800px) {
    .amazon-header-left-section {
      width: unset;
    }
  }

  .header-link {
    display: inline-block;
    padding: 6px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0);
  }

  .header-link:hover {
    border: 1px solid white;
  }

  .amazon-logo {
    width: 100px;
    margin-top: 5px;
  }

  .amazon-mobile-logo {
    display: none;
  }

  @media (max-width: 575px) {
    .amazon-logo {
      display: none;
    }

    .amazon-mobile-logo {
      display: block;
      height: 35px;
      margin-top: 5px;
    }
  }

  .amazon-header-middle-section {
    flex: 1;
    max-width: 850px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
  }

  .search-bar {
    flex: 0.95;
    width: 0;
    font-size: 16px;
    height: 38px;
    padding-left: 15px;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  @media (max-width: 420px) {
    .search-bar {
      flex: 0.85;
    }
    .search-button {
      /* height: 15px; */
      background-color: rgb(254, 189, 105);
    
    }
    
    /* .search-bar {
      display: none;
    } */
    .amazon-header-middle-section {
      flex: 1;
      max-width: 841px;
      margin-left: 21px;
      margin-right: 90px;
      display: flex;
  }
    /* .search-button {
      border-radius: 4px;
    
    } */
    .orders-link {
      display: none;
    }
    .amazon-header-right-section {
      width: 1px !important;
    }
    .cart-text {
      display: none;
    }
  }

  /* .search-button {
    background-color: rgb(254, 189, 105);
    border: none;
    width: 45px;
    height: 40px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    flex-shrink: 0;
  } */

  .search-button {
    background-color: rgb(254, 189, 105);
    padding: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: none;
    width: 45px;
  }


  .search-icon {
    height: 22px;
    margin-left: 2px;
    margin-top: 3px;
  }

  .amazon-header-right-section {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    justify-content: end;
    align-items: center;
  }

  .orders-link {
    color: white;
  }

  .returns-text {
    display: block;
    font-size: 13px;
  }

  .orders-text {
    display: block;
    font-size: 15px;
    font-weight: 700;
  }

  .cart-link {
    color: white;
    display: flex;
    align-items: center;
    position: relative;
  }

  .cart-icon {
    width: 50px;
  }

  .cart-text {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
  }

  .cart-quantity {
    color: rgb(240, 136, 4);
    font-size: 16px;
    font-weight: 700;

    position: absolute;
    top: 4px;
    left: 22px;
    
    width: 26px;
    text-align: center;
  }

  .account-icon {
    position: relative;
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 12px;

    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0);
  justify-content: bottom;
  }


  .account-icon:hover {
    border-left: 1px solid rgb(242, 242, 242);
    border-right: 1px solid rgb(242, 242, 242);

  }





  /* */



/* Menu styling */

.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1000;
  display: none;
}





.menu-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 308px;
  height: 100vh;
  background-color: white;
  border-right: 1px solid #ccc;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  /* padding: 20px; */
  transform: translateX(-100%);
  transition: transform 0.3sease-in-out;
}

.menu-container.active {
  display: block;
  transform: translateX(0); /* Slide it in */
}


.no-scroll {
  overflow: hidden;
  height: 100vh;
}


.close-menu-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: -2px;
  right: -1px;
  color: black;
  height: 50px;
  width: 50px;
  border: 1px solid rgb(96, 94, 94);
}



.menu-container.active {
  left: 0;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .category {
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }

  .category a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
  }

  .category img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }





  .text {
    width: 100%;
    height: 20px;
    background-color: #960808;
  }


  .logo {
    /* background-color: rgb(19, 25, 33); */
    width: 40%;
    /* background-color: red; */
    /* height: 10px; */
    /* margin-bottom: 40px; */
    padding: 20px;
  }

  .logo > img {
    /* background-color: rgb(19, 25, 33); */
    width: 100%;
    /* background-color: red; */
    /* height: 60px; */
    /* margin-bottom: 40px; */
  }