/* 20 WINES — Design System */
:root {
  /* Physical banner charcoal/slate (not muddy green) */
  --dark: #2a2e33;
  --dark2: #1a1d21;
  --cyan: #36f4f2;
  --mint: #7dffd4;
  --pink: #ff3f91;
  --orange: #ff9b24;
  --yellow: #ffc33d;
  --cream: #fff6e8;
  --white: #ffffff;
  --stock-green: #3dde7a;
  --stock-yellow: #ffc33d;
  --stock-red: #ff4d6d;

  /* Panel surfaces keyed to charcoal */
  --surface-soft: rgba(42, 46, 51, 0.55);
  --surface: rgba(42, 46, 51, 0.72);
  --surface-mid: rgba(32, 36, 40, 0.85);
  --surface-strong: rgba(26, 29, 33, 0.92);
  --ink-overlay: rgba(26, 29, 33, 0.94);
  --ink-glass: rgba(26, 29, 33, 0.75);

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-stamp: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;

  --glow-cyan: 0 0 18px rgba(54, 244, 242, 0.45);
  --glow-pink: 0 0 18px rgba(255, 63, 145, 0.45);
  --glow-orange: 0 0 18px rgba(255, 155, 36, 0.45);

  --radius: 14px;
  --header-h: 76px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background-color: var(--dark2);
  background-image:
    radial-gradient(ellipse 95% 60% at 6% -8%, rgba(54, 244, 242, 0.1), transparent 55%),
    radial-gradient(ellipse 75% 50% at 96% 4%, rgba(255, 63, 145, 0.09), transparent 52%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(255, 195, 61, 0.07), transparent 48%),
    radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(165deg, #24282e 0%, var(--dark2) 45%, #121418 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* Full-page Three.js atmosphere (homepage) */
.page-atmosphere {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

body.has-atmosphere .page-atmosphere {
  opacity: 0.95;
}

body.has-atmosphere {
  background-image:
    radial-gradient(ellipse 95% 60% at 6% -8%, rgba(54, 244, 242, 0.06), transparent 55%),
    radial-gradient(ellipse 75% 50% at 96% 4%, rgba(255, 63, 145, 0.05), transparent 52%),
    radial-gradient(ellipse 60% 45% at 85% 100%, rgba(255, 195, 61, 0.04), transparent 48%),
    linear-gradient(165deg, #24282e 0%, var(--dark2) 45%, #121418 100%);
}

body.has-atmosphere > *:not(.page-atmosphere) {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--ink-overlay);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(100%, 420px);
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(54, 244, 242, 0.25);
  background: var(--dark);
  border-radius: var(--radius);
}

.age-gate__panel .logo {
  margin: 0 auto 1.25rem;
}

.age-gate h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.age-gate p {
  color: rgba(255, 246, 232, 0.75);
  margin: 0 0 1.5rem;
}

.age-gate__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(6, 10, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 246, 232, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(255, 155, 36, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo--lg img {
  height: 72px;
}

.logo--sm img {
  height: 44px;
}

.logo:hover {
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(255, 155, 36, 0.65);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.88);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  box-shadow: var(--glow-cyan);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__split {
  display: inline-block;
  width: 1px;
  align-self: stretch;
  min-height: 0.9rem;
  margin: 0 0.15rem;
  background: rgba(255, 246, 232, 0.18);
}

.nav a.nav__rubric {
  color: rgba(255, 246, 232, 0.62);
  font-weight: 500;
}

.nav a.nav__rubric:hover,
.nav a.nav__rubric[aria-current="page"] {
  color: var(--cyan);
}

.nav a.nav__rubric::after {
  background: var(--pink);
  box-shadow: var(--glow-pink);
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

.icon-btn:hover {
  color: var(--cyan);
  background: rgba(54, 244, 242, 0.08);
}

.icon-btn svg {
  width: 22px;
  height: 22px;
}

.icon-btn--account-on {
  color: var(--cyan);
}

.icon-btn--account-on::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 2px #0b2428;
}

/* Konto: etwas hellere Fläche, klarere Karten */
body[data-page="konto"] {
  background-image:
    radial-gradient(ellipse 95% 60% at 6% -8%, rgba(54, 244, 242, 0.18), transparent 55%),
    radial-gradient(ellipse 75% 50% at 96% 4%, rgba(255, 63, 145, 0.14), transparent 52%),
    radial-gradient(ellipse 60% 45% at 50% 90%, rgba(255, 155, 36, 0.1), transparent 48%),
    linear-gradient(165deg, #343a42 0%, #2a2e33 42%, #1e2228 100%);
}

body[data-page="konto"] .page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 8% 0%, rgba(54, 244, 242, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 92% 30%, rgba(255, 63, 145, 0.12), transparent 50%);
  border-bottom: 1px solid rgba(255, 246, 232, 0.1);
}

body[data-page="konto"] .page-hero p {
  color: rgba(255, 246, 232, 0.9);
}

body[data-page="konto"] .content-block {
  padding-top: 2rem;
}

.account-panel {
  max-width: 520px;
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(58, 64, 72, 0.88);
  border: 1px solid rgba(255, 246, 232, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.account-panel__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.65rem;
  color: var(--white);
}

.account-hint {
  margin: 0 0 1.25rem;
  color: rgba(255, 246, 232, 0.88);
  line-height: 1.55;
  font-size: 0.95rem;
}

.account-form {
  max-width: 420px;
}

.account-error {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: rgba(255, 63, 145, 0.16);
  border: 1px solid rgba(255, 63, 145, 0.45);
  color: #ff8fbf;
  font-size: 0.9rem;
  grid-column: 1 / -1;
}

.account-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(58, 64, 72, 0.75);
  border: 1px solid rgba(255, 246, 232, 0.14);
}

.account-toolbar .muted {
  color: rgba(255, 246, 232, 0.85);
}

.account-toolbar .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 246, 232, 0.45);
}

.account-quick {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem 1.5rem;
  margin: 0 0 1.35rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 122, 26, 0.16), rgba(54, 244, 242, 0.08)),
    rgba(58, 64, 72, 0.82);
  border: 1px solid rgba(255, 122, 26, 0.35);
}

.account-quick__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.account-quick__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.account-quick__copy .muted {
  margin: 0;
  color: rgba(255, 246, 232, 0.85);
}

.account-quick__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-quick__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 246, 232, 0.45);
}

.account-loading {
  padding: 1rem 0;
  color: rgba(255, 246, 232, 0.88);
}

.order-id {
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.2rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 246, 232, 0.25);
  background: transparent;
  color: var(--cream);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--orange {
  background: var(--orange);
  color: var(--dark2);
  box-shadow: var(--glow-orange);
}

.btn--orange:hover {
  box-shadow: 0 0 28px rgba(255, 155, 36, 0.7);
}

.btn--ghost {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--glow-pink);
}

.btn--outline-cyan {
  border-color: var(--cyan);
  color: var(--cyan);
  background: transparent;
}

.btn--outline-pink {
  border-color: var(--pink);
  color: var(--pink);
  background: transparent;
}

.btn--outline-orange {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}

.btn--sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 40%, rgba(54, 244, 242, 0.16), transparent 38%),
    radial-gradient(circle at 78% 30%, rgba(255, 63, 145, 0.12), transparent 32%),
    radial-gradient(circle at 55% 80%, rgba(255, 155, 36, 0.1), transparent 38%);
  pointer-events: none;
}

body.has-atmosphere .hero__bg {
  opacity: 0.35;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rise 0.9s var(--ease) both;
}

.brand-mark {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 320 / 340;
}

.brand-mark--art {
  width: min(100%, 580px);
  aspect-ratio: 610 / 386;
  margin-inline: -1.25rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.32));
  animation: rise 0.9s var(--ease) both;
}

