:root{
  --bg:#12090c;           /* Grunddunkel, warm */
  --bg2:#1f1510;
  --gold:#d4af37;
  --text:#f9f3ea;         /* sehr gut lesbar */
  --muted:#d1c6b7;
  --accent:#ffd66b;
  --card:#1b1219;         /* warmes Dunkel für Boxen */
  --ok:#25d366;
  --danger:#ef4444;
}

/* =====================================
   GLOBALER HINTERGRUND – GOLDENE WAVE
   ===================================== */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  min-height:100vh;
  background-color:var(--bg);

  /* 1. Gold-Spot links oben
     2. Diagonale „Wave“ von links unten nach rechts oben
     3. Rechts warmes Braun, nicht tot-schwarz */
  background:
    radial-gradient(circle at 18% 22%,
      rgba(212,175,55,0.80) 0%,
      rgba(212,175,55,0.48) 24%,
      rgba(72,48,27,0.96) 54%,
      rgba(40,26,18,0.98) 76%,
      rgba(26,18,14,1) 92%,
      #0a060b 100%),
    linear-gradient(115deg,
      rgba(0,0,0,0.00) 0%,
      rgba(240,210,130,0.04) 14%,
      rgba(240,210,130,0.16) 30%,
      rgba(185,135,60,0.28) 46%,
      rgba(120,80,40,0.32) 60%,
      rgba(70,44,26,0.26) 72%,
      rgba(32,20,15,0.90) 88%,
      rgba(16,10,11,1) 100%),
    radial-gradient(circle at 82% 80%,
      rgba(185,135,60,0.34) 0%,
      rgba(135,92,50,0.60) 26%,
      rgba(82,52,30,0.96) 56%,
      rgba(40,24,18,1) 82%,
      #0a060b 100%);
  background-attachment:fixed;

  font-family:"Playfair Display","Didot","Times New Roman",serif;
  color:var(--text);
  line-height:1.6;
}

img{max-width:100%;display:block;border-radius:12px}
a{color:var(--gold);text-decoration:none}
a:hover{opacity:.9}
.container{width:min(1100px,92%);margin:auto}

/* Überschriften generell hell */
h1,h2,h3,h4,h5,h6{
  color:#fdf7e3;
}

/* =====================================
   HEADER + MENÜ – GLAS-LOOK
   ===================================== */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
}

.site-header .navbar{
  background:linear-gradient(
      180deg,
      rgba(5,5,9,0.96) 0%,
      rgba(5,5,9,0.92) 45%,
      rgba(5,5,9,0.80) 100%
  );
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding-top:0;
  padding-bottom:0;
  box-shadow:0 10px 25px rgba(0,0,0,0.65);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.brand{
  font-family:"Playfair Display","Didot","Times New Roman",serif;
  font-weight:700;
  letter-spacing:.5px;
  color:#fff;
}

/* Logo */
.brand-logo{
  max-height:50px;
  width:auto;
  display:block;
}

/* Hauptmenü */
.navbar-nav.main-nav .nav-link{
  color:#e6decf;
  font-weight:600;
  margin-left:18px;
  padding:4px 0;
  position:relative;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
  letter-spacing:.04em;
}
.navbar-nav.main-nav .nav-link.active{
  color:var(--gold);
}
.navbar-nav.main-nav .nav-link.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  background:var(--gold);
  border-radius:999px;
}
.navbar-nav.main-nav .nav-link:hover{
  color:#fff;
}

/* Burger-Button (mobil) */
.navbar-toggler{
  border:none;
  color:#fff;
  font-size:24px;
  padding:0;
}
.navbar-toggler:focus{
  box-shadow:none;
}

/* rechter Block: Sprache, User, Warenkorb */
.header-right{
  display:flex;
  align-items:center;
  gap:0.75rem;
}

