/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: auto;
}

/* Header styles */
header {
  position: fixed;
  z-index: 69;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: black;
  height: 5.3vw;
  width: 100%;
  display: flex;
}

.logo a {
  height: 1vw;
  color: white;
  font-size: 35px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.5s;
  cursor: pointer;
}

.logo a:hover {
  color: #e3c023;
  cursor: pointer;
}
.logo > a > p {
  height: 10vw;
  display: inline;
  color: white;
  font-size: 35px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.5s;
}

.menu ul {
  display: flex;
  gap: 19px;
  margin-left: 2vw;
  margin-right: 1vw;
  cursor: pointer;
}

.menu ul li {
  list-style: none;
}
.heading {
  color: white;
  font-size: 35px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.5s;
  display: none;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  position: relative;
  transition: color 0.5s;
}

.menu ul li a:hover,
.menu ul li a:active {
  color: rgb(243, 168, 7);
}

.menu ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: rgb(243, 168, 7);
  bottom: -5px;
  left: 0;
  transition: width 0.5s;
}

.menu ul li a:hover::before {
  width: 100%;
}

/* Search styles */
.search {
  display: flex;
  align-items: center;
  position: relative;
}

.search input {
  height: 30px;
  width: 300px;
  border: none;
  padding: 5px;
}

.search ion-icon {
  position: absolute;
  right: 10px;
  color: black;
}

.hydrated {
  color: white;
  cursor: pointer;
  z-index: 69;
}

.ham,
.close {
  cursor: pointer;
  display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: black;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s, ease-in-out 0.6s;
    cursor: pointer;
  }

  .menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .ham {
    display: block;
    color: white;
    font-size: 30px;
  }
  .heading1 {
    display: block;
    z-index: 69;
  }
  .heading1 :active {
    display: block;
    color: white;
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.5s;
    z-index: 69;
  }

  .close {
    display: block;
    align-self: flex-end;
    margin: 10px;
    color: white;
    font-size: 30px;
    z-index: 69;
  }

  .search {
    display: none;
  }
  .container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
    gap: 1.6vw !important;
    padding: 2.8vw;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0;
  }
  .items {
    width: 99vw !important;
  }
}

/* Image slider */
.img-slider {
  display: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.img-slider img {
  width: 100%;
  height: auto;
  animation: slide 10s infinite;
}

@keyframes slide {
  0%,
  15%,
  100% {
    transform: translateX(0);
  }
  20%,
  35% {
    transform: translateX(-100%);
  }
  40%,
  55% {
    transform: translateX(-200%);
  }
  60%,
  75% {
    transform: translateX(-300%);
  }
  80%,
  95% {
    transform: translateX(-400%);
  }
}

/* Product section */
.container {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 1.6vw !important;
  padding: 2.8vw;
  flex-wrap: wrap;
}

.items {
  width: 23vw;
  border: 1px solid #ddd;
  border-radius: 0.6vw;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 0px 10px 2px #1b487569;
  cursor: pointer;
}
.items:hover {
  box-shadow: 0px 0px 10px 2px #1b4875;
  transition: 0.5s;
}

.items img {
  width: 100%;
  height: auto;
}
.name,
.price,
.info {
  color: black;
  z-index: inherit;
}
.items .name {
  font-size: 24px;
  margin-top: 10px;
}

.items .price {
  font-size: 18px;
  margin-top: 5px;
  z-index: 69;
}

.items .info {
  font-size: 14px;
  margin-top: 10px;
}

/* Footer styles */
footer {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer0 h1 {
  margin-bottom: 10px;
}

.footer1 {
  margin-bottom: 20px;
}

.footer1 .social-media a {
  margin: 0 5px;
  color: white;
  font-size: 20px;
  transition: color 0.3s;
}

.footer1 .social-media a:hover {
  color: rgb(240, 197, 6);
}

.footer2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 20px;
}

.footer2 .heading {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer2 .div {
  margin: 5px 0;
}

.footer3 {
  margin-bottom: -1.2vw !important;
  background-color: #020a32;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 2vw;

}
