@font-face {
  font-family: Geologica;
  src: url("../fonts/Geologica-VariableFont.ttf") format("truetype");
}

* {
  font-family: Geologica, sans-serif;
}

:root {
  --worten: #FE512E;
  --secondary: #002236;
  --dark: #20202C;
  --secondary-hover: #023858;
}

@media screen and (hover) {
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #fafafa;
  }

  ::-webkit-scrollbar-thumb {
    background: #cccccc;
    transition: background-color 150ms;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--worten,#FE512E);
  }
}

.pin-spacer {
  pointer-events: none;
}

[fade-in], [fade-in] > [fade-in-child] {
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}

span[fade-in-child] {
  display: inline-block;
}

[fade-in].fade-in-appear, [fade-in].fade-in-appear > [fade-in-child] {
  visibility: visible;
  --fade-in-time: 600ms;
  --fade-in-delay: 0s;
  animation: fadein var(--fade-in-time) ease var(--fade-in-delay) forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(8px);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
#custom-cursor {
  width: 70px;
  height: 70px;
  border-radius: 165px;
  background: #d9d9d90b;
  outline: solid 1px #AEAEAE;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: black;
  font-size: 12px;
  opacity: 0;
  transform: scale(0);
  transition: opacity 300ms;
  backdrop-filter: blur(6px);
  z-index: 100;
}

#custom-cursor:after {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--worten);
  border-radius: 100px;

}

#custom-cursor:before {
  content: " ";
  display: block;
  width: 38px;
  height: 24px;
  background-image: var(--swipeIcon);
  background-size: 100% 100%;
  border-radius: 100px;
  display: none;
}

#custom-cursor[cursor-mode="swipe"]:before {
  display: block;
}

#custom-cursor[cursor-mode="swipe"]:after {
  display: none;
}

@media screen and (hover: none) {
  #custom-cursor {
    display: none !important;
  } 
}


body.cursor-active [cursor-mode] {
  cursor: none !important;
}


#custom-cursor.active {
  opacity: 1;
}

#custom-cursor.click {
  opacity: 1;
  background-color: var(--worten);
  color: transparent;
}

#custom-cursor.click:before {
  opacity: 0;
}


html {
  height: 100%;
}

body {
  overflow-y: hidden;
}

html,body {
  margin: 0 !important;
  background-color: #ffffff;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

.header {
  position: fixed;
  display: flex;
  top: 0;
  width: 100%;
  z-index: 8;
  flex-direction: row;
  height: 95px;
  padding: 29px 32px 29px 45px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.758), transparent);
  transition: background 300ms;
}
.header-brand {
  display: flex;
  align-items: center;
}