.brand-mark__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.brand-mark__heart {
  width: 100%;
  height: auto;
  color: var(--cyan);
  filter: drop-shadow(0 0 22px rgba(54, 244, 242, 0.5));
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.brand-mark__slogan {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-bottom: 8%;
  font-family: var(--font-stamp);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

.brand-mark__slogan--sm {
  position: static;
  padding: 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  align-items: flex-start;
  text-align: left;
}

.brand-mark__slogan .s-cyan {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.brand-mark__slogan .s-pink {
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.brand-mark__slogan .s-orange {
  color: var(--orange);
  text-shadow: var(--glow-orange);
}

.brand-mark__glass {
  position: absolute;
  width: 48%;
  right: -4%;
  top: 15%;
  transform: rotate(28deg);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
  animation: glass-tilt 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glass-tilt {
  0%,
  100% {
    transform: rotate(28deg) translateY(0);
  }
  50% {
    transform: rotate(32deg) translateY(-6px);
  }
}

.hero-heart {
  width: min(100%, 280px);
  filter: drop-shadow(0 0 20px rgba(54, 244, 242, 0.4));
  animation: pulse-glow 3.5s ease-in-out infinite;
}

.slogan-stamp {
  font-family: var(--font-stamp);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.slogan-stamp .w1 {
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 195, 61, 0.5);
}

.slogan-stamp .w2 {
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.slogan-stamp .w3 {
  color: var(--yellow);
  text-shadow: 0 0 16px rgba(255, 195, 61, 0.5);
}

.s-cyan {
  color: var(--cyan);
}
.s-pink {
  color: var(--pink);
}
.s-orange {
  color: var(--orange);
}

.hero-tagline {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.65);
}

.hero-copy {
  animation: rise 0.9s 0.15s var(--ease) both;
}

.hero-motto {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
}

.hero-motto .c1 {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.hero-motto .c2 {
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.hero-motto .c3 {
  color: var(--orange);
  text-shadow: var(--glow-orange);
}

.hero-lead {
  max-width: 28ch;
  margin: 0 0 1.75rem;
  color: rgba(255, 246, 232, 0.85);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: rise 0.9s 0.3s var(--ease) both;
}

.badge-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--pink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  box-shadow: var(--glow-pink), inset 0 0 30px rgba(255, 63, 145, 0.12);
  animation: spin-slow 40s linear infinite;
}

.badge-circle__inner {
  animation: spin-slow 40s linear infinite reverse;
}

.badge-circle strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  line-height: 1;
}

.badge-circle span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 0.35rem;
  line-height: 1.3;
}

.manufaktur {
  text-align: center;
  max-width: 16rem;
}

.manufaktur__mark {
  position: relative;
  display: inline-flex;
  margin: 0 auto 0.85rem;
  padding: 0.4rem;
  border-radius: 10px;
  border: 1px solid rgba(54, 244, 242, 0.4);
  background:
    linear-gradient(145deg, rgba(54, 244, 242, 0.1), rgba(255, 63, 145, 0.07) 55%, rgba(255, 155, 36, 0.06));
  box-shadow:
    var(--glow-cyan),
    0 0 22px rgba(255, 63, 145, 0.2),
    inset 0 0 18px rgba(54, 244, 242, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.manufaktur__mark::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink) 50%, var(--orange));
  box-shadow: 0 0 10px rgba(54, 244, 242, 0.55);
  opacity: 0.9;
}

.manufaktur__mark img {
  display: block;
  width: auto;
  height: 58px;
  border-radius: 6px;
  filter: drop-shadow(0 0 14px rgba(255, 155, 36, 0.4));
}

.manufaktur:hover .manufaktur__mark {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 63, 145, 0.55);
  box-shadow:
    0 0 28px rgba(54, 244, 242, 0.55),
    0 0 30px rgba(255, 63, 145, 0.28),
    inset 0 0 18px rgba(54, 244, 242, 0.08);
}

.manufaktur p {
  margin: 0;
  line-height: 1.35;
}

.manufaktur__brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 0 14px rgba(54, 244, 242, 0.35);
}

.manufaktur__sub {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.72);
}

/* —— Relocation strip —— */
.relocate {
  padding: 0 0 2.5rem;
}

.relocate__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 155, 36, 0.35);
  background:
    linear-gradient(90deg, rgba(255, 155, 36, 0.12), rgba(255, 63, 145, 0.06));
}

.relocate__strip p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 246, 232, 0.85);
  line-height: 1.45;
  max-width: 58ch;
}

.relocate__strip strong {
  color: var(--orange);
  margin-right: 0.35rem;
}

.relocate__strip span {
  color: var(--cream);
  font-weight: 600;
}

/* —— Categories —— */
.categories {
  padding: 0.5rem 0 3.25rem;
}

.section-head--center {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.section-sub {
  margin: 0.35rem 0 0;
  color: rgba(255, 246, 232, 0.6);
  font-size: 0.95rem;
}

.assort-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}

.assort-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 244, 242, 0.35);
  background: rgba(18, 51, 55, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.assort-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(54, 244, 242, 0.1);
  box-shadow: var(--glow-cyan);
}

.assort-chip--accent {
  border-color: rgba(255, 155, 36, 0.45);
}

.assort-chip--accent:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--glow-orange);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  border: 2px solid;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s;
}

.category-card:nth-child(1) {
  border-color: var(--cyan);
}
.category-card:nth-child(2) {
  border-color: var(--pink);
}
.category-card:nth-child(3) {
  border-color: var(--orange);
}

.category-card:hover {
  transform: translateY(-6px);
  background: var(--surface-strong);
}

.category-card:nth-child(1):hover {
  box-shadow: var(--glow-cyan);
}
.category-card:nth-child(2):hover {
  box-shadow: var(--glow-pink);
}
.category-card:nth-child(3):hover {
  box-shadow: var(--glow-orange);
}

.category-card__icon {
  width: 72px;
  height: 72px;
}

.category-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
}

.category-card:nth-child(1) h3 {
  color: var(--cyan);
}
.category-card:nth-child(2) h3 {
  color: var(--pink);
}
.category-card:nth-child(3) h3 {
  color: var(--orange);
}

.category-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 246, 232, 0.7);
  text-align: center;
}

/* —— Features (legacy) —— */
.features {
  padding: 0 0 3.5rem;
}

.features__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-soft);
  border: 1px solid rgba(255, 246, 232, 0.07);
  box-shadow: inset 0 1px 0 rgba(54, 244, 242, 0.04);
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.feature__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.feature__icon svg {
  width: 36px;
  height: 36px;
}

.feature span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* —— Visit / Laden-Erlebnis —— */
.visit {
  padding: 0.5rem 0 3.25rem;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.visit__motto {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin: 0 0 1.75rem;
}

.visit__list {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.75rem;
  padding: 0;
}

.visit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.visit__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid;
}

.visit__icon svg {
  width: 20px;
  height: 20px;
}

.visit__icon--cyan {
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.visit__icon--pink {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}
.visit__icon--orange {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.visit__list strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.visit__list span {
  font-size: 0.88rem;
  color: rgba(255, 246, 232, 0.7);
  line-height: 1.45;
}

.visit__list .text-orange {
  color: var(--orange);
  font-weight: 800;
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.visit__visual {
  min-height: 360px;
}

.storefront {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  background: #1a1d21;
  border: 1px solid rgba(255, 246, 232, 0.08);
}

.storefront--photos {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 0.55rem;
  padding: 0.55rem;
  min-height: 400px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 77, 141, 0.12), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(38, 229, 229, 0.1), transparent 45%),
    #0a0c0e;
  box-shadow: inset 0 0 0 1px rgba(255, 246, 232, 0.04);
}

.storefront--photos picture {
  display: contents;
}

.storefront__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 420px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 10px;
  border: 1px solid rgba(255, 246, 232, 0.1);
  filter: brightness(1.01) contrast(1.04) saturate(1.05);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.45),
    inset 0 0 60px rgba(0, 0, 0, 0.12);
  transition: filter 0.4s ease;
}

.storefront__photo--secondary {
  min-height: 340px;
  max-height: 420px;
  object-position: center 38%;
}

.storefront--photos:hover .storefront__photo {
  filter: brightness(1.04) contrast(1.06) saturate(1.08);
}

.storefront--photos .storefront__caption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 16, 18, 0.78), rgba(26, 20, 28, 0.72));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 246, 232, 0.16);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {
  .storefront--photos {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.45rem;
    padding: 0.45rem;
  }

  .storefront__photo,
  .storefront__photo--secondary {
    min-height: 200px;
    max-height: 260px;
  }
}

.storefront__sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2a2e33 0%, #1a1d21 100%);
}

