* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fbfbfb;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "PPEditorialNew";
  font-style: normal;
  font-weight: 500;
  src: url(/assets/fonts/PPEditorialNew/PPEditorialNew-Regular.woff2)
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Roboto/Roboto-Regular.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLight.ttf) format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-LightItalic.ttf) format("truetype");
  font-display: swap;
}

.sidebar {
  position: fixed;
  z-index: 1000;
  left: 0;
  width: clamp(300px, 15vw, 420px);
  border-right: 1px solid #4d4d4d;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
  background-color: #fbfbfb;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.logo-wrapper img {
  width: 240px;
  height: auto;
}

.main-navigation {
  margin-top: 3rem;
}

.main-navigation ul {
  padding: 0;
}

.main-navigation ul li {
  list-style: none;
}

.main-link {
  color: #4d4d4d;
  font-weight: 200;
  font-size: 1.3rem;
  text-decoration: none;
  line-height: 2.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.current-page {
  text-decoration: 1px #cca152 underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.has-submenu {
  position: relative;
  overflow: hidden;
}

.submenu {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: max-height 0.3s ease;
}

.submenu {
  padding-left: 1rem !important;
}

.submenu a {
  font-size: 1.1rem;
  line-height: 1.5rem;
  font-weight: 200;
  color: #7a7a7a;
  text-decoration: none;
}

.sidebar-footer {
  position: absolute;
  bottom: 1rem;
  background-color: #fbfbfb;
}

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 0;
  background-color: #fbfbfb;
}

.language-switch {
  position: relative;
  width: max-content;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 2px;
  border: 1px solid hsl(0 0% 82%);
  background-color: #fbfbfb;
  box-shadow: 0 1px 2px hsl(0 0% 0% / 0.05);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.12s ease;
}

.lang-trigger:hover {
  box-shadow: 0 4px 14px hsl(0 0% 0% / 0.1);
}

.lang-trigger:active {
  transform: translateY(1px);
}

.chev {
  transition: transform 0.18s ease;
}

.lang-list {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.4rem);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  min-width: 180px;
  z-index: 50;
  border: 1px solid hsl(0 0% 82%);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 10px 30px hsl(0 0% 0% / 0.12);
  transform-origin: bottom left;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  outline: none;
}

