/* ==========================================================================
   Fanclub Trinkpause – Fanshop Stylesheet
   Farben gemaess offiziellem Farbcode-Dokument des Fanclubs:
   Rot #ed1c24 / #dd1a21, Anthrazit #3a3a3c, Schwarz, Weiss
   ========================================================================== */

@font-face {
  font-family: "Serpentine";
  src: url("../fonts/SerpentineD-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --red: #ed1c24;
  --red-dark: #dd1a21;
  --anthracite: #3a3a3c;
  --anthracite-light: #4c4c4f;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f6f5f4;
  --grey-line: #e4e2e0;
  --text-muted: #706f70;

  --font-display: "Serpentine", "Montserrat", "Arial Black", sans-serif;
  --font-heavy: "Montserrat", "Arial", sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-strong: 0 20px 50px rgba(0,0,0,0.25);
  --header-h: 76px;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-heavy);
  letter-spacing: 0.01em;
  margin: 0 0 .4em;
  color: var(--black);
}
p { line-height: 1.6; margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(237,28,36,0.35);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(237,28,36,0.45);
}
.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-block { width: 100%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-line);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform var(--transition);
  background: #ffffff;
  border-radius: 50%;
  padding: 1px;
  box-sizing: border-box;
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: 0.02em;
}
.brand-sub { font-size: 0.68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

.main-nav {
  display: flex;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--anthracite);
  position: relative;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { background: var(--off-white); color: var(--red); }
.nav-link.active { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; border-radius: 50%;
  color: var(--anthracite);
  transition: background var(--transition), color var(--transition);
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { background: var(--off-white); color: var(--red); }

/* ---------- Bereiche-Menü für Vorstand/Admin (nur eingeblendet nach Login-Prüfung) ---------- */
.staff-menu-wrap { position: relative; }
.staff-menu-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-strong);
  min-width: 190px;
  padding: 8px;
  z-index: 200;
}
.staff-menu-dropdown.open { display: flex; }
.staff-menu-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  padding: 6px 10px 4px;
}
.staff-menu-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--anthracite);
  text-decoration: none;
}
.staff-menu-dropdown a:hover { background: var(--off-white); color: var(--red); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform 260ms cubic-bezier(.34,1.56,.64,1);
}
.cart-count.show { transform: scale(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span {
  width: 20px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 150; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 100px;
  background: radial-gradient(circle at 20% 20%, #4a4a4d 0%, var(--anthracite) 45%, #1b1b1c 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}
.glow-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.glow-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--red-dark) 0%, transparent 70%);
  bottom: -140px; left: -100px;
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.08); }
}
.hero-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 40px);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-logo {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
  animation: pop-in 900ms cubic-bezier(.34,1.56,.64,1) 100ms both;
  background: #ffffff;
  border-radius: 50%;
  padding: 1.5px;
  box-sizing: border-box;
  object-fit: contain;
}
@keyframes pop-in {
  0% { transform: scale(0.4) rotate(-15deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.hero-eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-title span { color: var(--red); }
.hero-text {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 34px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  z-index: 1;
}
.scroll-hint span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease infinite;
}
@keyframes scroll-dot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section { padding: 90px 24px; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.section-head h2::after {
  content: "";
  display: block;
  width: 56px; height: 4px;
  background: var(--red);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ---------- Process ---------- */
.process { padding-top: 60px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.step-number {
  width: 48px; height: 48px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 1.2rem;
}
.process-step h3 { font-size: 1.1rem; }
.process-step p { margin-bottom: 0; font-size: 0.92rem; }

/* ---------- Shop / Filter ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--grey-line);
  background: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--anthracite);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active {
  background: var(--anthracite);
  border-color: var(--anthracite);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition), box-shadow var(--transition), opacity 420ms ease;
}
.product-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--off-white);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 500ms cubic-bezier(.2,.7,.3,1);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.product-info { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-name { font-size: 1.02rem; margin: 0; color: var(--black); font-family: var(--font-heavy); }
.product-desc { font-size: 0.85rem; margin: 0; flex: 1; }
.product-price {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--red);
}
.product-price small { color: var(--text-muted); font-size: 0.7rem; font-weight: 600; margin-left: 4px; }

.product-options { display: flex; flex-direction: column; gap: 10px; }
.size-select {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.size-btn {
  min-width: 36px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1.5px solid var(--grey-line);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
}
.size-btn:hover { border-color: var(--red); }
.size-btn.selected { background: var(--anthracite); border-color: var(--anthracite); color: var(--white); }

.qty-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qty-stepper {
  display: flex; align-items: center;
  border: 1.5px solid var(--grey-line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 32px; height: 32px;
  border: none; background: var(--off-white);
  font-size: 1rem; font-weight: 700; color: var(--anthracite);
  transition: background var(--transition);
}
.qty-stepper button:hover { background: var(--grey-line); }
.qty-stepper span { width: 30px; text-align: center; font-weight: 700; font-size: 0.9rem; }

.add-to-cart {
  border: none;
  background: var(--anthracite);
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform 160ms ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.add-to-cart:hover { background: var(--red); }
.add-to-cart.added { background: #1e8e3e; }
.add-to-cart.added::after { content: "✓ Hinzugefügt"; }
.add-to-cart .default-label { display: inline; }
.add-to-cart.added .default-label { display: none; }

/* ---------- Info / Kontakt ---------- */
.info-cta-inner {
  background: linear-gradient(135deg, var(--anthracite), #232324);
  border-radius: 24px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  color: var(--white);
}
.info-block h2 { color: var(--white); }
.info-block h2::after { margin: 16px 0 0; }
.info-block p { color: rgba(255,255,255,0.75); }
.info-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.info-list strong { color: var(--white); }
.info-list a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 2px; }
.info-list a:hover { color: var(--white); }
.info-note {
  background: rgba(237,28,36,0.14);
  border: 1px solid rgba(237,28,36,0.4);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.note-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-heavy);
  display: flex; align-items: center; justify-content: center;
}
.info-note p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 60px 24px 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-logo { width: 48px; height: 48px; background: #ffffff; border-radius: 50%; padding: 1px; box-sizing: border-box; object-fit: contain; }
.footer-brand p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-links h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-links a { display: block; padding: 6px 0; font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 20px 0; font-size: 0.78rem; text-align: center; color: rgba(255,255,255,0.45); }

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 400;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.2,.7,.3,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-line);
}
.cart-header h3 { margin: 0; font-family: var(--font-heavy); }
.cart-body { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { text-align: center; margin-top: 60px; color: var(--text-muted); }
.cart-items { display: flex; flex-direction: column; gap: 14px; padding: 14px 0; }
.cart-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-line);
  animation: item-in 320ms ease;
}
@keyframes item-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart-item img { width: 60px; height: 60px; border-radius: 10px; object-fit: cover; background: var(--off-white); }
.cart-item-name { font-weight: 700; font-size: 0.88rem; margin-bottom: 2px; }
.cart-item-meta { font-size: 0.76rem; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-controls button {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--grey-line); background: var(--white);
  font-weight: 700; font-size: 0.8rem;
}
.cart-item-price { font-weight: 700; font-size: 0.88rem; text-align: right; white-space: nowrap; }
.cart-item-remove {
  border: none; background: transparent; color: var(--text-muted);
  font-size: 0.72rem; text-decoration: underline; margin-top: 4px;
}
.cart-item-remove:hover { color: var(--red); }

.cart-footer { padding: 20px 24px 26px; border-top: 1px solid var(--grey-line); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-heavy); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 8px;
}
.cart-hint { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 16px; }

/* ==========================================================================
   MODAL / CHECKOUT
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: 20px;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 320ms cubic-bezier(.2,.7,.3,1);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-panel { padding: 26px 28px 30px; max-height: 88vh; overflow-y: auto; }
.confirm-panel { display: none; text-align: center; }
.modal.show-confirm .modal-panel#panelForm { display: none; }
.modal.show-confirm .confirm-panel { display: block; }

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.modal-header h3 { margin: 0; font-family: var(--font-heavy); }
.order-summary {
  background: var(--off-white);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.84rem;
  margin-bottom: 18px;
  max-height: 160px;
  overflow-y: auto;
}
.order-summary-row { display: flex; justify-content: space-between; padding: 4px 0; }
.order-summary-total { display: flex; justify-content: space-between; font-weight: 700; padding-top: 8px; margin-top: 6px; border-top: 1px dashed var(--grey-line); }

#checkoutForm { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#checkoutForm label { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--anthracite); }
#checkoutForm input, #checkoutForm textarea {
  font-family: inherit;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--grey-line);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
#checkoutForm input:focus, #checkoutForm textarea:focus { outline: none; border-color: var(--red); }
.checkbox-row { flex-direction: row !important; align-items: flex-start; gap: 10px !important; font-weight: 400 !important; font-size: 0.8rem !important; color: var(--text-muted) !important; }
.checkbox-row input { margin-top: 3px; flex-shrink: 0; }

.confirm-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: #1e8e3e;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  animation: pop-in 500ms cubic-bezier(.34,1.56,.64,1);
}
.confirm-text { font-size: 0.9rem; }
#orderNumber { color: var(--red); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; }
  .info-cta-inner { grid-template-columns: 1fr; padding: 34px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 20px 20px;
    gap: 2px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    border-bottom: 1px solid var(--grey-line);
    z-index: 190;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { width: 100%; padding: 12px 14px; }
  .hamburger { display: flex; }
  .brand-sub { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 64px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ==========================================================================
   ERGÄNZUNG: Demo-Modus-Banner, Admin-Link, Lagerbestand im Shop
   ========================================================================== */
.mode-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: #fff3cd;
  color: #7a5b00;
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-bottom: 1px solid #f0d98c;
}
.mode-banner code {
  background: rgba(0,0,0,0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.78rem;
}
body:has(.mode-banner:not([hidden])) .site-header { top: 34px; }
body:has(.mode-banner:not([hidden])) .hero { padding-top: calc(var(--header-h) + 34px + 40px); }

.footer-bottom .admin-link { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-bottom .admin-link:hover { color: var(--red); }

.stock-note { font-size: 0.76rem; color: var(--text-muted); }
.bulk-hint {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(237,28,36,0.1);
  border-radius: 999px;
  padding: 2px 9px;
  margin: 2px 0 4px;
}
.compare-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 2px;
}
.stock-note.low { color: var(--red); font-weight: 600; }
.stock-note.out { color: var(--red); font-weight: 700; }
.stock-note.backorder { color: #8A5A00; font-weight: 600; }

.product-card.sold-out .product-media img { filter: grayscale(0.6); opacity: 0.6; }
.product-card.sold-out .add-to-cart { background: #b7b6b6; cursor: not-allowed; }
.product-card.sold-out .add-to-cart:hover { background: #b7b6b6; }
.size-btn.disabled, .size-btn:disabled {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}
