:root{
  --bg:#12090c;
  --bg2:#1f1510;
  --gold:#d4af37;
  --text:#f9f3ea;
  --muted:#d1c6b7;
  --accent:#ffd66b;
  --card:#1b1219;
  --ok:#25d366;
  --danger:#ef4444;
}

/* =====================================
   QR SECTION (Option B) – Startseite
   ===================================== */
.qr-section{
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}
.qr-box{
  width: min(720px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.22);
  background: rgba(0,0,0,.25);
  padding: 22px 18px;
  text-align: center;
}
.qr-kicker{
  color: var(--gold, #d4af37);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  opacity: .95;
}
.qr-image-wrap{ display:inline-block; }
.qr-image{
  width: 260px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(212,175,55,.28);
  border: 1px solid rgba(212,175,55,.25);
}
.qr-text{
  margin-top: 14px;
  color: var(--text, #f9f3ea);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  opacity: .95;
}

@media (max-width: 520px){
  .qr-image{ width: 220px; }
}

/* =====================================
   JOIN-US – Social QR Grid
   ===================================== */
.social-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.social-card{
  padding: 16px;
  border: 1px solid rgba(212,175,55,.18);
  background: rgba(0,0,0,.20);
}
.social-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.social-platform{
  font-weight: 700;
  letter-spacing: .5px;
}
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.30);
  background: rgba(0,0,0,.25);
}
.social-qr{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(212,175,55,.15);
}
.social-qr img{
  width: 210px;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(212,175,55,.22);
}
.social-url{
  margin-top: 12px;
  font-size: 13px;
  opacity: .85;
  word-break: break-all;
}

@media (max-width: 980px){
  .social-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .social-grid{ grid-template-columns: 1fr; }
  .social-qr img{ width: 240px; }
}

/* =====================================
   GLOBALER HINTERGRUND – WAVE-BILD
   ===================================== */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  min-height:100vh;
  background-color:var(--bg);
  background-image: url("/assets/img/bg-wave-gold.png");
  background-size:cover;
  background-repeat:no-repeat;
  background-position:center top;
  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}

h1,h2,h3,h4,h5,h6{color:#fdf7e3}

/* =====================================
   HEADER
   ===================================== */
.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{
  position:relative;
  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;
}
.brand-logo{max-height:50px;width:auto;display:block}

/* ✅ FIX: Menü nicht versetzt (Bootstrap Nav sauber zentrieren + kein Umbruch) */
.navbar-nav.main-nav{
  display:flex;
  align-items:center;
  margin:0;
  padding:0;
  gap:12px;              /* ersetzt margin-left pro Link */
  flex-wrap:nowrap;      /* ✅ verhindert Umbruch (z.B. "Über uns") */
}

/* ✅ FIX: Wenn Bootstrap-Collapse/Overlay zentriert wurde -> wieder links */
.navbar-collapse{
  justify-content:flex-start !important;
  text-align:left !important;
}

/* Fix für Bootstrap .navbar-nav Defaults (manche Seiten geben margin-top) */
.navbar-nav{
  margin-top:0 !important;
  margin-bottom:0 !important;
}

.navbar-nav.main-nav .nav-link{
  color:#e6decf;
  font-weight:600;
  margin-left:0;         /* ✅ weg, weil gap benutzt wird */
  padding:6px 0;         /* ✅ stabiler */
  line-height:1.1;       /* ✅ verhindert Baseline-Versatz */
  display:flex;          /* ✅ zentriert auch Icons/Dropdown-Caret */
  align-items:center;
  justify-content:flex-start; /* ✅ wichtig: Links nicht zentrieren */
  position:relative;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
  letter-spacing:.04em;
  white-space:nowrap;    /* ✅ verhindert Umbruch im Linktext */
}
.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}

.navbar-toggler{
  border:none;
  color:#fff;
  font-size:24px;
  padding:0;
}
.navbar-toggler:focus{box-shadow:none}

