/* ============================================================
   EMMENLAND PRIME BEEF – Main Stylesheet
   Corporate Design: Black / Gold / White only
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg:          #0A0A0A;
  --gold:        #C8A84B;
  --gold-light:  #F5E6B8;
  --gold-dark:   #8B6A20;
  --gold-subtle: #2A1F0A;
  --gold-border: rgba(200, 168, 75, 0.25);
  --white:       #FFFFFF;
  --text-muted:  rgba(245, 230, 184, 0.55);
  --font-serif:  'Playfair Display', serif;
  --font-sans:   'Inter', sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:    80px;
  --header-h-sm: 60px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Hilfsklasse für dynamisch ein-/ausgeblendete Elemente (API-Integration) */
.hidden { display: none !important; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  line-height: 1.15;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ---------- ORNAMENT DIVIDER ---------- */
.ornament-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  width: fit-content;
}
.ornament-line::before,
.ornament-line::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-line span {
  color: var(--gold);
  font-size: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 75, 0.35);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(200, 168, 75, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 75, 0.15);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--gold);
  color: #0A0A0A;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
  z-index: 1001;
}
.announcement-bar:hover { background: var(--gold-light); }
.announcement-bar a {
  color: #0A0A0A;
  font-weight: 700;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.announcement-bar { position: relative; z-index: 1001; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 2.5rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  transition: var(--transition);
}

.site-header.scrolled .header-inner {
  height: var(--header-h-sm);
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

/* Logo */
.logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1;
  flex-shrink: 0;
}
.logo span { display: block; font-size: 0.52rem; letter-spacing: 0.3em; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; margin-top: 2px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.1rem; }
.main-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.7rem;
  transition: color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }

