:root {
  --bg: #f6eee6;
  --bg-soft: #f9f3ec;
  --accent: #f3b35a;
  --accent-dark: #c87a1e;
  --text: #241c17;
  --muted: #7b6c60;
  --card: #ffffff;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.08);
  --radius-lg: 18px;
  --radius-full: 999px;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }


/* Zentrierter Wrapper für Seiteninhalt */
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  background: radial-gradient(circle at top, #fffdf2, var(--bg));
  color: var(--text);
  line-height: 1.45;
}

img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* PAGE */
.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* SECTION */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(246, 238, 230, 0.97);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 0.65rem; }

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffe7b6, #f3b35a);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.logo-text-main {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-text-sub {
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: -0.2rem;
}

/* NAVIGATION DESKTOP */
.nav-links {
  display: flex;
  gap: 1.1rem;
}

.nav-link {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
}

.nav-link:hover {
  background: rgba(0,0,0,0.05);
}

/* MOBILE MENU ICON */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
}

/* SIDEBAR */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: rgba(250,245,239,0.97);
  backdrop-filter: blur(14px);
  padding: 3rem 1.8rem 2rem 1.8rem;
  z-index: 2000;
  transition: left 0.28s ease;
  box-shadow: 10px 0 28px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mobile-menu a {
  font-size: 1.2rem;
  color: #241c17;
  font-weight: 600;
}

.mobile-menu.open { left: 0; }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1500;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(1.9rem, 3vw + 1rem, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.hero-photo {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.btn {
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(200,122,30,0.45);
}

.btn-ghost {
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--muted);
}

.hero-note {
  margin-top: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
  font-size: 0.95rem;
}

/* QUALITY BANNER */
.quality-banner {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 1.4rem;
}

.quality-banner-box {
  max-width: 750px;
  background: #fff9f2;
  border: 1px solid rgba(200, 122, 30, 0.18);
  padding: 1.6rem 1.4rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.quality-banner-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #241c17;
}

.quality-banner-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* MOBILE QUALITY */
@media (max-width: 720px) {
  .quality-banner {
    margin-top: 0.3rem;
    margin-bottom: 1rem;
  }

  .quality-banner-box {
    padding: 1.2rem 0.9rem;
    border-radius: 14px;
  }

  .quality-banner-title {
    font-size: 1.15rem;
  }

  .quality-banner-text {
    font-size: 0.93rem;
    line-height: 1.48;
  }
}

/* CARDS */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.3rem;
  justify-items: center;
}

.card,
.herzhaft-card {
  background: var(--card);
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 260px;
  width: 100%;
}

.card-thumb {
  border-radius: 15px;
  overflow: hidden;
}

.card-thumb img {
  height: 230px;
  object-fit: cover;
}

.herzhaft-card .card-thumb img {
  object-position: left center;
}

/* ABOUT */
.about-amber {
  background: #faf5ef;
  padding: 4rem 1.5rem;
}

.about-wrapper {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.value-item {
  background: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,0,0,0.07);
  display: inline-block;
  margin: 0.25rem;
}

/* FOOTER */
footer {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

/* STICKY ORDER */
.sticky-order {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9500;
}

.sticky-order a {
  display: block;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 30px rgba(200,122,30,0.65);
}

@media (min-width: 721px) {
  .sticky-order { display: none; }
}

/* MOBILE OPTIMIERT */
@media (max-width: 720px) {

  .nav-links { display: none !important; }

  .mobile-menu-btn {
    display: block;
    font-size: 1.85rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 1.2rem;
  }

  .hero-media { order: -1; }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.22;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-note {
    margin-top: 1.4rem;
    font-size: 1rem;
  }

  .cards-row {
    grid-template-columns: 1fr !important;
  }

  .card,
  .herzhaft-card {
    max-width: 310px;
  }
}

/* KONTAKT-KARTE */
.kontakt-section {
  margin-top: 0rem;
  margin-bottom: 2rem;
}

.kontakt-card {
  max-width: 650px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

.kontakt-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--text);
}

.kontakt-person {
  margin-bottom: 1.4rem;
}

.kontakt-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4a059;
  margin-bottom: 0.2rem;
}

