@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@400;700&family=Roboto:wght@100;300;400;500;700&display=swap");
html {
  color: #d3ad7f;
  background: #010103;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 9rem;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 5rem;
}

* {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}
body {
  background: #010103;
}
.header {
  background: #010103;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6%;
  border-bottom: 0.2rem solid rgba(255, 255, 255, 0.3);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
}
.header h2 {
  color: #d3ad7f;
}
.header .navbar a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1.6rem;
}
.header .navbar a:hover {
  color: #d3ad7f;
  border-bottom: 0.1rem solid #d3ad7f;
  padding-bottom: 0.1rem;
}
.icons {
  display: flex;
  flex-direction: row;
}
.header .icons div {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  margin-left: 2rem;
}
.header .icons div:hover {
  color: #d3ad7f;
}
#bar-menu {
  display: none;
}
.header .search-form {
  position: absolute;
  top: 115%;
  right: 4%;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
}
.header .search-form.active {
  transform: scaleY(1);
}
.header .search-form input {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  padding: 1rem;
  text-transform: none;
  color: #010103;
}
.header .search-form label {
  cursor: pointer;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color: #010103;
}
.header .search-form label:hover {
  color: #d3ad7f;
}
.header .cart-items-container {
  position: absolute;
  top: 100%;
  right: -100%;
  width: 45rem;
  height: calc(100vh - 9.5rem);
  background-color: #fff;
  padding: 0 1.5rem;
}
.header .cart-items-container.active {
  right: 0;
}
.header .cart-items-container .cart-items {
  position: relative;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.7rem;
}
.header .cart-items-container .cart-items .fa-times {
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #010103;
  cursor: pointer;
}
.header .cart-items-container .cart-items .fa-times:hover {
  color: #d3ad7f;
}
.header .cart-items-container .cart-items .content {
  font-size: 2rem;
  color: #010103;
  padding-bottom: 0.5rem;
}
.header .cart-items-container .cart-items .content .price {
  color: #d3ad7f;
  font-size: 1.5rem;
}
button {
  background: #d3ad7f;
  margin-top: 1rem;
  padding: 0.8rem 3rem;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.7s ease;
}
button:hover {
  transform: scale(1.1);
  color: #fff;
}
.header .cart-items-container button {
  width: 100%;
  text-align: center;
}

/* **************************************** */
section {
  padding: 2rem 7%;
  background: #010103;
  border-bottom: 1px solid #5a5a5a;
}
.home {
  display: flex;
  align-items: center;
  background: url(images/image.jpg);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  color: #fff;
}
section button a,
.cart-items-container button a {
  color: #fff;
  font-weight: 300;
  font-size: 1.8rem;
}
section button a:hover,
.cart-items-container button:hover {
  color: #fff;
  text-decoration: none;
}
.home .content {
  max-width: 60rem;
}
.home .content h3 {
  font-size: 6rem;
  text-transform: uppercase;
}
.home .content p {
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #eee;
}
.heading-about {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 3.5rem;
  font-size: 4rem;
}
.heading-about span {
  color: #d3ad7f;
  text-transform: uppercase;
}

.about .row-about {
  display: flex;
  align-items: center;
  background: #5a5a5a;
  flex-wrap: wrap;
}
.about .row-about .image {
  flex: 1 1;
}
.about .row-about .image img {
  width: 55rem;
}
.about .row-about .content {
  flex: 1 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about .row-about .content h3 {
  font-size: 2rem;
  color: #fff;
  padding: 1rem 0;
  line-height: 1.8;
  letter-spacing: 1px;
}
.about .row-about .content p {
  font-size: 1.6rem;
  color: #ccc;
  padding: 1rem 0;
  line-height: 1.8;
  letter-spacing: 1px;
}

.card {
  background-color: #010103;
  border-radius: 30px;
  overflow: hidden;
}
.card-img {
  height: 30vh;
  object-fit: cover;
}
.card:hover .card-img {
  transform: scale(1.1);
}

.card-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.card-title {
  letter-spacing: 1px;
  margin-top: 10px;
}
.card-body .price {
  font-size: 2.5rem;
}
.card-body .price span {
  text-decoration: line-through;
  font-size: 1.8rem;
}
.another {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #eee;
}
.another button {
  width: 100%;
}
.card-text input {
  font-size: 1.6rem;
  padding: 1rem;
}
span h4 {
  color: #d3ad7f;
  font-size: 1.5rem;
  font-weight: 300;
}
footer,
footer section {
  background: #010103;
}

footer section a i:hover {
  color: #d3ad7f;
}
footer .style-name {
  color: #eee;
  margin-left: 5px;
}
footer .style-name:hover {
  color: #d3ad7f;
  border-bottom: 0.1rem solid #d3ad7f;
  padding-bottom: 0.2rem;
}

/* *********************** */

/* media queries */
@media (max-width: 992px) {
  html {
    font-size: 55%;
  }
  .header {
    padding: 1.5rem 2rem;
  }
}
@media (max-width: 768px) {
  #bar-menu {
    display: inline-block;
  }
  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 30rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: calc(100vh - 9.5rem);
  }
  .header .active {
    right: 0;
  }
  .header .navbar a {
    color: #010103;
    margin: 1.5rem;
    padding: 0.5rem;
    font-size: 2rem;
  }

  .header .navbar a:hover {
    color: #d3ad7f;
    border-bottom: none;
  }
  .header .search-form {
    width: 90%;
    right: 2rem;
  }

  .home {
    background-position: left;
    justify-content: center;
    text-align: center;
  }
  .home .content p {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 45%;
    width: 100%;
  }
  #bar-menu {
    margin-right: 25px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 40%;
    width: 100%;
  }
  #bar-menu {
    margin-right: 45px;
  }
}
