:root {
  --green: #169b45;
  --green-dark: #0f3b25;
  --lime: #8bd245;
  --ink: #15231b;
  --muted: #637168;
  --paper: #f7f9f4;
  --line: rgba(21, 35, 27, .12);
  --shadow: 0 24px 70px rgba(15, 59, 37, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y mandatory;
}
body { margin: 0; min-width: 320px; background: var(--paper); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

main > section,
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  scroll-margin-top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.site-header.is-scrolled,
.site-header:has(.nav-toggle:checked) {
  color: var(--ink);
  background: rgba(247, 249, 244, .92);
  border-bottom-color: rgba(21, 35, 27, .10);
  box-shadow: 0 16px 48px rgba(15, 59, 37, .08);
}

.brand img { width: 158px; }
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a,
.login-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: currentColor;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.main-nav a:hover,
.main-nav a:first-child {
  color: var(--lime);
  background: rgba(255, 255, 255, .12);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:first-child,
.site-header:has(.nav-toggle:checked) .main-nav a:hover,
.site-header:has(.nav-toggle:checked) .main-nav a:first-child {
  color: var(--green);
  background: rgba(22, 155, 69, .09);
}
.shop-body .main-nav a:first-child {
  color: currentColor;
  background: transparent;
}
.shop-body .main-nav a[href="shop.html"] {
  color: var(--green);
  background: rgba(22, 155, 69, .09);
}

.login-link {
  justify-self: end;
  font-size: 13px;
}

.nav-toggle,
.nav-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 20px 80px;
  color: #fff;
  background: #07120c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.05);
}
.hero-video {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 32%, rgba(22, 155, 69, .34), transparent 34%),
    linear-gradient(180deg, rgba(7, 18, 12, .58), rgba(7, 18, 12, .30) 44%, rgba(7, 18, 12, .82)),
    linear-gradient(90deg, rgba(7, 18, 12, .90), rgba(7, 18, 12, .28), rgba(7, 18, 12, .84));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 28px;
}

.hero-logo {
  width: min(520px, 78vw);
  margin-bottom: 24px;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.26));
}