.header-brand-divider {
  border-left: solid 1px #6b6a6a;
  margin-right: 36px;
  height: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
.header.solid {
  background: var(--worten);
  border-bottom: solid 1px #0022364d;
}
.header.solid .header-brand {
  filter: brightness(0) saturate(100%) invert(12%) sepia(16%) saturate(4750%) hue-rotate(170deg) brightness(91%) contrast(103%);
}
img {
  pointer-events: none;
  user-select: none;
}
@media (min-width: 992px) {
  .monly {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .donly {
    display: none !important;
  }

}

.header-content {
  display: flex;
  width: 100%;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}


.logo {
  object-fit: contain;
  object-position: center;
  width: 301px;
  max-width: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.05px;
  justify-content: start;
  flex-wrap: nowrap;
}


@media (max-width: 991px) {
  .header {
    max-width: 100%;
    padding-bottom: 100px;
    padding: 0;
    padding-left: 22px;
    height: auto;
  }

  .header-content {
    gap: 0;
  }
  .nav-menu {
    max-width: 100%;
  }
  .header-brand {
    display: grid;
    grid-template-columns: auto auto 1fr;
    padding: 0;
    justify-items: center;
  }
  .header-brand img {
    height: 22px;
  }
  .header-brand-title {
    height: 20px;
    pointer-events: none;
  }
  .nav-menu-btn {
    border: none;
    background-color: transparent;
    padding: 0;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header.solid .nav-menu-btn, .header.open .nav-menu-btn {
    border-left: solid 1px #00223651;
  }
  .nav-menu-btn:focus, .nav-menu-btn:hover {
    outline: none;
    border-color: #00223651;
  }
  .nav-menu-btn .opened {
    display: none;
  }
  .header.open .nav-menu-btn .opened {
    display: inline-block;
  }
  .header.open .nav-menu-btn .closed {
    display: none;
  }

  .header.open .header-gradient {
    opacity: 0;
  }
  .header.open {
    background: var(--worten);
    border-bottom: solid 1px #00223651;
  }

  html:has(.header.open) {
    overflow-y: hidden;
  }
  .header.open .header-brand {
    filter: brightness(0) saturate(100%) invert(12%) sepia(16%) saturate(4750%) hue-rotate(170deg) brightness(91%) contrast(103%);
  }
  .header.solid .nav-menu-btn img, .header.open .nav-menu-btn img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(16%) saturate(4750%) hue-rotate(170deg) brightness(91%) contrast(103%);
  }

}


.nav-item {
  align-self: stretch;
  margin: auto 0;
  text-decoration: none;
  color: #FAFAFA; 
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  transition: color 150ms;
  display: inline-block;
}



.nav-item:visited {
  color: #FAFAFA;
}

.nav-item:hover {
  opacity: 0.7;
  color: var(--worten);
}


.header.solid .nav-item:hover {
  color: var(--secondary);
}


.contact-button.cta-button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  color: var(--secondary);
  background-color: white;
  padding: 17px 27px 17px 24px;
  transition: background-color 150ms;
  /* background-image: radial-gradient(circle at 0% 0%, #331F1F, var(--worten) 0%); */
}
.contact-button.cta-button:visited, .contact-button.cta-button:focus {
  color: var(--secondary);
  outline: none;
}
.header.solid .contact-button.cta-button {
  color: var(--secondary);
}
.header.solid .contact-button.cta-button:hover {
  background-color: var(--secondary);
  color: white;
}

.header.solid .contact-button.cta-button:hover img {
  filter: brightness(0) invert(1);
}

.nav-catalog {
  transition: width 300ms, color 150ms, transform 300ms, opacity 300ms;
  white-space: nowrap;
  width: 114px;
  margin-right: -34px;
  text-align: left;
}
.header.home .nav-catalog {
  width: 0;
  transform: translateY(-10px);
  opacity: 0;
}
.header.home.solid .nav-catalog {
  width: 114px;
  transform: none;
  opacity: 1;
}

.contact-button.cta-button:hover {
  background-color: var(--worten);
  opacity: 1;
  color: var(--dark);
  /* background-image: radial-gradient(circle at 0% 0%, #331F1F, var(--worten) 80%); */
}
.contact-button:hover:after {
  opacity: 1;
}


.contact-icon {
  aspect-ratio: 2.09;
  object-fit: contain;
  object-position: center;
  width: 23px;
  fill: #fafafa;
  align-self: stretch;
  margin: auto 0;
}


.mobile-menu {
  position: fixed;
  top: 0px;
  padding-top: 84px;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--worten);
  color: var(--secondary);
  z-index: 7;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 300ms, transform 300ms;
}

.header.open + .mobile-menu {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  align-items: stretch;
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 285px;
  padding: 26px;
}

.mobile-menu-links a {
  padding: 16px 22px 16px 16px;
  opacity: 1 !important;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: left;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
}

.mobile-menu-links a.nav-catalogo {
  width: 100%;
}

.mobile-menu-links a:hover,.mobile-menu-links a:visited {
  color: var(--secondary);
}

.mobile-menu-links a:after {
  content: " ";
  display: inline-block;
  background: var(--chevron);
  width: 16px;
  height: 16px;
  background-size: 100%;
}