.header-right{
  display:flex;
  align-items:center;
  gap:0.75rem;
}
.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;
}
.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 im Header */
.cart-link .btn-outline-light{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.cart-link .badge{margin-left:2px}

/* =====================================
   ALERTS / MELDUNGEN (transparent wie früher)
   ===================================== */
.alert{
  border-radius:14px;
  padding:12px 14px;
  margin:14px 0;
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
}
.alert-danger{
  background:rgba(160, 0, 0, 0.22) !important;
  border-color:rgba(255, 80, 80, 0.35) !important;
  color:#ffecec !important;
}
.alert-success{
  background:rgba(0, 120, 60, 0.18) !important;
  border-color:rgba(37, 211, 102, 0.35) !important;
  color:#eafff0 !important;
}
.alert-warning{
  background:rgba(160, 110, 0, 0.18) !important;
  border-color:rgba(255, 214, 107, 0.35) !important;
  color:#fff7e6 !important;
}

/* =====================================
   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}

/* Basis-Button */
.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 / CARDS
   ===================================== */
.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);
}
.card,
.card *{color:#efe4d6}
.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6{color:#fdf7e3}

.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 (Warenkorb)
   ===================================== */
.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,
.table > :not(caption) > * > *{
  background-color:var(--card) !important;
  color:var(--text) !important;
  border-color:rgba(255,255,255,.08) !important;
}
.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}
.table-striped > tbody > tr:nth-of-type(odd),
.table-striped > tbody > tr:nth-of-type(even){
  background-color:var(--card) !important;
}
.bg-white,
.table .bg-white{
  background-color:var(--card) !important;
  color:var(--text) !important;
}

/* 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-Eingabefelder (Mengen) */
.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;
}

/* =====================================
   BUTTON-STYLES
   ===================================== */
.btn-outline,
.btn-outline-secondary,
.btn-secondary{
  border-radius:999px;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  font-weight:600;
  padding:8px 24px;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
.btn-outline:hover,
.btn-outline-secondary:hover,
.btn-secondary:hover{
  background:var(--gold);
  color:#111;
  border-color:var(--gold);
}

/* Form-Buttons ohne Bootstrap-Klasse */
button,
input[type="submit"],
input[type="button"],
input[type="reset"]{
  border-radius:999px;
  border:1px solid var(--gold);
  background:transparent;
  color:var(--gold);
  font-weight:600;
  padding:8px 24px;
  font-family:"Playfair Display","Didot","Times New Roman",serif;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover{
  background:var(--gold);
  color:#111;
  border-color:var(--gold);
}

/* Disabled */
.btn:disabled,
.btn.disabled,
button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled{
  border-color:rgba(212,175,55,0.6);
  background:rgba(212,175,55,0.18);
  color:rgba(253,247,227,0.7);
  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{position:relative;}
  #mainNav.navbar-collapse{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    margin:0;
    padding:16px 20px 18px;
    background:rgba(5,5,9,0.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.06);
    box-shadow:0 18px 40px rgba(0,0,0,.70);
  }
  #mainNav.navbar-collapse.collapse:not(.show){
    display:none;
  }

  .navbar-collapse{
    text-align:left !important;
    justify-content:flex-start !important;
    align-items:flex-start !important;
  }

  .navbar-nav.main-nav{
    gap:0;
    flex-wrap:wrap;
    width:100%;
    align-items:flex-start;
    justify-content:flex-start;
  }
  .navbar-nav.main-nav .nav-link{
    margin-left:0;
    padding:10px 0;
    white-space:normal;
    justify-content:flex-start;
    text-align:left;
  }

  .header-right{
    width:100%;
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:10px;
    margin-top:12px;
  }
}