.hero-kicker {
  margin: 0;
  color: rgba(255,255,255,.88);
  max-width: 780px;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 850;
  line-height: 1.5;
  letter-spacing: .12em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 750;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.button.ghost.light {
  border: 1px solid rgba(255,255,255,.46);
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.button.ghost.light:hover {
  background: rgba(255,255,255,.20);
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.12;
}
p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.button {
  min-height: 52px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 900;
}
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #27bd5b);
  box-shadow: 0 16px 38px rgba(22, 155, 69, .32);
}
.button.ghost {
  color: var(--green-dark);
  border: 1px solid var(--line);
  background: #fff;
}

.section {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 106px clamp(18px, 5vw, 72px);
}
.section-head {
  width: min(820px, 100%);
  margin-bottom: 42px;
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.section-head strong,
.customcolorgreen {
  color: var(--green);
}
.eyebrow {
  margin-bottom: 14px;
  display: inline-flex;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.products {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-content: center;
  padding-top: 78px;
  padding-bottom: 32px;
  background:
    linear-gradient(90deg, rgba(248, 251, 245, .92), rgba(232, 245, 221, .72)),
    url("https://tirolkresse.at/wp-content/uploads/2021/10/image-12.jpeg") center/cover,
    var(--paper);
}
.products::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.66) 74%, rgba(231,244,223,.9)),
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.8), transparent 24%);
  opacity: .95;
}
.products::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(22,155,69,.13));
}
.products .section-head {
  position: relative;
  margin-bottom: 16px;
}
.products .product-copy {
  width: min(1040px, 100%);
  text-align: left;
}
.products .product-copy h2 {
  max-width: 980px;
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .94;
}
.products .product-copy p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.38;
}
.product-quick-label {
  width: min(1120px, 100%);
  margin: 0 auto 12px;
  padding-left: 8px;
}
.product-quick-label .eyebrow {
  margin-bottom: 5px;
}
.product-quick-label strong {
  display: block;
  color: var(--ink);
  font-size: clamp(17px, 1.4vw, 20px);
}
.product-carousel {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  margin-inline: auto;
  gap: 0;
  overflow: hidden;
  padding: 0 58px;
  border-radius: 18px;
  background: rgba(255,255,255,.18);
}
.product-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
}
.product-grid::-webkit-scrollbar {
  display: none;
}
.product-card {
  flex: 0 0 clamp(180px, 20vw, 226px);
  min-height: 0;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 55px rgba(15, 59, 37, .14);
  scroll-snap-align: start;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.product-card:hover {
  transform: translateY(-9px);
  border-color: rgba(22, 155, 69, .28);
  box-shadow: 0 32px 80px rgba(15, 59, 37, .24);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1.48;
  object-fit: cover;
  background: #f1f4ee;
  transition: transform .36s ease, filter .36s ease;
  transform-origin: center;
}
.product-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.16);
}
.product-card h3 {
  min-height: 48px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 13px 15px 6px;
  font-size: 16px;
}
.shop-pick {
  min-height: 38px;
  margin: 0 15px 14px;
  border: 1px solid rgba(39, 189, 91, .34);
  border-radius: 999px;
  color: var(--green-dark);
  background: #eef8e9;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.shop-pick:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 189, 91, .7);
  background: #dff2d6;
}
.carousel-controls {
  position: absolute;
  inset: 50% 0 auto;
  z-index: 2;
  translate: 0 -50%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.carousel-controls button {
  width: 48px;
  height: 48px;
  min-height: 0;
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 40px rgba(15, 59, 37, .22);
  font: inherit;
  font-size: 0;
  font-weight: 900;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .18s ease, background .18s ease;
}
.carousel-controls button:hover {
  transform: scale(1.08);
  background: var(--green-dark);
}
.carousel-controls button::before {
  display: block;
  font-size: 32px;
  line-height: 48px;
}
.carousel-controls button[data-slide-dir="-1"]::before {
  content: "‹";
}
.carousel-controls button[data-slide-dir="1"]::before {
  content: "›";
}
.product-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.button.light,
.button.muted {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(15, 59, 37, .10);
}
.button.muted {
  background: rgba(255, 255, 255, .62);
}
.request-strip {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #eaf4e5;
}
.request-strip p { margin: 0; color: var(--ink); font-weight: 750; }
.request-strip a { color: var(--green-dark); font-weight: 950; text-decoration: underline; text-underline-offset: 4px; }

.story,
.location {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  background: #eef6ea;
}
.story-copy,
.location > div {
  max-width: 680px;
}
.story-media,
.location img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.story-media img,
.location img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.metrics {
  min-height: clamp(430px, 58svh, 620px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 36, 22, .76), rgba(7, 55, 30, .50)),
    url("https://tirolkresse.at/wp-content/uploads/2021/10/image-12.jpeg") center/cover,
    linear-gradient(90deg, #073818, #0d4a22);
  background-attachment: fixed;
  color: #fff;
  padding-top: 76px;
  padding-bottom: 0;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.metrics::before {
  content: "";
  position: absolute;
  inset: -12%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 210, 69, .30), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, .18), transparent 24%);
  opacity: .62;
  animation: metricGlow 9s ease-in-out infinite alternate;
}

.metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  mix-blend-mode: screen;
  opacity: .55;
}

.metrics div {
  position: relative;
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px clamp(20px, 4vw, 52px);
  border-right: 1px solid rgba(255,255,255,.13);
  transform: translateY(28px);
  opacity: 0;
  transition: transform .8s ease, opacity .8s ease;
}

.metrics.is-visible div {
  transform: translateY(0);
  opacity: 1;
}

.metrics.is-visible div:nth-child(2) { transition-delay: .08s; }
.metrics.is-visible div:nth-child(3) { transition-delay: .16s; }
.metrics.is-visible div:nth-child(4) { transition-delay: .24s; }

.metrics div::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.075);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .8s ease;
}

.metrics.is-visible div::before {
  opacity: 1;
}
.metrics strong {
  position: relative;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .9;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.metrics strong .count {
  display: inline;
  max-width: none;
  color: inherit;
  font: inherit;
  line-height: inherit;
}
.metrics span {
  position: relative;
  max-width: 230px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.4;
}

@keyframes metricGlow {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.05); }
}