.mobile-menu-links .contact-button {
  justify-content: flex-end;
  border-top: none;
  height: 52px;
  justify-content: space-between;
  margin: 12px -6px;
  padding-right: 22px;
}
.mobile-menu-links .contact-button:after {
  content: none;
}

.mobile-menu-rhino {
  position: absolute;
  bottom: -10%;
  right: -20%;
  z-index: -1;
}

.mobile-menu-footer {
  background-color: var(--secondary); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  overflow: hidden;
  min-height: 280px;
}

.mobile-menu-badge {
  width: 72px;
  margin-top: -30px;
  margin-left: 12px;
}


.mobile-menu-socials {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  margin-top: 36px;
}
.mobile-menu-socials img {
  width: 28px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(65%) saturate(4490%) hue-rotate(343deg) brightness(101%) contrast(99%);
}

.mobile-menu .legal {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: white;
  margin: 0;
}

.mobile-menu-grid {
  height: 69px;
  width: 100%;
  background-color: var(--worten);
}

.mobile-menu-grid .inner {
  width: 100%;
  height: 100%;
  background: var(--dots);
  background-size: 13px 6px;
  filter: brightness(0) saturate(100%) invert(9%) sepia(30%) saturate(3631%) hue-rotate(175deg) brightness(102%) contrast(103%);
}

.mobile-menu-worten {
  margin-top: 32px;
  margin-bottom: -12px;
}

@media (max-width: 991px) {
  .header-divider {
    max-width: 100%;
    margin-bottom: 10px;
  }
}



.footer {
  background: var(--secondary);
  align-self: stretch;
  display: flex;
  width: 100%;
  color: white;
  flex-direction: column;
  align-items: center;
  padding: 100px 80px 17vw;
  margin-bottom: -32px;
  position: relative;
  overflow: hidden;
}

.footer-worten {
  position: absolute;
  width: 105vw;
  bottom: min(45px, -1vw);
  min-width: 100%;
  left: min(2vw, 30px);
}

.footer a {
  transition: color 150ms;
  color: white;
}

.footer a:visited {
  color: white;
}
.footer a:hover {
  color: var(--worten);
}


@media (max-width: 991px) {
  .footer {
    max-width: 100%;
    padding: 64px 20px 0;
  }
  .footer-worten {
    
    bottom: calc(42px - 5vw);
  }
}

.footer-content {
  display: flex;
  width: 100%;
  max-width: 1184px;
  flex-direction: column;
}

@media (max-width: 991px) {
  .footer-content {
    max-width: 100%;
  }
  .footer {
    padding-bottom: 100px;
  }
}

.footer-grid {
  gap: 20px;
  display: flex;
  justify-content: space-between;
}


.footer-column {
  display: flex;
  flex-direction: column;
  line-height: normal;
  margin-left: 0px;
  max-width: 234px;
}


.footer-text {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 280px;
  margin: 0;
}


.footer-nav {
  display: flex;
  flex-direction: column;
  line-height: normal;
}


.footer-nav-content {
  display: flex;
  flex-direction: column;
  color: #000000;
  font: 600 19px Montserrat, sans-serif;
  gap: 14px;
}


.footer-nav-item {
  align-self: start;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  font-size: 19px;
  margin: 0;
  margin-bottom: 12px;
  margin-bottom: 0;
  display: block;
  color: white;
  text-decoration: none;
}

.footer-catalog p {
  max-width: 200px;
  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 32px;
  margin-top: 0px;
}

.footer-catalog p a {
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  line-height: normal;
}


.footer-contact-content {
  display: flex;
  flex-direction: column;
}

.footer-contact-content p {

  font-size: 13px;
  font-weight: 300;
  line-height: 25px;
  margin-bottom: 32px;
  margin-top: 0px;
}


.footer-bottom {
  display: flex;
  align-items: center;
  margin-top: 100px;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 300;
}

.footer-bottom p {
  margin: 0;
}
.footer-socials {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  flex: 1;
}

.footer-socials a {
  padding: 3px;
}

.footer-socials a:hover {
  opacity: 0.8;
}