/* Shop nav highlight */
.main-nav .nav-shop {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-left: 0.5rem;
  padding: 0.35rem 0.85rem;
}
.main-nav .nav-shop:hover { background: var(--gold); color: #0A0A0A; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold-light);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(139, 106, 32, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 30% 40%, rgba(200, 168, 75, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 55%, rgba(200, 168, 75, 0.05) 0%, transparent 55%),
    transparent;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(200, 168, 75, 0.04) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ---------- STATS BAR ---------- */
.stats-bar {
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  background: #0D0D0D;
  padding: 2.5rem 2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--gold-border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ---------- SECTIONS COMMON ---------- */
.section {
  padding: 6rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}
.section-centered { text-align: center; }
.section-centered .section-subtitle { margin: 0 auto; }

.section-bg {
  background: var(--gold-subtle);
  padding: 6rem 2rem;
}
.section-bg > .section {
  padding-top: 0;
  padding-bottom: 0;
}

/* ---------- SIGNATURE CUTS ---------- */
.cuts-section {
  padding: 6rem 2rem;
  text-align: center;
}
.cuts-section .section-title { margin-bottom: 0.5rem; }

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.cut-card {
  background: #1A1208;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
}
.cut-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(200, 168, 75, 0.15);
  transform: translateY(-4px);
}

.cut-img {
  height: 280px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(139, 106, 32, 0.4) 0%, rgba(42, 31, 10, 0.9) 70%),
    linear-gradient(180deg, #1A1208 0%, #2A1F0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Echtes Produktbild in der Card */
.cut-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.cut-card:hover .cut-card-image {
  transform: scale(1.05);
}
.cut-img::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(200, 168, 75, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cut-img-icon {
  font-size: 3rem;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.cut-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
}

.cut-body { padding: 1.5rem; }
.cut-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.cut-detail {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cut-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.cut-price s {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
  font-family: var(--font-sans);
}
.cut-card .btn { width: 100%; justify-content: center; }

/* ---------- BRAND STORY ---------- */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}

.story-img {
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 70% 60% at 40% 35%, rgba(139, 106, 32, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 60% 70%, rgba(200, 168, 75, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #1A1208 0%, #0D0D0D 60%, #1A1208 100%);
  border: 1px solid var(--gold-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-img::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 168, 75, 0.12);
  pointer-events: none;
  z-index: 2;
}

/* Zucht – Weiden im Emmental */
.zucht-weide-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.zucht-weide-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.zucht-weide-img:hover .zucht-weide-image {
  transform: scale(1.03);
}

/* Zucht – Stall im Winter */
.zucht-stall-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.zucht-stall-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.zucht-stall-img:hover .zucht-stall-image {
  transform: scale(1.03);
}

/* Philosophie – Extensive Weidehaltung */
.philosophie-weide-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.philosophie-weide-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.philosophie-weide-img:hover .philosophie-weide-image {
  transform: scale(1.03);
}

/* Echtes Brand-Story-Bild */
.brand-story-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.story-img:hover .brand-story-image {
  transform: scale(1.03);
}
.story-img-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 3;
}

.story-content h2 { margin-bottom: 1.5rem; }
.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}
.story-link {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  transition: gap var(--transition);
}
.story-link:hover { gap: 0.85rem; }

/* ---------- QUALITAETS-VERSPRECHEN ---------- */
.quality-section {
  background: var(--gold-subtle);
  padding: 6rem 2rem;
  text-align: center;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3.5rem auto 0;
}
.quality-pillar {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gold-border);
  background: rgba(10,10,10,0.6);
  transition: var(--transition);
}
.quality-pillar:hover {
  border-color: rgba(200, 168, 75, 0.5);
  background: rgba(10,10,10,0.9);
}
.quality-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.quality-pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.quality-pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- ANGEBOTE ---------- */
.offers-section {
  padding: 6rem 2rem;
  text-align: center;
}
.offers-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--gold-border);
  padding: 3rem;
  background: var(--gold-subtle);
}
.offers-title {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.offers-headline {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.offer-block {
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--gold-border);
  padding: 1.75rem;
  text-align: left;
}
.offer-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.offer-detail {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.offer-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.offer-price s { font-size: 0.95rem; color: var(--text-muted); font-family: var(--font-sans); margin-left: 0.4rem; }

/* Countdown */
.countdown {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.countdown span { color: var(--gold); font-size: 1.4rem; }
#countdown-timer {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  background: rgba(10,10,10,0.5);
  border: 1px solid var(--gold-border);
  padding: 0.75rem 1.5rem;
  margin-top: 0.75rem;
}
.timer-block { text-align: center; }
.timer-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.timer-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.timer-sep {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-border);
  line-height: 1;
  padding-bottom: 1rem;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--gold-border);
  padding: 4rem 2rem 0;
  background: #060606;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,168,75,0.05); }

.footer-nav h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-contact h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.footer-contact address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.footer-contact a { color: var(--gold); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- PAGE HERO (Unterseiten) ---------- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  padding-top: calc(var(--header-h) + 80px + 3rem);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(139, 106, 32, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(200, 168, 75, 0.07) 0%, transparent 55%),
    #0A0A0A;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, #0A0A0A 0%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero-eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--gold-light);
}
.page-hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.content-card {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 2rem;
  transition: var(--transition);
}
.content-card:hover {
  border-color: rgba(200,168,75,0.45);
}
.content-card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.content-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.text-block h2 { margin-bottom: 1.25rem; }
.text-block p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.img-placeholder {
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(139, 106, 32, 0.3) 0%, transparent 65%),
    linear-gradient(145deg, #1A1208 0%, #0D0D0D 100%);
  border: 1px solid var(--gold-border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- SHOP ---------- */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: rgba(200,168,75,0.45);
  box-shadow: 0 0 30px rgba(200,168,75,0.1);
  transform: translateY(-3px);
}

.product-img {
  height: 180px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 55%, rgba(139, 106, 32, 0.35) 0%, rgba(42, 31, 10, 0.95) 75%),
    #1A1208;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(200,168,75,0.3);
  position: relative;
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
}
.product-body { padding: 1.25rem; }
.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.product-price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.85rem;
}
.product-price-total {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  min-height: 1.2rem;
}
.weight-select {
  width: 100%;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}
