* {
  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;
}

.category-layout {
  display: flex;
  justify-content: space-between;
  gap: 1.6rem;
  margin-top: 4rem;
}

.category-item {
  width: 33.33%;
  height: 600px;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  cursor: pointer;
}

.category-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.category-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 260ms ease,
    box-shadow 320ms ease;
}

.category-item:nth-child(1) {
  --hover-accent: 170, 170, 170;
}
.category-item:nth-child(2) {
  --hover-accent: 215, 40, 40;
}
.category-item:nth-child(3) {
  --hover-accent: 70, 120, 255;
}

.category-item:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--hover-accent), 0.95);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(var(--hover-accent), 0.35),
    0 14px 46px rgba(var(--hover-accent), 0.18),
    0 26px 90px rgba(var(--hover-accent), 0.12);
}

.category-item:hover::after {
  opacity: 1;
  box-shadow:
    0 0 0 2px rgba(var(--hover-accent), 0.85),
    0 0 26px rgba(var(--hover-accent), 0.38),
    inset 0 0 22px rgba(var(--hover-accent), 0.1);
}

.category-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: 4;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.category-header {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 25%;
  z-index: 10;
  text-align: center;
}

.category-logo {
  width: 75px;
}

.category-header h2 {
  font-family: "Anton", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: #efe9e3;
  margin-bottom: 0rem;
  margin-top: 1rem;
}

.category-text {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.category-text p {
  color: #efe9e3;
  font-weight: 200;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.category-cta-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 6;
}

.category-cta {
  position: absolute;
  bottom: 2rem;
}

.category-gradient {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 242, 242, 0.07) 0%,
    rgba(10, 10, 10, 0.5) 70.18%,
    rgba(0, 0, 0, 0.9) 91.1%
  );
  border-radius: 15px;
}

.control-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #efe9e3;
  font-weight: 200;
  text-decoration: none;
  background: linear-gradient(
    86deg,
    #5c0000 10.84%,
    #7c0000 39.53%,
    #970101 68.77%,
    #a14e4e 94%,
    #d5d5d5 104.21%
  );
  padding: 14px 26px;
}

.lab-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #efe9e3;
  font-weight: 200;
  text-decoration: none;
  background: linear-gradient(
    86deg,
    #03051a 10.84%,
    #040747 39.53%,
    #1d0197 68.77%,
    #53479a 94%,
    #b7b5fe 104.21%
  );
  padding: 14px 26px;
}

.gear-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #efe9e3;
  font-weight: 200;
  text-decoration: none;
  background: linear-gradient(
    86deg,
    #3a3838 10.84%,
    #454545 39.53%,
    #817d7d 80.38%,
    #bfbfbf 95.96%,
    #bdbdbd 104.21%
  );
  padding: 14px 26px;
}

.header-slider {
  text-align: center;
  margin: 8rem 0 6rem 0;
}

.header-slider h1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Anton", sans-serif;
  color: #ecbc92;
  font-weight: 500;
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.header-slider h1::before,
.header-slider h1::after {
  content: "";
  height: 1px;
  width: 260px;
  display: block;
  margin: 0 1.4rem;
}