.offers {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-content: center;
  padding-top: 96px;
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.90), rgba(247,249,244,.93)),
    url("https://tirolkresse.at/wp-content/uploads/2024/04/Radieschen--1200x720.jpeg") right 7% top 18%/300px auto no-repeat,
    #fff;
}
.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("https://tirolkresse.at/wp-content/uploads/2021/10/image-12.jpeg") center/cover no-repeat;
  opacity: .11;
  transform: scale(1.04);
  animation: offerBackdrop 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.offers::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(22,155,69,.12));
  opacity: .8;
  pointer-events: none;
}
.offers > * {
  position: relative;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.offer-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(247, 249, 244, .92);
  transform: perspective(900px) rotateY(-18deg) translateX(-22px);
  transform-origin: left center;
  opacity: 0;
  transition: transform .72s cubic-bezier(.18,.78,.24,1), opacity .72s ease, box-shadow .28s ease;
}
.offers.is-visible .offer-grid article {
  transform: perspective(900px) rotateY(0) translateX(0);
  opacity: 1;
}
.offers.is-visible .offer-grid article:nth-child(2) { transition-delay: .12s; }
.offers.is-visible .offer-grid article:nth-child(3) { transition-delay: .24s; }
.offers.is-visible .offer-grid article:nth-child(4) { transition-delay: .36s; }
.offer-grid article:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .96);
}
.offer-grid span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 950;
}
.offer-grid h3 { font-size: 21px; }
.offer-grid p {
  font-size: 15px;
  line-height: 1.58;
}

@keyframes offerBackdrop {
  from { transform: translateX(-1%) scale(1.04); }
  to { transform: translateX(1%) scale(1.08); }
}

.location {
  grid-template-columns: minmax(0, .82fr) minmax(390px, 1fr);
  background:
    linear-gradient(135deg, rgba(247, 250, 243, .93), rgba(235, 246, 228, .9)),
    url("https://tirolkresse.at/wp-content/uploads/2021/11/image-15.png") right 8% center/320px no-repeat;
}
.location-copy {
  max-width: 640px;
}
.location-media {
  display: grid;
  gap: 16px;
}
.location-media img,
.location-media iframe {
  width: 100%;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.location-media img {
  aspect-ratio: 1.7;
  object-fit: cover;
}
.location-media iframe {
  min-height: 320px;
  background: #e7eee0;
}

.faq {
  background: #edf5e8;
}
.faq .section-head {
  margin-bottom: 28px;
}
.faq-list {
  width: min(980px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: 0 12px 38px rgba(15, 59, 37, .07);
}
summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  padding: 0 22px;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+ Antwort anzeigen";
  min-width: 160px;
  border: 1px solid rgba(39, 189, 91, .28);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--green-dark);
  background: #eef8e9;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}
details[open] summary::after {
  content: "- Schließen";
}
details p {
  margin: 0;
  padding: 0 22px 24px;
}

.contact {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 560px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 106px clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 59, 37, .94), rgba(15, 59, 37, .72)),
    url("https://tirolkresse.at/wp-content/uploads/2021/11/image-6-600x360.jpeg") center/cover;
}
.contact .eyebrow { color: var(--lime); }
.contact h2 { color: #fff; }
.contact p { color: rgba(255,255,255,.78); }
.contact-card {
  display: grid;
  gap: 12px;
  border-radius: 8px;
  padding: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}
.portal-panel {
  align-self: stretch;
  align-content: center;
}
.portal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.portal-form .field-wide,
.portal-form .button,
.portal-form .form-error,
.portal-form .form-note {
  grid-column: 1 / -1;
}
.portal-check-hidden {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.portal-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.portal-form input,
.portal-form select,
.portal-form textarea {
  width: 100%;
  border: 1px solid #cbd8c3;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.portal-form textarea {
  resize: vertical;
}
.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus {
  outline: 3px solid rgba(139, 210, 69, .32);
  border-color: var(--green);
}
.portal-form .button {
  border: 0;
  cursor: pointer;
}
.form-note {
  margin: 0;
  color: rgba(15, 59, 37, .64) !important;
  font-size: 14px;
}
.form-error {
  min-height: 20px;
  margin: -4px 0 0;
  color: #a52d23 !important;
  font-size: 14px;
  font-weight: 850;
}

.legal-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  background: #f7faf3;
}
.legal-section article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  box-shadow: 0 12px 38px rgba(15, 59, 37, .07);
}
.legal-section h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 2.7vw, 36px);
}
.legal-section p {
  font-size: 15px;
}

