html {
  scrollbar-gutter: stable;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: -2;
  overflow-x: hidden;
  background: #f8f2de;
  color: #252525;
  font-family: "PPFrama", sans-serif;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

@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;
}

:root {
  --asp-bg: #f8f2de;
  --asp-text: #252525;
  --asp-muted: #7f8487;
  --asp-dark: #252525;
  --asp-green: #b0ce88;
  --asp-green-hover: #bed99a;
  --asp-footer: #2c3333;
  --asp-ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-overlay [hidden],
.cart-trigger__badge[hidden] {
  display: none !important;
}

.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: var(--asp-green);
  color: var(--asp-text);
  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));
  }
}

.cart-overlay,
.cart-overlay * {
  box-sizing: border-box;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
  scrollbar-width: none;
  scrollbar-gutter: stable;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0 at 100% 0);
  background: var(--asp-bg);
  color: var(--asp-text);
  font-family: "PPFrama", sans-serif;
}

.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;
}

.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: var(--asp-text);
  font-size: 0.95rem;
  font-weight: 100;
  cursor: pointer;
}

.cart-close:hover {
  opacity: 0.7;
}

.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);
}

.cart-main {
  min-width: 0;
}

.cart-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.cart-heading h1,
.cart-heading h2 {
  margin: 0;
  color: var(--asp-text);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.cart-heading p {
  margin: 0 0 0.35rem;
  color: rgba(37, 37, 37, 0.56);
  font-size: 0.98rem;
  white-space: nowrap;
}

.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%;
  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: var(--asp-text);
  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: var(--asp-text);
  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: var(--asp-text);
  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-size: 0.92rem;
  font-weight: 100;
  cursor: pointer;
}

.cart-remove:hover {
  color: var(--asp-text);
}

.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: var(--asp-text);
  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: var(--asp-text);
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
}

.cart-empty__button:hover {
  background: var(--asp-dark);
  color: var(--asp-bg);
}

.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-size: 0.95rem;
  cursor: pointer;
}

.cart-empty__link:hover {
  color: var(--asp-text);
}

.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: var(--asp-text);
  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: var(--asp-text);
  font-weight: 200;
}

.cart-summary__row--total {
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-bottom: 0;
  color: var(--asp-text);
  font-weight: 200;
}

.cart-summary__row--total span {
  font-size: 1.05rem;
}

.cart-summary__row--total strong {
  color: var(--asp-text);
  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: var(--asp-green);
  color: var(--asp-text);
  font-size: 1rem;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease;
}

.cart-checkout:hover {
  background: var(--asp-green-hover);
}

.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-size: 0.95rem;
  font-weight: 100;
  cursor: pointer;
}

.cart-continue:hover {
  color: var(--asp-text);
}

.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: var(--asp-text);
}

.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,
.cart-btn:focus-visible,
.storage-submit:focus-visible,
.storage-inquiry-form input:focus-visible,
.storage-inquiry-form select:focus-visible,
.storage-inquiry-form textarea:focus-visible {
  outline: 1px solid rgba(37, 37, 37, 0.65);
  outline-offset: 4px;
}

.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,
.desktop-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.desktop-nav-links a,
.desktop-nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--asp-bg);
  font-size: 1.1rem;
  font-weight: 100;
  text-decoration: none;
}

.nav-line {
  width: 1px;
  height: 22px;
  background: var(--asp-bg);
}