.header-slider h1::before {
  background: linear-gradient(90deg, rgba(99, 99, 99, 0.5) 0%, #c38410 100%);
}

.header-slider h1::after {
  background: linear-gradient(90deg, #c38410 0%, rgba(99, 99, 99, 0.5) 100%);
}

.header-slider h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: "Anton", sans-serif;
  color: #ecbc92;
  font-weight: 500;
  font-size: 3rem;
  margin: 0;
  line-height: 1;
}

.header-slider h2::before,
.header-slider h2::after {
  content: "";
  height: 1px;
  width: 260px;
  display: block;
  margin: 0 1.4rem;
}

.header-slider h2::before {
  background: linear-gradient(90deg, rgba(99, 99, 99, 0.5) 0%, #c38410 100%);
}

.header-slider h2::after {
  background: linear-gradient(90deg, #c38410 0%, rgba(99, 99, 99, 0.5) 100%);
}

.product-grid-section {
  padding: clamp(18px, 2.2vw, 26px);
  background:
    radial-gradient(
      1200px 280px at 25% 20%,
      rgba(255, 40, 0, 0.18),
      rgba(0, 0, 0, 0) 60%
    ),
    radial-gradient(
      1200px 280px at 75% 30%,
      rgba(255, 120, 0, 0.1),
      rgba(0, 0, 0, 0) 62%
    ),
    linear-gradient(180deg, #101010 0%, #101010 100%);
  padding: 12rem 8rem 0 8rem;
}

.second-product-grid {
  padding: 6rem 8rem;
}

.product-grid {
  gap: 6rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;

  background: rgba(0, 0, 0, 0.18);
}

.bestseller-badge {
  position: absolute;
  top: 0;
  right: -2px;
  width: 90px;
  pointer-events: none;
}

.poduct-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-user-drag: none;
  user-select: none;
  border-radius: 15px;
}

.product-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.product-card__title {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  font-weight: 500;
  text-transform: uppercase;
  color: #efe9e3;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 200;
  color: #efe9e3;
  white-space: nowrap;
}

.product-card__desc {
  margin: 6px 0 0;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.35;
  color: #efe9e3;
  max-width: 80%;
}

.product-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn {
  color: #f8f2de;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 200;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    opacity 0.15s ease;
  user-select: none;
  white-space: nowrap;
}

.btn--light {
  background: #f8f2de;
  color: #1b1b1b;
}

.btn--red {
  background: #6b0000;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }
  .product-card__media:hover .poduct-img {
    transform: scale(1.03);
    transition: transform 0.35s ease;
  }
}

.btn:focus-visible,
.product-card__media:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

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;
  }
  .product-grid-section {
    padding: 10rem 1rem 0 1rem;
  }
  .second-product-grid {
    padding: 0rem 1rem 6rem 1rem;
  }
  .categories-section {
    margin: 0rem 1rem 2rem 1rem;
  }
  .category-layout {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    height: 500px;
  }
  .header-slider {
    margin: 6rem 0 3rem 0;
  }
  .header-slider h2 {
    font-size: 2rem;
  }
  .header-slider h2::before,
  .header-slider h2::after {
    width: 70px;
    margin: 0 0.8rem;
  }
  .poduct-img {
    height: 400px;
  }
  .product-slider__track {
    padding-right: 0;
  }
  .product-card__title {
    font-size: 1.4rem;
  }
  .product-slider__bottom {
    margin-top: 3rem;
  }
  .product-grid {
    gap: 4rem 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;
  }
  .product-grid-section {
    padding: 10rem 3rem 0 3rem;
  }
  .second-product-grid {
    padding: 0rem 3rem 6rem 3rem;
  }
  .categories-section {
    margin: 0rem 3rem 2rem 3rem;
  }
  .category-layout {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    height: 500px;
  }
  .header-slider {
    margin: 6rem 0 3rem 0;
  }
  .header-slider h2 {
    font-size: 2rem;
  }
  .header-slider h2::before,
  .header-slider h2::after {
    width: 70px;
    margin: 0 0.8rem;
  }
  .poduct-img {
    height: 400px;
  }
  .product-slider__track {
    padding-right: 0;
  }
  .product-card__title {
    font-size: 1.4rem;
  }
  .product-slider__bottom {
    margin-top: 3rem;
  }
  .product-grid {
    gap: 4rem 1rem;
  }
  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 {
    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: 1200px) and (orientation: landscape) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .product-grid-section {
    padding: 10rem 3rem 0 3rem;
  }
  .second-product-grid {
    padding: 0rem 3rem 6rem 3rem;
  }
  .categories-section {
    margin: 0rem 3rem 2rem 3rem;
  }
  .category-layout {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    height: 500px;
  }
  .header-slider {
    margin: 6rem 0 3rem 0;
  }
  .header-slider h2 {
    font-size: 2rem;
  }
  .header-slider h2::before,
  .header-slider h2::after {
    width: 70px;
    margin: 0 0.8rem;
  }
  .poduct-img {
    height: 400px;
  }
  .product-slider__track {
    padding-right: 0;
  }
  .product-card__title {
    font-size: 1.4rem;
  }
  .product-slider__bottom {
    margin-top: 3rem;
  }
  .product-grid {
    gap: 4rem 1rem;
  }
  footer {
    padding: 2rem 3rem 0rem 3rem;
  }
}
@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-grid-section {
    padding: 10rem 6rem 0 6rem;
  }
  .first-grid {
    margin-top: 2rem;
  }
  .second-product-grid {
    padding: 0rem 6rem 6rem 6rem;
  }
  .header-slider {
    margin: 6rem 0 3rem 0;
  }
  .header-slider h2 {
    font-size: 2rem;
  }
  .header-slider h2::before,
  .header-slider h2::after {
    width: 70px;
    margin: 0 0.8rem;
  }
  .product-title {
    font-size: 2.8rem;
  }
  .poduct-img {
    height: 420px;
  }
  .product-card__title {
    font-size: 1.5rem;
  }
  .product-card__desc {
    max-width: none;
  }
  .product-grid {
    gap: 4rem 1.6rem;
  }
  footer {
    padding: 2rem 6rem 0 6rem;
  }
}