/* Admin-Hintergrund mit Wellen (Savage Vodka) */
.bg-waves-admin {
    min-height: 100vh;
    background-color: #050711;
    background-image: url("/assets/img/bg-wave-gold.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}
.btn-back-admin{
    display: inline-block;
    margin-bottom: 25px;
    padding: 8px 18px;
    border: 1px solid #d4af37;
    border-radius: 999px;
    color: #d4af37;
    font-size: 14px;
    text-decoration: none;
    background: rgba(0,0,0,0.6);
    transition: all 0.2s ease;
}

.btn-back-admin:hover{
    background: #d4af37;
    color: #000;
}

/* =====================================
   DASHBOARD TILES (ACCOUNT + ADMIN)
   ===================================== */
.dash-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
  margin-top:14px;
}
.dash-tile{
  background: rgba(11,15,28,.78);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  padding: 18px 18px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  text-decoration:none;
  color: rgba(255,255,255,0.92);
  min-height: 92px;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.dash-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 16px 40px rgba(0,0,0,.48);
  color: rgba(255,255,255,0.96);
  text-decoration:none;
}
.dash-tile .dash-ico{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(212,175,55,.10);
  border: 1px solid rgba(212,175,55,.22);
  flex:0 0 46px;
  margin-top:2px;
}
.dash-tile .dash-ico svg{
  width:24px;
  height:24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}
.dash-tile .dash-title{
  font-weight: 800;
  font-size: 1.06rem;
  margin: 0 0 2px;
  letter-spacing: .01em;
  color: rgba(255,255,255,0.96);
}
.dash-tile .dash-desc{
  margin: 0;
  font-size: .92rem;
  color: rgba(255,255,255,.70);
  line-height: 1.35;
}
.dash-tile .dash-meta{
  margin-top: 8px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.dash-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .78rem;
  border: 1px solid rgba(212,175,55,.28);
  color: rgba(255,255,255,.82);
  background: rgba(0,0,0,.18);
}
.dash-pill.ok{
  border-color: rgba(37,211,102,.40);
  color: rgba(37,211,102,.95);
  background: rgba(37,211,102,.08);
}
.dash-pill.warn{
  border-color: rgba(239,68,68,.40);
  color: rgba(239,68,68,.95);
  background: rgba(239,68,68,.08);
}

.dash-tile.is-static{cursor:default;}
.dash-tile.is-static:hover{transform:none;border-color:rgba(255,255,255,.10);box-shadow:0 10px 30px rgba(0,0,0,.35);}

/* =====================================
   ADMIN QUICK TILES (Schnellzugriff)
   ===================================== */
.dash-grid--quick{margin:12px 0 18px}
.dash-tile--quick{padding:14px 14px; border-radius:16px}
.dash-tile--quick .dash-title{font-size:1.02rem}
.dash-tile--quick .dash-desc{font-size:.92rem}
.dash-tile.is-active{
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 10px 34px rgba(212,175,55,.12), 0 10px 30px rgba(0,0,0,.35);
}

/* ✅ FIX: Quick-Tiles dürfen NICHT rechts "kleben" */
.dash-grid--quick{
  position: relative !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 18px 0 26px !important;

  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 16px !important;

  justify-content: stretch !important;
  align-items: stretch !important;
}

.dash-grid--quick .dash-tile{
  width: 100% !important;
  max-width: none !important;
}

@media (max-width:900px){
  .dash-grid--quick{
    grid-template-columns: 1fr !important;
  }
}

/* Footer Legal Links – mittig + Abstand */
.footer-legal-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:16px;
  font-size:0.9rem;
}
.footer-legal-links a{
  text-decoration:none;
}
.footer-legal-links a:hover{
  text-decoration:underline;
}

/* =====================================
   ✅ Checkout Summary (2 Spalten, gleicher Look)
   ===================================== */
.resume-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:10px;
}
.resume-table{
  width:100%;
  border-collapse:collapse;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  overflow:hidden;
  background:rgba(0,0,0,.20);
}
.resume-table td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.resume-table tr:last-child td{border-bottom:none}
.resume-table td.value{
  text-align:right;
  font-weight:700;
  white-space:nowrap;
}
.resume-table tr.total td{
  background:rgba(212,175,55,.10);
}
@media (max-width:900px){
  .resume-grid{grid-template-columns:1fr}
}

