@charset "UTF-8";
:root {
  --white: #FFFFFF;
  --white2: #F8F8F8;
  --beige: #f9f6f4;
  --black: #000000;
  --black2: #2D3643;
  --darkGrey1: #575757;
  --darkGrey2: #404040;
  --darkGrey3: #707070;
  --lightGrey1: #E5E5E5;
  --lightGrey2: #00000029;
  --lightGrey3: #D5D5D5;
  --lightGrey4: #EEEEEE;
  --lightGrey5: #C9C9C9;
  --lightGrey6: #FBFBFB;
  --lightgrey-bg: #F4F4F4;
  --boxShadowColor: #ACACAC29;
  --green: #8EC100;
  --darkgreen: #50827E;
  --dirt-pink: #BF747D;
  --marine: #B0DED9;
  --blue2: #5572BE;
  --yellow: #F8D480;
  --orange: #F8B080;
  --brown: #9E6E53;
  --box-shadow: 0 0 10px #00000029;
  --thin-font: 100;
  --extra-light-font: 200;
  --light-font: 300;
  --regular-font: 400;
  --medium-font: 500;
  --semi-bold-font: 600;
  --bold-font: 700;
  --extra-bold-font: 800;
  --black-font: 900;
}

/* Tenant 1 (Pk Train) theme */
.tenant1 {
  --brandPrimary: #E2001A;
  --brandPrimaryHover: #bd011b;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Hopeless-Place";
  src: url("/fonts/Hopeless-Place.ttf") format("truetype");
  font-weight: 400;
}
body {
  opacity: 0;
  animation: fadeInAnimation ease 1s;
  animation-fill-mode: forwards;
  /* Clip any accidental horizontal overflow so it can't create a wider layout
     viewport — otherwise position: fixed elements (e.g. the floating contact
     button) anchor to the overflow edge and stick out past the screen on some
     pages. `clip` (not `hidden`) avoids turning body into a scroll container,
     so the sticky header keeps working. */
  overflow-x: clip;
}
body a, body span, body p, body div {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.64px;
}
body a {
  color: var(--brandPrimary);
}
body a:hover, body a:focus {
  text-decoration: none;
  color: var(--brandPrimaryHover);
}
body h1 {
  font-size: 30px;
  letter-spacing: -1.2px;
}
body h2 {
  font-size: 26px;
  font-weight: var(--medium-font);
  letter-spacing: -1.04px;
}
body h3 {
  font-size: 20px;
  font-weight: var(--regular-font);
  letter-spacing: -0.8px;
}
body h4 {
  font-size: 18px;
  letter-spacing: -0.72px;
}
body .select-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 33px;
  min-width: 114px;
  box-shadow: 0 0 6px var(--lightGrey2);
  border: 1px solid var(--black);
}
body .select-wrapper select {
  width: 100%;
  height: 100%;
  position: absolute;
  padding-left: 14px;
  padding-right: 30px;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}