.storefront__building {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12%;
  top: 28%;
  background: linear-gradient(180deg, #2a2e33, var(--dark2));
  border: 1px solid rgba(255, 246, 232, 0.12);
  border-radius: 4px 4px 0 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.storefront__sign--logo {
  align-self: flex-start;
  padding: 0.35rem 0.65rem;
  background: var(--orange);
  color: var(--dark2);
  font-family: var(--font-stamp);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.storefront__banners {
  display: grid;
  gap: 0.45rem;
  margin-top: auto;
}

.storefront-banner {
  padding: 0.45rem 0.85rem;
  background: var(--ink-overlay);
  border: 1px solid;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  width: fit-content;
}

.storefront-banner--cyan {
  border-color: var(--cyan);
  color: var(--cyan);
}
.storefront-banner--pink {
  border-color: var(--pink);
  color: var(--pink);
}
.storefront-banner--orange {
  border-color: var(--orange);
  color: var(--orange);
}

.storefront__door {
  position: absolute;
  bottom: 0;
  right: 12%;
  width: 18%;
  height: 42%;
  background: rgba(54, 244, 242, 0.08);
  border: 1px solid rgba(54, 244, 242, 0.25);
  border-bottom: none;
}

.storefront__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55);
}

/* —— Home events —— */
.home-events {
  padding: 0.5rem 0 3.25rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.event-card {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(54, 244, 242, 0.28);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.event-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}

.event-card--pink {
  border-color: rgba(255, 63, 145, 0.3);
}

.event-card--pink:hover {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.event-card time {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.event-card--pink time {
  color: var(--pink);
}

.event-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.event-card p {
  margin: 0;
  color: rgba(255, 246, 232, 0.7);
  font-size: 0.95rem;
  flex: 1;
}

.event-card .link-arrow {
  margin-top: 0.5rem;
  align-self: flex-start;
}

/* —— Hours block —— */
.hours-block {
  padding: 0 0 3.25rem;
}

.hours-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 246, 232, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(54, 244, 242, 0.08), transparent 45%),
    var(--surface);
}

.hours-panel h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.hours-tagline {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 360px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 246, 232, 0.08);
  font-size: 0.95rem;
}

.hours-list span {
  color: rgba(255, 246, 232, 0.65);
}

.hours-list strong {
  color: var(--cream);
  font-weight: 700;
}

.hours-list__note strong {
  color: var(--cyan);
}

.hours-contact h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: var(--pink);
}

.hours-contact p {
  margin: 0 0 1rem;
  color: rgba(255, 246, 232, 0.8);
  line-height: 1.65;
}

.hours-contact a {
  color: var(--cyan);
}

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* —— About split (legacy pages) —— */
.about-split {
  padding: 2rem 0 4.5rem;
}

.about-split__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(21, 34, 40, 0.25), rgba(6, 10, 13, 0.65)),
    linear-gradient(160deg, #1a3540 0%, var(--dark2) 50%, #121c22 100%);
  border: 1px solid rgba(54, 244, 242, 0.15);
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  line-height: 1.1;
}

.about-copy h2 .accent {
  color: var(--orange);
}

.about-copy p {
  margin: 0 0 1.5rem;
  color: rgba(255, 246, 232, 0.8);
  max-width: 42ch;
}

/* —— Section heads —— */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.link-arrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s;
}

.link-arrow:hover {
  gap: 0.7rem;
}

/* —— Products —— */
.highlights,
.shop-section {
  padding: 0.5rem 0 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.product-grid--home {
  grid-template-columns: repeat(5, 1fr);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-mid);
  border: 1px solid rgba(255, 246, 232, 0.09);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 244, 242, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.product-card__media {
  position: relative;
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 50% 28%, rgba(54, 244, 242, 0.06), transparent 48%),
    linear-gradient(180deg, #3c4148 0%, #22262b 52%, #16191d 100%);
  display: grid;
  place-items: center;
  padding: 1.85rem 1.35rem 1.7rem;
  overflow: hidden;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 48px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* Product photos — full bottle, object-fit contain, no blend mode */
.product-img {
  display: block;
  max-width: 82%;
  max-height: 100%;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.product-card:hover .product-img {
  transform: translateY(-2px) scale(1.015);
}

.product-img--detail {
  max-width: min(300px, 88%);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.product-img--cart {
  width: 52px;
  height: 78px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  background: #2a2e33;
  border-radius: 6px;
  padding: 4px;
  aspect-ratio: auto;
}

.product-card--soldout {
  opacity: 1;
}

.product-card--soldout .product-img {
  filter: grayscale(0.4) contrast(1.02) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

.soldout-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(6, 10, 13, 0.45);
  pointer-events: none;
}

.soldout-overlay span {
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  background: var(--stock-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 77, 109, 0.45);
}

.stock-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  max-width: calc(100% - 5.5rem);
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid transparent;
  line-height: 1.2;
  text-align: center;
}

.stock-badge--available {
  color: #062814;
  background: var(--stock-green);
  box-shadow: 0 0 14px rgba(61, 222, 122, 0.35);
}

.stock-badge--limited {
  color: #2a1e00;
  background: var(--stock-yellow);
  box-shadow: 0 0 14px rgba(255, 195, 61, 0.4);
}

.stock-badge--soldout {
  color: #fff;
  background: var(--stock-red);
  box-shadow: 0 0 14px rgba(255, 77, 109, 0.4);
}

.product-detail__info .stock-badge {
  position: static;
  display: inline-flex;
  margin: 0 0 0.65rem;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  max-width: calc(50% - 0.5rem);
  padding: 0.32rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
}

.product-badge--neu {
  background: var(--cyan);
  color: var(--dark2);
  box-shadow: var(--glow-cyan);
}
.product-badge--topseller {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--glow-pink);
}
.product-badge--aktion {
  background: var(--orange);
  color: var(--dark2);
  box-shadow: var(--glow-orange);
}

.bottle {
  width: 56px;
  height: 160px;
  position: relative;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s var(--ease);
}

.product-card:hover .bottle {
  transform: translateY(-8px) scale(1.04);
}

.bottle__neck {
  width: 18px;
  height: 36px;
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, #1a1a1a, #444, #1a1a1a);
}

.bottle__cap {
  width: 22px;
  height: 12px;
  margin: 0 auto -2px;
  border-radius: 3px 3px 0 0;
  background: #c9a227;
}

.bottle__body {
  width: 56px;
  height: 110px;
  border-radius: 8px 8px 12px 12px;
  position: relative;
  overflow: hidden;
}

.bottle__body::after {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.bottle__shine {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 8px;
  height: 55%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
  border-radius: 4px;
}

.product-card__body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.55rem;
}

.product-card__actions .btn {
  width: 100%;
}

.product-card__actions .btn--sm {
  padding: 0.5rem 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.product-card__brand {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55);
}

.product-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.product-card__price {
  margin: 0.35rem 0 0.15rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.product-card__price .old {
  margin-left: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 246, 232, 0.45);
  text-decoration: line-through;
}

.product-card__price.is-sale {
  color: var(--orange);
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

/* —— Newsletter —— */
.newsletter {
  padding: 0 0 4.5rem;
}

.newsletter__panel {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 63, 145, 0.14), transparent 42%),
    var(--surface-strong);
  border: 1px solid rgba(255, 63, 145, 0.28);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.newsletter__brand .slogan-stamp {
  font-size: 1.5rem;
}

.newsletter__form h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

.newsletter__form p {
  margin: 0 0 1rem;
  color: rgba(255, 246, 232, 0.7);
  font-size: 0.95rem;
}

.newsletter__fields {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.newsletter__fields input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 6px;
  background: var(--white);
  color: var(--dark2);
}

.newsletter__fields input::placeholder {
  color: rgba(6, 10, 13, 0.45);
}

.newsletter-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--pink);
  box-shadow: var(--glow-pink);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid rgba(255, 246, 232, 0.08);
  background: rgba(4, 7, 9, 0.96);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 246, 232, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-brand a {
  color: var(--cyan);
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 246, 232, 0.2);
  border-radius: 50%;
  transition: border-color 0.2s, color 0.2s;
}

.socials a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 246, 232, 0.7);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-motto {
  text-align: right;
}

.footer-motto .hero-motto {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-motto img,
.footer-motto .hero-heart {
  width: 90px;
  margin-left: auto;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 246, 232, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 246, 232, 0.5);
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-bottom a:hover {
  color: var(--cream);
}

/* —— Page hero (inner) —— */
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 246, 232, 0.75);
  max-width: 48ch;
}

/* —— Kategorie-Schaufenster (kein Shop-Klon) —— */
.page-hero--showcase {
  padding: 3.25rem 0 2.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 10% 0%, rgba(54, 244, 242, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(255, 63, 145, 0.1), transparent 50%);
  border-bottom: 1px solid rgba(255, 246, 232, 0.06);
}