.shopping-cart {
  width: 22px;
  height: auto;
  cursor: pointer;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 1.7rem 1rem;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.mobile-header nav {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.mobile-nav-left,
.mobile-nav-center,
.mobile-nav-right {
  display: flex;
  align-items: center;
}

.mobile-nav-left {
  justify-content: flex-start;
}

.mobile-nav-center {
  justify-content: center;
}

.mobile-nav-right {
  justify-content: flex-end;
}

.nav-logo-mobile img {
  width: 135px;
  height: auto;
}

.nav-menu {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.line,
.line-small {
  height: 1px;
  margin-bottom: 5px;
  background: var(--asp-bg);
}

.line {
  width: 25px;
}

.line-small {
  width: 20px;
}

.mobile-header .cart-trigger__badge {
  top: -0.55rem;
  right: -0.65rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  background: var(--asp-green-hover);
  color: #181818;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1rem;
}

.menu-mobile {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10000;
  height: 100%;
  width: 100%;
  background: var(--asp-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

.menu-closing {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
}

.menu-close {
  width: 20px;
  height: 20px;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0;
  color: #1a1a1d;
  font-size: 1.7rem;
  font-weight: 200;
  text-decoration: none;
}

.menu-bottom {
  position: absolute;
  left: 4%;
  bottom: 2rem;
}

.shop-page.storage-product-page,
.product-info.storage-product-page,
.technical-section.storage-product-page {
  position: relative;
  z-index: 1;
  background: var(--asp-bg);
}

.shop-page.storage-product-page {
  --storage-shell-max: 1780px;
  --storage-gutter: clamp(1rem, 2.8vw, 4rem);
  --storage-shell-width: min(
    calc(100vw - (var(--storage-gutter) * 2)),
    var(--storage-shell-max)
  );
  --storage-card-width: clamp(420px, 27vw, 510px);
  --storage-card-padding: clamp(1.35rem, 1.8vw, 2rem);
  --storage-gap: clamp(1rem, 1.6vw, 2rem);
  --storage-hero-top: clamp(5.6rem, 10vh, 7.2rem);
  --storage-cta-height: 3.65rem;
  --storage-cta-right: calc(
    (100vw - var(--storage-shell-width)) / 2 + var(--storage-card-padding)
  );
  --storage-cta-width: calc(
    var(--storage-card-width) - (var(--storage-card-padding) * 2)
  );

  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  padding: var(--storage-hero-top) 0 0;
  z-index: 50;
  isolation: auto;
  overflow: visible;
}

.storage-product-page .product-slider--storage {
  width: var(--storage-shell-width);
  height: calc(100vh - var(--storage-hero-top) + 2px);
  height: calc(100svh - var(--storage-hero-top) + 2px);
  min-height: 640px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--storage-card-width);
  gap: var(--storage-gap);
  align-items: stretch;
  position: relative;
  overflow: visible;
}

.storage-product-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}

.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(--asp-muted);
  font-size: 0.95rem;
  font-weight: 100;
  line-height: 1.2;
  pointer-events: none;
}

.storage-product-page .product-slider--storage .product-slider__viewport,
.storage-product-page .product-slider--storage .product-slider__track,
.storage-product-page .product-slider--storage .product-slide {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.storage-product-page .product-slider--storage .product-slider__viewport {
  overflow: hidden;
  background: transparent;
}

.storage-product-page .product-slider--storage .product-slider__track {
  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%;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
}

.storage-product-page .product-slider--storage .product-slide img {
  width: 100%;
  height: 100%;
  padding: clamp(0.75rem, 1.6vw, 2rem) clamp(0.75rem, 1.8vw, 2.25rem) 0;
  object-fit: contain;
  object-position: center bottom;
  background: #ffffff;
  mix-blend-mode: normal;
  filter: none;
  transform: scale(1.025);
  transform-origin: center bottom;
}

.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.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.85rem;
  background: var(--asp-bg);
  color: var(--asp-text);
  font-size: 0.92rem;
  font-weight: 100;
  line-height: 1.15;
  text-align: center;
}

.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;
  margin-bottom: 0.65rem;
  color: var(--asp-muted);
  font-size: 0.95rem;
  font-weight: 100;
}

.storage-product-page .shopping-info h2 {
  margin: 0;
  max-width: 11.5ch;
  color: #181818;
  font-size: clamp(2.05rem, 2.25vw, 2.7rem);
  line-height: 0.97;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.storage-product-page .shopping-info-header p {
  max-width: 430px;
  margin: 0.9rem 0 0;
  color: var(--asp-muted);
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.32;
  font-weight: 100;
}

.storage-shopping-card__body {
  margin: clamp(1.7rem, 3vh, 3.2rem) 0;
}

.storage-hero-points {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.storage-hero-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--asp-text);
  font-size: clamp(0.96rem, 0.95vw, 1.06rem);
  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(--asp-text);
}

.storage-shopping-card__bottom {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding-bottom: calc(var(--storage-cta-height) + 1rem);
}

.storage-product-page .shopping-info-price {
  margin: 0;
}

.storage-product-page .price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
}

