* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 50px;
  line-height: 64xp;
  columns: #222;
}

/* h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
} */

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.3s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #ffffff;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid;
  border-color: #fff;
  outline: none;
  transition: 0.3s;
}

.white:hover {
  cursor: pointer;
  background-color: #088178;
  color: white;
  border: 1px solid #088178;
}

body {
  width: 100%;
  background-color: #cfd9fc;
}




/* RESPONSIVE HEADER SECTION */
.header {
  padding: 0 7%;
  background-color: #c9d6ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000335;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


#logo-name {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 4.2em;
  margin: 0 10px 0 0;
}

.nav-item {
  list-style: none;
  margin: 0 10px;
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  color: #013b37;
  transition: 0.4s ease;
}

.nav-link:hover,
.active {
  color: #006408;
  cursor: pointer;
}





/* ========== HERO SECTION =========== */
#hero {
  background: url(img/Categories_hero.png);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 50px 7%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  background-attachment: fixed;
  background-position: center;
}



#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #006408;
  text-shadow: 1px 1px 1px black;
  max-width: 800px;
}

#hero p{
  font-weight: bold;
  color: #000;
}

#hero .button {
  background: url("./img/button.png");
  /* background-color: transparent; */
  color: #088178;
  text-decoration: none;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}



/* CATEGORIES */
#category {
  padding: 20px 7%;
  /* display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; */
}

#category h2 {
  color: #013b37;
  font-size: 40px;
  text-align: center;
  font-weight: 900;
  text-shadow: 2px 0 3px #dce2f7;
}

.category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 10px 0 0 0;
}

.category .cat-item {
  text-align: left;
  vertical-align: middle;
  min-width: 100px;
  border: 1px solid #013b37;
  border-radius: 10px;
  padding: 10px;
  transition: 0.3s ease;

}

.cat-item img {
  height: 60px;
  border-radius: 10px;
}

.cat-item:hover {
  transform: scale(1.05);
  color: #013b37;
}

.category li {
  text-decoration: none;
  margin: 5px 0;

}

.category a {
  text-decoration: none;
  font-size: 20px;
  color: #1a1a1a;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 0 0 0 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}






#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #b0b5b1;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 1px;
  transition: 0.3s ease;
  position: relative;
}



#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.08);
}

#product1 h2 {
  font-size: 30px;
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606060;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  font-weight: 500;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}



#more-link a {
  text-decoration: underline;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial Black;
  color: #035e2d;
}

/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 5% 30px 5%;
  background-color: #c9d6ff;
}

footer .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: flex-start;
}

footer .col a {
  font-size: 16px;
  color: #465b52;
}

footer a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer .follow i {
  font-size: 30px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow div {
  margin-top: 10px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer {
  color: #3f010b;
}

/* POP UPS */
.popup-trigger:hover {
  text-decoration: underline;
  
}

/* Pop-up Styles */
.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.close-button:hover {
  color: red;
}

footer .copyright {
  width: 100%;
  text-align: center;
}











/* ====================== SMALL SCREENS ============ */
@media only screen and (max-width: 950px) {
  #responsive-header {
    display: inherit;
  }

  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: self-end;
    margin: 0 10px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.5rem;
    flex-direction: column;

    background-color: #c9d6ff;
    width: 75%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: #1a1a1a;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    padding: 10px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


@media (max-width: 799px) {
  #product1 {
    padding: 10px 20px;
  }

  #product1 .pro {
    width: 30%;
    min-width: 300px;
  }
}


@media(max-width: 450px) {
  #hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("./img/Categories_phone.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
  }

  #hero h1{
    font-size: 45px;
    color: #fff;
  }

  #hero p{
    color: #fff;
  }

  button{
    color: #fb7b03;
  }
}
