* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  color: black;
  text-decoration: none;
}
/* start header style */
header {
  background-color: #fff;
  z-index: 10;
  height: 60px;
  width: 100%;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
header .container {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo h4 {
  font-family: "CinzelDecorative";
  color: var(--red);
  margin: 0;
}
header nav {
  height: 100%;
}
header nav ul {
  margin-inline: 0;
  padding-inline: 0;
  margin-bottom: 0;
  height: 100%;
  list-style: none;
  display: flex;
  align-items: center;
}
header nav ul li {
  margin-right: 10px;
  padding-inline: 10px;
  font-size: 17px;
  cursor: pointer;
  position: relative;
}
header nav ul li.login-btn {
  margin-left: 10px;
  background-color: var(--red);
  border-radius: 10px;
  padding: 5px 15px;
  transition: 0.3s;
}
header nav ul li.login-btn:hover {
  border: 2px solid var(--red);
  background-color: var(--beige);
}
header nav ul li.login-btn:hover a {
  color: var(--red);
}
header nav ul li.login-btn a {
  color: var(--beige);
}
header nav:last-child ul li {
  margin-right: 0px;
}
header nav:last-child ul .cart {
  position: relative;
}
header nav:last-child ul .cart .badge {
  padding: 3px 13px 15px 6px;
  color: #fff;
  background-color: var(--red);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 12px;
  position: absolute;
  top: -2px;
  right: 0px;
}
header nav:last-child ul li:not(.sidebar-btn) {
  padding-top: 4px;
}
header nav.links ul li::after,
aside nav ul li::after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: var(--red);
  position: absolute;
  bottom: -10px;
  left: 0;
}
aside nav ul li:hover::after {
  background-color: var(--beige);
}
header nav ul li.active a {
  color: var(--red);
}
header nav ul li.active::after {
  width: 100%;
}
header nav ul li:not(.login-btn):hover a {
  color: var(--red);
}
header nav.links ul li:hover::after,
aside nav ul li:hover::after {
  width: 100%;
}
header nav ul li.sidebar-btn {
  width: 50px;
  margin-right: 10px;
  display: none;
}
header nav ul li.sidebar-btn p {
  color: transparent;
  margin-bottom: 10px;
  border-radius: 15px;
  width: 45px;
  height: 3px;
  background-color: #000;
  transition: 0.3s;
  position: absolute;
}
header nav ul li.sidebar-btn p.top {
  width: 30px;
  top: -8px;
}
header nav ul li.sidebar-btn p.bottom {
  width: 30px;
  bottom: -22px;
}
header nav ul li.sidebar-btn.active p {
  margin: 0;
  top: 0;
  background-color: var(--red);
}
header nav ul li.sidebar-btn.active p.middle {
  opacity: 0;
}
header nav ul li.sidebar-btn.active p.top {
  transform: rotate(45deg);
}
header nav ul li.sidebar-btn.active p.bottom {
  bottom: 0;
  transform: rotate(-45deg);
}
/* End header style */

/* start sidebar style */

aside {
  z-index: 2000;
  font-size: 17px;
  height: 100vh;
  width: fit-content;
  padding: 20px;
  background-color: var(--red);
  transition: 0.3s;
  position: fixed;
  left: -100%;
  top: 0;
}
aside ul {
  list-style: none;
  padding-left: 5px;
  padding-right: 5px;
}
aside ul li {
  padding: 5px;
  margin-bottom: 15px;
  position: relative;
}
aside ul li a {
  color: var(--beige);
}
aside ul li a:hover {
  color: var(--beige);
}

/* End sidebar style */

/* Start Footer Style */

footer {
  background-color: var(--green);
  color: var(--beige);
  padding: 40px 0;
}
footer ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  color: var(--beige);
  transition: 0.3s;
}
footer ul li a:hover {
  color: var(--red);
}
footer h3 {
  font-family: "CinzelDecorative";
  margin-bottom: 20px;
}
footer h5 {
  margin-bottom: 20px;
}
footer .data p {
  font-weight: 200;
}
footer .social i {
  margin-right: 5px;
}
/* End Footer Style */

/* Start Scroll Button Style */
.scroll,
.whatsapp {
  width: 40px;
  height: 40px;
  transition: 0.3s;
  padding: 5px 10px;
  border: none;
  border-radius: 50%;
  color: var(--beige);
  position: fixed;
  right: -100%;
  z-index: 2000;
}
.scroll {
  background-color: var(--red);
  bottom: 70px;
}
.scroll i {
  transform: rotate(90deg);
}
.scroll:hover {
  background-color: var(--green);
}

/* End Scroll Button Style */

.whatsapp {
  width: 60px;
  height: 60px;
  right: 5px;
  bottom: 10px;
  background-color: transparent;
}
.whatsapp img {
  width: 100%;
  border-radius: 50%;
}

/* start  responsive design  */

@media (max-width: 992px) {
  header nav.links {
    display: none;
  }
  header nav li.login-btn {
    display: none;
  }
  header nav ul li.sidebar-btn {
    display: block;
  }
}

@media (max-width: 575px) {
  header {
    padding-inline: 10px;
    /* width: 90%; */
  }
}

/* End responsive design */