.footer-socials img {
  width: 22px;
}


.footer-badge {
  width: 69px;
  filter: brightness(0) invert(1);
  opacity: 0.38;
  margin-top: 135px;
}

@media (max-width: 1150px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 450px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-column {
    max-width: 100% !important;
  }
  .footer-catalog p {
    max-width: 100% !important;
    margin-bottom: 12px;
  }
}
@media (max-width: 991px) {
  .footer-contact {
    width: 100%;
  }
  .footer-column {
    width: 100%;
    margin-bottom: 24px;
  }
  .footer-badge {
    margin-top: 24px;
  }
  .footer-bottom {
    margin-top: 32px;
    margin-bottom: 60px;
  }

  .footer-socials {
    display: block;
    width: 100%;
    min-width: 100%;
    white-space: nowrap;
    clear: both;
    margin-top: 24px;
  }
}

.cta-button {
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 42px;
  gap: 8px;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: 0.52px;
  line-height: 1;
  padding: 14px 42px 17px;
  position: relative;
  z-index: 2;
  border: none;
  font-weight: 700;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  border-radius: 100px;
  background-color: var(--worten);
  /* background-image: radial-gradient(circle at 0% 0%, #331F1F, var(--worten) 0%); */
}

.cta-button:visited {
  color: #FAFAFA;
}

.cta-button:hover {
  color: #fafafa;
  opacity: 0.8;
  /* background-image: radial-gradient(circle at 0% 0%, #331F1F, var(--worten) 80%); */
}

.cta-banner {
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 132px 24px 108px;
  overflow: hidden;
  position: relative;
  background-color: var(--worten);
}

.cta-content {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1245px;
  margin: 0 auto;
  width: 100%;
  color: #ffffff;
}

.cta-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 72px;
  background: var(--dots);
  background-size: 13px 6px;
}



.cta-content h2 {
  font-size: 106px;
  font-weight: 100;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 87%;
  margin-left: -0.07em;
  max-width: 750px;
}

.cta-content .cta-eyebrow {
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--secondary);
  font-size: 22px;
  line-height: 33px;
  max-width: 410px;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.cta-background {
  position: absolute;
  top: -10%;
  right: 0;
  z-index: -1;
  height: 120%;
  width: auto;
  object-fit: cover;
}

.cta-banner .cta-button {
  font-size: 24px;
  min-width: 260px;
  justify-content: space-between;
  background-color: var(--secondary);
  font-weight: 300;
}

.cta-banner .cta-button img {
  filter: brightness(0) invert(1);
}

.cta-banner .cta-button:hover {
  background-color: var(--secondary-hover);
}

@media (max-width: 991px) {
  .cta-background {
    right: 0%;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    object-fit: 30% 0;
  }
  .cta-banner {
    max-width: 100%;
    
  }
  .cta-content {
    flex-direction: column;
    gap: 0px;
    padding: 0px;
    align-items: flex-start;
  }

  .cta-content h2 {
    font-size: 50px;
  }
  .cta-content p {
    font-size: 18px;
    line-height: 28px;
  }
  .cta-banner .cta-button {
    margin-top: 32px;
  }
  .cta-content .cta-eyebrow {
    font-size: 16px;
  }
  .cta-grid-pattern {
    height: 48px;
    width: calc(100% - 48px);
  }

}

.notfound-banner {
  min-height: 500px;
  width: 100%;
  position: relative;
  color: #Fafafa;
  z-index: 1;
  overflow: hidden;
}

