/* Sparkling Landing – sachlich, markenkonform */
:root {
  --primary: #00c9a7;
  --primary-dark: #00a388;
  --secondary: #4a90e2;
  --gradient-start: #5c5edc;
  --gradient-mid: #28a7a8;
  --gradient-end: #1ed760;
  --text: #1a1a2e;
  --text-muted: #4a4a6a;
  --surface: #ffffff;
  --surface-muted: #f0f5f4;
  --surface-tint: #e8f7f4;
  --border: #dce8e5;
  --header-h: 72px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --brand-gradient: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 52%, var(--gradient-end) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, #eef6f4 0%, #f8fafb 28%, #fff 55%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
}

.container {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

/* Scroll-Anker: Sticky-Header ausgleichen */
.section-anchor {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 201, 167, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-width: 0;
  padding: 0 clamp(12px, 3vw, 40px);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Sprachwahl – kompakt */
.lang-picker {
  position: relative;
  flex-shrink: 0;
}

.lang-picker__trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.lang-picker__trigger:hover {
  border-color: rgba(0, 201, 167, 0.45);
  color: var(--text);
}

.lang-picker__trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

.lang-picker.is-open .lang-picker__trigger {
  border-color: var(--primary);
  color: var(--text);
}

.lang-picker__flag {
  font-size: 0.95rem;
  line-height: 1;
}

.lang-picker__code {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.lang-picker__chevron {
  font-size: 0.55rem;
  opacity: 0.55;
  margin-left: 1px;
  transition: transform 0.15s ease;
}

.lang-picker.is-open .lang-picker__chevron {
  transform: rotate(180deg);
}

.lang-picker__menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 120;
  min-width: 9.5rem;
  max-height: 16rem;
  overflow-y: auto;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.1);
}

.lang-picker__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-picker-option {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 5px 8px;
  border: none;
  border-radius: 6px;
  background: transparent;
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.lang-picker-option:hover {
  background: var(--surface-tint);
}

.lang-picker-option.is-selected {
  background: var(--surface-tint);
  font-weight: 600;
}

.lang-picker-option__flag {
  font-size: 0.9rem;
  line-height: 1;
}

.lang-picker-option__label {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-download-app {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(92, 94, 220, 0.25);
  flex-shrink: 0;
}

.btn-download-app:hover {
  filter: brightness(1.06);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
}

/* Hero */
.hero {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    rgba(92, 94, 220, 0.18) 0%,
    rgba(40, 167, 168, 0.22) 38%,
    rgba(0, 201, 167, 0.16) 68%,
    rgba(30, 215, 96, 0.1) 100%
  );
  border-bottom: 1px solid rgba(0, 201, 167, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 92% 45%, rgba(92, 94, 220, 0.28), transparent 65%),
    radial-gradient(ellipse 45% 50% at 8% 80%, rgba(0, 201, 167, 0.2), transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: var(--brand-gradient);
  opacity: 0.08;
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 460px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 52ch;
}

.hero-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 16px 0 0;
}

.download-block {
  margin-top: 8px;
}

/* Hero: großes Logo ohne Rahmen-Karte */
.hero-logo-large {
  width: min(100%, 420px);
  height: auto;
  border-radius: 24%;
  box-shadow:
    0 24px 56px rgba(92, 94, 220, 0.28),
    0 8px 24px rgba(0, 201, 167, 0.2);
}

.hero-brand-wordmark {
  margin-top: clamp(18px, 3vw, 28px);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
  text-align: center;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  background: var(--text);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  min-width: 168px;
  transition: opacity 0.15s;
}

.store-badge:hover {
  opacity: 0.88;
  color: #fff;
}

.store-badge small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.8;
  font-weight: 400;
}

.store-badge strong {
  font-size: 0.95rem;
}

.store-badge--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.store-badge--outline:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.store-badges--light .store-badge--outline {
  background: var(--surface);
}

/* About (nach Screenshots & Funktionen) */
.about {
  padding: 64px 0 80px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.about-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.about h2 {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 16px;
}

.about h3 {
  margin: 2rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.about p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about p + p {
  margin-top: 1rem;
}

.about code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: var(--surface-tint);
  color: var(--text);
}

/* Screenshots */
.screenshots-section {
  padding: 56px 0 72px;
  overflow: visible;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(92, 94, 220, 0.04) 40%,
    rgba(0, 201, 167, 0.06) 100%
  );
}

.section-title {
  margin-bottom: 32px;
  text-align: center;
}

.section-title h2 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.section-title p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Screenshot-Karussell */
.screenshot-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(1040px, 96vw);
  margin: 0 auto;
  outline: none;
  gap: 20px;
}

.screenshot-carousel:focus-visible {
  box-shadow: 0 0 0 2px var(--primary);
  border-radius: var(--radius-md);
}

.carousel-main {
  width: 100%;
  min-width: 0;
}

.carousel-viewport {
  overflow: visible;
  width: 100%;
  max-width: min(920px, 96vw);
  margin: 0 auto;
  padding: 12px 0 20px;
  perspective: 1200px;
}