.page-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-stamp);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.shop-section--showcase {
  padding-top: 1.75rem;
}

.showcase-toolbar {
  margin-bottom: 1.5rem;
}

.showcase-toolbar__label {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.45);
}

.product-grid--showcase {
  gap: 1.25rem;
}

.product-card--showcase {
  background: rgba(18, 22, 28, 0.72);
  border-color: rgba(54, 244, 242, 0.12);
}

.product-card--showcase:hover {
  border-color: rgba(54, 244, 242, 0.35);
}

.showcase-footer-cta {
  margin: 2rem 0 0;
  text-align: center;
}

/* —— Shop toolbar —— */
.shop-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1.1rem;
  background: rgba(10, 14, 18, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 246, 232, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.filters-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.filters-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 2rem;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(10, 14, 18, 0.95));
}

.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.15rem;
  -webkit-overflow-scrolling: touch;
}

.filter-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 246, 232, 0.2);
  background: transparent;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(54, 244, 242, 0.1);
}

.shop-toolbar__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.shop-count {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 246, 232, 0.65);
  white-space: nowrap;
}

.shop-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 246, 232, 0.2);
  border-radius: 8px;
  background: var(--ink-glass);
}

.shop-search input {
  border: none;
  background: transparent;
  outline: none;
  min-width: 140px;
}

.shop-empty {
  text-align: center;
  padding: 3rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 246, 232, 0.2);
  background: var(--surface-soft);
}

.shop-empty p {
  margin: 0 0 0.5rem;
  color: rgba(255, 246, 232, 0.75);
}

.shop-empty .btn {
  margin-top: 1rem;
}

.shop-section .product-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* —— Product detail —— */
.product-detail {
  padding: 1rem 0 4.5rem;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(54, 244, 242, 0.07), transparent 48%),
    linear-gradient(180deg, #3c4148 0%, #22262b 52%, #16191d 100%);
  border: 1px solid rgba(255, 246, 232, 0.08);
  display: grid;
  place-items: center;
  padding: 2.5rem 2rem 2.75rem;
  overflow: hidden;
}

.product-detail__media .bottle {
  width: 90px;
  height: 260px;
  transform: scale(1.4);
}

.product-detail__media .product-badge {
  z-index: 2;
}

.product-detail__info h1 {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: rgba(255, 246, 232, 0.65);
}

/* —— Star ratings —— */
.stars {
  display: inline-flex;
  gap: 0.12rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stars--sm {
  gap: 0.06rem;
  font-size: 0.85rem;
}

.star {
  font-style: normal;
  transition: color 0.2s var(--ease), text-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.star--on {
  color: var(--orange);
  text-shadow: 0 0 10px rgba(255, 155, 36, 0.55), 0 0 18px rgba(54, 244, 242, 0.22);
}

.star--off {
  color: rgba(255, 246, 232, 0.22);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.15rem 0 0.35rem;
  min-height: 1.1rem;
}

.product-card__rating-meta {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 246, 232, 0.55);
  letter-spacing: 0.02em;
}

.product-rating {
  margin: 0.35rem 0 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(54, 244, 242, 0.18);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 155, 36, 0.08), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(54, 244, 242, 0.06), transparent 50%),
    rgba(26, 29, 33, 0.55);
}

.product-rating__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.product-rating__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin-bottom: 0.65rem;
}

.product-rating__summary .stars {
  font-size: 1.35rem;
}

.product-rating__meta {
  font-size: 0.92rem;
  color: rgba(255, 246, 232, 0.78);
}

.product-rating__meta strong {
  color: var(--orange);
  font-weight: 800;
}

.product-rating__count {
  opacity: 0.65;
  margin-left: 0.25rem;
}

.product-rating__empty {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: rgba(255, 246, 232, 0.7);
}

.product-rating__vote-label {
  margin: 0 0 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 246, 232, 0.7);
}

.star-picker {
  display: inline-flex;
  gap: 0.2rem;
}

.star-btn {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0.15rem 0.2rem;
  margin: 0;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  color: rgba(255, 246, 232, 0.22);
  transition: color 0.18s var(--ease), text-shadow 0.18s var(--ease), transform 0.18s var(--ease);
}

.star-btn:hover,
.star-btn:focus-visible,
.star-btn.is-hover {
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 155, 36, 0.65), 0 0 20px rgba(54, 244, 242, 0.28);
  transform: translateY(-2px) scale(1.06);
  outline: none;
}

.star-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(54, 244, 242, 0.55);
  border-radius: 4px;
}

.star-btn:disabled {
  opacity: 0.45;
  cursor: wait;
  transform: none;
}

.product-rating__thanks {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--mint);
}

.product-rating__thanks strong {
  color: var(--orange);
}

.product-rating__error {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--stock-red);
}

.product-detail__price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.5rem 0 1.25rem;
}

.product-detail__price.is-sale {
  color: var(--orange);
}

.tasting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.tasting-tags span {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(54, 244, 242, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--cyan);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 246, 232, 0.25);
  border-radius: 6px;
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 246, 232, 0.06);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.1rem;
}

.qty-control input {
  width: 48px;
  height: 40px;
  border: none;
  background: transparent;
  text-align: center;
  outline: none;
}

/* —— Cart —— */
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 4.5rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.5);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 246, 232, 0.1);
}

.cart-table td {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 246, 232, 0.08);
  vertical-align: middle;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item .bottle {
  width: 28px;
  height: 80px;
  transform: scale(0.7);
  transform-origin: center top;
}

.cart-item .product-img--cart {
  border-radius: 4px;
}

.cart-item strong {
  display: block;
}

.cart-item small {
  color: rgba(255, 246, 232, 0.55);
}

.cart-remove {
  border: none;
  background: transparent;
  color: var(--pink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
}

.cart-summary {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-mid);
  border: 1px solid rgba(255, 246, 232, 0.1);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.cart-summary h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: rgba(255, 246, 232, 0.75);
}

.summary-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 246, 232, 0.12);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cream);
}

.cart-summary .btn {
  width: 100%;
  margin-top: 0.75rem;
}

.cart-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0.25rem;
}

.cart-trust span {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 244, 242, 0.3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-steps span,
.checkout-steps a {
  color: rgba(255, 246, 232, 0.4);
}

.checkout-steps .is-active,
.checkout-steps a.is-active {
  color: var(--orange);
}

.checkout-steps a:hover {
  color: var(--cyan);
}

.checkout-form__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  grid-column: 1 / -1;
}

.checkout-form .full-span {
  grid-column: 1 / -1;
}

.pay-methods {
  margin: 0;
  padding: 0;
  border: none;
  grid-column: 1 / -1;
}

.pay-methods legend {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  padding: 0;
}

.pay-methods__note {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 246, 232, 0.65);
  font-weight: 400;
}

.pay-methods__list {
  display: grid;
  gap: 0.5rem;
}

.pay-method {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 246, 232, 0.14);
  background: var(--surface);
  cursor: pointer;
  font-weight: 400;
}

.pay-method.is-selected {
  border-color: rgba(54, 244, 242, 0.45);
  box-shadow: 0 0 0 1px rgba(54, 244, 242, 0.2);
}

.pay-method input {
  margin: 0;
  accent-color: var(--cyan);
}

.pay-method__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.pay-method__text strong {
  font-size: 0.92rem;
}

.pay-method__text small {
  color: rgba(255, 246, 232, 0.55);
  font-size: 0.75rem;
}

.pay-method__icon {
  width: 2.4rem;
  height: 1.55rem;
  border-radius: 4px;
  background: rgba(255, 246, 232, 0.08);
  position: relative;
}

.pay-method__icon--paypal,
.pay-method__icon--paypal-later {
  background: #ffc439;
}

.pay-method__icon--paypal::after,
.pay-method__icon--paypal-later::after {
  content: "PayPal";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: #003087;
  letter-spacing: -0.02em;
}

.pay-method__icon--paypal-later::after {
  content: "Später";
}

.pay-method__icon--sepa::after {
  content: "SEPA";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--cream);
}

.pay-method__icon--card::after {
  content: "CARD";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--cream);
}

.pay-method__icon--gpay::after {
  content: "GPay";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--cream);
}

.pay-method__icon--rechnung::after {
  content: "RE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--cream);
}