.weight-select:hover,
.weight-select:focus {
  border-color: var(--gold);
  outline: none;
}
.product-card .btn { width: 100%; justify-content: center; }
.product-card .btn-sm { font-size: 0.68rem; }

/* ---------- CART DRAWER ---------- */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
}
.cart-overlay.is-open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;            /* versteckt ausserhalb des Bildschirms */
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: #0D0D0D;
  border-left: 1px solid var(--gold-border);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  overflow: hidden;
  box-shadow: -4px 0 30px rgba(0,0,0,0.6);
}
.cart-drawer.is-open { right: 0; }

.cart-header {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-close:hover { border-color: var(--gold); color: var(--gold); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb { background: var(--gold-border); }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  gap: 1rem;
  font-size: 0.9rem;
}
.cart-empty-icon { font-size: 3rem; opacity: 0.3; }

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
}
.cart-item-img {
  width: 56px;
  height: 56px;
  background: radial-gradient(ellipse at 50% 60%, rgba(139,106,32,0.4) 0%, #1A1208 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(200,168,75,0.4);
}
.cart-item-name {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.cart-item-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.cart-item-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
}
.cart-item-remove {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  cursor: pointer;
  text-align: right;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--gold); }

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gold-border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.cart-total-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-total-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}
.cart-footer .btn { width: 100%; justify-content: center; }
.cart-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}

/* Cart toggle in nav */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  padding: 0.4rem 0.7rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-cart:hover { color: var(--gold); }

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: rgba(200,168,75,0.45); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  background:
    radial-gradient(ellipse 60% 70% at 45% 50%, rgba(139,106,32,0.35) 0%, rgba(42,31,10,0.9) 70%),
    #1A1208;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(200,168,75,0.25);
}
.blog-card-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.blog-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---------- TEAM / UBER UNS ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  border: 1px solid var(--gold-border);
  overflow: hidden;
  background: var(--gold-subtle);
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(200,168,75,0.45); }
.team-img {
  height: 260px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 40%, rgba(139,106,32,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #1A1208 0%, #0D0D0D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(200,168,75,0.2);
}
.team-body { padding: 1.5rem; }
.team-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- B2B ---------- */
.b2b-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.b2b-tier {
  border: 1px solid var(--gold-border);
  padding: 2.5rem 2rem;
  background: var(--gold-subtle);
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.b2b-tier.featured {
  border-color: var(--gold);
  background: rgba(42,31,10,0.95);
}
.b2b-tier.featured::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 1rem;
}
.tier-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.tier-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.tier-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  text-align: left;
}
.tier-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.tier-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.b2b-tier .btn { width: 100%; justify-content: center; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1280px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .cuts-grid { grid-template-columns: 1fr 1fr; }
  .brand-story { grid-template-columns: 1fr; gap: 3rem; }
  .story-img { aspect-ratio: 16/7; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gold-border); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--gold-border); }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-tiers { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header-inner { padding: 0 1.25rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cuts-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .quality-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .offers-wrap { padding: 2rem 1.25rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .page-hero { padding-top: calc(var(--header-h) + 60px + 2rem); }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   LOGO BACKDROP – fixiertes Hintergrundlogo
   ============================================================ */
/* ── Logo Backdrop: nur Desktop ── */
.logo-backdrop-wrapper {
  display: none; /* Mobile: versteckt by default */
}

@media (min-width: 769px) {
  .logo-backdrop-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .logo-backdrop {
    width: auto;
    height: auto;
    max-width: 78vw;
    max-height: 78vh;
    object-fit: contain;
    opacity: 0.18;
    mix-blend-mode: luminosity;
    transition: opacity 0.3s ease;
    display: block;
  }
}

/* Alle Sektionen ziehen über das Logo (z-index 1) und sind halbtransparent */
.hero,
.stats-bar,
.cuts-section,
.brand-story,
.quality-section,
.offers-section,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Hero: transparent, Logo voll sichtbar */
.hero { background: transparent; }

/* Übrige Sektionen: halbtransparenter schwarzer Schleier */
.stats-bar       { background: rgba(10, 10, 10, 0.88); }
.cuts-section    { background: rgba(10, 10, 10, 0.90); }
.brand-story     { background: rgba(10, 10, 10, 0.85); }
.quality-section { background: rgba(10, 10, 10, 0.88); }
.offers-section  { background: rgba(10, 10, 10, 0.90); }
.site-footer     { background: rgba(5, 5, 5, 0.97); }

/* Header-Logo als Bild */
.header-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition);
}
.site-header.scrolled .header-logo-img { height: 44px; }

/* Header über allem, Announcement Bar zuoberst */
.site-header { z-index: 1000; }
.site-header .header-inner { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); }
.announcement-bar {
  z-index: 1001;
  background: #C8A84B;
  color: #000;
}