.carousel-viewport.is-transitioning {
  pointer-events: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.carousel-track {
  --carousel-step: 158px;
  position: relative;
  /* Höhe für aktives Bild (390×844) + Puffer, damit oben nichts abgeschnitten wird */
  min-height: clamp(320px, 52vw, 430px);
  margin: 0 auto;
}

.carousel-slide {
  --carousel-offset: 0;
  --slide-scale: calc(1 - min(3, abs(var(--carousel-offset))) * 0.09);
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(108px, 17vw, 152px);
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: calc(10 - min(9, abs(var(--carousel-offset))));
  opacity: calc(1 - min(3, abs(var(--carousel-offset))) * 0.22);
  transform:
    translateX(calc(var(--carousel-offset) * var(--carousel-step) - 50%))
    translateY(-50%)
    scale(var(--slide-scale));
  transform-origin: center center;
  transition:
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.58s ease,
    filter 0.58s ease,
    width 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.carousel-track.is-transitioning .carousel-slide {
  transition-duration: 0.58s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide[data-far] {
  pointer-events: none;
  opacity: 0.28;
  filter: blur(0.5px);
}

.carousel-slide img {
  width: 100%;
  border-radius: 18px;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.12);
  transition:
    box-shadow 0.58s ease,
    border-color 0.58s ease;
}

.carousel-slide.is-side[data-offset="1"] {
  width: clamp(118px, 19vw, 165px);
}

.carousel-slide.is-active {
  --slide-scale: 1;
  width: clamp(132px, 24vw, 188px);
  opacity: 1;
  cursor: default;
  z-index: 12;
  filter: none;
  transform:
    translateX(calc(var(--carousel-offset) * var(--carousel-step) - 50%))
    translateY(-50%)
    scale(1);
}

.carousel-slide.is-active img {
  border-color: rgba(0, 201, 167, 0.45);
  box-shadow:
    0 22px 48px rgba(92, 94, 220, 0.22),
    0 10px 26px rgba(0, 201, 167, 0.18);
}

.carousel-btn {
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.06);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}


.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 201, 167, 0.25);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.25);
}

.carousel-dot:hover:not(.is-active) {
  background: rgba(0, 201, 167, 0.5);
}

/* Features */
.features-section {
  padding: 64px 0 72px;
  background: linear-gradient(
    165deg,
    rgba(92, 94, 220, 0.12) 0%,
    rgba(40, 167, 168, 0.14) 42%,
    rgba(0, 201, 167, 0.1) 72%,
    rgba(30, 215, 96, 0.06) 100%
  );
  border-top: 1px solid rgba(0, 201, 167, 0.15);
  border-bottom: 1px solid rgba(92, 94, 220, 0.1);
}

.section-title--light h2 {
  color: var(--text);
}

/* Interactive Label – Spotlight */
.feature-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 100%
  );
  border: 1px solid rgba(0, 201, 167, 0.25);
  box-shadow:
    0 20px 50px rgba(92, 94, 220, 0.12),
    0 4px 16px rgba(0, 201, 167, 0.1);
}

.feature-badge {
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: rgba(0, 201, 167, 0.15);
  border: 1px solid rgba(0, 201, 167, 0.35);
}

.feature-spotlight h3 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--text);
}

.feature-spotlight p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 48ch;
}

.feature-spotlight strong {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Interactive-Label-Demo (App-Optik) */
.il-demo {
  position: relative;
  padding: 20px 18px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #1e2635 0%, #151b28 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.il-demo__hint {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 201, 167, 0.85);
}

.il-demo__sentence {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

.il-word {
  display: inline;
  padding: 2px 6px;
  margin: 0 1px;
  border-radius: 6px;
  color: #7ee8d8;
  background: rgba(0, 201, 167, 0.12);
  border-bottom: 2px solid rgba(0, 201, 167, 0.45);
  cursor: default;
}

.il-word--active {
  color: #fff;
  background: rgba(0, 201, 167, 0.28);
  border-bottom-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 201, 167, 0.35);
}

.il-demo__popup {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 4px solid var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.il-demo__popup strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.il-demo__meta {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.il-demo__translation {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 22px 22px 22px 20px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--feature-accent, var(--primary));
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(92, 94, 220, 0.14);
}

.feature-card--mint { --feature-accent: #00c9a7; }
.feature-card--blue { --feature-accent: #4a90e2; }
.feature-card--violet { --feature-accent: #5c5edc; }
.feature-card--teal { --feature-accent: #28a7a8; }
.feature-card--green { --feature-accent: #1ed760; }
.feature-card--indigo { --feature-accent: #5c5edc; }

.feature-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.1rem;
  background: color-mix(in srgb, var(--feature-accent) 14%, transparent);
  color: var(--feature-accent);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand {
  color: #fff;
  font-size: 1rem;
}

.footer-tagline {
  margin: 10px 0 0;
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.5;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.footer-links li {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 0.85rem;
  opacity: 0.65;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--text);
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  opacity: 0.9;
}

.cookie-inner a {
  color: var(--primary);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

#cookie-decline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Legal pages */
.legal-page {
  padding: 48px 0 80px;
}

.legal-page .container {
  max-width: 720px;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-top: 0;
}

.legal-page h2 {
  font-size: 1.1rem;
  margin-top: 2em;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
}

.legal-nav {
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 1px solid var(--border);
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1em 0;
}

.account-table th,
.account-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.account-table th {
  background: var(--surface-muted);
  color: var(--text);
  font-weight: 600;
}

.notice {
  background: var(--surface-muted);
  border-left: 3px solid var(--primary);
  padding: 14px 16px;
  margin: 1.25em 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-large {
    width: min(88vw, 320px);
  }

  .feature-spotlight {
    grid-template-columns: 1fr;
  }

  .feature-spotlight p {
    max-width: none;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    --carousel-step: 128px;
    min-height: clamp(280px, 62vw, 360px);
  }

  .carousel-slide.is-active {
    width: clamp(120px, 32vw, 168px);
  }

  .carousel-slide.is-side[data-offset="1"] {
    width: clamp(100px, 26vw, 140px);
  }

  .carousel-slide[data-far] {
    display: none;
  }
}

@media (max-width: 520px) {
  .store-badge {
    width: 100%;
  }
}
