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;
}

.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;
  padding: 0 0 3.5rem;
  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;
}

.balcony-reference-section {
  padding: 8rem 12rem 0 12rem;
  background-color: #f8f2de;
}

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

.balcony-reference-heading {
  width: 30%;
  position: sticky;
  top: 200px;
  align-self: flex-start;
}

.balcony-reference-heading h2 {
  font-weight: 500;
  font-size: 1.8rem;
  color: #252525;
  margin: 0;
}

.balcony-reference-content {
  width: 65%;
}

.balcony-reference-divider {
  width: 100%;
  height: 3px;
  background-color: #2c2c2c;
}

.balcony-reference-intro {
  max-width: 780px;
  padding: 1.5rem 0 2rem 0;
}

.balcony-reference-intro h3 {
  color: #252525;
  font-weight: 500;
  margin: 0 0 0.8rem 0;
  font-size: 1.4rem;
}

.balcony-reference-intro p {
  color: #252525;
  font-weight: 100;
  font-size: 1.2rem;
  line-height: 1.45;
  margin: 0;
}

.balcony-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.balcony-reference-card {
  min-width: 0;
}

.balcony-reference-figure {
  margin: 0;
}

.balcony-reference-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: rgba(37, 37, 37, 0.05);
  border-radius: 4px;
}

.balcony-reference-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.obj-reference-one {
  object-position: 100% 50%;
}

.balcony-reference-caption {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.balcony-reference-caption span {
  display: block;
  color: #252525;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.balcony-reference-caption p {
  color: #7f8487;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 768px) {
  .balcony-reference-section {
    padding: 2rem 1rem 0 1rem;
  }

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

  .balcony-reference-heading {
    width: 100%;
    position: static;
  }

  .balcony-reference-heading h2 {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }

  .balcony-reference-content {
    width: 100%;
  }

  .balcony-reference-intro {
    padding: 1.5rem 0 1.7rem 0;
  }

  .balcony-reference-intro h3 {
    font-size: 1.3rem;
  }

  .balcony-reference-intro p {
    font-size: 1.1rem;
  }

  .balcony-reference-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .balcony-reference-caption p {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .balcony-reference-section {
    padding: 2rem 3rem 0 3rem;
  }

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

  .balcony-reference-heading {
    width: 100%;
    position: static;
  }

  .balcony-reference-content {
    width: 100%;
  }

  .balcony-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .balcony-reference-section {
    padding: 4rem 8rem 0 8rem;
  }

  .balcony-reference-layout {
    flex-direction: row;
    gap: 6rem;
  }

  .balcony-reference-heading {
    width: 30%;
    position: sticky;
  }

  .balcony-reference-content {
    width: 65%;
  }
}

.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;
  }
}

.shop-page.storage-product-page,
.product-info.storage-product-page,
.technical-section.storage-product-page {
  --storage-bg: #f8f2de;
  --storage-text: #252525;
  --storage-muted: #7f8487;
  --storage-accent: #b0ce88;
  --storage-hero-max: 1740px;
  --storage-hero-gutter: clamp(1.25rem, 3.2vw, 4.5rem);
  --storage-hero-inline: max(
    var(--storage-hero-gutter),
    calc((100vw - var(--storage-hero-max)) / 2)
  );
  --storage-card-width: clamp(460px, 27vw, 540px);
  --storage-card-padding: clamp(1.45rem, 2vw, 2.25rem);
  --storage-hero-gap: clamp(1.1rem, 1.75vw, 2rem);
  --storage-hero-top: clamp(6.7rem, 9vh, 7.6rem);
  --storage-cta-height: 3.65rem;
  --storage-ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  background-color: var(--storage-bg);
}

.shop-page.storage-product-page {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  height: auto;
  margin: 0;
  padding: var(--storage-hero-top) 0 0;
  z-index: 30;
  isolation: isolate;
  overflow-x: clip;
}

.product-info.storage-product-page,
.technical-section.storage-product-page {
  z-index: 5;
}