.checkout-age-banner {
  margin: 0 0 0.35rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 63, 145, 0.35);
  background: rgba(255, 63, 145, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 246, 232, 0.9);
}

.ship-progress {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(54, 244, 242, 0.25);
  background: rgba(54, 244, 242, 0.06);
}

.ship-progress p {
  margin: 0 0 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 246, 232, 0.85);
}

.ship-progress--done {
  border-color: rgba(61, 222, 122, 0.4);
  background: rgba(61, 222, 122, 0.08);
  color: var(--stock-green);
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 700;
}

.ship-progress__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.1);
  overflow: hidden;
}

.ship-progress__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  transition: width 0.35s var(--ease);
}

.cart-item .stock-badge {
  position: static;
  display: inline-flex;
  margin-top: 0.35rem;
  max-width: none;
}

.cart-warn {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: var(--stock-red);
}

.cart-warn--limited {
  color: var(--stock-yellow);
}

.is-soldout-line {
  opacity: 0.72;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
}

.cart-banner-warn {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 63, 145, 0.12);
  border: 1px solid rgba(255, 63, 145, 0.35);
  color: var(--cream);
  font-size: 0.9rem;
}

.cart-summary .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.product-card__actions:has(> :only-child) {
  grid-template-columns: 1fr;
}

.cart-empty h2 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 2rem;
}

.cart-empty .muted {
  margin: 0.5rem auto 1.5rem;
  max-width: 36ch;
}

/* —— Toast —— */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  max-width: min(360px, calc(100vw - 2rem));
  padding: 0.9rem 1.25rem;
  background: var(--dark);
  border: 1px solid var(--cyan);
  border-radius: 8px;
  box-shadow: var(--glow-cyan);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast a {
  color: var(--orange);
  font-weight: 700;
  margin-left: 0.35rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

/* —— Forms / pages —— */
.content-block {
  padding-bottom: 4.5rem;
}

.content-block .prose {
  max-width: 65ch;
}

.content-block .prose p {
  color: rgba(255, 246, 232, 0.8);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-cards--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

@media (max-width: 700px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 480px;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 246, 232, 0.2);
  background: var(--surface);
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-success {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
}

.checkout-success h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  margin: 0.25rem 0;
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
}

.order-id {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.muted {
  color: rgba(255, 246, 232, 0.7);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.legal-hint {
  font-size: 0.8rem;
  color: rgba(255, 246, 232, 0.55);
  line-height: 1.45;
  margin: 0.75rem 0 0;
}

.legal-hint a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-checks {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid rgba(255, 246, 232, 0.1);
  margin-top: 0.5rem;
}

.check-row {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  line-height: 1.4;
  cursor: pointer;
}

.check-row input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--pink);
}

.check-row a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order-confirm {
  padding-bottom: 4rem;
}

.order-panel {
  max-width: 920px;
  margin: 0 auto 3rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface-mid);
  border: 1px solid rgba(255, 246, 232, 0.1);
}

.order-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.order-panel h2,
.widerruf-form-panel h2,
.order-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
}

.order-lines {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.order-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 246, 232, 0.14);
  font-size: 0.95rem;
  color: rgba(255, 246, 232, 0.95);
}

.order-lines li span:last-child {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

.order-lines.compact li {
  font-size: 0.9rem;
}

.address-block {
  margin: 0 0 1.5rem;
  color: rgba(255, 246, 232, 0.8);
  line-height: 1.7;
}

.address-block a {
  color: var(--cyan);
}

.widerruf-box {
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 63, 145, 0.35);
  background: rgba(255, 63, 145, 0.08);
}

.widerruf-box.is-done {
  border-color: rgba(54, 244, 242, 0.35);
  background: rgba(54, 244, 242, 0.08);
}

.widerruf-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink);
}

.widerruf-box.is-done h3 {
  color: var(--cyan);
}

.widerruf-box p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: rgba(255, 246, 232, 0.85);
}

.widerruf-box .btn {
  width: 100%;
}

.orders-stack {
  display: grid;
  gap: 1.1rem;
}

.order-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(72, 78, 88, 0.95) 0%, rgba(48, 53, 60, 0.92) 100%);
  border: 1px solid rgba(255, 246, 232, 0.18);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.order-card:hover {
  border-color: rgba(54, 244, 242, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.order-card.is-withdrawn {
  opacity: 1;
  border-color: rgba(255, 63, 145, 0.4);
  background: linear-gradient(160deg, rgba(68, 52, 62, 0.95) 0%, rgba(48, 42, 50, 0.94) 100%);
  box-shadow: inset 3px 0 0 var(--pink);
}

.order-card .order-id {
  color: var(--white);
  font-size: 1.05rem;
}

.order-card .muted {
  color: rgba(255, 246, 232, 0.82);
}

.order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.order-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 246, 232, 0.14);
}

.order-card__actions .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 246, 232, 0.4);
}

.order-card__actions .btn--ghost:hover {
  background: rgba(54, 244, 242, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill--confirmed {
  background: rgba(54, 244, 242, 0.22);
  color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.status-pill--withdrawn {
  background: rgba(255, 63, 145, 0.28);
  color: #ffb0d4;
  border: 1px solid rgba(255, 63, 145, 0.45);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.legal-text h2,
.legal-text h3,
.prose h2,
.prose h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  margin: 1.75rem 0 0.65rem;
}

.legal-text h2:first-child,
.prose h2:first-child {
  margin-top: 0;
}

.legal-text a,
.prose a {
  color: var(--cyan);
}

.muster-box {
  padding: 1.25rem;
  border-left: 3px solid var(--orange);
  background: rgba(255, 155, 36, 0.06);
  font-size: 0.92rem;
  color: rgba(255, 246, 232, 0.8);
}

.widerruf-form-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 63, 145, 0.3);
  box-shadow: var(--glow-pink);
}

.widerruf-result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.widerruf-result.is-ok {
  border: 1px solid rgba(54, 244, 242, 0.4);
  background: rgba(54, 244, 242, 0.1);
  color: var(--cream);
}

.widerruf-result.is-error {
  border: 1px solid rgba(255, 63, 145, 0.45);
  background: rgba(255, 63, 145, 0.1);
  color: var(--cream);
}

.widerruf-result a {
  color: var(--cyan);
  display: inline-block;
  margin-top: 0.35rem;
}

@media (max-width: 860px) {
  .order-panel__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .widerruf-form-panel {
    position: static;
  }
}

.trust-bar {
  padding: 0 0 4.5rem;
}

.trust-bar__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(54, 244, 242, 0.2);
  background: var(--surface-soft);
}

.trust-bar__row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-bottom: 0.15rem;
}

.trust-bar__row span {
  font-size: 0.85rem;
  color: rgba(255, 246, 232, 0.65);
}

.price-meta {
  margin: -0.35rem 0 0.65rem;
  font-size: 0.78rem;
  color: rgba(255, 246, 232, 0.55);
}

.price-meta--sm {
  margin-top: -0.2rem;
  margin-bottom: 0.35rem;
}

.product-card__vol {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: rgba(255, 246, 232, 0.5);
  letter-spacing: 0.04em;
}

.age-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--pink);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.shop-age-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--pink);
  letter-spacing: 0.03em;
}

.legal-product-notes {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 246, 232, 0.1);
}

.legal-product-notes p {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 246, 232, 0.6);
  line-height: 1.45;
}

.legal-product-notes a {
  color: var(--cyan);
}

.product-type-badge {
  display: inline-block;
  margin: 0 0 0.35rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 246, 232, 0.25);
  color: rgba(255, 246, 232, 0.85);
  border-radius: 2px;
}

