html {
  scrollbar-gutter: stable;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8f2de;
  font-family: "PPFrama", sans-serif;
  position: relative;
  z-index: -2;
  overflow-x: hidden;
}

@font-face {
  font-family: "PPFrama";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/PPFrama/PPFrama-Semibold.otf) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "PPFrama";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/PPFrama/PPFrama-Medium.otf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PPFrama";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/PPFrama/PPFrama-Light.otf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "PPFrama";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/PPFrama/PPFrama-Extralight.otf) format("truetype");
  font-display: swap;
}

.cart-overlay [hidden],
.cart-trigger__badge[hidden] {
  display: none !important;
}

html {
  scrollbar-gutter: stable;
}

/* Header Cart Trigger */

.cart-trigger {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}

.cart-trigger__badge {
  position: absolute;
  top: -9px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #b0ce88;
  color: #252525;
  font-family: "PPFrama", sans-serif;
  font-size: 0.72rem;
  line-height: 1;
  pointer-events: none;
}

body.cart-is-open {
  overflow: hidden;
  padding-right: 0;
}

body.cart-is-open .header-desktop {
  z-index: 1200;
  transform: translateY(0);
  opacity: 1;
  padding-right: 3rem;
}

@supports not (scrollbar-gutter: stable) {
  body.cart-is-open {
    padding-right: var(--scrollbar-compensation, 0px);
  }

  body.cart-is-open .header-desktop {
    padding-right: calc(3rem + var(--scrollbar-compensation, 0px));
  }
}

/* Overlay */

.cart-overlay,
.cart-overlay * {
  box-sizing: border-box;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: scroll;
  scrollbar-width: auto;
  scrollbar-gutter: stable;
  background: #f8f2de;
  color: #252525;
  font-family: "PPFrama", sans-serif;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0px at 100% 0);
  scrollbar-width: none;
}

.cart-overlay.is-open {
  pointer-events: auto;
}

.cart-overlay__shell {
  position: relative;
  min-height: 100%;
}

.cart-overlay__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 30vw);
  column-gap: clamp(3rem, 6vw, 6rem);
  row-gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(8rem, 9vw, 10rem) clamp(3rem, 6vw, 7rem) 4.5rem;
}

.cart-overlay--empty .cart-main {
  grid-column: 1 / -1;
  max-width: 760px;
}

/* Toolbar */

.cart-overlay__toolbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}

.cart-close {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #252525;
  font-family: "PPFrama", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 100;
}

.cart-close:hover {
  opacity: 0.7;
}

.cart-close:focus {
  outline: none;
}

.cart-close__icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.cart-close__icon::before,
.cart-close__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.cart-close__icon::before {
  transform: rotate(45deg);
}

.cart-close__icon::after {
  transform: rotate(-45deg);
}

/* Main */

.cart-main {
  min-width: 0;
}

.cart-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.cart-heading h2 {
  font-weight: 700;
  color: #252525;
  font-size: 3.25rem;
  line-height: 3.5rem;
  letter-spacing: 0;
  margin: 0;
}

.cart-heading p {
  margin: 0 0 0.35rem;
  color: rgba(37, 37, 37, 0.56);
  font-size: 0.98rem;
  white-space: nowrap;
}

/* Product */

.cart-product {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(1.8rem, 3vw, 3.5rem);
  padding: 2rem 0;
  border-top: 1px solid rgba(37, 37, 37, 0.16);
  border-bottom: 1px solid rgba(37, 37, 37, 0.12);
}

.cart-product__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(37, 37, 37, 0.05);
}

.cart-product__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cart-product__media.is-fallback::before {
  content: attr(data-fallback-title);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: rgba(37, 37, 37, 0.5);
  font-size: 0.95rem;
  line-height: 1.3;
  text-align: center;
}

.cart-product__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 2rem;
  row-gap: 1.25rem;
  align-content: start;
}

.cart-product__headline {
  grid-column: 1 / -1;
}

.cart-product__headline p {
  margin: 0 0 0.3rem;
  color: rgba(37, 37, 37, 0.58);
  font-size: 0.95rem;
  font-weight: 100;
}