.storage-product-page .new-price {
  color: #181818;
  font-size: clamp(1.95rem, 2.2vw, 2.45rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.storage-product-page .tax-info,
.storage-product-page .delivery-info {
  display: block;
  margin: 0.45rem 0 0;
  color: var(--asp-muted);
  font-size: 0.92rem;
  line-height: 1.32;
  font-weight: 100;
}

.storage-product-page .product-slider--storage .fixed-ctas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
  z-index: 20;
  pointer-events: auto;
  will-change: transform;
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    box-shadow 180ms ease;
}

.storage-product-page .product-slider--storage .fixed-ctas.is-fixed {
  position: fixed;
  left: auto;
  right: var(--storage-cta-right);
  bottom: var(--storage-card-padding);
  width: var(--storage-cta-width);
  padding: 0;
  background: transparent;
  z-index: 950;
  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-width: 0;
  max-width: none;
  min-height: var(--storage-cta-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 7px;
  background: var(--asp-dark);
  color: var(--asp-bg);
  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:
    opacity 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms 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(4.5rem, 7vw, 7rem)
    max(
      var(--storage-gutter, 4rem),
      calc((100vw - 1780px) / 2 + var(--storage-gutter, 4rem))
    )
    clamp(3rem, 5vw, 5rem);
}

.product-header h1 {
  margin: 0;
  color: var(--asp-text);
  font-size: clamp(1.85rem, 2.1vw, 2.25rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.product-header p {
  margin: 0.35rem 0 0;
  color: var(--asp-muted);
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 100;
}

.product-info-layout {
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: 2rem;
}

.product-info-item-small {
  width: 25%;
  min-width: 220px;
}

.product-info-item-large {
  width: 75%;
}

.product-info-item-large p {
  margin: 0;
  color: var(--asp-text);
  font-size: clamp(1.25rem, 1.65vw, 1.6rem);
  line-height: 1.35;
  font-weight: 200;
}

.scope-wrapper h2,
.technic-text h2 {
  margin: 0 0 1rem;
  color: var(--asp-text);
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 500;
}

.scope-wrapper ul {
  margin: 0;
  padding-left: 1.2rem;
}

.scope-wrapper li {
  color: #181818;
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 200;
}

.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;
  margin-bottom: 0.5rem;
  color: var(--asp-muted);
  font-size: 1rem;
  font-weight: 100;
}

.storage-keyfact strong {
  display: block;
  color: var(--asp-text);
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 500;
}

.technical-section.storage-product-page {
  padding: clamp(3rem, 5vw, 5rem)
    max(
      var(--storage-gutter, 4rem),
      calc((100vw - 1780px) / 2 + var(--storage-gutter, 4rem))
    );
}

.technic-layout {
  display: flex;
  justify-content: space-between;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.technic-text {
  width: 30%;
  position: sticky;
  top: 200px;
  align-self: flex-start;
}

.technic-text p {
  width: 100%;
  margin: 0;
  color: var(--asp-text);
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 100;
}

.technic-list {
  width: 65%;
  padding-top: 8rem;
}

.list-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 0;
}

.border-top-list {
  width: 100%;
  height: 3px;
  background: #2c2c2c;
}

.list-item h3 {
  margin: 0;
  color: var(--asp-text);
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 500;
}

.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;
  color: var(--asp-text);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 100;
}

.spec-table td:first-child {
  width: 40%;
  color: #1a1a1a;
}

.spec-table td:last-child {
  text-align: right;
}

.spec-table tbody tr:not(:last-child) td,
.border-bottom-tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.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;
  margin-bottom: 0.5rem;
  color: var(--asp-muted);
  font-size: 1rem;
  font-weight: 100;
}

.storage-inquiry__intro h2 {
  margin: 0 0 0.8rem;
  color: var(--asp-text);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.storage-inquiry__intro p {
  margin: 0;
  color: var(--asp-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(--asp-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(--asp-bg);
  color: var(--asp-text);
  font-size: 1rem;
  font-weight: 100;
  padding: 0.85rem 1rem;
}

.storage-inquiry-form textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.4;
}

.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(--asp-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(--asp-green);
  color: #151515;
  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: var(--asp-green-hover);
}

footer {
  position: sticky;
  bottom: 0;
  z-index: -1;
  padding: 4rem 12rem 0;
  background: var(--asp-footer);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-slogan {
  width: 25%;
  color: var(--asp-bg);
  font-size: 1.5rem;
  line-height: 1.8rem;
}

.footer-slogan p {
  margin: 0;
}

.footer-links {
  width: 50%;
  padding-top: 4rem;
  display: flex;
  justify-content: space-between;
}

.footer-links ul,
.legal-links ul {
  margin: 0;
  padding: 0;
}

.footer-links li,
.legal-links li {
  list-style: none;
}

.footer-links a,
.legal-links a,
.footer-bottom a {
  color: var(--asp-bg);
  font-size: 1rem;
  font-weight: 100;
  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;
  gap: 0.7rem;
}

.footer-line {
  width: 1px;
  height: 20px;
  background: var(--asp-bg);
}

.footer-logos {
  display: flex;
  gap: 1rem;
}

.footer-logos img {
  width: auto;
  height: 22px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  background: var(--asp-bg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0.9rem 0;
  color: var(--asp-bg);
  font-size: 0.9rem;
  font-weight: 100;
}

.storage-form-status {
  margin: 0 0 1.5rem 0;
  padding: 1rem 1.2rem;
  border-top: 3px solid #2c2c2c;
  background: rgba(37, 37, 37, 0.04);
  color: #252525;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 100;
}

.storage-form-status[hidden] {
  display: none;
}

.storage-form-status--success {
  background: rgba(176, 206, 136, 0.28);
}

.storage-form-status--error {
  background: rgba(180, 60, 45, 0.1);
}

.storage-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.storage-form-privacy {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  gap: 0.7rem !important;
  max-width: 920px;
  line-height: 1.35;
}

.storage-form-privacy input {
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 0 0 18px;
}

.storage-form-privacy span {
  display: inline;
}

.storage-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}
@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;
  }

  .shop-page.storage-product-page {
    --storage-shell-width: calc(100vw - (var(--storage-gutter) * 2));
    --storage-card-width: 100%;
    --storage-card-padding: clamp(1.25rem, 3vw, 2rem);
    --storage-hero-top: 7rem;
    --storage-cta-width: auto;
    --storage-cta-right: auto;

    min-height: auto;
  }

  .storage-product-page .product-slider--storage {
    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 {
    transform: scale(1.015);
  }

  .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-gutter) + var(--storage-card-padding));
    right: calc(var(--storage-gutter) + var(--storage-card-padding));
    bottom: 1rem;
    width: auto;
  }

  .product-info.storage-product-page,
  .technical-section.storage-product-page {
    padding-left: var(--storage-gutter, 3rem);
    padding-right: var(--storage-gutter, 3rem);
  }

  .product-info-layout,
  .technic-layout {
    flex-direction: column;
    gap: 2rem;
  }

  .product-info-item-small,
  .product-info-item-large,
  .technic-text,
  .technic-list {
    width: 100%;
  }

  .technic-text {
    position: static;
  }

  .technic-list {
    padding-top: 0;
  }

  .spec-title,
  .spec-item {
    width: 100%;
  }

  .list-layout {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 1024px) {
  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  footer {
    padding: 4rem 3rem 1rem;
  }

  .footer-layout,
  .footer-legal,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-slogan,
  .footer-links {
    width: 100%;
  }

  .footer-links {
    padding: 1.5rem 0 0;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links ul {
    margin: 0.6rem 0;
  }

  .footer-legal {
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .legal-links ul {
    gap: 0.4rem;
    flex-wrap: wrap;
  }

  .legal-links a {
    font-size: 0.8rem;
  }

  .footer-line {
    height: 14px;
  }

  .footer-bottom {
    gap: 0.8rem;
    text-align: left;
    padding-top: 1rem;
  }

  .footer-bottom p,
  .footer-bottom a {
    margin: 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  body.cart-is-open .header-desktop {
    padding-right: 0;
  }

  .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 h1,
  .cart-heading h2,
  .cart-empty h2,
  .cart-summary h2,
  .cart-product__headline h2 {
    font-size: 1.8rem;
    line-height: 1.05;
  }

  .cart-heading p {
    margin-top: 0.5rem;
  }

  .cart-product {
    grid-template-columns: 1fr;
    border-bottom: none;
    padding: 2rem 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;
  }

  .shop-page.storage-product-page {
    --storage-gutter: 1rem;
    --storage-shell-width: 100vw;
    --storage-card-padding: 1rem;
    --storage-hero-top: 6.5rem;
  }

  .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.9rem;
  }

  .storage-product-page .product-slider--storage .product-slide img {
    padding: 0.75rem 0.75rem 0;
    transform: scale(1.01);
  }

  .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.5rem;
    font-size: 0.9rem;
  }

  .storage-product-page .product-slider--storage .shopping-info {
    border-top: 0;
    padding: 2rem 1rem;
  }

  .storage-product-page .shopping-info h2 {
    max-width: 12ch;
    font-size: 2rem;
  }

  .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: var(--asp-bg);
    z-index: 950;
  }

  .product-info.storage-product-page,
  .technical-section.storage-product-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-info.storage-product-page {
    padding-top: 4rem;
  }

  .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,
  .storage-form-required {
    font-size: 0.8rem;
  }

  .storage-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .storage-submit {
    width: 100%;
  }

  .spec-table td {
    font-size: 0.95rem;
  }

  footer {
    padding: 4rem 1rem 1rem;
  }
}

body.cart-is-open
  .storage-product-page
  .product-slider--storage
  .fixed-ctas.is-fixed {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .cart-overlay {
    clip-path: none;
  }
}
