* {
  font-family: "Elza", sans-serif;
}

body {
  background-color: #fff;
  overflow-x: hidden;
  position: relative;
}

header {
  background-image: linear-gradient(0deg, #872500 0%, #491700 100%);
}
header .header-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  text-decoration: none;
}
header .header-brand .logo {
  width: 200px;
  height: 120px;
  background-image: url("/assets/img/logo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
header .header-brand .logo::before {
  position: absolute;
  content: "";
  top: 10%;
  right: -25px;
  width: 2px;
  height: 80%;
  background-color: #fff;
}
header .header-brand h1 {
  color: #fff;
  margin: 0;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 992px) {
  header .header-brand {
    gap: 30px;
  }
  header .header-brand .logo {
    height: 80px;
    width: 120px;
  }
  header .header-brand .logo::before {
    right: -15px;
  }
  header .header-brand h1 {
    font-size: 16px;
  }
}
header .cart {
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .cart a {
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  position: relative;
}
header .cart a span {
  position: absolute;
  top: 0;
  right: -5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
  font-size: 10px;
}
@media (max-width: 992px) {
  header .cart {
    right: 15px;
  }
}
header .menu {
  background-color: #edded8;
  padding: 5px 0;
}
header .menu ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0;
}
header .menu ul a {
  color: #491700;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}
@media (max-width: 992px) {
  header .menu {
    display: none;
  }
}
header .btn-mobile-menu {
  position: absolute;
  left: 15px;
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #491700;
  transition: 0.2s ease-in-out;
}
header .btn-mobile-menu:hover {
  background-color: #fff;
  color: #491700;
  transform: scale(1.1);
}
@media (min-width: 992px) {
  header .btn-mobile-menu {
    display: none;
  }
}

footer {
  background-color: #491700;
  height: 120px;
}

.page-title {
  font-size: 3rem;
  text-align: center;
  color: #a82e00;
  font-weight: 900;
  margin-bottom: 100px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .page-title {
    font-size: 2rem;
  }
}

.btn-primary {
  color: #fff;
  border-radius: 20px;
  padding: 5px 40px;
  font-weight: 400;
  font-size: 13px;
  filter: drop-shadow(0px 15px 16px rgba(168, 46, 0, 0.46));
  background-image: linear-gradient(179deg, #491700 0%, #491700 0%, #a72d00 100%);
  border: 0;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
  transform: scale(1.1);
}
