* {
  transition: all 0.3s ease;
}

@font-face {
  font-family: myRegularFont;
  src: url(../assets/Dosis/static/Dosis-Regular.ttf);
  /* src: url(../assets/Roboto/Roboto-Regular.ttf); */
}

@font-face {
  font-family: myBoldFont;
  src: url(../assets/Dosis/static/Dosis-Bold.ttf);
  /* src: url(../assets/Roboto/Roboto-Bold.ttf); */
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

h3 {
  font-family: myRegularFont;
  font-size: 18px;
  color: #fff;
}

.actionIcons {
  display: flex;
  justify-content: space-between;
  width: 33%;
}

.arrow {
  margin-left: 1rem;
}

.backBanner {
  border-bottom: white;
  display: flex;
  align-items: center;
  height: 5rem;
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  justify-content: space-between;
}

#backBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: black;
  opacity: 0.7;
  cursor: pointer;
  z-index: 3;
}

.bars {
  display: none;
  color: #fff;
  font-size: 2rem;
  padding-left: 1.2rem;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.bars1 {
  color: #fff;
  font-size: 1.2rem;
}

.browseMenu {
  margin-left: 2.2rem;
}

.browseMenu:hover + .hoverMenu{
  visibility: visible;
  opacity: 1;
}

.browseMenu:hover i{
  transform: rotate(-90deg);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 0 solid white;
  background: #EA9F1C;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-family: myRegularFont;
}

.btn:hover {
  color: #EA9F1C;
  background: #fff;
  transform: scale(0.95);
}

#cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 23rem;
  background-color: #3f3f3f;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.6);
  transform: translateX(200%);
  z-index: 4;
}

.cartCont {
  padding: 2rem;
}

.cartItem {
  display: flex;
  align-items: center;
  padding-top: 2rem;
}

#catNavMenu {
  display: flex;
  position: sticky;
  /* top: 2rem; */
  top: 0;
  left: 0;
  background-color: #3f3f3f;
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.6);
  height: 3rem;
  margin-top: 2.8rem;
  align-items: center;
  padding-left: 2.2rem;
  z-index: 1;
}

#catNavMenu a {
  display: flex;
  color: white;
  font-size: 1rem;
  font-family: myRegularFont;
  text-decoration: none;
  margin-right: 2.8rem;
}

#catNavMenu h1 {
  font-family: myRegularFont;
  font-size: 1rem;
  color: white;
  margin-left: 1rem;
}

#catNavMenu a:hover {
  color: #EA9F1C;
  cursor: pointer;
}

.catNavMenuMobCont {
  display: none; 
  align-items: center;
}

.contShop {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.extraOption {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: myRegularFont;
  font-size: 1.2rem;
}


#footer {
  background-color: #2D2D2D;
  height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 1.7rem;
}

.footerIcon {
  color: #EA9F1C;
  font-size: 1.2rem;
}

.footerLink {
  color: white;
  font-size: 1.2rem;
  font-family: myBoldFont;
  text-decoration: none;
  text-align: center;
}

.footerLinkBundle {
  display: flex;
  justify-content: space-between;
  width: 70%;
}

.footerText {
  color: white;
  font-size: 1rem;
  font-family: myRegularFont;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ggIcon {
  object-fit: cover;
  width: 60px;
  height: 60px;
  padding-left: 2rem;
}

#greeting {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.greetingText {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-family: myBoldFont;
}

.groupTitle {
  font-family: myBoldFont;
  font-size: 1.7rem;
  color: #fff;
  padding-left: 2rem;
  /* margin-bottom: 1rem; */
}

.hoverMenu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 7.3rem;
  left: 2rem;
  width: 5rem;
  /* height: 50px; */
  background-color: #2D2D2D;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-top: 0.5rem;
  z-index: 2;
}

.hoverMenu a {
  color: white;
  font-size: 1rem;
  font-family: myRegularFont;
  text-decoration: none;
  margin-top: 0.5rem;
}

.hoverMenu:hover {
  visibility: visible;
  opacity: 1;
}

.icon {
  font-size: 1.3rem;
  color: #fff;
}