.storage-product-page .product-slider--storage {
  --slides-per-view: 1;
  --slide-gap: 0px;
  --product-card-bg: var(--storage-bg);
  --product-card-width: var(--storage-card-width);
  --product-card-right: var(--storage-hero-inline);
  --product-card-bottom: var(--storage-card-padding);
  --product-card-padding: var(--storage-card-padding);
  --cta-gap: 0;
  --cart-btn-width: auto;

  width: min(
    calc(100% - var(--storage-hero-gutter) - var(--storage-hero-gutter)),
    var(--storage-hero-max)
  );
  height: calc(100vh - var(--storage-hero-top) + 1px);
  height: calc(100svh - var(--storage-hero-top) + 1px);
  min-height: 640px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--storage-card-width);
  gap: var(--storage-hero-gap);
  align-items: stretch;
  position: relative;
  overflow: visible;
}

.storage-product-media {
  --storage-image-fit: cover;
  --storage-image-position: 50% 50%;
  --storage-image-scale: 1.04;

  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(255, 255, 255, 0.76) 0%,
      rgba(248, 242, 222, 0.92) 44%,
      rgba(37, 37, 37, 0.045) 100%
    ),
    var(--storage-bg);
}

.storage-product-media__topline {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  right: 1.15rem;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--storage-muted);
  font-size: 1rem;
  font-weight: 100;
  line-height: 1.2;
  pointer-events: none;
}

.storage-product-page .product-slider--storage .product-slider__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.storage-product-page .product-slider--storage .product-slider__track {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 0;
  cursor: default;
  user-select: auto;
  touch-action: auto;
  transform: none;
  will-change: auto;
}

.storage-product-page .product-slider--storage .product-slider__track:active {
  cursor: default;
}

.storage-product-page .product-slider--storage .product-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.storage-product-page .product-slider--storage .product-slide img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: var(--storage-image-fit);
  object-position: var(--storage-image-position);
  background: transparent;
  mix-blend-mode: multiply;
  filter: contrast(1.05) drop-shadow(0 26px 34px rgba(0, 0, 0, 0.12));
  transform: scale(var(--storage-image-scale));
  transform-origin: center;
}

.storage-product-media__facts {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  pointer-events: none;
}

.storage-product-media__facts span {
  min-height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.85rem;
  background: rgba(248, 242, 222, 0.78);
  color: var(--storage-text);
  font-size: 0.95rem;
  font-weight: 100;
  line-height: 1.15;
  text-align: center;
  backdrop-filter: blur(6px);
}

.storage-product-page .product-slider--storage .shopping-info {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: var(--storage-card-padding);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  box-sizing: border-box;
  z-index: 2;
  background: rgba(37, 37, 37, 0.04);
  border-top: 3px solid #2c2c2c;
}

.storage-eyebrow {
  display: block;
  color: var(--storage-muted);
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.65rem;
}

.storage-product-page .shopping-info h2 {
  margin: 0;
  color: #181818;
  font-size: clamp(2.35rem, 3vw, 3.45rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.storage-product-page .shopping-info-header p {
  max-width: 430px;
  margin: 0.9rem 0 0;
  color: var(--storage-muted);
  font-size: clamp(1.05rem, 1.05vw, 1.18rem);
  line-height: 1.32;
  font-weight: 100;
}

.storage-shopping-card__body {
  margin: clamp(2rem, 3.4vh, 3.8rem) 0;
}

.storage-hero-points {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.storage-hero-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--storage-text);
  font-size: clamp(1rem, 1vw, 1.1rem);
  line-height: 1.32;
  font-weight: 100;
}

.storage-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 1px;
  background: var(--storage-text);
}

.storage-shopping-card__bottom {
  width: 100%;
  margin-top: auto;
  display: grid;
  gap: 1.1rem;
}

.storage-product-page .shopping-info-price {
  margin: 0;
}

.storage-product-page .price-line {
  margin: 0;
}