/* =====================================
   FIX: Abstand zwischen Hauptmenü und rechter Kopf-Leiste (DE/FR/EN + User + Warenkorb)
   ===================================== */

/* Bootstrap macht .navbar-collapse im Desktop zu flex – wir geben Abstand zwischen den Blöcken */
@media (min-width: 992px){
  .site-header .navbar-collapse{
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;              /* ✅ Abstand zwischen UL (Menü) und header-right */
  }

  /* zusätzliche Sicherheit: Menü bekommt rechts etwas Luft */
  .site-header .navbar-nav.main-nav{
    margin-right: 18px !important;
  }

  /* falls es trotzdem knapp wirkt: rechter Block etwas nach links entkoppeln */
  .site-header .header-right{
    padding-left: 8px !important;
  }
}

/* Zahlungsarten – Container */
  margin-top: 24px;
}

  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  opacity: .95;
}

  display:flex;
  gap:22px;                /* mehr Luft */
  align-items:center;
  flex-wrap:wrap;
}

  background: transparent;
  border: none;
  padding: 0;
}

/* 🔥 HIER DIE ENTSCHEIDENDE ÄNDERUNG 🔥 */
  height: 90px;            /* ← deutlich größer */
  width: auto;
  max-width: 280px;
  display: block;
}

/* Vorkasse minimal kleiner wegen € + Text */
  height: 150px;
}

/* Mobile */
@media (max-width: 600px){
    height: 36px;
    max-width: 220px;
  }
    height: 32px;
  }
}
/* Optional: leichtes Hover – wirkt hochwertig */
  filter: drop-shadow(0 0 10px rgba(255, 200, 60, .18));
}

/* Optional: gleiche Grundlinie */
  align-items: center;
}

/* =========================================================
   FINAL FIX – Footer Zahlungslogos (1 Reihe, groß, zentriert)
   ========================================================= */
.footer-payments{
  margin-top:22px;
  text-align:center;
}

.footer-payments-title{
  margin-bottom:14px;
  font-weight:700;
  opacity:.95;
}

.footer-payments-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  flex-wrap:wrap;
}

.footer-pay-card{
  background:transparent;
  border:none;
  padding:0;
}

/* Wichtig: gegen globale img-Regeln absichern */
.footer-payments img.footer-pay-logo{
  height:90px !important;
  width:auto !important;
  max-height:none !important;
  max-width:none !important;
  object-fit:contain;
  display:block;
}

/* Mobile */
@media (max-width:600px){
  .footer-payments img.footer-pay-logo{
    height:52px !important;
  }
  .footer-payments-row{
    gap:18px;
  }
}

/* =====================================
   CHECKOUT – Layout & Radio Styling
   (Guest/Account Checkout Step 1)
   ===================================== */
.checkout-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:22px;
  align-items:start;
}
.checkout-col{min-width:320px}
.checkout-card{margin-bottom:22px}

@media (max-width: 980px){
  .checkout-grid{grid-template-columns:1fr}
  .checkout-col{min-width:0}
}

/* Radio-Liste (Lieferoption) sauber links ausrichten */
.checkout-radio-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:10px;
}
.checkout-radio{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
}
.checkout-radio input[type="radio"]{
  margin-top:4px;
}
.checkout-radio:hover{
  border-color: rgba(212,175,55,.28);
  background: rgba(0,0,0,.22);
}

/* Checkout Zusammenfassung – kompakter, wie der Rest */
.checkout-summary .rowline{
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px;
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.checkout-summary .rowline.total{
  border-bottom:0;
  padding-top:10px;
  font-weight:700;
}
.checkout-summary .label{opacity:.92}
.checkout-summary .value{text-align:right}


/* === Checkout/Global: prevent horizontal shift === */
html, body{width:100%; overflow-x:hidden;}