.text {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

.lang-label {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  font-size: 1rem;
}

.lang-list li:hover,
.lang-list li:focus {
  background: hsl(210 16% 96%);
}

.lang-list li[aria-selected="true"] {
  background: hsl(210 16% 94%);
}

.language-switch[data-open="true"] .lang-list {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.language-switch[data-open="true"] .chev {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .lang-list,
  .chev,
  .lang-trigger {
    transition: none;
  }
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #fbfbfb;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-mobile img {
  filter: invert(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;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.5rem;
  font-weight: 100;
  text-decoration: none;
  padding: 0.7rem 0;
  color: #4d4d4d;
}

.menu-links img {
  width: 12px;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #4d4d4d;
}

.menu-bottom a {
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  color: #4d4d4d;
}

.menu-mobile-page {
  background-color: #fbfbfb;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

.menu-mobile-page-closing {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 1.4rem;
  width: 100%;
  position: absolute;
  top: 0;
}

.page-body {
  margin-left: clamp(300px, 15vw, 420px);
  width: calc(100% - clamp(300px, 15vw, 420px));
  width: max(0px, calc(100% - clamp(300px, 15vw, 420px)));
  position: relative;
}

.quick-links-wrapper {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
}

.quick-links-wrapper a,
.quick-links-wrapper p {
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 200;
  font-size: 1rem;
  cursor: pointer;
}

.quick-links-wrapper a:hover {
  color: #cca152;
  text-decoration: underline;
}

.shop-seciton {
  min-height: 100vh;
  padding: 8rem 6rem 4rem 6rem;
}

h1 {
  color: #cca152;
  font-family: "PPEditorialNew", sans-serif;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 400;
  margin-bottom: 0;
}

.product-title p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.product-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-img {
  width: 46%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-text {
  width: 54%;
}

.price-tag {
  font-size: 1.8rem;
  color: #4d4d4d;
  font-weight: 200;
  margin-bottom: 0;
}

.tax-info {
  font-size: 0.9rem;
  font-weight: 100;
  color: #4d4d4d;
  margin-top: 2px;
}

.freebie-spacing {
  margin-top: 1rem;
}

.order-btn-wrapper {
  margin-top: 2rem;
}

.order-btn {
  background-color: #cca152;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1rem;
  min-width: 220px;
  color: #fbfbfb;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.legal-note {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  margin-top: 2rem;
}

.legal-note span {
  font-weight: 100;
  font-size: 1rem;
}

.legal-note a {
  color: #cca152;
  font-size: 1rem;
  font-weight: 100;
  text-decoration: none;
}

.legal-note-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  cursor: pointer;
}

.legal-note-checkbox input {
  margin-top: 3px;
  cursor: pointer;
}

.order-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
}

.payment-methods img {
  width: 40px;
}

.mastercard-icon {
  width: 36px !important;
}

.product-desc {
  margin-top: 2rem;
}

.product-desc h3 {
  font-size: 1.4rem;
  font-weight: 200;
  color: #4d4d4d;
  margin-bottom: 0;
}

.product-desc p {
  font-size: 1.1rem;
  font-weight: 100;
  color: #4d4d4d;
  margin-top: 0.7rem;
}

.product-desc ul li {
  font-size: 1.1rem;
  font-weight: 100;
  color: #4d4d4d;
  line-height: 1.6rem;
}

.product-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.product-footer a {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 200;
}

.leseprobe-btn {
  background: transparent;
  color: #4d4d4d;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #4d4d4d;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  transition: 0.2s ease;
  margin-bottom: 1.7rem;
}

.spacing-leseprobe-btn {
  margin-bottom: 0rem !important;
}

.leseprobe-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.leseprobe-overlay.visible {
  display: flex;
}

.lp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.lp-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 92vw;
  max-width: 1200px;
  max-height: 92vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 50;
}

.lp-viewer {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  justify-items: center;
  gap: 1.5rem;
}

.lp-page-frame {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lp-page-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lp-nav {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.lp-nav img {
  width: 12px;
  height: auto;
}

.lp-nav:hover {
  background: #e4e4e4;
}

.lp-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.horizintal-line {
  width: 100%;
  height: 1px;
  background-color: #4d4d4d40;
}

.vertical-line {
  width: 1px;
  height: 30px;
  background-color: #4d4d4d40;
}

.share-tooltip {
  position: absolute;
  transform: translateX(-50%);
  background: #4d4d4d;
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.share-tooltip.visible {
  opacity: 1;
}

.product-status {
  display: flex;
  align-items: center;
  gap: 4px;
}

.download-status {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #008819;
}

.product-footer p {
  color: #4d4d4d;
  text-decoration: none;
  font-weight: 200;
}

.product-info {
  margin-top: 4rem;
}

.product-info h2 {
  color: #cca152;
  font-family: "PPEditorialNew", sans-serif;
  font-size: 1.9rem;
  line-height: 1.9rem;
  font-weight: 400;
  margin-bottom: 0;
}

.product-info p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.product-info h3 {
  color: #4d4d4d;
  font-size: 1.3rem;
  font-weight: 300;
}

.product-info ul li {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
  line-height: 1.6rem;
}

.product-details {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 1rem;
}

.product-details table {
  width: 100%;
  border-collapse: collapse;
}

.product-details td {
  vertical-align: top;
  padding: 6px 0;
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.product-details td:first-child {
  width: 7rem;
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

@media (max-width: 600px) {
  .product-details td:first-child {
    width: 35%;
  }
}

.faq-section ul {
  padding-left: 1rem;
}

.faq-section ul li {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.faq-section ol li {
  color: #4d4d4d;
  font-weight: 100;
  font-size: 1.2rem;
  padding-left: 7px;
  margin-bottom: 1rem;
}

.faq-section h2 {
  color: #cca152;
  font-family: "PPEditorialNew", sans-serif;
  font-size: 1.9rem;
  line-height: 1.9rem;
  font-weight: 400;
  margin: 0;
}

.faq-section h3 {
  color: #cca152;
  font-size: 1.5rem;
  font-weight: 100;
  width: 60%;
}

.faq-section a {
  color: #cca152;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
}

.faq-section a {
  color: #cca152;
  font-weight: 200;
  position: relative;
  text-decoration: none;
}

.faq-section a:before {
  background-color: #cca152;
  bottom: 0;
  content: "";
  height: 1.5px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 0;
}
.faq-section a:hover:before {
  width: 100%;
}

.faq-section {
  margin: 0rem 6rem 6rem 6rem;
}

.faq-section p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
}

.accordion-layout {
  display: flex;
  flex-direction: column;
}

.accordion-layout {
  width: 100%;
}

.accordion-item {
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #eae4dd;
}

.question-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
}

.question-box h4 {
  font-size: 1.3rem;
  font-weight: 100;
  color: #4d4d4d;
}

.cross-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 80px;
}

.cross-box img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cross-box img.rotated {
  transform: rotate(225deg);
}

.answer-item {
  padding-left: 10px;
  padding-top: 2rem;
  padding-right: 100px;
  transition: height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  height: 0;
}

.answer-item p {
  color: #4d4d4d;
  font-size: 1.2rem;
  font-weight: 100;
  margin-top: 0;
}

.answer-item a {
  color: #cca152;
  font-size: 1.2rem;
  font-weight: 100;
  text-decoration: none;
}

.answer-item ul {
  padding: 0 0 0 20px;
}

footer {
  background-color: #3c3d37;
  padding: 4rem 6rem 0.8rem 6rem;
}

.logo-footer {
  width: 180px;
  height: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
}

.footer-top p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 1rem;
}

.footer-social-icons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-social-icons img {
  width: 40px;
  cursor: pointer;
}

.footer-line {
  margin-top: 2rem;
  width: 100%;
  height: 1px;
  background-color: #4d4d4d;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-layout h3 {
  font-weight: 300;
  color: #fffdf6;
  font-size: 1.4rem;
}

.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-layout ul {
  padding: 0;
}

.footer-layout ul li {
  list-style: none;
}

.footer-layout a {
  color: #fffdf6;
  font-weight: 100;
  text-decoration: none;
  line-height: 1.6rem;
}

.location-item-footer {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.location-item-footer img {
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #fffdf6;
  font-weight: 100;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.credits {
  color: #fffdf6;
  text-decoration: none;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .quick-links-wrapper {
    display: none;
  }
  .mobile-header {
    display: flex !important;
  }
  .mobile-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .logo-mobile {
    width: 120px;
  }
  .page-body {
    width: 100%;
    margin-left: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .shop-seciton {
    padding: 8rem 1rem 0rem 1rem;
  }
  .product-layout {
    flex-direction: column;
    gap: 0;
  }
  .product-img,
  .product-text {
    width: 100%;
  }

  .lp-modal {
    width: 95vw;
    max-height: 90vh;
    padding: 0rem 0rem 1.2rem 0rem;
  }

  .lp-viewer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;
    row-gap: 1.2rem;
    column-gap: 1.4rem;
  }

  .lp-page-frame {
    grid-row: 1;
    grid-column: 1 / span 2;
    max-height: 70vh;
    width: 100%;
  }

  .lp-page-frame img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
  }

  .lp-nav.prev {
    grid-row: 2;
    grid-column: 1;
    justify-self: end;
  }

  .lp-nav.next {
    grid-row: 2;
    grid-column: 2;
    justify-self: start;
  }

  .lp-nav {
    width: 3rem;
    height: 3rem;
  }
  .faq-section {
    margin: 4rem 1rem;
  }
  .cross-box {
    width: 20px;
  }
  .answer-item {
    padding-right: 0;
  }

  footer {
    padding: 4rem 1rem 0.8rem 1rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .footer-layout,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  .quick-links-wrapper {
    display: none;
  }
  .mobile-header {
    display: flex !important;
  }
  .mobile-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .logo-mobile {
    width: 120px;
  }
  .page-body {
    width: 100%;
    margin-left: 0;
  }
  h1 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .shop-seciton {
    padding: 8rem 1rem 0rem 1rem;
  }
  .product-layout {
    flex-direction: column;
    gap: 0;
  }
  .product-img,
  .product-text {
    width: 100%;
  }
  .lp-modal {
    width: 95vw;
    max-height: 95vh;
    padding: 1.2rem;
  }

  .lp-viewer {
    display: grid !important;
    grid-template-columns: 60px 1fr 60px !important;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    column-gap: 1rem;
    row-gap: 0;
  }

  .lp-page-frame {
    grid-column: 2;
    max-height: 80vh;
    width: 100%;
  }

  .lp-page-frame img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .lp-nav.prev {
    grid-column: 1;
    grid-row: 1;
  }

  .lp-nav.next {
    grid-column: 3;
    grid-row: 1;
  }

  .lp-nav {
    width: 3.2rem;
    height: 3.2rem;
  }
  .faq-section {
    margin: 4rem 1rem;
  }
  .cross-box {
    width: 20px;
  }
  .answer-item {
    padding-right: 0;
  }
  footer {
    padding: 4rem 1rem 0.8rem 1rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .footer-layout,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .lp-modal {
    width: 90vw;
    height: auto;
    max-height: 95vh;

    padding: 0.8rem;
    border-radius: 10px;

    display: flex;
    flex-direction: row; /* Bild und Controls nebeneinander */
    align-items: center;
    justify-content: center;
    gap: 1rem;

    overflow: hidden;
  }

  /* Bildcontainer bekommt die Hälfte der Breite */
  .lp-page-frame {
    width: 60vw;
    max-height: 85vh;

    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lp-page-frame img {
    max-width: 60vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* Navigation im Landscape RECHTS statt unten */
  .lp-nav-container {
    display: flex;
    flex-direction: column; /* Buttons untereinander */
    justify-content: center;
    align-items: center;
    gap: 1.2rem;

    width: 10vw;
  }

  .lp-nav {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
  }

  /* Page indicator leicht verschieben */
  .lp-indicator {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .shop-seciton {
    padding: 8rem 2rem 0rem 2rem;
  }
  .product-img {
    width: 55%;
  }
  .product-text {
    width: 45%;
  }
  .rmv-lpt {
    display: none;
  }
  .faq-section {
    margin: 6rem 2rem;
  }
  footer {
    padding: 4rem 2rem 0.8rem 2rem;
  }
}