.storage-product-page .new-price {
  color: #181818;
  font-size: clamp(2.05rem, 2.35vw, 2.65rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.storage-product-page .tax-info {
  display: block;
  margin: 0.45rem 0 0;
  color: var(--storage-muted);
  line-height: 1.32;
  font-weight: 100;
}

.storage-product-page .product-slider--storage .fixed-ctas {
  position: static;
  width: 100%;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  z-index: 20;
  pointer-events: auto;
  transition:
    right var(--storage-ease),
    bottom var(--storage-ease),
    width var(--storage-ease),
    opacity 220ms ease,
    transform var(--storage-ease);
}

.storage-product-page .product-slider--storage .fixed-ctas.is-fixed {
  position: fixed;
  left: auto;
  right: calc(var(--storage-hero-inline) + var(--storage-card-padding));
  bottom: var(--storage-card-padding);
  width: calc(
    var(--storage-card-width) - var(--storage-card-padding) -
      var(--storage-card-padding)
  );
  padding: 0;
  background: transparent;
  z-index: 900;
  transform: translate3d(0, 0, 0);
}

.storage-product-page .product-slider--storage .fixed-shopping-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin: 0;
}

.storage-product-page .product-slider--storage .buy-btn {
  display: none;
}

.storage-product-page .product-slider--storage .cart-btn,
.storage-product-page .product-slider--storage .inquiry-cta,
.storage-product-page .product-slider--storage .storage-inquiry-cta {
  width: 100%;
  min-height: var(--storage-cta-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 7px;
  background-color: #252525;
  color: #f8f2de;
  font-family: "PPFrama", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.storage-product-page .product-slider--storage .cart-btn:hover,
.storage-product-page .product-slider--storage .inquiry-cta:hover,
.storage-product-page .product-slider--storage .storage-inquiry-cta:hover {
  opacity: 0.92;
}

.storage-product-page .product-slider--storage .product-slider__controls,
.storage-product-page
  .product-slider--storage
  .product-slider__controls--hidden {
  display: none;
}

.product-info.storage-product-page {
  padding: clamp(4rem, 7vw, 7rem) var(--storage-hero-inline)
    clamp(3rem, 5vw, 5rem);
}

.technical-section.storage-product-page {
  padding: clamp(3rem, 5vw, 5rem) var(--storage-hero-inline);
}

.storage-product-page .product-info-layout,
.storage-product-page .technic-layout {
  gap: clamp(2rem, 5vw, 6rem);
}

.storage-scope {
  margin-top: 3rem;
}

.storage-keyfacts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.storage-keyfact {
  border-top: 3px solid #2c2c2c;
  padding-top: 1rem;
}

.storage-keyfact span {
  display: block;
  color: var(--storage-muted);
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}

.storage-keyfact strong {
  display: block;
  color: var(--storage-text);
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 500;
}

.storage-product-page .delivery-info {
  line-height: 1.35;
}

.storage-inquiry {
  margin-top: 5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(37, 37, 37, 0.04);
  border-top: 0;
}

.storage-inquiry__intro {
  max-width: 820px;
  margin-bottom: 2rem;
}

.storage-inquiry__intro span {
  display: block;
  color: var(--storage-muted);
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
}

.storage-inquiry__intro h2 {
  margin: 0 0 0.8rem;
  color: var(--storage-text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
}

.storage-inquiry__intro p {
  margin: 0;
  color: var(--storage-text);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 100;
}

.storage-inquiry-form {
  display: grid;
  gap: 1.2rem;
}

.storage-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.storage-inquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--storage-text);
  font-size: 1rem;
  font-weight: 100;
}

.storage-inquiry-form input,
.storage-inquiry-form select,
.storage-inquiry-form textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(37, 37, 37, 0.18);
  border-radius: 4px;
  background: var(--storage-bg);
  color: var(--storage-text);
  font-family: "PPFrama", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  padding: 0.85rem 1rem;
}

.storage-inquiry-form textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.4;
}

.storage-inquiry-form input:focus,
.storage-inquiry-form select:focus,
.storage-inquiry-form textarea:focus {
  outline: 1px solid rgba(37, 37, 37, 0.65);
  outline-offset: 3px;
}

.storage-form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  max-width: 820px;
  line-height: 1.35;
}

.storage-form-privacy input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 0.1rem;
  padding: 0;
}

.storage-form-required {
  margin: -0.2rem 0 0;
  color: var(--storage-muted);
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 100;
}

.storage-form-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.storage-form-actions p {
  display: none;
}

