:root {
  --main-color: #d3ad7f;
  --black: #13131a;
  --bg: #010103;
  --border: 0.1rem solid rgba(255, 255, 255, 0.3);
  --white: #fff;
  font-size: 10px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
  font-family: "Roboto", sans-serif;
}

body {
  background-color: var(--bg);
  padding-top: 70px;
}


section {
  padding: 3rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background-color: var(--bg);
  border-bottom: var(--border);
  padding: 0 1.5rem;
}

.site-header section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
}
.navbar a {
  margin: 0;
  font-size: 1.8rem;
  color: #fff;
  border: 1px solid var(--main-color);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.navbar a:hover {
  color: var(--main-color);
  background-color: rgba(211, 173, 127, 0.12);
}

.icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.icons > img {
  cursor: pointer;
  margin: 0;
}

.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0.2rem 0.3rem;
  cursor: pointer;
}

.cart-toggle img {
  display: block;
  width: 30px;
  height: 30px;
}

.cart-toggle:focus-visible {
  outline: 0.2rem solid var(--main-color);
  outline-offset: 0.4rem;
}

.cart-count {
  margin-left: 0.6rem;
  background: var(--main-color);
  color: var(--black);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  min-width: 2.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.icons img:hover,
.cart-toggle:hover img {
  width: 40px;
  height: 40px;
}

.btn {
  background: var(--main-color);
  color: white;
  padding: 1rem 3rem;
  font-size: 1.7rem;
  cursor: pointer;
  margin-top: 1rem;
  display: inline-block;
}

.btn:hover {
  letter-spacing: 0.1rem;
}

.home-container {
  background: url("img/home2.jpg");
  height: 100vh;
  background-position: center;
  background-size: cover;
}

.home-container section {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.content {
  max-width: 60rem;
}
.content h1 {
  color: white;
  font-size: 8rem;
}

.content h3 {
  color: burlywood;
  font-size: 6rem;
}

.content p {
  color: white;
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.8;
  padding: 1rem 0;
}

.title {
  font-size: 4rem;
  color: var(--main-color);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.title span {
  color: var(--white);
  text-transform: uppercase;
}

.about .row {
  display: flex;
  align-items: center;
  background-color: var(--black);
  gap: 1.5rem;
}

.about .row .content {
  padding: 2rem;
}

.about .row .content h3 {
  font-size: 3rem;
  color: var(--white);
}

.about .row .content p {
  font-size: 1.6rem;
  color: var(--white);
  padding: 1rem 0;
  line-height: 1.8;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box {
  text-align: center;
  border: var(--border);
  padding: 5rem;
}


.menu .box-container .box img {
  height: 10rem;
  cursor: pointer;
}

.menu .box-container .box h3 {
  color: var(--white);
  font-size: 2rem;
  padding: 1rem 0;
}

.menu .box-container .box .price {
  color: var(--white);
  font-size: 2.5rem;
  padding: 0.5rem 0;
}

.menu .box-container .box .price span {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: lighter;
}

.menu .box-container .box:hover {
  background-color: var(--white);
}

.menu .box-container .box:hover>* {
  color: var(--black);
}

.review .box-container .box {
  border: var(--border);
  text-align: center;
  padding: 3rem 2rem;
}

.review .box-container .box p {
  font-size: 1.5rem;
  color: var(--white);
  padding: 2rem 0;
  line-height: 1.8;
  font-weight: lighter;
}

.review .box-container .box h3 {
  color: var(--white);
  font-size: 2rem;
  margin: 1rem 0;
}

.review .box-container .box .user {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.address {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer {
  text-align: center;
}

.footer .share {
  padding: 1rem 0;
}

.footer .share img {
  margin: 0.3rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 1rem;
}

.footer .share img:hover {
  background-color: var(--main-color);
}
.cart {
  margin-top: 2rem;
}

.cart .cart-content {
  border: var(--border);
  padding: 2rem;
  background-color: rgba(19, 19, 26, 0.8);
  color: var(--white);
}

.cart-empty {
  font-size: 1.6rem;
  margin: 0 0 1rem 0;
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.6rem;
  padding: 0.8rem 0;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-name {
  margin-right: 1rem;
}

.cart-item-price {
  font-weight: 600;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  margin-top: 2rem;
}

.cart-clear {
  margin-top: 1.5rem;
}
.site-header.hidden,
.site-header.is-hidden,
.site-header.header--up,
.site-header.--hidden,
.site-header.hide {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  display: flex !important;
}

.site-header[hidden],
.site-header[style] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}









@media (max-width: 768px) {
  body {
    padding-top: 110px;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  .site-header section {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .navbar {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .navbar a {
    font-size: 1.3rem;
    margin: 0.1rem 0;
    padding: 0.2rem 0.7rem;
  }

  .icons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .cart-toggle {
    height: auto;
    padding: 0.1rem 0.2rem;
  }

  .cart-toggle img {
    width: 22px;
    height: 22px;
  }

  .cart-count {
    font-size: 0.95rem;
    padding: 0.1rem 0.45rem;
    min-width: 1.8rem;
    margin-left: 0.25rem;
  }

  .home-container {
    background-position: top;
  }

  .home-container section {
    padding-top: 90px;
  }

  .content h3 {
    font-size: 3.6rem;
  }

  .content p {
    font-size: 1.5rem;
  }

  .about .row {
    flex-direction: column;
    text-align: center;
  }

  .box-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .menu .box-container .box,
  .review .box-container .box {
    padding: 2rem;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  .footer .share {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cart .cart-content {
    padding: 1.5rem;
  }

  .cart-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 140px;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  .navbar a {
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem;
  }

  .icons {
    gap: 0.3rem;
  }

  .icons > img {
    width: 26px;
    height: 26px;
  }

  .cart-toggle img {
    width: 20px;
    height: 20px;
  }

  .cart-count {
    font-size: 0.9rem;
    min-width: 1.6rem;
    padding: 0.1rem 0.4rem;
  }
}