.notfound-content {
  max-width: 1245px;
  margin: 300px auto 231px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.notfound-content h1 {
  font-size: 57px;
  line-height: 67px;
  font-weight: 800;
  margin: 0;
  margin-bottom: 24px;
}

.notfound-content p {
  text-transform: uppercase;
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  max-width: 640px;
  margin-bottom: 42px;
  margin-top: 0;
}

.notfound-background {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.notfound-banner .cta-button {
  box-shadow: 0px 44px 100px #e3061576;
}

@media (max-width: 991px) {
  .notfound-content {
    margin: 160px auto 181px;
  }
  .notfound-content h1 {
    font-size: 40px;
    line-height: 54px;
  }
  .notfound-content p {
    font-size: 16px;
    line-height: 25px;
  }
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 58px 25px;
  padding: 0px 24px 105px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.category-card {
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 253px 84px;
  place-items: center;
  background-color: #F1EBEB;
  transition: box-shadow 300ms;
  box-shadow: 0px 30px 60px #0000000f;
  color: var(--dark);
  position: relative;
}
.category-card:visited {
  color: var(--dark);
}
.category-card:hover {
  color: var(--dark);
}
.category-card img {
  mix-blend-mode: multiply;
  max-width: 100%;
  max-height: 100%;
}
.category-card:hover {
  box-shadow: 0px 45px 60px #0000003d;
}

.category-card-label {
  background-color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 22px;
  padding: 17px;
  text-align: center;
}

.category-card-label p {
  margin: 0;
}

.category-card .arrow-icon {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 14px 14px 13px;
  border-radius: 100px;
  border: none;
  pointer-events: none;
  background-color: transparent;
  transition: background-color 150ms;
}

.category-card:hover .arrow-icon {
  background-color: white;

}

.category-card .arrow-icon img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(21%) saturate(582%) hue-rotate(152deg) brightness(86%) contrast(85%);
  width: 13px;
}


@media screen and (max-width: 730px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px 12px;
    padding: 0 12px 105px;
  }
  .category-card {
    grid-template-rows: 190px auto;
  }
  .category-card-label {
    padding: 6px 10px 12px;
  }
  .category-card-label p {
    margin: 0;
    font-size: 14px;
  }
}

.section-hero {
  background-color: var(--worten);
  padding-top: 95px;
  position: relative;
  margin-bottom: 76px;
  width: 100%;
  overflow: hidden;
}

.section-hero .hero-image {
  height: 120%;
  position: absolute;
  top: -20%;
  right: 0;
  margin-bottom: -5px;
  object-fit: cover;
}

.section-hero-image-wrapper {
  height: 282px;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}
.main-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 38px 45px;
  color: white;
  z-index: 2;
  margin: 0;
  font-size: 57px;
  line-height: 87%;
  letter-spacing: -0.03em;
  font-weight: 700;
  left: max(0px, calc(50vw - 750px));
}

@media (max-width: 991px) {
  .section-hero .main-title {
    font-size: 38px;
    line-height: 50px;
    padding: 22px 18px;
  }
  .section-hero-image-wrapper {
    height: 210px;
  }
}

.grid-pattern-divider {
  height: 77px;
  width: 100%;
  background: var(--dots);
  background-size: 13px 6px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(99%) saturate(10%) hue-rotate(318deg) brightness(102%) contrast(89%);
}

.products-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-bottom: 101px;
}

.product-card {
  display: grid;
  grid-template-rows: 357px auto;
  border: solid 1px #CCCCCC;
  position: relative;
  margin-right: -1px;
  margin-bottom: -1px;
  color: var(--secondary);
  box-sizing: border-box;
  place-items: center;
  padding-top: 24px;
  transition: background-color 150ms;
}

.product-card:hover {
  background-color: #F1EBEB;
}
.product-category {
  text-transform: uppercase;
  color: #5B808F;
  font-size: 14px;
  letter-spacing: -0.03em;
  font-weight: 200;
}
.product-card p.product-description {
  color: var(--secondary);
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 300;
}
.product-card p {
  width: 100%;
  margin: 0;
  padding: 0 38px;
}
.product-card > img {
  margin: 0 -24px;
  mix-blend-mode: multiply;
}

.product-button {
  background-color: #F1EBEB;
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 20px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 100px;
  transition: background-color 150ms;
}
.product-button img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(21%) saturate(582%) hue-rotate(152deg) brightness(86%) contrast(85%);
}

.product-card:hover .product-button {
  background-color: var(--worten);
}