.legal-modal {
  width: min(1120px, calc(100vw - 32px));
  max-height: min(82svh, 780px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #f7faf3;
  box-shadow: 0 32px 90px rgba(5, 18, 10, .38);
}
.legal-modal::backdrop {
  background: rgba(5, 18, 10, .58);
  backdrop-filter: blur(4px);
}
.legal-dialog {
  position: relative;
  max-height: min(82svh, 780px);
  overflow: auto;
  padding: 58px clamp(18px, 4vw, 42px) 32px;
}
.legal-close {
  position: sticky;
  top: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-bottom: 12px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--green-dark);
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 59, 37, .12);
}

.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 72px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(5, 18, 10, .88), rgba(5, 18, 10, .58)),
    url("https://tirolkresse.at/wp-content/uploads/2021/10/image-12.jpeg") center/cover;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,155,69,.40), transparent 28%);
  pointer-events: none;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
.site-footer img { width: min(250px, 58vw); }
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer a {
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 24, 16, .58);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .26s ease;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-card {
  width: min(760px, 100%);
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255,255,255,.98);
  box-shadow: 0 34px 80px rgba(5, 18, 10, .24);
  transform: translateY(18px) scale(.98);
  transition: transform .26s ease;
}
.cookie-banner.is-visible .cookie-banner-card {
  transform: translateY(0) scale(1);
}
.cookie-banner-copy {
  display: grid;
  gap: 8px;
  text-align: center;
}
.cookie-banner-copy strong {
  color: var(--ink);
  font-size: 24px;
}
.cookie-banner-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
.cookie-banner-settings {
  display: grid;
  gap: 12px;
}
.cookie-setting-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f5f8f3;
}
.cookie-setting-row p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-setting-badge {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--green-dark);
  background: #e9f6ec;
  font-weight: 900;
  white-space: nowrap;
}
.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cookie-switch input {
  position: absolute;
  opacity: 0;
}
.cookie-switch span {
  position: relative;
  width: 58px;
  height: 34px;
  display: inline-flex;
  border-radius: 999px;
  background: #d8e2d1;
  transition: background .22s ease;
}
.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(18,24,18,.16);
  transition: transform .22s ease;
}
.cookie-switch input:checked + span {
  background: var(--green);
}
.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}
.cookie-settings-note {
  color: var(--muted);
  font-size: 14px;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.cookie-banner-actions .button {
  border: 0;
  cursor: pointer;
  box-shadow: none;
}
.cookie-banner-actions .button.ghost {
  border: 1px solid var(--line);
}

.shop-body {
  background: #f4f8f0;
}
.shop-body main > section,
.shop-body .site-footer {
  scroll-snap-align: none;
}
.shop-main {
  padding-top: 96px;
}
.shop-hero,
.shop-shell,
.portal-shop {
  padding-inline: clamp(18px, 5vw, 72px);
}
.shop-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 36, 22, .92), rgba(7, 55, 30, .56)),
    url("https://tirolkresse.at/wp-content/uploads/2021/10/image-12.jpeg") center/cover;
}
.shop-hero .eyebrow {
  color: var(--lime);
}
.shop-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
}
.shop-hero-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.shop-hero-card strong {
  font-size: clamp(60px, 8vw, 96px);
  line-height: .9;
}
.shop-hero-card span {
  color: rgba(255,255,255,.78);
  font-weight: 850;
}
.shop-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 24px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 54px;
}
.shop-catalog,
.cart-panel,
.portal-shop,
.login-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 54px rgba(15, 59, 37, .10);
}
.shop-catalog {
  padding: clamp(20px, 3vw, 32px);
}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.shop-toolbar h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 58px);
}
.shop-toolbar select,
.cart-panel input,
.login-card input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-login-box input,
.auth-content input,
.auth-content select {
  min-height: 46px;
  border: 1px solid #cbd8c3;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  font: inherit;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 12px;
}
.form-note,
.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.admin-form textarea {
  min-height: 96px;
  padding-block: 12px;
  resize: vertical;
}
.admin-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.admin-price-grid label,
.admin-request-card label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.admin-price-grid input,
.admin-request-card select,
.admin-request-card textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd8c3;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  font: inherit;
}
.admin-request-card textarea {
  min-height: 86px;
  padding-block: 10px;
  resize: vertical;
}
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.shop-product {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}
.shop-product img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 8px;
  background: #eef4ea;
}
.shop-product h3 {
  margin-bottom: 6px;
}
.shop-product p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.shop-product strong {
  color: var(--green-dark);
  font-size: 22px;
}
.shop-product strong.price-login-note {
  color: var(--muted);
  font-size: 17px;
}
.availability-line {
  min-height: 36px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--green-dark);
  background: #f1f8ed;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}