.product-type-badge--weisswein { border-color: rgba(240, 230, 180, 0.55); color: #f0e6b4; }
.product-type-badge--rose { border-color: rgba(232, 160, 176, 0.6); color: #f0b0c0; }
.product-type-badge--rotwein { border-color: rgba(180, 60, 80, 0.65); color: #e87890; }
.product-type-badge--schaumwein { border-color: rgba(54, 244, 242, 0.45); color: var(--cyan); }
.product-type-badge--alkoholfrei { border-color: rgba(200, 212, 224, 0.55); color: #c8d4e0; }
.product-type-badge--gin,
.product-type-badge--kuemmel,
.product-type-badge--likoer { border-color: rgba(255, 159, 36, 0.5); color: var(--orange); }
.product-type-badge--aperitif { border-color: rgba(155, 107, 196, 0.55); color: #c4a0e8; }
.product-type-badge--set { border-color: rgba(255, 63, 145, 0.5); color: var(--pink); }

.product-detail__info .product-type-badge {
  margin-right: 0.5rem;
  vertical-align: middle;
}

.filters--page {
  margin-bottom: 1.5rem;
}

.filters--page .filter-btn {
  text-decoration: none;
}

.nutrition-block {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 246, 232, 0.12);
}

.labeling-block {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 246, 232, 0.12);
}

.labeling-block h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  font-weight: 400;
}

.labeling-list {
  margin: 0;
  max-width: 36rem;
}

.labeling-row {
  display: grid;
  grid-template-columns: minmax(9rem, 42%) 1fr;
  gap: 0.35rem 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 246, 232, 0.1);
  font-size: 0.9rem;
}

.labeling-row dt {
  margin: 0;
  font-weight: 500;
  opacity: 0.75;
}

.labeling-row dd {
  margin: 0;
  line-height: 1.4;
}

.labeling-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 246, 232, 0.55);
}

.nutrition-block h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  font-weight: 400;
}

.nutrition-table {
  width: 100%;
  max-width: 28rem;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.nutrition-table caption {
  text-align: left;
  font-size: 0.78rem;
  opacity: 0.65;
  margin-bottom: 0.4rem;
  caption-side: top;
}

.nutrition-table th,
.nutrition-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(255, 246, 232, 0.1);
  text-align: left;
}

.nutrition-table th {
  font-weight: 500;
  opacity: 0.8;
  width: 60%;
}

.nutrition-table td {
  font-variant-numeric: tabular-nums;
}

.nutrition-ingredients,
.nutrition-allergens {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.nutrition-note,
.nutrition-pending {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 246, 232, 0.55);
}

.nutrition-legal-link {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
}

.nutrition-legal-link a {
  color: var(--cyan);
}

.footer-responsibility {
  padding: 0 0 1.25rem;
  text-align: center;
}

.footer-responsibility p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 246, 232, 0.45);
  max-width: 70ch;
  margin-inline: auto;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2500;
  max-width: 560px;
  margin-inline: auto;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  background: var(--dark);
  border: 1px solid rgba(54, 244, 242, 0.35);
  box-shadow: var(--glow-cyan), 0 16px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--cream);
}

.cookie-banner__intro p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 246, 232, 0.85);
  line-height: 1.45;
}

.cookie-banner__intro a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner__settings {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 246, 232, 0.12);
}

.cookie-banner__settings[hidden] {
  display: none;
}

.cookie-cat__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.cookie-cat__row span {
  display: grid;
  gap: 0.15rem;
}

.cookie-cat__row strong {
  font-size: 0.85rem;
  color: var(--cream);
}

.cookie-cat__row small {
  font-size: 0.72rem;
  color: rgba(255, 246, 232, 0.65);
  line-height: 1.35;
}

.cookie-cat__row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.cookie-cat__row input[type="checkbox"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.footer-cookie-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-cookie-link:hover {
  color: var(--cyan);
}

.newsletter__heart {
  width: 48px;
  margin-bottom: 0.5rem;
  color: var(--cyan);
  filter: drop-shadow(var(--glow-cyan));
}

.prose ul {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
  color: rgba(255, 246, 232, 0.8);
}

.prose li {
  margin-bottom: 0.4rem;
}

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

  .events-grid,
  .hours-panel {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

/* —— Reveal animations —— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }

  .about-visual .storefront-banner {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 16px rgba(54, 244, 242, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(54, 244, 242, 0.65));
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

/* —— Search overlay —— */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--ink-overlay);
  display: grid;
  place-items: start center;
  padding-top: 15vh;
}

.search-overlay[hidden] {
  display: none;
}

.search-overlay__box {
  width: min(100% - 2rem, 560px);
}

.search-overlay__box input {
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-size: 1.2rem;
  border: 2px solid var(--cyan);
  border-radius: 8px;
  background: var(--dark);
  box-shadow: var(--glow-cyan);
  outline: none;
}

.search-results {
  margin-top: 1rem;
  max-height: 50vh;
  overflow: auto;
}

.search-results a {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 246, 232, 0.08);
  transition: background 0.2s;
}

.search-results a:hover {
  background: rgba(54, 244, 242, 0.08);
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .product-grid,
  .product-grid--home {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-section .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-aside {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }

  .manufaktur__mark img {
    height: 48px;
  }

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

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

  .footer-motto {
    grid-column: 1 / -1;
    text-align: left;
  }

  .footer-motto .hero-heart {
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    background: rgba(6, 10, 13, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 246, 232, 0.1);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__split {
    display: none;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 246, 232, 0.06);
  }

  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .header-utils {
    justify-self: end;
  }

  .logo img {
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 1.75rem 0 2.5rem;
  }

  body.has-atmosphere .page-atmosphere {
    opacity: 0.75;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.35rem;
  }

  .hero-brand {
    align-items: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-ctas .btn {
    min-width: 10.5rem;
  }

  .badge-circle {
    width: 140px;
    height: 140px;
  }

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

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

  .about-split__grid,
  .product-detail__grid,
  .cart-layout,
  .newsletter__panel,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: min(100%, 240px);
    margin-inline: auto;
  }

  .brand-mark--art {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .brand-mark__glass {
    width: 44%;
    right: 0;
  }

  .newsletter-badge {
    margin-inline: auto;
  }

  .product-grid,
  .product-grid--home,
  .shop-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar__meta {
    justify-content: space-between;
  }

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

@media (max-width: 520px) {
  .product-card__actions {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-grid--home,
  .shop-section .product-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-motto {
    font-size: 2.4rem;
  }

  .shop-search {
    flex: 1;
  }

  .shop-search input {
    min-width: 0;
    width: 100%;
  }
}

/* —— Über uns / Vita —— */
.about-hero {
  position: relative;
  padding: 3.25rem 0 2.75rem;
  overflow: hidden;
}

.about-hero__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 18% 40%, rgba(54, 244, 242, 0.14), transparent 62%),
    radial-gradient(ellipse 45% 60% at 88% 20%, rgba(255, 63, 145, 0.12), transparent 58%),
    radial-gradient(ellipse 40% 50% at 72% 90%, rgba(255, 155, 36, 0.08), transparent 55%);
  animation: about-hero-drift 14s ease-in-out infinite alternate;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  background: linear-gradient(105deg, var(--cream) 0%, var(--cyan) 55%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.about-hero__tag {
  margin: -0.35rem 0 1.35rem !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55) !important;
  max-width: none !important;
}

.about-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.about-kicker--brand {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-shadow: var(--glow-orange);
  line-height: 1;
}

.about-lead {
  margin: 0.35rem 0 1.25rem !important;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 246, 232, 0.92) !important;
  max-width: 36ch;
}

.about-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.about-jump a {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(54, 244, 242, 0.28);
  background: rgba(54, 244, 242, 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.about-jump a:hover {
  border-color: var(--pink);
  background: rgba(255, 63, 145, 0.12);
  color: var(--pink);
  transform: translateY(-1px);
}

.about-h2 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.about-h2--orange { color: var(--orange); }
.about-h2--cyan { color: var(--cyan); text-shadow: var(--glow-cyan); }
.about-h2--pink { color: var(--pink); text-shadow: var(--glow-pink); }

.about-signoff {
  margin-top: 1.25rem !important;
  font-weight: 700;
  color: var(--cream) !important;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.about-story .about-split__grid,
.about-asm .about-split__grid {
  align-items: stretch;
}

.about-visual {
  isolation: isolate;
}

.about-visual__smoke {
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 40%, rgba(54, 244, 242, 0.18), transparent 42%),
    radial-gradient(circle at 75% 65%, rgba(255, 155, 36, 0.12), transparent 45%);
  animation: about-smoke 10s ease-in-out infinite alternate;
}

.about-visual__smoke--pink {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 63, 145, 0.2), transparent 42%),
    radial-gradient(circle at 70% 70%, rgba(54, 244, 242, 0.1), transparent 48%);
}

.about-visual__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
  min-height: 300px;
  padding: 2rem 1.5rem;
}

.about-visual--pink {
  border-color: rgba(255, 63, 145, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 63, 145, 0.12), rgba(6, 10, 13, 0.65)),
    linear-gradient(160deg, #2a1a28 0%, var(--dark2) 55%, #121418 100%);
}

.about-visual__caption {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55);
}

