.nav-ber {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.nav-ber .logo {
  min-width: 120px;
  max-width: 175px;
}
.nav-ber .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.element ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.element ul li a {
  font-size: 16px;
  transition: all 0.3s linear;
  text-decoration: none;
  text-shadow: 0 0 0 #ffbc049f;

}

.element ul li a:hover {
  color: var(--color-Primary1);
  text-shadow: 0 6px 6px #ffbc04f7;
}
.icon-nav-ber ul.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}


.icon-nav-ber ul li a.nav-toggle {
  font-size: 19px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background-color: #272727;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: all 0.3s ease;
  border: none;
}


.icon-nav-ber ul li a:hover {
  background-color: var(--color-Primary1);
  box-shadow: 0 0 15px rgba(255, 188, 4, 0.5);
  transform: translateY(-3px);
  color: #fff;
}

.title-hero {
  text-align: center;
  width: 70%;
  margin: 50px auto 0;
}

    .title-hero h1 {
  font-size: 35px;
  line-height: 1.5;
}

.title-hero h1 span {
  color: #03A237;
}

.title-hero h1 i {
  font-style: normal;
  color: var(--color-Primary1);

}


.cart-header {
  position: fixed;
  background-color: var(--color-black);
  width: 420px;
  height: 100vh;
  padding: 35px 0px;
  transform: translateX(120%);
  transition: all 0.4s linear;
  top: 0;
  right: 0;
  box-shadow: 0 2px 6px #ffffffb2;
  z-index: 888;
}
.cart-header.active {
  transform: translateX(0%);
}

.title-cart-header {
  padding: 0 30px;
  display: flex;
  align-items: center;
  height: 55px;
  justify-content: space-between;
}
.title-cart-header h2 {
  font-family: "font_medium";
}
.close-cart-header {
  font-size: 26px;
  cursor: pointer;
}

.product-cart-header > ul > li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

.img-product-cart-header {
  width: 35%;
  border: 1px solid var(--color-border);
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-product-cart-header img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.text-product-cart-header {
  width: calc(65% - 10px);
}
.product-cart-header {
  padding: 30px;
  height: 70%;
  overflow: auto;
}

.text-product-cart-header h2 {
  font-size: 17px;
  display: flex;
  align-items: center;
  font-family: "font_medium";
  justify-content: space-between;
}

.remove-cart-header {
  width: 40px;
  transition: all 0.3s linear;
  height: 40px;
  border-radius: 5px;
  line-height: 0 !important;
  border: none;
  color: var(--color-gray);
  background-color: #f6f6f6;
}

.text-product-cart-header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 0;
}

.price-cart-header {
  font-family: "font_medium";
}
.old-price {
  color: var(--color-gray);
  text-decoration: line-through;
}

.remove-cart-header:hover {
  background-color: #ff0000;
  color: var(--color-white);
}

.total-cart-header h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-family: "font_medium";
}

.btns-cart-header {
  padding: 0 30px;
}

.btns-cart-header span {
  color: var(--color-Primary2);
}
