* {
  box-sizing: border-box;
}

body {
  background-color: #101010;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Anton/Anton-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-regular.woff2") format("woff2");
  font-display: swap;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3.8rem;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
  min-width: 120px;
}

.nav-center {
  justify-content: center;
  flex: 1;
  margin-top: 1.5rem;
  gap: 1.4rem;
}

.nav-right {
  justify-content: flex-end;
  min-width: 120px;
  margin-top: 1.5rem;
  gap: 1rem;
}

.logo img {
  width: 75px;
  height: auto;
  display: block;
  transition: all 0.3s ease-in-out;
}

header.scrolled .logo img {
  width: 65px;
}

.nav-center a {
  color: #f8f2de;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 200;
}

.current-page {
  color: #d00c16 !important;
}

.nav-center a.current-page {
  position: relative;
  z-index: 1;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f8f2de;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 200;
}

.cart img {
  width: 20px;
  height: 20px;
  display: block;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #f8f2de;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #f8f2de;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #101010;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #f8f2de;
  font-weight: 200;
  font-size: 2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #f8f2de;
  margin: 0 0.5rem;
}

main {
  padding: 10rem 8rem 6rem 8rem;
}

h1 {
  color: #fcf7eb;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  color: #fcf7eb;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  font-size: 2.6rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h3 {
  color: #fcf7eb;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h4 {
  color: #fcf7eb;
  font-weight: 500;
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
}

main p {
  color: #fcf7eb;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 0;
}

main li {
  color: #fcf7eb;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 2rem;
}

main a {
  color: #b90b0b;
  text-decoration: none;
  font-weight: 200;
  font-size: 1.2rem;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.date {
  margin-top: 2rem;
  font-family: monospace;
  font-size: 0.9rem;
}

footer {
  background-color: #191919;
  padding: 2rem 8rem 0 8rem;
}

.footer-logo {
  width: 65px;
  height: auto;
}

.footer-slogan {
  color: #f8f2de;
  font-weight: 200;
  font-size: 1.1rem;
  width: 60%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
}

.footer-links div {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #f8f2de;
  font-weight: 300;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #f8f2de;
  font-weight: 200;
  line-height: 1.4rem;
  font-size: 1rem;
  display: inline-block;
}

.footer-logos {
  display: flex;
  gap: 1rem;
}

.footer-line {
  width: 100%;
  height: 1px;
  background-color: #3a3838;
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #f8f2de;
  font-weight: 200;
  font-size: 0.9rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #f8f2de;
  font-weight: 200;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .hero-text {
    left: 1rem;
    width: calc(100% - 2rem);
    right: 1rem;
    bottom: 20%;
  }
  h1 {
    width: 100%;
    font-size: 2rem;
    line-height: 2.7rem;
  }
  main {
    padding: 8rem 1rem;
  }
  footer {
    padding: 2rem 1rem 0rem 1rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .footer-slogan {
    width: 70%;
  }

  .footer-links {
    flex-direction: column;
    margin: 1rem 0;
  }
  .footer-logos {
    margin-top: 3rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .menu-links a {
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  .hero-text {
    left: 3rem;
    width: calc(100% - 6rem);
    right: 3%;
    bottom: 20%;
  }
  h1 {
    width: 100%;
    font-size: 3rem;
    line-height: 3.6rem;
  }
  main {
    padding: 10rem 3rem;
  }
  footer {
    padding: 2rem 3rem 0rem 3rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .footer-slogan {
    width: 70%;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 1rem 0;
  }
  .footer-logos {
    margin-top: 3rem;
  }
  .footer-bottom {
    padding: 1rem;
    flex-direction: column;
  }
  .footer-bottom p {
    margin: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .product-card-hero-inner {
    display: none;
  }
  .hero-text {
    bottom: 28%;
  }
  h1 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  main {
    padding: 10rem 6rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1380px) {
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .product-card-hero-inner {
    display: none;
  }
  .hero-text {
    bottom: 28%;
  }
  h1 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  main {
    padding: 10rem 6rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
