* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Core Sans C;
}
body {
  scroll-behavior: smooth;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
}

.specialArticle {
  position: relative;
  padding: 10px 0;
  font-weight: bold;
  font-size: 30px;
}
.specialArticle::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 100%;
  left: -30px;
  top: 0;
  background-color: #8a33fd;
}

.hero {
  position: relative;
}
.hero header {
  background-color: #fff;
  width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  z-index: 999;
  top: 0;
  box-shadow: 6px 3px 13px 4px #00000069;
}
.hero header .links {
  display: flex;
  justify-content: space-between;
}
.hero header .links a {
  color: #807d7e;
  font-size: 22px;
  margin-right: 8px;
  padding: 8px 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .links a.active {
  color: #3c4242;
}
.hero header .links a:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}
.hero header .search {
  display: flex;
  align-items: center;
  position: relative;
  width: 200px;
}
.hero header .search input {
  padding: 10px 5px 10px 40px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  outline: none;
  margin: 0 5px;
  border: 1px solid #f6f6f6;
  background-color: #f6f6f6;
  width: 40%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .search input:focus {
  border: 2px solid #8a33fd;
  width: 100%;
}
.hero header .search img {
  position: absolute;
  left: 10px;
}
.hero header .buttons i {
  padding: 10px;
  margin-right: 10px;
  background-color: #eee;
  border-radius: 10px;
  color: #3c4242;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .buttons i:hover {
  color: #fff;
  background-color: #3c4242;
}
.hero header .buttons i.active {
  color: #fff;
  background-color: #3c4242;
}
.hero header .links a.active {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}
.hero header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.hero header .header-content.active {
  left: 0%;
}
.bar {
  display: none;
  font-size: 25px;
  cursor: pointer;
}
@media (width < 992px) {
  .hero header .header-content {
    position: fixed;
    height: 100%;
    width: 67%;
    top: 0;
    left: -100%;
    z-index: 999;
    background-color: rgb(0 0 0 / 60%);
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }
  .hero header .links {
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
  }
  .hero header .links li a {
    color: #fff;
  }
  .hero header .bar {
    display: block;
  }
}
.table {
  overflow-x: auto;
}
table {
  width: 100%;
  margin-top: 100px;
  border-collapse: collapse;
}
table thead {
  background-color: #3c4242;
  border: none;
  font-size: 25px;
  text-align: left;
  color: #eee;
}
table thead tr th {
  padding: 10px 30px;
}
table tbody tr {
  width: 80%;
  margin: auto;
}
table tbody tr td {
  text-align: center;
  padding: 15px 20px;
  border-bottom: 1px solid #bebcbd;
}
tbody tr:last-child td {
  border: none;
}
tbody tr .quantity-buttons {
  background-color: #f6f6f6;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
tbody .quantity-buttons .quantity {
  font-size: 30px;
  color: #807d7e;
}
tbody tr .quantity-buttons button {
  border: none;
  cursor: pointer;
  background-color: transparent;
  font-size: 22px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
tbody tr .quantity-buttons button:hover {
  color: #ccc;
}
.hero header .buttons i.active {
  color: #fff;
  background-color: #3c4242;
}
table tbody .product-details {
  display: flex;
  text-align: start;
}
table tbody .product-details img {
  width: 100px;
  max-width: 100%;
  margin-right: 20px;
}
table tbody .product-details h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
table tbody .product-details p {
  margin-bottom: 8px;
  color: #807d7e;
  font-size: 16px;
}
@media (width < 992px) {
  table tbody .product-details {
    flex-direction: column;
    text-align: center;
  }
  table tbody .product-details img {
    margin-right: 0px;
  }
}
table tbody tr .price {
  color: #3c4242;
  font-weight: bold;
  font-size: 27px;
}

table tbody tr .shipping {
  color: #bebcbd;
  font-weight: bold;
  font-size: 20px;
}
table tbody tr .total {
  font-weight: bold;
  font-size: 22px;
}
table tbody tr .delete {
  cursor: pointer;
}
.scrollTotop {
  position: fixed;
  right: 100px;
  bottom: 70px;
  font-size: 20px;
  width: 40px;
  color: #000;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding: 10px;
  display: none;
}

.scrollTotop:hover {
  color: #fff;
  background-color: crimson;
}
.grandTotal {
  width: 30%;
  margin: auto;
  font-size: 30px;
}
.sadCart {
  width: 80%;
  margin: 100px auto;
  text-align: center;
}
.sadCart p:first-of-type {
  margin-top: 50px;
  font-size: 25px;
}
.sadCart p:last-of-type {
  font-size: 20px;
  margin-top: 20px;
}
.grandTotal .total {
  font-size: 35px;
  font-weight: bold;
  color: #807d7e;
}
.footer {
  padding: 30px 20px 0;
  background-color: #3c4242;
  color: #f6f6f6;
  margin-top: 30px;
}
.footer a {
  color: #f6f6f6;
}
.footer .our-links {
  display: flex;
  justify-content: space-evenly;

  flex-wrap: wrap;
}
.footer .our-links h2 {
  font-size: 30px;
  margin: 20px 0;
}
.footer .our-links li {
  margin-bottom: 10px;
  font-size: 20px;
}
@media (width <992px) {
  .footer .our-links {
    justify-content: space-between;
  }
}
@media (width <768px) {
  .footer .our-links {
    flex-direction: column;
  }
}
.footer .contact-us {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.footer .contact-us .social-media {
  display: flex;
  justify-content: space-between;
}
.footer .contact-us .social-media a {
  margin-right: 10px;
}
.footer .contact-us .apps {
  margin-bottom: 30px;
}
.footer .contact-us .apps h1 {
  margin-bottom: 20px;
}
.footer .contact-us .apps ul {
  display: flex;
}
@media (width <768px) {
  .footer .contact-us {
    margin-top: 40px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .copywrite {
  text-align: center;
  padding: 20px 0;
}