.about-visual .storefront-banner {
  opacity: 0;
  transform: translateX(-12px);
}

.about-visual.is-in .about-banner--delay-1,
.about-visual.is-in .about-banner--delay-2,
.about-visual.is-in .about-banner--delay-3 {
  animation: about-banner-in 0.7s var(--ease) both;
}

.about-visual.is-in .about-banner--delay-2 { animation-delay: 0.12s; }
.about-visual.is-in .about-banner--delay-3 { animation-delay: 0.24s; }

/* —— Brand Zeitleiste —— */
.about-timeline-block {
  padding-top: 0.25rem;
}

.brand-timeline {
  --tl-gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--tl-gap);
  position: relative;
  padding-top: 0.35rem;
}

.brand-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2.75rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--cyan),
    var(--pink) 40%,
    var(--orange) 75%,
    rgba(255, 246, 232, 0.25)
  );
  opacity: 0.55;
  transform-origin: left center;
}

.brand-timeline.is-in::before {
  animation: about-line-draw 1.1s var(--ease) both;
}

.brand-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  position: relative;
  min-width: 0;
}

.brand-timeline__item time {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: 0.04em;
  color: var(--cyan);
  line-height: 1;
  min-height: 1.7rem;
}

.brand-timeline__item--accent time {
  color: var(--orange);
}

.brand-timeline__item--now time {
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.brand-timeline__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-left: 0.15rem;
}

.brand-timeline__item--accent .brand-timeline__dot {
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.brand-timeline__item--now .brand-timeline__dot {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.brand-timeline.is-in .brand-timeline__item--now .brand-timeline__dot {
  animation: about-dot-pulse 2.4s ease-in-out infinite;
}

.brand-timeline__body {
  padding: 0.15rem 0 0;
}

.brand-timeline__body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.15;
}

.brand-timeline__body p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 246, 232, 0.72);
}

.about-concept {
  padding-top: 0.5rem;
}

.about-concept__lead {
  max-width: 62ch;
  margin: 0 auto 1.75rem;
  text-align: left;
}

.about-concept__lead p {
  margin: 0 0 1rem;
  color: rgba(255, 246, 232, 0.82);
}

.about-concept__lead p:last-child {
  margin-bottom: 0;
}

.about-concept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-concept__grid .about-pillars:nth-child(2) {
  transition-delay: 0.08s;
}

.about-concept__grid .about-pillars:nth-child(3) {
  transition-delay: 0.16s;
}

.about-pillars {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-mid);
  border: 1px solid rgba(255, 246, 232, 0.08);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.about-pillars:hover {
  border-color: rgba(54, 244, 242, 0.28);
  transform: translateY(-2px);
}

.about-pillars__num {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.about-pillars__num.c1 { color: var(--cyan); }
.about-pillars__num.c2 { color: var(--pink); }
.about-pillars__num.c3 { color: var(--orange); }

.about-pillars p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 246, 232, 0.78);
  line-height: 1.55;
}

.about-quote {
  margin: 2rem auto 0;
  max-width: 36ch;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 246, 232, 0.88);
}

.about-north__panel {
  padding: 1.75rem 1.65rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(54, 244, 242, 0.16);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(54, 244, 242, 0.1), transparent 55%),
    var(--surface-mid);
}

.about-north__panel .prose {
  max-width: none;
}

.about-north__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(54, 244, 242, 0.85);
}

.about-bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.about-bullets--asm {
  margin: 0.85rem 0 1.15rem;
}

.about-manifesto {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.about-manifesto__panel {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 140, 66, 0.28);
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(255, 140, 66, 0.14), transparent 60%),
    var(--surface-mid);
}

.about-manifesto__lead {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 246, 232, 0.92);
}

.about-manifesto__accent {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: 0.03em;
  color: var(--orange);
  text-shadow: var(--glow-orange);
}

.about-manifesto__sub {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 246, 232, 0.62);
}

.about-bullets li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 1.35rem;
  border-radius: 10px;
  background: var(--surface-soft);
  border-left: 3px solid var(--cyan);
  color: rgba(255, 246, 232, 0.82);
}

.about-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 63, 145, 0.12), rgba(54, 244, 242, 0.06)),
    var(--surface-mid);
  border: 1px solid rgba(255, 63, 145, 0.28);
}

.about-teaser p {
  margin: 0.5rem 0 0;
  max-width: 52ch;
  color: rgba(255, 246, 232, 0.78);
}

.about-teaser .about-h2 {
  margin-bottom: 0;
}

.text-orange {
  color: var(--orange);
  font-weight: 800;
}

@keyframes about-hero-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 3%, 0) scale(1.04); }
}

@keyframes about-smoke {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  to { transform: translate3d(3%, -2%, 0) scale(1.08); opacity: 1; }
}

@keyframes about-banner-in {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes about-line-draw {
  from { transform: scaleX(0); opacity: 0.2; }
  to { transform: scaleX(1); opacity: 0.55; }
}

@keyframes about-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 63, 145, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 63, 145, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__glow,
  .about-visual__smoke,
  .vita-stamps__smoke,
  .brand-timeline.is-in .brand-timeline__item--now .brand-timeline__dot,
  .vita-timeline.is-in .vita-item--now::after {
    animation: none;
  }

  .about-visual .storefront-banner,
  .vita-stamps .storefront-banner {
    opacity: 1;
    transform: none;
  }

  .about-visual.is-in .about-banner--delay-1,
  .about-visual.is-in .about-banner--delay-2,
  .about-visual.is-in .about-banner--delay-3,
  .vita-stamps.is-in .about-banner--delay-1,
  .vita-stamps.is-in .about-banner--delay-2,
  .vita-stamps.is-in .about-banner--delay-3,
  .brand-timeline.is-in::before,
  .vita-timeline.is-in::before {
    animation: none;
  }

  .vita-card:hover {
    transform: none;
  }
}

/* —— Vita (personal page) —— */
.vita-hero .about-hero__glow,
.vita-hero__glow {
  background:
    radial-gradient(ellipse 50% 65% at 12% 35%, rgba(54, 244, 242, 0.16), transparent 60%),
    radial-gradient(ellipse 48% 55% at 92% 15%, rgba(255, 155, 36, 0.11), transparent 58%),
    radial-gradient(ellipse 42% 50% at 68% 95%, rgba(255, 63, 145, 0.09), transparent 55%);
}

.vita-intro-block {
  padding-top: 0.25rem;
}

.vita-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.75fr);
  gap: 1.75rem;
  align-items: stretch;
}

.vita-intro {
  max-width: none;
  padding: 1.75rem 1.65rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(54, 244, 242, 0.16);
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(54, 244, 242, 0.1), transparent 55%),
    var(--surface-mid);
}

.vita-intro .about-h2 {
  margin-bottom: 1rem;
}

.vita-stamps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 155, 36, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 155, 36, 0.1), rgba(6, 10, 13, 0.55)),
    linear-gradient(160deg, #2a2418 0%, var(--dark2) 55%, #121418 100%);
  min-height: 280px;
}

.vita-stamps__smoke {
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 38%, rgba(54, 244, 242, 0.16), transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(255, 155, 36, 0.14), transparent 45%);
  animation: about-smoke 10s ease-in-out infinite alternate;
}

.vita-stamps__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  height: 100%;
  min-height: 280px;
  padding: 2rem 1.5rem;
}

.vita-stamps .storefront-banner {
  opacity: 0;
  transform: translateX(-12px);
}

.vita-stamps.is-in .about-banner--delay-1,
.vita-stamps.is-in .about-banner--delay-2,
.vita-stamps.is-in .about-banner--delay-3 {
  animation: about-banner-in 0.7s var(--ease) both;
}

.vita-stamps.is-in .about-banner--delay-2 { animation-delay: 0.12s; }
.vita-stamps.is-in .about-banner--delay-3 { animation-delay: 0.24s; }

.vita-stamps__caption {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 246, 232, 0.55);
}

.vita-section {
  padding-top: 0.5rem;
}

.vita-years {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 2rem;
}

.vita-years a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 246, 232, 0.12);
  background: rgba(255, 246, 232, 0.04);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: rgba(255, 246, 232, 0.75);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.vita-years a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(54, 244, 242, 0.08);
  transform: translateY(-1px);
}

.vita-years a[href="#20wines"]:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 155, 36, 0.1);
}