.icon:hover {
  color: #EA9F1C;
  cursor: pointer;
}

.input {
  width: 80%;
  height: 1rem;
  border: 0px solid white;
  border-bottom: 1px solid white;
  padding: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-family: myRegularFont;
  color: white;
  background-color: #3f3f3f;
}

.input:focus {
  outline-offset: 2px ;
  outline: #EA9F1C ;
}

.itemImage {
  height: 6rem;
  width: auto
}

.itemInfo {
  margin-left: 1rem;
}

.itemName {
  font-size: 1.1rem;
  font-family: myRegularFont;
  color: #EA9F1C;
  width: 80%;
  /* margin-top: 0.5rem; */
}

.itemPrice {
  font-size: 1.4rem;
  font-family: myBoldFont;
  color: white;
}

.line {
  width: 150%;
  height: 2px;
  margin-left: -2rem;
  /* margin-right: -2rem; */
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
}

#login {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 23rem;
  background-color: #3f3f3f;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.6);
  transform: translateX(200%);
  z-index: 4;
}

.mobileBrowseMenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mobileBrowseMenuScreen {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 6;
  background-color: #3f3f3f;
  overflow-y: scroll;
  padding-bottom: 4rem;
}

#mobileBrowseMenuScreen a {
  color: white;
  font-size: 2rem;
  font-family: myRegularFont;
  text-decoration: none;
  margin-top: 4rem;
  width: 80%;
}

.mobileCatHeader {
  display: flex;
  width: 80%;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
}

.mobileCatHeader h1 {
  font-size: 2rem;
  font-family: myBoldFont;
  color: rgba(255, 255, 255, 0.3);
}

#mobileCatMenu {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: #3f3f3f;
  overflow-y: scroll;
  padding-bottom: 4rem;
}

#mobileCatMenu a {
  color: white;
  font-size: 2rem;
  font-family: myRegularFont;
  text-decoration: none;
  margin-top: 5rem;
  width: 80%;
}

#mobileMainMenu {
  position: fixed;
  display: none;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: #3f3f3f;
  overflow-y: scroll;
  padding-bottom: 4rem;
}

#mobileMainMenu a {
  color: white;
  font-size: 2rem;
  font-family: myRegularFont;
  text-decoration: none;
  margin-top: 5rem;
  width: 80%;
}

.mobileXMark {
  color: #EA9F1C;
  font-size: 3rem;
  width: 80%;
  display: flex;
  justify-content: end;
  margin-top: 2rem;
}

.mobileXMarkCat {
  color: #EA9F1C;
  font-size: 3rem;
}

.navBack {
  background-color: #2D2D2D;
  padding-bottom: 1rem;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.6);
}

#navbar {
  display: flex;
  width: 100vw;
  height: 2rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  /* padding-left: 2rem; */
  /* position: sticky; */
  /* background-color: #EA9F1C; */
  /* top: 0;
  left: 0; */
}


.navIcon {
  font-size: 1.8rem;
  color: white;
  margin-left: 6%;
}

.navIcon:hover {
  cursor: pointer;
  color: #EA9F1C;
}

.navIconCont {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  margin-right: 2rem;
}

.navImg {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  background-color: rgba(45, 45, 45, 0.7);
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.6);
}

#navMenu {
  display: flex;
  /* padding-left: 2.2rem; */
  margin-top: 2rem;
  width: 100%;
}

#navMenu a:hover {
  color: #EA9F1C;
  cursor: pointer;
}

#navMenu a {
  display: flex;
  color: white;
  font-size: 1rem;
  font-family: myRegularFont;
  text-decoration: none;
  margin-right: 2.5rem;
}

.number {
  color: white;
  font-size: 1.2rem;
  font-family: myBoldFont;
  margin-left: 1rem;
  margin-right: 1rem;
}

.popupArrow {
  margin-left: 1rem;
  margin-right: 1rem;
  color: white;
  font-size: 1.5rem;
}

.popupHeader {
  font-family: myBoldFont;
  font-size: 1.6rem;
  color: white;
  z-index: 1;
}

.priceBundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.product {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #2D2D2D;
  border-radius: 0.5rem;
  width: 11rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin-right: 1rem;
  text-decoration: none;
}

.productBundle {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.productCompany {
  font-size: 1rem;
  font-family: myRegularFont;
  color: rgba(255, 255, 255, 0.3);
  width: 100%;
}

.productFirst {
  display: flex;
  position: relative;
  flex-direction: column;
  background-color: #2D2D2D;
  border-radius: 0.5rem;
  width: 11rem;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin-right: 1rem;
  margin-left: 2rem;
  text-decoration: none;
}

.productGroup {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: space-between; */
  margin-top: 1rem;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-x: scroll;
}

.productGroup::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

.productImage {
  object-fit: scale-down;
  height: 9rem;
  width: 8rem;
  padding: 1rem;
}

.productName {
  font-size: 1.1rem;
  font-family: myRegularFont;
  color: #EA9F1C;
  width: 100%;
  height: 3.5rem;
  margin-top: 0.3rem;
  text-decoration: none;
}

.productPrice {
  font-size: 1.4rem;
  font-family: myBoldFont;
  color: white;
}

.productPriceBundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  width: 100%;
}

.quantity {
  display: flex;
  align-items: center;
  width: 100%;
}

.saleBox {
  background-color: #F14C48;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  position: absolute;
  border-radius: 0.5rem;
  top: 0;
  right: 0;
  z-index: 1;
}

.salePrice {
  font-size: 0.8rem;
  font-family: myRegularFont;
  color: white;
}

.saleText {
  font-size: 1.2rem;
  font-family: myBoldFont;
  color: white;
}

#searchBar {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 5rem;
  background-color: #2D2D2D;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.searchBtn {
  color: white;
  font-size: 1.7rem;
  font-family: myBoldFont;
  padding-left: 1rem;
  cursor: pointer;
}

.searchBtn:hover {
  color: #EA9F1C;
  cursor: pointer;
}

.searchInput {
  background-color: #2D2D2D;
  width: 70%;
  height: 1rem;
  border: 0px solid white;
  border-bottom: 1px solid white;
  padding: 0.7rem;
  font-size: 1.2rem;
  font-family: myRegularFont;
  color: white;
}

.searchInput:focus {
  outline-offset: 2px ;
  outline: #EA9F1C ;
}

.shipping {
  font-size: 1.2rem;
  font-family: myRegularFont;
  color: #EA9F1C;
}

.shippingBundle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 18rem;
}

.symbol {
  color: white;
  border: 2px solid white;
  font-size: 1.2rem;
  border-radius: 7px;
  padding: 5px;
}

.symbol:hover {
  cursor: pointer;
  background-color: #EA9F1C;
  border: 2px solid #EA9F1C;
  transform: scale(0.95);
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.2rem;
  color: white;
  font-size: 3rem;
  font-family: myRegularFont;
  letter-spacing: 4vw;
  margin-left: 4vw;
}

.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.totalPrice {
  font-family: myBoldFont;
  font-size: 1.3rem;
  color: white;
  /* margin-left: 1rem; */
}

.whiteBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-family: myRegularFont;
  margin-right: 1rem;
}

.whiteBtn:hover {
  /* color: #EA9F1C; */
  background: #EA9F1C;
  transform: scale(0.95);
  border: 2px solid #EA9F1C;
}

@media screen and (max-width: 600px) {
  .bars {
    display: flex;
  }

  #catNavMenu {
    height: 2rem;
    padding-left: 1.2rem;
  }
  
  #catNavMenu a{
    display: none;
  }

  .catNavMenuMobCont {
    display: flex; 
  }

  .ggIcon {
    padding-left: 1.2rem;
  }

  .groupTitle {
    padding-left: 1rem;
  }

  .navIcon {
    margin-left: 12%;
  }

  .navIconCont {
    margin-right: 1rem;
  }

  .navImg {
    height: 12rem;
  }

  #navMenu {
    display: none;
  }

  .productFirst {
    margin-left: 1rem;
  }
}
  