.availability-line.is-available {
  border-color: rgba(22, 155, 69, .30);
  background: #e4f7e8;
}
.availability-line.is-soon {
  border-color: rgba(139, 210, 69, .45);
  background: #f0f8dc;
}
.availability-line.is-growing {
  color: #5b6420;
  background: #f7f2d8;
}
.availability-line.is-empty,
.availability-line.is-unknown {
  color: var(--muted);
  background: #f5f6f3;
}
.shop-product strong small {
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.shop-product .button {
  border: 0;
  cursor: pointer;
}
.cart-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 22px;
}
.cart-panel h2 {
  margin-bottom: 0;
  font-size: 32px;
}
.cart-items {
  display: grid;
  gap: 10px;
  min-height: 72px;
}
.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
}
.cart-total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.cart-panel label,
.login-card label,
.payment-methods {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}
.payment-methods label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}
.checkout-button {
  border: 0;
  cursor: pointer;
}
.checkout-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
.cart-login-required {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(22, 155, 69, .25);
  border-radius: 8px;
  background: #eff8e9;
}
.cart-login-required[hidden] {
  display: none;
}
.cart-login-required strong {
  color: var(--green-dark);
}
.cart-login-required span {
  color: var(--muted);
}
.cart-auth-actions,
.portal-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cart-auth-actions .button,
.portal-quick-actions .button {
  border: 0;
  cursor: pointer;
}
.cart-auth-actions .button.ghost,
.portal-quick-actions .button.ghost {
  border: 1px solid var(--line);
}
.portal-shop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) 70px;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(239,248,233,.96)),
    url("https://tirolkresse.at/wp-content/uploads/2021/11/image-15.png") right 8% center/220px no-repeat;
}
.portal-shop h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.account-panel {
  margin: 0 clamp(18px, 5vw, 72px) 70px;
}
.account-panel[hidden] {
  display: none;
}
.login-card,
.portal-dashboard {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #fff;
}
.portal-stack {
  display: grid;
  gap: 16px;
}
.portal-message {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
}
.portal-dashboard {
  border: 1px solid rgba(22, 155, 69, .20);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(15, 59, 37, .10);
}
.portal-dashboard[hidden] {
  display: none;
}
.portal-dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}
.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 14px;
}
.portal-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f7faf3;
}
.portal-card h3 {
  margin: 0;
}
.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.portal-actions .button {
  border: 0;
  cursor: pointer;
}
.portal-actions .button.ghost {
  border: 1px solid var(--line);
}
.order-list {
  display: grid;
  gap: 10px;
}
.price-list,
.request-list {
  display: grid;
  gap: 10px;
}
.price-line {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.price-line:last-child {
  border-bottom: 0;
}
.request-form,
.request-form label {
  display: grid;
  gap: 8px;
}
.request-form label {
  color: var(--ink);
  font-weight: 850;
}
.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid #cbd8c3;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  font: inherit;
}
.request-form textarea {
  resize: vertical;
}
.request-form .button {
  border: 0;
  cursor: pointer;
}
.order-card {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f7faf3;
}
.order-card span {
  color: var(--muted);
}
.order-card b {
  color: var(--green-dark);
}
.request-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.request-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.request-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.auth-modal.is-open {
  display: block;
}
.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 16, .72);
  backdrop-filter: blur(8px);
}
.auth-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(540px, calc(100vw - 36px));
  max-height: min(720px, calc(100svh - 72px));
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  overflow-x: hidden;
  overflow-y: auto;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: #101814;
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}
.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.auth-media {
  position: relative;
  min-height: 540px;
  display: grid;
  align-content: end;
  padding: 34px;
  overflow: hidden;
}
.auth-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 19, 12, .18), rgba(4, 19, 12, .78));
}
.auth-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08);
}
.auth-media strong {
  position: relative;
  z-index: 2;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .92;
}
.auth-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}
.auth-content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
}
.auth-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.auth-tabs button {
  border: 0;
  padding: 0 0 12px;
  background: transparent;
  color: rgba(255,255,255,.62);
  font: inherit;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.auth-tabs button.is-active {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--green);
}
.auth-panel {
  display: none;
  gap: 14px;
  min-width: 0;
  width: 100%;
}
.auth-panel.is-active {
  display: grid;
}
.auth-panel label {
  display: grid;
  gap: 8px;
  min-width: 0;
  width: 100%;
  color: #fff;
  font-weight: 850;
}
.auth-content input,
.auth-content select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.06);
  color: #fff;
}
.auth-content select option {
  color: var(--ink);
}
.auth-content input::placeholder {
  color: rgba(255,255,255,.45);
}
.auth-note {
  color: rgba(255,255,255,.66);
}
.modal-message {
  color: #b8f0b9;
}
.admin-shop {
  margin: 0 clamp(18px, 5vw, 72px) 80px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 54px rgba(15, 59, 37, .10);
}
.admin-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 22px;
  align-items: start;
}
.admin-head-actions {
  display: flex;
  justify-content: flex-end;
}
.admin-head-actions .button {
  border: 1px solid var(--line);
  box-shadow: none;
}
.admin-head h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.admin-login-box,
.admin-form,
.synology-status {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf3;
}
.admin-login-box[hidden],
.admin-console[hidden] {
  display: none;
}
.admin-login-box .button,
.admin-form .button,
.admin-item button,
.admin-tabs button {
  border: 0;
  cursor: pointer;
}
.admin-login-box span,
.admin-note {
  color: var(--muted);
  font-size: 14px;
}
.admin-console {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.admin-tabs button {
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  background: #edf5e8;
  color: var(--ink);
  font-weight: 900;
}
.admin-tabs button.is-active {
  background: var(--green);
  color: #fff;
}
.admin-panel {
  display: none;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.admin-panel.is-active {
  display: grid;
}
.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}
.admin-list {
  display: grid;
  gap: 10px;
}
.admin-customer-group {
  display: grid;
  gap: 10px;
}
.admin-customer-group h3 {
  margin: 10px 0 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 22px;
}
.admin-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.admin-item img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  background: #edf5e8;
}
.admin-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.admin-item button {
  min-height: 38px;
  border-radius: 8px;
  padding: 0 12px;
  background: #edf5e8;
  color: var(--green-dark);
  font-weight: 900;
}
.admin-customer-card,
.admin-request-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.admin-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}
.admin-item-head span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.admin-item-head button,
.admin-item-head .button,
.order-card .button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--green-dark);
  background: #edf5e8;
  font-weight: 900;
  box-shadow: none;
}
.admin-request-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.seller-admin-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(22, 155, 69, .20);
  border-radius: 8px;
  background: #f3f9ef;
}
.seller-list {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}
.seller-form-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 8px;
}
.seller-form-row input {
  min-height: 42px;
  min-width: 0;
  border: 1px solid #cbd8c3;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
  font: inherit;
}
.seller-form-row button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  cursor: pointer;
}
.synology-status strong,
.synology-status span {
  display: block;
}
.synology-status strong {
  color: var(--green-dark);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }
  .brand img { width: 142px; }
  .nav-button {
    justify-self: end;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
  }
  .nav-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
  }
  .nav-button span + span { margin-top: -14px; }
  .main-nav,
  .login-link {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
  }
  .main-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }
  .login-link {
    justify-content: center;
  }
  .nav-toggle:checked ~ .main-nav,
  .nav-toggle:checked ~ .login-link {
    display: flex;
  }
  .product-grid,
  .offer-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-card {
    flex-basis: calc((100% - 18px) / 2);
  }
  .metrics {
    min-height: auto;
  }
  .story,
  .location,
  .contact,
  .shop-hero,
  .shop-shell,
  .portal-shop,
  .portal-dashboard-head,
  .portal-grid,
  .admin-head,
  .admin-panel {
    grid-template-columns: 1fr;
  }
  .cart-panel {
    position: static;
  }
  .location-media iframe {
    min-height: 280px;
  }
  .legal-section {
    grid-template-columns: 1fr;
  }
  .story-media { order: -1; }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }
  .hero {
    min-height: 100svh;
    padding-top: 104px;
  }
  .hero-logo { width: min(420px, 88vw); }
  .section,
  .contact {
    min-height: auto;
    padding: 76px 18px;
  }
  .contact {
    gap: 22px;
  }
  .contact h2 {
    font-size: clamp(40px, 15vw, 64px);
  }
  .contact-card {
    padding: 18px;
  }
  .portal-form {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .products {
    align-content: start;
    padding-top: 88px;
    padding-bottom: 38px;
    background:
      linear-gradient(180deg, rgba(248, 251, 245, .96), rgba(232, 245, 221, .82)),
      url("https://tirolkresse.at/wp-content/uploads/2021/10/image-12.jpeg") center/cover,
      var(--paper);
  }
  .products .product-copy h2 {
    font-size: clamp(38px, 14vw, 58px);
  }
  .product-carousel {
    padding: 0 48px 4px;
    border-radius: 12px;
  }
  .product-card {
    flex-basis: 100%;
  }
  .carousel-controls {
    inset-inline: 4px;
  }
  .carousel-controls button {
    width: 42px;
    height: 42px;
  }
  .carousel-controls button::before {
    font-size: 28px;
    line-height: 42px;
  }
  .product-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-main {
    padding-top: 82px;
  }
  .shop-hero,
  .shop-shell,
  .portal-shop {
    padding-inline: 18px;
  }
  .shop-hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 48px;
  }
  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .shop-product-grid {
    grid-template-columns: 1fr;
  }
  .portal-shop {
    margin-inline: 18px;
  }
  .auth-dialog {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .admin-shop {
    margin-inline: 18px;
  }
  .admin-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .admin-item img {
    width: 58px;
    height: 46px;
  }
  .admin-item button {
    grid-column: 1 / -1;
  }
  .admin-item-head,
  .admin-price-grid,
  .seller-form-row {
    grid-template-columns: 1fr;
  }
  .portal-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .portal-actions .button,
  .admin-item-head .button,
  .admin-item-head button,
  .seller-form-row button {
    width: 100%;
  }
  .cookie-setting-row,
  .cookie-banner-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 70px;
    padding-bottom: 0;
  }
  .metrics div {
    min-height: 166px;
    padding: 24px 18px;
    border-right: 1px solid rgba(255,255,255,.13);
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .metrics div:nth-child(2n) {
    border-right: 0;
  }
  .metrics div::before {
    inset: 12px;
  }
  .metrics strong {
    font-size: clamp(42px, 13vw, 64px);
  }
  .request-strip,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
  summary {
    min-height: 70px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    font-size: 17px;
  }
  summary::after {
    width: fit-content;
    min-width: 0;
    padding-inline: 11px;
  }
  details p {
    padding: 0 18px 20px;
    font-size: 16px;
  }
  .legal-section {
    padding: 0;
  }
  .legal-dialog {
    padding: 52px 16px 22px;
  }
  .legal-modal {
    width: calc(100vw - 20px);
    max-height: 86svh;
  }
  .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .metrics {
    grid-template-columns: 1fr;
  }
  .metrics div {
    min-height: 132px;
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  .metrics::before {
    animation: none;
  }
  .metrics div {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .offer-grid article {
    transform: none;
    opacity: 1;
    transition: none;
  }
}