.vita-years a[href="#asm"]:hover,
.vita-years a[href="#heute"]:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 63, 145, 0.1);
}

.vita-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  position: relative;
}

.vita-timeline::before {
  content: "";
  position: absolute;
  left: 4.75rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--cyan),
    var(--pink) 35%,
    var(--orange) 65%,
    rgba(255, 246, 232, 0.2)
  );
  opacity: 0.55;
  transform-origin: top center;
}

.vita-timeline.is-in::before {
  animation: about-line-draw-y 1.2s var(--ease) both;
}

.vita-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 0 0 1.85rem;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.vita-item:nth-child(even) time {
  color: var(--pink);
}

.vita-item:nth-child(3n) time {
  color: var(--orange);
}

.vita-item time {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--cyan);
  text-align: right;
  padding-top: 0.35rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.vita-item::after {
  content: "";
  position: absolute;
  left: 4.35rem;
  top: 0.7rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--dark2);
  border: 2px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  z-index: 1;
}

.vita-item:nth-child(even)::after {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.vita-item:nth-child(3n)::after {
  border-color: var(--orange);
  box-shadow: var(--glow-orange);
}

.vita-item--accent time {
  color: var(--orange) !important;
  text-shadow: var(--glow-orange);
}

.vita-item--accent::after {
  border-color: var(--orange) !important;
  box-shadow: var(--glow-orange) !important;
}

.vita-item--pink time {
  color: var(--pink) !important;
  text-shadow: var(--glow-pink);
}

.vita-item--pink::after {
  border-color: var(--pink) !important;
  box-shadow: var(--glow-pink) !important;
}

.vita-item--now time {
  color: var(--pink) !important;
  text-shadow: var(--glow-pink);
}

.vita-item--now::after {
  border-color: var(--pink) !important;
  box-shadow: var(--glow-pink) !important;
}

.vita-timeline.is-in .vita-item--now::after {
  animation: about-dot-pulse 2.4s ease-in-out infinite;
}

.vita-card {
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-mid);
  border: 1px solid rgba(255, 246, 232, 0.08);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.vita-card:hover {
  border-color: rgba(54, 244, 242, 0.22);
  transform: translateY(-2px);
}

.vita-card--accent {
  border-color: rgba(255, 155, 36, 0.35);
  background:
    linear-gradient(135deg, rgba(255, 155, 36, 0.1), transparent 55%),
    var(--surface-mid);
}

.vita-card--accent:hover {
  border-color: rgba(255, 155, 36, 0.5);
}

.vita-card--pink {
  border-color: rgba(255, 63, 145, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 63, 145, 0.1), transparent 55%),
    var(--surface-mid);
}

.vita-card--pink:hover {
  border-color: rgba(255, 63, 145, 0.48);
}

.vita-card--now {
  border-color: rgba(255, 63, 145, 0.35);
  background:
    linear-gradient(120deg, rgba(255, 63, 145, 0.12), rgba(54, 244, 242, 0.06)),
    var(--surface-mid);
}

.vita-card--now:hover {
  border-color: rgba(255, 63, 145, 0.5);
}

.vita-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.1;
}

.vita-role {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.vita-card--pink .vita-role {
  color: var(--pink);
}

.vita-card p {
  margin: 0 0 0.85rem;
  color: rgba(255, 246, 232, 0.8);
}

.vita-card p:last-child {
  margin-bottom: 0;
}

.vita-card ul {
  margin: 0.35rem 0 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  color: rgba(255, 246, 232, 0.78);
}

.vita-card li {
  margin-bottom: 0.35rem;
}

.vita-close {
  padding-top: 0.25rem;
}

.vita-close__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(255, 155, 36, 0.12), rgba(54, 244, 242, 0.06)),
    var(--surface-mid);
  border: 1px solid rgba(255, 155, 36, 0.3);
}

.vita-close__panel p {
  margin: 0.5rem 0 0;
  max-width: 48ch;
  color: rgba(255, 246, 232, 0.78);
}

.vita-close__panel .about-h2 {
  margin-bottom: 0;
}

.vita-close__panel .about-actions {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .brand-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
  }

  .brand-timeline::before {
    left: 0.35rem;
    right: auto;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      var(--cyan),
      var(--pink) 40%,
      var(--orange) 75%,
      rgba(255, 246, 232, 0.25)
    );
    transform-origin: top center;
  }

  .brand-timeline.is-in::before {
    animation-name: about-line-draw-y;
  }

  .brand-timeline__item {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 1rem;
    row-gap: 0.35rem;
    padding: 0 0 1.65rem 1.75rem;
  }

  .brand-timeline__item time {
    flex: 0 0 auto;
    min-height: auto;
    width: 5.5rem;
  }

  .brand-timeline__dot {
    position: absolute;
    left: 0;
    top: 0.35rem;
    margin-left: 0;
  }

  .brand-timeline__body {
    flex: 1 1 12rem;
    padding-top: 0;
  }
}

@keyframes about-line-draw-y {
  from { transform: scaleY(0); opacity: 0.2; }
  to { transform: scaleY(1); opacity: 0.55; }
}

@media (max-width: 900px) {
  .about-concept__grid {
    grid-template-columns: 1fr;
  }

  .vita-intro__grid {
    grid-template-columns: 1fr;
  }

  .vita-stamps__inner {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .vita-timeline::before {
    left: 0.55rem;
  }

  .vita-item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-left: 1.75rem;
  }

  .vita-item::after {
    left: 0.2rem;
  }

  .vita-item time {
    text-align: left;
    font-size: 1.35rem;
  }

  .about-teaser,
  .vita-close__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .vita-close__panel .about-actions {
    margin-top: 0.35rem;
  }
}

/* ——— Weinberater ——— */
.advisor__inner {
  max-width: 820px;
}

.advisor__progress {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.advisor__dot {
  width: 2.25rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 246, 232, 0.18);
}

.advisor__dot.is-active {
  background: var(--orange);
}

.advisor__dot.is-done {
  background: var(--cyan);
}

.advisor__step-title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  margin: 0 0 0.35rem;
  color: var(--cream);
}

.advisor__step-hint {
  margin: 0 0 1.25rem;
  opacity: 0.75;
}

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

.advisor__choice {
  text-align: left;
  border: 1px solid rgba(255, 246, 232, 0.14);
  background: rgba(10, 28, 32, 0.65);
  border-radius: var(--radius);
  padding: 1rem 1.05rem;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font: inherit;
}

.advisor__choice strong {
  font-weight: 700;
  font-size: 1.05rem;
}

.advisor__choice span {
  opacity: 0.7;
  font-size: 0.9rem;
  font-weight: 500;
}

.advisor__choice:hover {
  border-color: rgba(255, 155, 36, 0.55);
  transform: translateY(-1px);
}

.advisor__choice.is-selected {
  border-color: var(--orange);
  background: rgba(255, 155, 36, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 155, 36, 0.25);
}

.advisor__choice--pink.is-selected {
  border-color: var(--pink);
  background: rgba(255, 63, 145, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 63, 145, 0.25);
}

.advisor__choice--cyan.is-selected {
  border-color: var(--cyan);
  background: rgba(54, 244, 242, 0.1);
  box-shadow: 0 0 0 1px rgba(54, 244, 242, 0.22);
}

.advisor__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.advisor__freetext {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.1rem;
}

.advisor__freetext label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

.advisor__freetext-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 246, 232, 0.14);
  background: rgba(10, 28, 32, 0.65);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.advisor__freetext-input::placeholder {
  color: rgba(255, 246, 232, 0.4);
}

.advisor__freetext-input:hover {
  border-color: rgba(255, 155, 36, 0.45);
}

.advisor__freetext-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(255, 155, 36, 0.25);
}

.advisor-results__head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.advisor-results__title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0;
}

.advisor-results__summary {
  margin: 0;
  color: var(--orange);
  font-weight: 700;
}

.advisor-results__qty {
  margin: 0 0 0.5rem;
}

.advisor-results__empty {
  margin-top: 1rem;
  opacity: 0.85;
}

.advisor-why {
  margin: 0.35rem 0.85rem 0.9rem;
  font-size: 0.82rem;
  opacity: 0.72;
  line-height: 1.35;
}

.shop-advisor-hint {
  margin: 0.75rem 0 0;
}

.shop-advisor-hint a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.shop-advisor-hint a:hover {
  color: var(--pink);
}

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