/* ── Hero: Logo als Background auf Mobile ── */
@media (max-width: 768px) {
  /* Hero auf Mobile: kein Logo-Hintergrund (Logo ist im Header),
     stattdessen dezente goldene Lichtstimmung – klar lesbar. */
  .hero {
    position: relative;
    background-color: #0A0A0A;
    background-image:
      radial-gradient(ellipse 90% 50% at 50% 42%, rgba(139, 106, 32, 0.22) 0%, transparent 60%),
      radial-gradient(ellipse 70% 40% at 50% 70%, rgba(200, 168, 75, 0.08) 0%, transparent 55%);
    background-repeat: no-repeat;
    min-height: 100svh;
    /* Hero ist row-Flex: vertikal oben ausrichten via align-items,
       horizontale Zentrierung (justify-content: center) beibehalten,
       damit die seitlichen Abstaende gleich bleiben. */
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 3rem;
  }

  .hero::after { content: none; }

  .hero-bg { display: none; }

  /* Logo-Backdrop auf Mobile kompromisslos ausblenden */
  .logo-backdrop-wrapper,
  .logo-backdrop {
    display: none !important;
  }
  .hero {
    background-image:
      radial-gradient(ellipse 90% 50% at 50% 42%, rgba(139, 106, 32, 0.22) 0%, transparent 60%),
      radial-gradient(ellipse 70% 40% at 50% 70%, rgba(200, 168, 75, 0.08) 0%, transparent 55%) !important;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }
  /* scroll-indicator bleibt absolut positioniert (kein Flex-Item!),
     sonst wird hero-content aus der horizontalen Mitte gedrueckt */
  .scroll-indicator {
    z-index: 1;
  }
}

/* ── Sicherstellen dass aller Content über dem Backdrop liegt ── */
/* Nur Fluss-Elemente bekommen position:relative; fixierte Elemente
   (Header, Mobile-Nav, Cart) behalten ihr eigenes positioning. */
.announcement-bar,
section,
footer {
  position: relative;
  z-index: 1;
}

/* Fixierte Elemente: nur z-index, position bleibt unberührt */
.announcement-bar { z-index: 1001; }
.site-header { z-index: 1000; }
.mobile-nav { z-index: 999; }
.cart-drawer { z-index: 2001; }
.cart-overlay { z-index: 2000; }

/* ============================================================
   FULLBLOOD WAGYU – exklusive Sektion (Gold + subtiles Dunkelrot)
   ============================================================ */