.cart-product__headline h2 {
  margin: 0;
  color: #252525;
  font-size: 2.1rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.cart-product__price {
  grid-column: 1;
}

.cart-product__price p {
  margin: 0;
  color: #252525;
  font-size: 1.6rem;
  line-height: 1;
}

.cart-product__price span,
.cart-product__price small {
  display: block;
  margin-top: 0.42rem;
  color: rgba(37, 37, 37, 0.62);
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 100;
}

.cart-product__delivery {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(37, 37, 37, 0.78);
  font-size: 1rem;
  font-weight: 100;
}

.cart-product__controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.cart-quantity {
  display: inline-grid;
  grid-template-columns: 42px 52px 42px;
  height: 40px;
  border: 1px solid rgba(37, 37, 37, 0.18);
}

.cart-quantity button,
.cart-quantity output {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #252525;
  font-family: "PPFrama", sans-serif;
  font-size: 1rem;
  font-weight: 100;
}

.cart-quantity button {
  cursor: pointer;
}

.cart-quantity button:hover {
  background: rgba(37, 37, 37, 0.05);
}

.cart-quantity output {
  border-left: 1px solid rgba(37, 37, 37, 0.12);
  border-right: 1px solid rgba(37, 37, 37, 0.12);
}

.cart-remove {
  padding: 0 0 0.14rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: rgba(37, 37, 37, 0.68);
  font-family: "PPFrama", sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  font-weight: 100;
}

.cart-remove:hover {
  color: #252525;
}

/* Empty State */

.cart-empty {
  padding: 2rem 0;
  border-top: 1px solid rgba(37, 37, 37, 0.16);
  border-bottom: 1px solid rgba(37, 37, 37, 0.12);
}

.cart-empty h2 {
  margin: 0 0 0.6rem;
  color: #252525;
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.cart-empty p {
  max-width: 620px;
  margin: 0 0 1.6rem;
  color: rgba(37, 37, 37, 0.64);
  font-size: 0.98rem;
  line-height: 1.45;
}

.cart-empty__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cart-empty__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(37, 37, 37, 0.2);
  background: transparent;
  color: #252525;
  font-family: "PPFrama", sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}

.cart-empty__button:hover {
  background: #252525;
  color: #f8f2de;
}

.cart-empty__link {
  padding: 0 0 0.15rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: rgba(37, 37, 37, 0.72);
  font-family: "PPFrama", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
}

.cart-empty__link:hover {
  color: #252525;
}

/* Summary */

.cart-summary {
  align-self: start;
  position: sticky;
  top: 8rem;
  padding-left: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid rgba(37, 37, 37, 0.14);
}

.cart-summary__inner {
  width: 100%;
  max-width: 450px;
  margin-left: auto;
}

.cart-summary h2 {
  margin: 0 0 1.6rem;
  color: #252525;
  font-size: 2.1rem;
  line-height: 1.05;
  font-weight: 700;
}

.cart-summary__rows {
  border-top: 1px solid rgba(37, 37, 37, 0.14);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(37, 37, 37, 0.1);
  color: rgba(37, 37, 37, 0.65);
  font-size: 1rem;
  font-weight: 100;
}

.cart-summary__row strong {
  color: #252525;
  font-weight: 200;
}

.cart-summary__row--total {
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-bottom: 0;
  color: #252525;
  font-weight: 200;
}

.cart-summary__row--total span {
  font-size: 1.05rem;
}

.cart-summary__row--total strong {
  color: #252525;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.cart-stripe-note {
  max-width: 390px;
  margin: 1.35rem 0 1.6rem;
  color: rgba(37, 37, 37, 0.64);
  font-size: 0.94rem;
  line-height: 1.42;
  font-weight: 100;
}

.cart-checkout {
  width: 100%;
  min-height: 3.5rem;
  border: 0;
  background: #b0ce88;
  color: #252525;
  font-family: "PPFrama", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease;
}

.cart-checkout:hover {
  background: #bed99a;
}

.cart-checkout:disabled {
  background: rgba(176, 206, 136, 0.36);
  color: rgba(37, 37, 37, 0.45);
  cursor: not-allowed;
}

.cart-continue {
  display: block;
  margin: 1rem auto 0;
  padding: 0 0 0.14rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: rgba(37, 37, 37, 0.8);
  font-family: "PPFrama", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 100;
}

.cart-continue:hover {
  color: #252525;
}

.cart-legal {
  max-width: 420px;
  margin: 1.8rem 0 0;
  color: rgba(37, 37, 37, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 100;
}

.cart-legal a {
  color: rgba(37, 37, 37, 0.88);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-legal a:hover {
  color: #252525;
}

/* Focus */

.cart-trigger:focus-visible,
.cart-quantity button:focus-visible,
.cart-remove:focus-visible,
.cart-empty__button:focus-visible,
.cart-empty__link:focus-visible,
.cart-checkout:focus-visible,
.cart-continue:focus-visible,
.cart-legal a:focus-visible,
.cart-close:focus-visible {
  outline: 1px solid rgba(37, 37, 37, 0.65);
  outline-offset: 4px;
}

/* Responsive */

@media (max-width: 1180px) {
  .cart-overlay__content {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
    padding-left: 0;
    padding-top: 2.5rem;
    border-left: 0;
    border-top: 1px solid rgba(37, 37, 37, 0.14);
  }

  .cart-summary__inner {
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .cart-overlay__content {
    padding: 7.25rem 1.25rem 3rem;
    row-gap: 2.2rem;
  }

  .cart-close {
    gap: 4px;
  }

  .cart-heading {
    display: block;
    margin-bottom: 1.8rem;
  }

  .cart-heading h2 {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .cart-heading p {
    margin-top: 0.5rem;
  }

  .cart-empty h2,
  .cart-summary h2,
  .cart-product__headline h2 {
    font-size: 1.8rem;
    line-height: 1.05;
  }

  .cart-product {
    grid-template-columns: 1fr;
    border-bottom: none;
    padding: 2rem 0 0 0;
  }

  .cart-product__media {
    max-width: 220px;
  }

  .cart-product__content {
    grid-template-columns: 1fr;
  }

  .cart-product__controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-summary__row--total strong {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-overlay {
    clip-path: none;
  }

  .cart-checkout {
    transition: none;
  }
}

.header-desktop {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 3rem;
  background: linear-gradient(
    180deg,
    rgba(48, 47, 47, 0.7),
    rgba(109, 100, 100, 0)
  );
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  will-change: transform, opacity;
}

.header-desktop.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-desktop img {
  width: 180px;
  height: auto;
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.desktop-nav-links a {
  color: #f8f2de;
  font-family: "PPFrama", sans-serif;
  font-weight: 100;
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-link-with-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  line-height: 1;
}

.nav-badge {
  position: relative;
  top: -0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.42rem 0.14rem;
  border-radius: 999px;
  background-color: #bed99a;
  color: #151515;
  font-family: "PPFrama", sans-serif;
  font-size: 0.55rem;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: baseline;
}

.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.desktop-nav-menu a {
  color: #f8f2de;
  font-family: "PPFrama", sans-serif;
  font-weight: 100;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-line {
  height: 22px;
  width: 1px;
  background-color: #f8f2de;
}

.shopping-cart {
  cursor: pointer;
  width: 22px;
  height: auto;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 1.7rem 1rem;
  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 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.mobile-nav-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mobile-nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-logo-mobile img {
  width: 135px;
  height: auto;
  display: block;
}

.nav-menu {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.line {
  background-color: #f8f2de;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #f8f2de;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
}

.mobile-header .cart-trigger {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-header .shopping-cart {
  width: 22px;
  height: auto;
  display: block;
}

.mobile-header .cart-trigger__badge {
  position: absolute;
  top: -0.55rem;
  right: -0.65rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background-color: #bed99a;
  color: #181818;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1rem;
  text-align: center;
}

.menu-mobile {
  display: none;
  background-color: #f8f2de;
  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-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
}

.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.7rem;
  font-weight: 200;
  text-decoration: none;
  padding: 0.4rem 0;
  color: #1a1a1d;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #1a1a1d;
}

.shop-page {
  margin: 8rem 0 0 0;
  height: calc(100vh - 8rem);
}

.product-slider {
  --slides-per-view: 1.35;
  --slide-gap: clamp(10px, 1.8vw, 18px);

  --product-card-right: 4rem;
  --product-card-bottom: 2rem;
  --product-card-width: 420px;
  --product-card-padding: 1rem;
  --product-card-bg: #f8f2de;

  --cta-box-height: 4.75rem;
  --cta-seam-overlap: 1px;
  --cta-gap: 1rem;
  --cart-btn-width: 220px;

  width: 100vw;
  max-width: 100vw;
  margin: 0 0 3.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
}

.shopping-info {
  position: absolute;
  right: var(--product-card-right);
  bottom: calc(
    var(--product-card-bottom) + var(--cta-box-height) - var(--cta-seam-overlap)
  );

  width: var(--product-card-width);
  padding: var(--product-card-padding);
  background-color: var(--product-card-bg);
  z-index: 4;
  overflow: visible;
  box-sizing: content-box;
}

.shopping-info h2 {
  font-weight: 500;
  color: #181818;
  font-size: 1.8rem;
  margin: 0;
}

.shopping-info-header p {
  color: #7f8487;
  font-weight: 100;
  margin-top: 0;
  font-size: 1.2rem;
}

.shopping-info-price p {
  color: #181818;
  font-size: 1.6rem;
  font-weight: 100;
  margin-bottom: 0;
  margin-top: 0;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.old-price {
  color: #7f8487;
  font-size: 1.15rem;
  font-weight: 100;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #7f8487;
}

.new-price {
  color: #181818;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.price-small {
  color: #7f8487;
  font-size: 1rem;
  font-weight: 100;
}

.tax-info {
  color: #7f8487 !important;
  font-size: 0.9rem !important;
  margin-top: 0;
}

.shopping-info-order p {
  font-weight: 100;
  color: #181818;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.shopping-payment-infos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fixed-ctas {
  position: absolute;
  right: var(--product-card-right);
  bottom: var(--product-card-bottom);

  width: var(--product-card-width);
  padding: 0 var(--product-card-padding) var(--product-card-padding);
  background-color: var(--product-card-bg);
  z-index: 5;
  box-sizing: content-box;
}

.fixed-ctas.is-fixed {
  position: fixed;
  padding-top: var(--product-card-padding);
  z-index: 50;
}

.fixed-shopping-buttons {
  display: grid;
  grid-template-columns: var(--cart-btn-width) minmax(0, 1fr);
  align-items: center;
  gap: var(--cta-gap);
  width: 100%;
  margin: 0;
}

.cart-btn {
  width: 100%;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  font-family: "PPFrama", sans-serif;
  font-weight: 100;
  text-decoration: none;
  border-radius: 7px;
  background-color: #252525;
  color: #f8f2de;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.buy-btn {
  width: 100%;
  min-width: 0;
  max-width: none;
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  font-family: "PPFrama", sans-serif;
  font-weight: 100;
  text-decoration: none;
  background-color: #b0ce88;
  color: #151515;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.product-slider__viewport {
  overflow: hidden;
  background-color: #f8f2de;
}

.product-slider__track {
  display: flex;
  gap: var(--slide-gap);
  align-items: stretch;
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.product-slider__track:active {
  cursor: grabbing;
}

.product-slide {
  flex: 0 0 calc(100% / var(--slides-per-view));
  overflow: hidden;
  height: calc(100vh - 8rem);
  aspect-ratio: 4 / 3;
}

.product-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-slider__controls {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(12px, 2vw, 20px);
  z-index: 6;
  mix-blend-mode: difference;
}

.last-slide {
  width: 450px;
}

.product-slider__btn {
  border: none;
  background: transparent;
  padding: 0.85rem 1.4rem;
  border-radius: 1px;
  border: 1px solid #f1ead4;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 120ms ease;
}

.product-slider__btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.product-slider__btn:active:not(:disabled) {
  transform: translateY(0);
}

.product-slider__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 780px) {
  .product-slider {
    --slides-per-view: 1;
    --slide-gap: 8px;
    --product-card-right: 1rem;
    --product-card-bottom: 1rem;
    --product-card-width: calc(100vw - 4rem);
    --cart-btn-width: auto;

    margin-top: 7rem;
  }

  .fixed-shopping-buttons {
    grid-template-columns: 1fr;
  }

  .cart-btn,
  .buy-btn {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

@media (min-width: 1100px) {
  .product-slider {
    --slides-per-view: 1.75;
  }
}

.product-info {
  padding: 6rem 12rem 4rem 12rem;
  background-color: #f8f2de;
}

.product-header h1 {
  color: #252525;
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 0;
}

.product-header p {
  color: #7f8487;
  font-weight: 100;
  margin-top: 0;
  font-size: 1.2rem;
}

.product-info-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.product-info-item-small {
  width: 25%;
}

.product-info-item-large {
  width: 75%;
}

.delivery-info {
  font-size: 1rem !important;
  margin-top: 1rem !important;
}

.product-info-item-large p {
  font-weight: 200;
  font-size: 1.6rem;
  margin-top: 0;
  color: #252525;
}

.scope-wrapper h2 {
  font-weight: 500;
  font-size: 1.8rem;
  color: #252525;
}

.scope-wrapper ul li {
  color: #181818;
  font-size: 1.2rem;
  font-weight: 200;
}

.technical-section {
  padding: 4rem 12rem;
  background-color: #f8f2de;
}

.technic-layout {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}

.technic-text {
  width: 30%;
  position: sticky;
  top: 200px;
  align-self: flex-start;
}

.technic-list {
  width: 65%;
  padding-top: 11.5rem;
}

.technic-text h2 {
  font-weight: 500;
  font-size: 1.8rem;
  color: #252525;
}

.technic-text p {
  color: #252525;
  font-weight: 100;
  font-size: 1.2rem;
  width: 100%;
  margin-top: 0;
}

.list-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 0 0;
}

.border-top-list {
  width: 100%;
  height: 3px;
  background-color: #2c2c2c;
}

.list-item h3 {
  color: #252525;
  font-weight: 500;
  margin: 0;
  font-size: 1.4rem;
}

.spec-title {
  width: 35%;
}

.spec-item {
  width: 65%;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.spec-table td {
  padding: 1rem 0;
  vertical-align: top;
  font-weight: 100;
  font-size: 1.1rem;
}

.spec-table td:first-child {
  width: 40%;
  color: #1a1a1a;
}

.spec-table td:last-child {
  text-align: right;
}

.spec-item sub {
  font-size: 0.7rem;
}

.spec-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.border-bottom-tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .spec-table td:first-child {
    width: 50%;
  }
}

.list-buttons-layout {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1rem;
  width: 70%;
  float: right;
}

.list-buttons-layout .main-btn {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.secondary-btn {
  font-weight: 100;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  color: #151515;
  border-radius: 4px;
  min-width: 220px;
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.secondary-btn img {
  margin-top: 3px;
}

.solar-model-section {
  background: #f8f2de;
  padding: 12rem;
}

.solar-3d-viewer {
  --cream: #f8f2de;
  --glass: rgba(248, 242, 222, 0.3);

  position: relative;
  width: 100%;
  height: clamp(660px, 84vh, 980px);
  margin-inline: auto;

  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;

  background-color: #292929;
  border-radius: 4px;
  isolation: isolate;

  content-visibility: auto;
  contain: layout paint;
  contain-intrinsic-size: 1200px 860px;
}

.solar-3d-viewer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: var(--poster-image);
  background-color: #292929;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  opacity: 1;
  transform: translateZ(0);
  transition: opacity 420ms ease;
}

.solar-3d-viewer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;

  width: var(--model-progress, 0%);
  height: 3px;

  background: var(--cream);
  opacity: 0;

  transition:
    width 180ms ease,
    opacity 220ms ease;
}

.solar-3d-viewer.is-loading::after {
  opacity: 0.8;
}

.solar-3d-viewer.is-ready::before {
  opacity: 0;
  pointer-events: none;
}

.solar-3d-viewer model-viewer {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  background: #292929;
  opacity: 0;
  touch-action: none;

  --poster-color: transparent;

  transition: opacity 420ms ease;
}

.solar-3d-viewer.is-ready model-viewer {
  opacity: 1;
}

.solar-3d-viewer model-viewer::part(default-progress-bar) {
  height: 3px;
  background-color: var(--cream);
}

.solar-3d-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;

  width: clamp(74px, 8vw, 96px);
  height: clamp(74px, 8vw, 96px);

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  cursor: pointer;
  transform: translate(-50%, -50%);

  transition:
    transform 220ms ease,
    background 220ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
}

.solar-3d-play::before {
  content: "";
  width: 38%;
  height: 38%;

  background-image: url("/assets/icons/play-light.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  transform: translateX(5%);
}

.solar-3d-play:hover {
  background: rgba(248, 242, 222, 0.38);
  transform: translate(-50%, -50%) scale(1.055);
}

.solar-3d-play:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 5px;
}

.solar-3d-viewer.is-loading .solar-3d-play {
  pointer-events: none;
  opacity: 0.78;
}

.solar-3d-viewer.is-ready .solar-3d-play {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.92);
}

.solar-3d-badge,
.solar-3d-fallback {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vw, 48px);
  z-index: 4;
  border-radius: 4px;
  background: var(--glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 100;
  border-radius: 7px;
  color: rgb(248, 242, 222);
  color: var(--cream);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1;
  padding: 0.9rem 1rem;
}

.solar-3d-fallback {
  color: var(--cream);
  text-decoration: none;
}

@supports not (
  (backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px))
) {
  .solar-3d-play,
  .solar-3d-badge,
  .solar-3d-fallback {
    background: rgba(248, 242, 222, 0.42);
  }
}

@media (max-width: 1024px) {
  .solar-3d-viewer {
    height: clamp(520px, 72vw, 760px);
  }
}

@media (max-width: 640px) {
  .solar-3d-viewer {
    height: clamp(420px, 90vw, 560px);
  }

  .solar-3d-badge,
  .solar-3d-fallback {
    left: 14px;
    bottom: 14px;
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solar-3d-viewer::before,
  .solar-3d-viewer::after,
  .solar-3d-viewer model-viewer,
  .solar-3d-play {
    transition: none;
  }
}

footer {
  position: sticky;
  bottom: 0;
  z-index: -1;
  padding: 4rem 12rem 0 12rem;
  background-color: #2c3333;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-slogan {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #f8f2de;
  width: 25%;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 50%;
  padding-top: 4rem;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  font-weight: 100;
  color: #f8f2de;
  font-size: 1rem;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
}

.legal-links ul {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 0.7rem;
}

.legal-links li {
  list-style: none;
}

.legal-links a {
  font-weight: 100;
  font-size: 1rem;
  color: #f8f2de;
  text-decoration: none;
}

.footer-line {
  height: 20px;
  width: 1px;
  background-color: #f8f2de;
}

.footer-logos {
  display: flex;
  gap: 1rem;
}

.footer-divider {
  width: 100%;
  background-color: #f8f2de;
  height: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #f8f2de;
  font-weight: 100;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #f8f2de;
  font-weight: 100;
  font-size: 0.9rem;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .shopping-info {
    display: none;
  }

  .shopping-info .shopping-info-price p {
    display: none;
  }

  .shopping-info .shopping-info-order p {
    display: none;
  }

  .buy-btn {
    display: none;
  }

  .cart-btn {
    background-color: #b0ce88;
    color: #252525;
  }

  .fixed-ctas {
    bottom: 0;
    width: 100%;
    right: 0;
    left: 0;
    box-sizing: border-box;
  }

  .shopping-payment-infos {
    display: none;
  }

  .shop-page {
    height: 50vh;
  }

  .product-slider__controls {
    left: 1rem;
    bottom: 1rem;
    padding: 0;
  }

  .product-slide {
    height: 50vh;
  }

  .product-info {
    padding: 4rem 1rem 2rem 1rem;
  }

  .product-header h1 {
    margin-top: 0;
  }

  .product-info-layout {
    flex-direction: column;
  }

  .product-info-item-small,
  .product-info-item-large {
    width: 100%;
  }

  .product-info-item-large p {
    font-size: 1.2rem;
    font-weight: 100;
  }

  .scope-wrapper ul li {
    font-weight: 100;
    color: #252525;
  }

  .technical-section {
    padding: 2rem 1rem 4rem 1rem;
  }

  .technic-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .technic-text h2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
    width: 100%;
  }

  .technic-text {
    width: 100%;
    position: inherit;
  }

  .technic-list {
    width: 100%;
    padding-top: 0;
  }

  .spec-item {
    width: 100%;
  }

  .list-item h3 {
    font-size: 1.3rem;
  }

  .list-layout {
    flex-direction: column;
    gap: 0.8rem;
  }

  .list-buttons-layout {
    display: inherit;
    width: inherit;
    float: inherit;
  }

  .solar-model-section {
    padding: 4rem 1rem 8rem 1rem;
  }

  footer {
    padding: 4rem 1rem 1rem 1rem;
  }

  .footer-slogan {
    width: 100%;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }

  .footer-links ul {
    margin: 0.6rem 0;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .legal-links ul {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .legal-links a {
    color: #f8f2de !important;
    font-size: 0.8rem;
  }

  .footer-line {
    background-color: #f8f2de;
    height: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding-top: 1rem;
  }

  .footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
  }

  .footer-bottom a {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
    padding: 2rem 3rem;
  }

  .shopping-info {
    display: none;
  }

  .shopping-info .shopping-info-price p {
    display: none;
  }

  .shopping-info .shopping-info-order p {
    display: none;
  }

  .buy-btn {
    display: none;
  }

  .cart-btn {
    background-color: #b0ce88;
    color: #252525;
  }

  .fixed-ctas {
    bottom: 0;
    width: 100%;
    right: 0;
    left: 0;
    box-sizing: border-box;
  }

  .fixed-shopping-buttons {
    grid-template-columns: 1fr;
  }

  .shopping-payment-infos {
    display: none;
  }

  .shop-page {
    height: 50vh;
  }

  .product-slider__controls {
    left: 1rem;
    bottom: 1rem;
    padding: 0;
  }

  .product-slide {
    height: 50vh;
  }

  .product-info {
    padding: 4rem 3rem 2rem 3rem;
  }

  .product-header h1 {
    margin-top: 0;
  }

  .product-info-layout {
    flex-direction: column;
  }

  .product-info-item-small,
  .product-info-item-large {
    width: 100%;
  }

  .product-info-item-large p {
    font-size: 1.2rem;
    font-weight: 100;
  }

  .scope-wrapper ul li {
    font-weight: 100;
    color: #252525;
  }

  .technical-section {
    padding: 2rem 3rem 4rem 3rem;
  }

  .technic-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .technic-text h2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
    width: 100%;
  }

  .technic-text {
    width: 100%;
    position: inherit;
  }

  .technic-list {
    width: 100%;
    padding-top: 0;
  }

  .spec-item {
    width: 100%;
  }

  .list-item h3 {
    font-size: 1.3rem;
  }

  .list-layout {
    flex-direction: column;
    gap: 0.8rem;
  }

  .list-buttons-layout {
    display: inherit;
    width: inherit;
    float: inherit;
  }

  .solar-model-section {
    padding: 4rem 3rem 8rem 3rem;
  }

  footer {
    padding: 4rem 3rem 1rem 3rem;
  }

  .footer-slogan {
    width: 100%;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
    padding: 0;
    flex-direction: column;
  }

  .footer-links ul {
    margin: 0.6rem 0;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .legal-links ul {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .legal-links a {
    color: #f8f2de !important;
    font-size: 0.8rem;
  }

  .footer-line {
    background-color: #f8f2de;
    height: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding-top: 1rem;
  }

  .footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
  }

  .footer-bottom a {
    font-size: 0.8rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  h1 {
    font-size: 4rem;
    line-height: 4.5rem;
  }

  .product-info {
    padding: 6rem 8rem 4rem 8rem;
  }

  .technical-section {
    padding: 4rem 8rem;
  }

  .solar-model-section {
    padding: 8rem;
  }

  footer {
    padding: 4rem 8rem 0 8rem;
  }
}