.product-card:hover .product-button img {
  filter: brightness(0) invert(1);
}
@media (max-width: 641px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .product-card {
    grid-template-rows: 240px auto;
  }
  .product-card p {
    padding: 0 22px;
  }
  .product-card p.product-description {
    margin-bottom: 16px;
  }
  .product-button {
    top: 12px;
    right: 12px;
  }
}


.catalog-header {
  position: relative;
  display: flex;
  height: 60px;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: -76px;
  align-items: center;
  z-index: 8;
}
.catalog-header:before,.catalog-header:after {
  content: " ";
  display: block;
  width: 200vw;
  border-top: solid 1px #CCCCCC;
  position: absolute;
  left: -50vw;
  right: 0;
  top: 0;
  z-index: -1;
}
.catalog-header:after {
  top: 100%;
}


.catalog-select {
  display: flex;
  gap: 24px;
  border: none;
  background-color: transparent;
  border-right: solid 1px #cccccc;
  align-items: center;
  padding: 22px 24px;
  user-select: none;
  cursor: pointer;
  font-family: inherit;
}
.catalog-select:hover {
  background-color: #F1EBEB;
}
.catalog-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: white;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 300ms, opacity 300ms;
  opacity: 0;
  width: 400px;
  height: 100%;
}

.catalog-menu-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

.catalog-menu-content .arrow {
  background-color: #F1EBEB;
  border-radius: 100px;
  display: inline-block;
  align-self: center;
  height: 28px;
  width: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-left: 4px;
  margin-top: -4px;
}
.catalog-menu-content .arrow img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(21%) saturate(582%) hue-rotate(152deg) brightness(86%) contrast(85%);
  width: 7px;
}

.catalog-backdrop {
 position: fixed;
 inset: 0;
 z-index: 99;
 background-color: #00223634;
 opacity: 0;
 transition: opacity 300ms;
 pointer-events: none;
}
.catalog-breadcrumb {
  padding: 0 24px;
  text-transform: uppercase;
  user-select: none;
}
.catalog-breadcrumb a:hover{
color: var(--secondary);
text-decoration: underline;
}
.catalog-select:focus + .catalog-menu,
.catalog-menu:focus-within {
  transform: none;
  opacity: 1;
}
.catalog-select:focus + .catalog-menu + .catalog-backdrop {
  opacity: 1;
  pointer-events: all;
}

.catalog-menu-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 24px;
  height: 58px;
  align-items: center;
  border-bottom: solid 1px #cccccc;
  font-size: 14px;
  color: var(--secondary);
  text-transform: uppercase;
  line-height: 25px;
  user-select: none;
}

.catalog-menu a {
  padding: 10px 54px 10px 47px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 22px;
  color: #5B808F;
  position: relative;
  transition: transform 150ms, color 150ms;
}

.catalog-menu a:last-child {
  margin-bottom: 56px;
}

.catalog-menu a:hover {
  color: var(--worten);
}
.catalog-menu a:hover {
  transform: translateX(14px);
}
.catalog-menu a:before {
  content: " ";
  display: block;
  position: absolute;
  top: 20px;
  left: 34px;
  width: 6px;
  border-top: solid 1px var(--worten);
  opacity: 0;
  transition: opacity 300ms;
}

.catalog-menu a:focus {
  outline: none;
  background-color: #F1EBEB;
}

.catalog-menu a:hover:before {
  opacity: 1;
}


@media screen and (max-width: 991px) {
  .catalog-header {
    flex-direction: column-reverse;
    justify-content: stretch;
    height: auto;
    margin-bottom: -1px;
  }
  .catalog-select {
    width: 100%;
    justify-content: space-between;
    border-right: none;
    border-bottom: solid 1px #cccccc;
    border-top: solid 1px #cccccc;
  }
  .catalog-breadcrumb {
    padding: 16px 24px;
    width: 100%;

  }
  .catalog-menu {
    transform: translateY(100%);
    width: 100%;
    max-height: calc(100% - 120px);
    bottom: 0;
    top: auto;
  }
  .catalog-menu a {
    padding: 10px 22px;
  }
  .catalog-menu-content {
    padding-top: 16px;
  }
}