.storage-submit {
  min-width: 220px;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border: 0;
  border-radius: 4px;
  background: var(--storage-accent);
  color: #151515;
  font-family: "PPFrama", sans-serif;
  font-size: 1rem;
  font-weight: 100;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  transition:
    background-color 220ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.storage-submit:hover {
  background: #bed99a;
}

@media (max-width: 1180px) {
  .shop-page.storage-product-page,
  .product-info.storage-product-page,
  .technical-section.storage-product-page {
    --storage-card-width: 100%;
    --storage-hero-top: 7rem;
    --storage-card-padding: clamp(1.25rem, 3vw, 2rem);
  }

  .shop-page.storage-product-page {
    min-height: auto;
  }

  .storage-product-page .product-slider--storage {
    width: calc(100% - var(--storage-hero-gutter) - var(--storage-hero-gutter));
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .storage-product-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .storage-product-page .product-slider--storage .product-slide {
    height: 100%;
  }

  .storage-product-page .product-slider--storage .product-slide img {
    --storage-image-scale: 1.02;
    --storage-image-position: 50% 50%;
  }

  .storage-product-page .product-slider--storage .shopping-info {
    height: auto;
    min-height: 0;
  }

  .storage-shopping-card__body {
    margin: 2rem 0;
  }

  .storage-product-page .product-slider--storage .fixed-ctas.is-fixed {
    left: calc(var(--storage-hero-gutter) + var(--storage-card-padding));
    right: calc(var(--storage-hero-gutter) + var(--storage-card-padding));
    bottom: 1rem;
    width: auto;
  }

  .product-info.storage-product-page,
  .technical-section.storage-product-page {
    padding-left: var(--storage-hero-gutter);
    padding-right: var(--storage-hero-gutter);
  }

  .storage-product-page .product-info-layout,
  .storage-product-page .technic-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .storage-product-page .product-info-item-small,
  .storage-product-page .product-info-item-large,
  .storage-product-page .technic-text,
  .storage-product-page .technic-list {
    width: 100%;
  }

  .storage-product-page .technic-text {
    position: static;
  }

  .storage-product-page .technic-list {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .shop-page.storage-product-page,
  .product-info.storage-product-page,
  .technical-section.storage-product-page {
    --storage-hero-top: 6.5rem;
    --storage-hero-gutter: 1rem;
    --storage-card-padding: 1rem;
  }

  .shop-page.storage-product-page {
    min-height: auto;
  }

  .storage-product-page .product-slider--storage {
    width: 100%;
    gap: 0;
  }

  .storage-product-media {
    aspect-ratio: 1 / 1;
  }

  .storage-product-media__topline {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.95rem;
  }

  .storage-product-media__facts {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storage-product-media__facts span {
    min-height: 2.55rem;
    font-size: 0.95rem;
  }

  .storage-product-page .product-slider--storage .shopping-info {
    border-top: 0;
    padding: 2rem 1rem;
  }

  .storage-product-page .shopping-info h2 {
    font-size: 2.1rem;
  }

  .storage-product-page .shopping-info .shopping-info-price .price-line {
    display: flex;
  }

  .storage-product-page .shopping-info .tax-info {
    display: block;
  }

  .storage-product-page .product-slider--storage .fixed-ctas.is-fixed {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 1rem 1rem max(1rem, env(safe-area-inset-bottom));
    background-color: var(--storage-bg);
  }

  .product-info.storage-product-page,
  .technical-section.storage-product-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .storage-keyfacts,
  .storage-form-grid {
    grid-template-columns: 1fr;
  }

  .storage-keyfacts {
    margin-top: 2rem;
  }

  .storage-inquiry {
    margin-top: 3rem;
    padding: 2rem 1rem;
  }

  .storage-inquiry__intro p {
    font-size: 1.1rem;
  }

  .storage-inquiry-form label {
    font-size: 0.8rem;
  }

  .storage-form-required {
    font-size: 0.8rem;
  }

  .storage-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .storage-submit {
    width: 100%;
  }

  .storage-product-page .list-layout {
    flex-direction: column;
    gap: 1rem;
  }

  .storage-product-page .spec-title,
  .storage-product-page .spec-item {
    width: 100%;
  }

  .storage-product-page .spec-table td {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .storage-product-page .product-slider--storage .fixed-ctas,
  .storage-product-page .product-slider--storage .cart-btn,
  .storage-product-page .product-slider--storage .inquiry-cta,
  .storage-product-page .product-slider--storage .storage-inquiry-cta,
  .storage-submit {
    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;
  }
}