.kontakt-address {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.kontakt-team-small {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.45;
}

.kontakt-team-highlight {
  color: var(--accent-dark);
  font-weight: 600;
}

/* --- NEUES BESTELLEN-DESIGN --- */

.bestellen-section {
  margin-bottom: 2rem;
}

.bestellen-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.bestellen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.bestellen-box {
  background: #ffffff;
  padding: 1.5rem 1.2rem;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
}

.bestellen-icon {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.bestellen-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.bestellen-value {
  font-size: 0.95rem;
  color: var(--accent-dark);
  font-weight: 600;
  display: inline-block;
}

.bestellen-value:hover {
  opacity: 0.75;
}

.bestellen-hinweis {
  margin-top: 2.2rem;
}

.bestellen-hinweis-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.bestellen-hinweis-list li {
  background: #ffffff;
  padding: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.03);
}

@media (max-width: 720px) {
  .bestellen-box {
    padding: 1.3rem 1.1rem;
  }
}

/* --- WARENKORB --- */

.cart-section {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.cart-box {
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.cart-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-main {
  max-width: 75%;
}

.cart-item-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.cart-item-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.cart-item-total {
  font-weight: 600;
  white-space: nowrap;
}

.cart-total-row {
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.cart-empty {
  font-size: 0.95rem;
  color: var(--muted);
}

.cart-note {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .cart-box {
    padding: 1.2rem 1rem;
  }

  .cart-item-main {
    max-width: 70%;
  }
}

/* =========================================================
   NEU: WhatsApp- & E-Mail-Sende-Buttons
   ========================================================= */

.order-send-btn {
  width: 100%;
  padding: 14px 16px;
  margin-top: 16px;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s;
  color: #fff;
}

/* WhatsApp button */
.order-send-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 10px 20px rgba(37,211,102,0.25);
}

.order-send-btn.whatsapp:hover {
  background: #1ebe5b;
}

/* E-Mail button (Gold) */
.order-send-btn.email {
  background: var(--accent-dark);
  box-shadow: 0 10px 20px rgba(200,122,30,0.25);
}

.order-send-btn.email:hover {
  background: #a96a17;
}

.order-send-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   --- CART QTY BUTTONS (NEU) ---
   --------------------------------------------------------- */
/* Neues Qty-Control: – 0 + als Ovale nebeneinander */
.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

/* Gemeinsamer Stil für – und + Buttons */
.qty-btn {
  padding: 5px 16px;
  border-radius: 999px; /* oval */
  background: linear-gradient(135deg, #f7e9d7, #f3ddc2);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 1.1rem;
  font-weight: 600;
  color: #5c4a3c;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.qty-btn:hover {
  background: linear-gradient(135deg, #f2d7b9, #eed1ae);
  transform: translateY(-2px);
}

/* Die Zahl in der Mitte */
.cart-qty-number {
  min-width: 28px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3a2e26;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #faf4eb, #f6ecdf);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Moderner Bestellen-Button */
.order-submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  background: #e8b888;
  color: white;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

/* Hover aktiv */
.order-submit-btn:not(:disabled):hover {
  background: #d9a16a;
  transform: translateY(-2px);
}

/* Disabled – aber nicht hässlich grau */
.order-submit-btn:disabled {
  background: #f0d8c2;
  color: #ffffffcc;
  opacity: 1;
  cursor: not-allowed;
  transform: none;
}
.order-send-btn {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.order-send-btn.whatsapp {
    background: #25D366;
    color: white;
}

.order-send-btn.whatsapp:hover {
    background: #1ebe5b;
}

.order-send-btn.email {
    background: #e3e3ff;
    color: #333;
}

.order-send-btn.email:hover {
    background: #d6d6ff;
}

.order-submit-btn.primary {
    background: #d4a059 !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

.gold-btn {
  border: 2px solid #000;
}
.info-icon {
  cursor: pointer;
  font-size: 1rem;
  color: #d4a059 !important;
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0,0,0,0.5);
  transition: 0.2s;
}



.info-icon:hover {
  background: #f4ece2;
}

.payment-tooltip {
  display:none;
  margin-top:8px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.12);
  border-radius:10px;
  padding:0.8rem 1rem;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  font-size:0.9rem;
  color:#7b6c60;
  line-height:1.45;
}
/* Bestellen-Button auf bestellen.html wie auf Index */
.order-submit-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #fff !important;
  border: 2px solid #000 !important;
  border-radius: var(--radius-full) !important;
  padding: 0.9rem 1.2rem !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 28px rgba(200,122,30,0.45) !important;
  width: 100%;
  cursor: pointer;
  transition: 0.25s ease;
}

.order-submit-btn.primary:hover:not(:disabled) {
  transform: translateY(-2px);
  opacity: 0.95;
}



/* Layout-Fix: Preis/Fußbereich immer unten in der Karte */
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
/* Beide Buttons zentriert darstellen */
.order-submit-btn,
.order-submit-btn.primary {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Abstand unter dem "Jetzt bestellen!" Button */
#submit-order {
  margin-bottom: 0.9rem !important;
  margin-top: 1.4rem !important;
}

/* Download-Button: Erst unsichtbar, wird durch JS sichtbar gemacht */
.order-submit-btn.download-btn {
  display: none; /* wichtig! */
  background: linear-gradient(135deg, #3a3530, #24201d) !important;
  color: #fff !important;
  border: 2px solid #000 !important;
  border-radius: var(--radius-full) !important;
  padding: 0.9rem 1.2rem !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45) !important;
  width: 100% !important;
  transition: 0.25s ease !important;
}

/* Hover-Effekt für Download-Button */
.order-submit-btn.download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
/* Kompakte, leichte Info-Box im Hero */
.hero-note.small-note {
  background: #ffffffdd;
  border: 1px solid rgba(0,0,0,0.04);
  padding: 0.8rem 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  font-size: 0.92rem;
  line-height: 1.90;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