body .select-wrapper svg {
  z-index: 1;
  margin-right: 14px;
  pointer-events: none;
}
body .main-button {
  width: fit-content;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brandPrimary);
  padding: 0 38px;
  color: var(--white);
}
body .main-button:hover {
  background-color: var(--brandPrimaryHover);
  -webkit-box-shadow: var(--box-shadow);
  -moz-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  color: var(--white);
}
body .main-white-underline-button {
  width: fit-content;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid var(--white);
  font-weight: var(--bold-font);
  font-size: 26px;
  padding: 0 38px;
  letter-spacing: -1.04px;
  background-color: transparent;
}
body .main-white-underline-button:hover {
  border: 1px solid var(--lightGrey4);
  color: var(--lightGrey4);
  -webkit-box-shadow: var(--box-shadow);
  -moz-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
body .main-white-underline-button:focus {
  outline: 0;
}
body .main-underline-button {
  width: fit-content;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  font-weight: var(--bold-font);
  font-size: 18px;
  padding: 0 25px;
  letter-spacing: -0.72px;
  background-color: transparent;
}
body .main-underline-button:hover {
  border: 1px solid var(--brandPrimaryHover);
  color: var(--brandPrimaryHover);
  -webkit-box-shadow: var(--box-shadow);
  -moz-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
body .form-check-input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--black);
  border-radius: 0;
  accent-color: var(--brandPrimary);
}
body .form-check-label {
  margin-left: 10px;
}
body input[type=radio] {
  width: 15px;
  height: 15px;
  accent-color: var(--black);
}
body .price-container .price {
  display: flex;
  color: var(--white);
}
body .price-container .price .integral {
  font-size: 100px;
  font-weight: var(--bold-font);
  letter-spacing: -4px;
}
body .price-container .price .fraction-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
body .price-container .price .fraction-container .fraction {
  width: max-content;
  position: absolute;
  left: -15px;
  top: 15px;
  font-size: 60px;
  font-weight: var(--bold-font);
  letter-spacing: -2.4px;
}
body .price-container .price .fraction-container .under-text {
  width: max-content;
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 22px;
  letter-spacing: -0.88px;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1450px !important;
  }
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.lang-switch a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  padding: 0 4px;
}
.lang-switch a:hover {
  opacity: 1;
  text-decoration: underline;
}
.lang-switch a.active {
  opacity: 1;
  font-weight: var(--bold-font);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-switch a + a::before {
  content: "·";
  opacity: 0.5;
  margin-right: 8px;
}

.start-now-ad-container {
  background-color: var(--brandPrimary);
  text-align: center;
}
.start-now-ad-container span, .start-now-ad-container b {
  color: var(--white);
}
.start-now-ad-container .container {
  position: relative;
}
.start-now-ad-container .lang-switch {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  color: var(--white);
}
@media (max-width: 770px) {
  .start-now-ad-container .lang-switch {
    position: static;
    display: flex;
    justify-content: center;
    padding-bottom: 4px;
  }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 20px;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.main-header .logo-img {
  width: 180px;
}
@media (max-width: 1199px) {
  .main-header .header-data {
    flex-direction: row-reverse;
    align-items: center;
  }
  .main-header .header-data .logo-container {
    display: flex;
    justify-content: center;
  }
}

.contact-tab-floating {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  height: 57px;
  padding: 0 22px;
  background-color: var(--brandPrimary);
  border-radius: 8px;
  box-shadow: 0 2px 11.9px -2px rgba(0, 0, 0, 0.17);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 200ms ease, background-color 200ms ease;
}
.contact-tab-floating:hover {
  transform: translateY(-2px);
  background-color: #c00017;
  color: var(--white);
  text-decoration: none;
}
.contact-tab-floating .contact-tab-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.contact-tab-floating .contact-tab-icon {
  width: 32px;
  height: 32px;
  display: block;
}
@media (max-width: 575px) {
  .contact-tab-floating {
    right: 0;
    bottom: 0;
    height: 48px;
    padding: 0 16px;
  }
  .contact-tab-floating .contact-tab-label {
    font-size: 18px;
  }
  .contact-tab-floating .contact-tab-icon {
    width: 24px;
    height: 24px;
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.lang-switch a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  padding: 0 4px;
}
.lang-switch a:hover {
  opacity: 1;
  text-decoration: underline;
}
.lang-switch a.active {
  opacity: 1;
  font-weight: var(--bold-font);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-switch a + a::before {
  content: "·";
  opacity: 0.5;
  margin-right: 8px;
}

.main-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}
.main-footer .logo-container img {
  width: 180px;
}
.main-footer .columns-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 6%;
  row-gap: 20px;
  margin-top: 50px;
}
.main-footer .columns-container .footer-column {
  display: flex;
  flex-direction: column;
}
.main-footer .columns-container .footer-column .title {
  margin-bottom: 18px;
}
.main-footer .columns-container .footer-column a {
  color: var(--darkGrey2);
  font-weight: var(--light-font);
}
.main-footer .columns-container .footer-column a:not(:last-child) {
  margin-bottom: 18px;
}
.main-footer .columns-container .footer-column a:hover {
  color: var(--brandPrimary);
}
.main-footer .columns-container .footer-column .footer-links p {
  margin: 0 0 18px;
}
.main-footer .columns-container .footer-column .footer-links p:last-child {
  margin-bottom: 0;
}
.main-footer .columns-container .footer-column .lang-switch {
  margin-top: 30px;
  color: var(--darkGrey2);
  font-size: 14px;
}
.main-footer .columns-container .footer-column .lang-switch a {
  margin-bottom: 0;
}
.main-footer .columns-container .footer-column .lang-switch a.active {
  font-weight: var(--bold-font);
}
.main-footer .columns-container .footer-column.socials-column .socials-container {
  display: flex;
  gap: 29px;
  align-items: center;
}
.main-footer .columns-container .footer-column.socials-column .socials-container a {
  margin-bottom: 0;
}
.main-footer .columns-container .footer-column.socials-column .socials-container img {
  width: 30px;
  height: 30px;
}
@media (max-width: 1200px) {
  .main-footer .columns-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .main-footer .columns-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 770px) {
  .main-footer .columns-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 500px) {
  .main-footer .logo-container {
    text-align: center;
  }
  .main-footer .columns-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-notice {
  padding-top: 70px;
  padding-bottom: 90px;
  border-top: 1px solid var(--darkGrey3);
}
.footer-notice .text-wrapper {
  width: 66%;
}
.footer-notice .text-wrapper span, .footer-notice .text-wrapper p {
  font-size: 12px;
  letter-spacing: -0.48px;
}
.footer-notice .text-wrapper p {
  margin: 0;
  line-height: 2;
}
@media (max-width: 991px) {
  .footer-notice .text-wrapper {
    width: 100%;
  }
}

.shop-page {
  background-color: var(--white);
  min-height: 100vh;
}

/* ---------- Hero ---------- */
.shop-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
}
.shop-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  box-sizing: border-box;
}
.shop-hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: var(--black);
  margin: 0 0 20px;
}
.shop-hero__description {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--black);
  max-width: 691px;
  margin: 0 0 50px;
  line-height: 1.4;
}
.shop-hero__description p {
  margin: 0;
}
.shop-hero__search {
  display: flex;
  align-items: stretch;
  max-width: 700px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.shop-hero__search-input {
  flex: 1;
  background-color: #f9f9f9;
  border: none;
  outline: none;
  padding: 0 23px;
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 20px;
  color: #575757;
}
.shop-hero__search-input::placeholder {
  color: #575757;
  font-style: italic;
}
.shop-hero__search-button {
  flex: 0 0 156px;
  background-color: var(--brandPrimary);
  color: var(--white);
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.shop-hero__search-button:hover {
  background-color: var(--brandPrimaryHover);
}
.shop-hero__image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.shop-hero__image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
}

/* ---------- Categories section ---------- */
.shop-categories {
  background-color: #f4f4f4;
  padding: 100px 0;
  /* Override category-grid look inside the shop page to match Figma cards. */
}
.shop-categories__inner {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.shop-categories__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.shop-categories__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--black);
  margin: 0;
}
.shop-categories__sort {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shop-categories__sort-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--black);
}
.shop-categories__sort-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 114px;
  height: 33px;
  padding: 0 12px;
  border: 1px solid var(--black);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
  background-color: transparent;
}
.shop-categories__sort-arrow {
  font-size: 12px;
  line-height: 1;
}
.shop-categories .category-grid-wrapper {
  margin-bottom: 0;
}
.shop-categories .category-grid-wrapper > h2 {
  display: none; /* The "Kategorien" heading is rendered above by .shop-categories__head */
}
.shop-categories .category-grid-wrapper .category-list-base {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 72px;
  row-gap: 66px;
}
.shop-categories .category-grid-wrapper .category-box {
  position: relative;
  display: block;
  width: 100%;
  height: 179px;
  border-radius: 5px;
  background: linear-gradient(43.82deg, #ffffff 10.12%, #e1e1e1 69.58%);
  box-shadow: 0 2px 11.9px rgba(0, 0, 0, 0.17);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 419px;
  /* "All Products" tile keeps the brand-red background style. */
}
.shop-categories .category-grid-wrapper .category-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  text-decoration: none;
}
.shop-categories .category-grid-wrapper .category-box h3 {
  position: absolute;
  top: 30px;
  left: 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--black);
  margin: 0;
  z-index: 2;
}
.shop-categories .category-grid-wrapper .category-box .category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
}
.shop-categories .category-grid-wrapper .category-box .category-image img {
  width: auto;
  height: 100%;
  max-width: 60%;
  object-fit: contain;
  object-position: right center;
}
.shop-categories .category-grid-wrapper .category-box.all-products {
  background: var(--brandPrimary);
}
.shop-categories .category-grid-wrapper .category-box.all-products .category-box-background {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  box-shadow: none;
}
.shop-categories .category-grid-wrapper .category-box.all-products h3 {
  position: static;
  color: var(--white);
}
@media (max-width: 1100px) {
  .shop-categories .category-grid-wrapper {
    /* The 419px min-width keeps the desktop card proportions but stops
       the boxes from shrinking with their grid column, so they spill
       over the viewport edge on smaller screens. Let them fill the
       column instead. */
  }
  .shop-categories .category-grid-wrapper .category-list-base {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
  }
  .shop-categories .category-grid-wrapper .category-box {
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .shop-categories .category-grid-wrapper .category-list-base {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .shop-hero__content,
  .shop-categories__inner {
    padding: 0 60px;
  }
}
@media (max-width: 700px) {
  .shop-hero {
    padding: 60px 0;
    min-height: 0;
  }
  .shop-hero__image {
    display: none;
  }
  .shop-categories {
    padding: 60px 0;
  }
  .shop-hero__content,
  .shop-categories__inner {
    padding: 0 20px;
  }
  /* Stack the heading on top of the sort control and centre the sort group,
     instead of the space-between row that squashes "Sortieren nach" against
     the title on narrow screens. */
  .shop-categories__head {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .shop-categories__sort {
    justify-content: center;
  }
}

/*# sourceMappingURL=shop.css.map */