.wagyu-section {
  position: relative;
  border: 1px solid var(--gold);
  background:
    radial-gradient(ellipse 70% 80% at 30% 40%, rgba(139, 0, 0, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(139, 0, 0, 0.18) 0%, transparent 55%),
    var(--gold-subtle);
  padding: 4rem 3rem;
  margin-bottom: 5rem;
  overflow: hidden;
}

.wagyu-badge {
  display: inline-block;
  border: 1px solid #C8A84B;
  color: #C8A84B;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.wagyu-section .section-title { margin-bottom: 0.5rem; }
.wagyu-subline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.wagyu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.wagyu-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

/* Bild-Placeholder mit COMING SOON Wasserzeichen */
.wagyu-img {
  position: relative;
  aspect-ratio: 4/5;
  background:
    radial-gradient(ellipse 60% 70% at 50% 45%, rgba(139, 0, 0, 0.35) 0%, transparent 60%),
    linear-gradient(160deg, #1A0808 0%, #0D0D0D 60%, #1A1208 100%);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wagyu-img-icon { font-size: 4rem; opacity: 0.4; }
.wagyu-img .coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  opacity: 0.15;
  font-size: 60px;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C8A84B;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

/* Echte Rassen-Bilder (Aberdeen Angus, Holstein, Wagyu) */
.rassen-img {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
}
.rassen-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.rassen-img:hover .rassen-image,
.wagyu-img:hover .rassen-image {
  transform: scale(1.03);
}

/* Info-Box */
.wagyu-info {
  margin-top: 2rem;
  border: 1px solid var(--gold);
  background: rgba(10, 10, 10, 0.5);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}
.wagyu-info strong { color: var(--gold); }

/* Vormerk-Formular (Wagyu) */
.wagyu-notify {
  display: flex;
  max-width: 440px;
  gap: 0;
  margin-top: 1.75rem;
}
.wagyu-notify input {
  flex: 1;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--gold-border);
  border-right: none;
  color: var(--gold-light);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
}
.wagyu-notify input:focus { border-color: var(--gold); }
.wagyu-notify .btn { white-space: nowrap; border: 1px solid var(--gold); }

@media (max-width: 1024px) {
  .wagyu-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wagyu-img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  .wagyu-section { padding: 2.5rem 1.5rem; }
  .wagyu-img .coming-soon { font-size: 40px; }
  .wagyu-notify { flex-direction: column; }
  .wagyu-notify input { border-right: 1px solid var(--gold-border); margin-bottom: 0.75rem; }
}

/* ============================================================
   MOBILE OPTIMIERUNGEN (umfassend)
   ============================================================ */

/* Zubereitungstabelle: horizontal scrollbar als Fallback */
.zubereitungs-tabelle {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Mobile Card-Ansicht standardmaessig versteckt (Desktop) */
.zubereitungs-mobile-cards { display: none; }
.zub-card {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.zub-cut {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.zub-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-top: 1px solid var(--gold-border);
  font-size: 0.85rem;
}
.zub-row span:first-child {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.zub-row span:last-child {
  color: var(--text-muted);
  text-align: right;
}

@media (min-width: 769px) {
  .zubereitungs-mobile-cards { display: none; }
}

@media (max-width: 768px) {
  /* Kein horizontales Overflow */
  body, html {
    overflow-x: hidden;
    width: 100%;
  }

  /* Sections volle Breite, sauberer Innenabstand */
  section, .section {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  /* Bilder nie breiter als Viewport – aber Header-Logo ausnehmen,
     da es eine feste Hoehe braucht (sonst native Riesengroesse). */
  img:not(.header-logo-img) {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Header-Logo auf Mobile klein und mit fester Hoehe halten */
  .header-logo-img {
    height: 44px !important;
    width: auto !important;
    max-width: 70vw !important;
  }

  /* Generische zweispaltige Layouts -> einspaltig */
  .two-col, .split, .grid-2,
  [class*="col-2"], [class*="two-column"],
  .content-grid-2, .content-grid-3 {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }

  /* Qualitaet / Feature / Pillar Grids -> einspaltig stapeln */
  .quality-grid,
  .feature-grid,
  .features-grid,
  .pillar-grid,
  [class*="grid-2"],
  [class*="grid-cols-2"] {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }
  .quality-grid > *,
  .feature-grid > *,
  .features-grid > *,
  .pillar-grid > * {
    width: 100% !important;
    margin-right: 0 !important;
  }

  /* Brand Story zweispaltig -> einspaltig */
  .brand-story, .brand-story-grid {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
  .brand-story-image {
    min-height: 300px !important;
    width: 100% !important;
  }

  /* Zubereitung: Tabelle ausblenden, Cards zeigen */
  .zubereitungs-tabelle { display: none; }
  .zubereitungs-mobile-cards { display: block; }
}

/* ============================================================
   PREISDARSTELLUNG /100g (dynamisch via Admin-API)
   ============================================================ */
.preis-aktuell {
  display: block;
  font-size: 1.4rem;
  color: #F5E6B8;
  font-family: 'Playfair Display', serif;
}
.preis-original {
  display: block;
  font-size: 0.85rem;
  color: #8B6A20;
  margin-top: 0.25rem;
  text-decoration: line-through;
}

/* Dynamisches Produktbild im Shop (liegt über dem Emoji-Placeholder) */
.product-img { position: relative; }
.product-img .product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================================
   VORBESTELL-BANNER (Shop-Modus = vorbestellen)
   ============================================================ */
.vorbestell-banner {
  position: relative;
  z-index: 1001; /* wie die Announcement-Bar: nie hinter dem Header */
  background: #1A1208;
  border-top: 2px solid #C8A84B;
  border-bottom: 2px solid #C8A84B;
  padding: 1.25rem 2rem;
  text-align: center;
}
.vorbestell-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.vorbestell-icon { font-size: 1.6rem; line-height: 1; }
.vorbestell-info strong {
  color: #F5E6B8;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}
.vorbestell-info p {
  color: #C8A84B;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}
.lieferzeitraum strong { color: #F5E6B8; display: inline; }
.btn-vorbestellen {
  background: transparent !important;
  border: 1px solid #C8A84B !important;
  color: #C8A84B !important;
}
.btn-vorbestellen:hover {
  background: #C8A84B !important;
  color: #000 !important;
}

/* ============================================================
   WAGYU VORMERK-FORMULAR
   ============================================================ */
.wagyu-vormerken-formular {
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid #C8A84B;
  padding: 2rem;
  margin-top: 2rem;
  max-width: 500px;
}
.wagyu-vormerken-formular h3 {
  font-family: 'Playfair Display', serif;
  color: #F5E6B8;
  margin-bottom: 0.5rem;
}
.wagyu-vormerken-formular > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.wagyu-erfolg-meldung {
  color: #C8A84B;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  padding: 1rem;
  border: 1px solid #C8A84B;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-input {
  width: 100%;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 0.7rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-row .form-input { margin-bottom: 0; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   DYNAMISCHER SHOP – Grid & Card-Elemente
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .shop-grid { grid-template-columns: 1fr; } }

.shop-grid .cut-card { display: flex; flex-direction: column; }
.shop-grid .cut-body { display: flex; flex-direction: column; flex: 1; }

.cut-card-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1A1208, #2A1F0A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(200,168,75,0.3);
}
.cut-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}
.cut-reifezeit {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.cut-preis { margin-bottom: 0.5rem; }
.gewicht-info { margin-bottom: 0.75rem; }
.paket-groesse { font-size: 0.78rem; color: var(--text-muted); }

.bestand-warnung { color: #C8A84B; font-size: 0.8rem; margin: 0.5rem 0; }
.bestand-warnung.ausverkauft { color: #888; }

.btn-kaufen { width: 100%; justify-content: center; margin-top: auto; }
.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent !important;
  border: 1px solid #555 !important;
  color: #555 !important;
}
.btn-disabled:hover { transform: none; box-shadow: none; }

.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: #C8A84B;
}

/* ============================================================
   WAGYU COMING-SOON SEKTION (Shop, vollbreit)
   ============================================================ */
.wagyu-coming-soon {
  padding: 5rem 0;
  background: rgba(139, 0, 0, 0.08);
  border-top: 1px solid #C8A84B;
  margin-top: 4rem;
}
.wagyu-coming-soon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.wagyu-coming-soon-text h2 {
  font-family: 'Playfair Display', serif;
  color: #F5E6B8;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.wagyu-coming-soon-text p {
  color: var(--text-muted);
  line-height: 1.7;
}
/* Formular in der Coming-Soon-Sektion volle Spaltenbreite */
.wagyu-coming-soon .wagyu-vormerken-formular {
  max-width: none;
  margin-top: 0;
}
@media (max-width: 768px) {
  .wagyu-coming-soon-inner { grid-template-columns: 1fr; gap: 2rem; }
}