.no-results {
  grid-column: 1 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.no-results p {
  max-width: 300px;
}
.no-results a {
  color: var(--worten);
  text-decoration: underline;
}

.brands {
  margin-top: 270px;
  color: var(--dark);
}

.brands-title {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 66px;
}

.brands-title h2 {
  flex: 1;
  max-width: 955px;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 75px;
  color: var(--secondary);
  margin: 0;
}

.brands-title p {
  margin: 0;
  font-size: 22px;
  line-height: 33px;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-align: right;
}

.brands-slider {
  border-top: solid 1px #CCCCCC;
}

.brands-slider .swiper-slide {
  display: grid;
  grid-template-rows: 200px auto;
  height: auto;
  padding: 93px 43px;
  box-sizing: border-box;
  justify-items: center;
  text-align: center;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: -0.01em;
  border: solid 1px #CCCCCC;
  margin-right: -1px !important;
  margin-top: -1px !important;
}

.brands-slider .swiper-slide img {
  place-self: center;
  mix-blend-mode: multiply;
}

.brands-slider .swiper-slide p {
  max-width: 255px;
}

.brands-slider .swiper-slide:hover {
  background: #F2F5F6;
}

.brands-slider .arrow {
  position: absolute;
  left: 24px;
  top: 235px;
  width: 62px;
  height: 62px;
  border-radius: 100px;
  border: solid 1px #ccc;
  box-shadow: 0 4px 30px #00000022;
  background-color: white;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  transition: transform 300ms, opacity 300ms;
  opacity: 1;
}
.brands-slider .arrow img {
  margin-left: 6px;
  transform: scaleX(-1);
}
.brands-slider .next.arrow {
  left: auto;
  right: 24px;
}
.brands-slider .next.arrow img {
  transform: none;
  margin-left: -6px;
}

.brands-slider .arrow.swiper-button-disabled {
  transform: scale(0);
  opacity: 0;
}

@media screen and (max-width: 991px) {
  .brands {
    margin-top: 120px;
    margin-bottom: 104px;
  }
  .brands-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .brands-title h2 {
    font-size: 32px;
    line-height: 45px;
  }
  .brands-title p {
    text-align: left;
    font-size: 18px;
    line-height: 24px;
  }
  .brands-slider .swiper-slide {
    padding: 22px 22px;
  }
  .brands-slider .arrow {
    top: 410px;
    left: 12px;
    width: 42px;
    height: 42px;
  }
  .brands-slider .next.arrow {
    right: 12px;
    left: auto;
  }
  .brands-slider .arrow img {
    width: 15px;
  }
  .brands-slider .arrow.swiper-button-disabled {
    transform: none;
    opacity: 0.3;
  }

  .brands-slider .claim-pagination {
    margin-top: 80px;
  }
}

::selection {
  background: #c2c2c222;
  color: var(--worten);
  text-shadow: none;
}

::-moz-selection {
  background: #c2c2c222;
  color: var(--worten);
}

.claim-content ::selection,
.about-text-inner ::selection,
.section-hero ::selection,
.cta-banner ::selection,
.catalog-cta ::selection,
.notfound ::selection
 {
  background-color: #00223644;
  color: currentColor;
  text-shadow: none;
}

main.notfound {
  background-color: var(--worten);
  color: var(--secondary);
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px;
}

main.notfound:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  background: linear-gradient(to left, var(--worten), transparent 80%);
}

main.notfound .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.2;
}

main.notfound h2 {
  color: white;
  font-size: 44px;
  line-height: 52px;
  margin: 12px 0;
}

main.notfound p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin: 0 0 12px;
  max-width: 640px;
}

main.notfound a {
  text-decoration: underline;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  main.notfound h2 {
    font-size: 28px;
    line-height: 38px;
  }
  main.notfound p {
    font-size: 16px;
    line-height: 24px;
  }
}