/* Header-Buttons */
.header-right .btn-outline-light{
  border-radius:999px;
  border-color:var(--gold);
  color:#fdf7e3;
  background:rgba(0,0,0,0.55);
  padding:4px 16px;
  font-size:13px;
  font-weight:600;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
.header-right .btn-outline-light:hover{
  background:var(--gold);
  color:#111;
}

/* Sprach-Dropdown */
.header-right .dropdown-toggle{
  border-radius:999px;
}

.dropdown-menu{
  background:#151923;
  border:1px solid rgba(255,255,255,.08);
  min-width:130px;
}
.dropdown-menu .dropdown-item{
  color:#f0e7d8;
  font-size:14px;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:hover{
  background:rgba(212,175,55,.15);
  color:var(--gold);
}

/* Warenkorb-Button */
.cart-link .btn-outline-light{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.cart-link .badge{
  margin-left:2px;
}

/* =====================================
   HERO / SECTIONS
   ===================================== */
.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding:60px 0;
}
.hero h1{
  font-family:"Playfair Display","Didot","Times New Roman",serif;
  font-size:46px;
  line-height:1.1;
  margin:0 0 14px;
  color:#fff;
}
.kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
}
.lead{
  color:var(--muted);
  font-size:18px;
}

/* Buttons allgemein */
.btn{
  border:1px solid var(--gold);
  padding:8px 14px;
  border-radius:999px;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
.btn-outline:hover{background:rgba(212,175,55,.08)}

/* =====================================
   BOXEN / KARTEN – GOLDENER SCHEIN
   ===================================== */

/* alle Content-Boxen */
.card,
.form-panel,
.checkout-box,
.shop-box,
.contact-box{
  background:
    radial-gradient(circle at 12% -8%,
      rgba(240,210,130,0.24) 0,
      rgba(240,210,130,0.07) 30%,
      transparent 60%),
    radial-gradient(circle at 120% 140%,
      rgba(0,0,0,0.90) 0,
      rgba(0,0,0,0.97) 60%),
    linear-gradient(150deg,
      #20141c 0%,
      #150e14 45%,
      #090507 100%);
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  padding:22px;
  box-shadow:0 16px 40px rgba(0,0,0,.80);
}

/* Schrift in Boxen hell */
.card,
.card *{
  color:#efe4d6;
}
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6{
  color:#fdf7e3;
}

/* Start-Seite Grids */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.section{
  padding:44px 0;
}
.section h2{
  font-family:"Playfair Display","Didot","Times New Roman",serif;
  font-weight:700;
  margin:0 0 14px;
  font-size:32px;
  color:#fff;
}
.muted{color:var(--muted)}

.feature{
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.bullet{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid var(--gold);
}
.badge{
  display:inline-block;
  background:rgba(212,175,55,.12);
  color:var(--gold);
  padding:4px 10px;
  border:1px solid var(--gold);
  border-radius:999px;
  font-size:12px;
}

/* Tabellen – Dark Theme, warm */
.table{
  width:100%;
  border-collapse:collapse;
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  border-radius:14px;
  background-color:var(--card);
  color:var(--text);
}
.table th,
.table td{
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:left;
}
.table th{
  background:#24181e;
  font-weight:700;
  color:#fdf7e3;
}
.table tbody tr:nth-child(even){
  background-color:#1c141a;
}

/* Produkt-Ansicht */
.product-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}
.price{
  font-size:28px;
  font-weight:700;
  color:var(--accent);
}
.cta{
  display:flex;
  gap:12px;
  margin-top:16px;
}
.btn-primary{
  background:var(--gold);
  border:1px solid var(--gold);
  color:#111;
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
}
.btn-primary:hover{filter:brightness(1.02)}

/* Footer */
.site-footer{
  border-top:1px solid rgba(255,255,255,.06);
  margin-top:60px;
  padding:40px 0;
  background:transparent;
}
.site-footer,
.site-footer *{
  color:#f7f0e6;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:20px;
}
.footer-grid h4{
  margin:0 0 10px;
  color:#fff;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}

/* Formulare */
.form{display:grid;gap:14px}
input,textarea,select{
  width:100%;
  padding:12px 14px;
  background:#05070c;
  color:#f5ece0;
  border:1px solid rgba(255,255,255,.20);
  border-radius:10px;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 1px rgba(212,175,55,.4);
}
label{
  font-weight:600;
  color:#f3ebdf;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
.small{font-size:13px;color:var(--muted)}
.notice{
  padding:12px 14px;
  border:1px dashed rgba(255,255,255,.25);
  border-radius:12px;
  background:#0b0f14;
}
::placeholder{
  color:rgba(230,220,210,0.7);
}

/* Rezept-Karten */
.recipe{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:flex-start;
}
.recipe-img{
  width:100px;
  height:100px;
  object-fit:cover;
  border-radius:12px;
}
.recipe-content{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:6px;
}
.recipe-content h3{
  margin:0;
  color:#fff;
}
.card.recipe{
  margin-bottom:26px;
}

hr.sep{
  border:none;
  border-top:1px solid rgba(255,255,255,.08);
  margin:28px 0;
}

/* Tabellen in Formularen / Warenkorb – Feinheiten */
.table .form-control,
.table input[type="number"] {
  background:#05070c !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.2) !important;
}
.table > :not(caption) > * > td,
.table > :not(caption) > * > th {
  box-shadow:none !important;
}

/* Ghost-/Outline-Buttons */
.btn-outline,
.btn-outline-secondary,
.btn-secondary {
  border-radius:999px;
  border:1px solid var(--gold);
  background:rgba(212,175,55,0.06);
  color:#fdf7e3;
  font-weight:600;
}
.btn-outline:hover,
.btn-outline-secondary:hover,
.btn-secondary:hover {
  background:var(--gold);
  color:#111;
}
.btn:disabled,
.btn.disabled {
  border-color:rgba(212,175,55,0.6);
  background:rgba(212,175,55,0.08);
  color:rgba(253,247,227,0.6);
  opacity:1;
}

/* Responsive */
@media (max-width:900px){
  .hero,
  .product-hero{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  nav a{margin-left:14px}
  .recipe{grid-template-columns:1fr}
  .brand-logo{max-height:40px;}
  .nav-wrap{padding:10px 0;}
  .navbar-nav.main-nav .nav-link{
    margin-left:0;
    padding:6px 0;
  }
}
