﻿/*
Theme Name: Bloom Industry B2B
Theme URI: https://www.bloomindustry-b2b.de
Author: Bloom Industry
Description: B2B Portal Theme fÃ¼r Bloom Industry
Version: 2.0.0
License: Private
Text Domain: bloomindustry-b2b
*/

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   0. FONTS â€” lokal gehostet (DSGVO-konform)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   1. DESIGN TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  /* Brand â€” OKLCH */
  --green-950: oklch(0.16 0.08 145);
  --green-900: oklch(0.28 0.11 145);
  --green-800: oklch(0.38 0.14 145);
  --green-600: oklch(0.55 0.17 140);
  --green-400: oklch(0.71 0.18 130);
  --green-100: oklch(0.96 0.02 145);
  --green-50:  oklch(0.985 0.01 145);

  /* Ink scale */
  --ink-950: oklch(0.13 0.01 145);
  --ink-700: oklch(0.38 0.01 145);
  --ink-500: oklch(0.52 0.01 145);
  --ink-300: oklch(0.74 0.008 145);
  --ink-200: oklch(0.87 0.006 145);
  --ink-100: oklch(0.95 0.005 145);
  --ink-50:  oklch(0.99 0 0);

  /* Semantic */
  --bg-page:    var(--ink-50);
  --bg-surface: var(--green-50);
  --bg-header:  var(--ink-50);
  --bg-card:    var(--ink-50);
  --text-main:  var(--ink-950);
  --text-muted: var(--ink-500);
  --border:     var(--ink-200);
  --accent:     var(--green-800);
  --accent-lt:  var(--green-400);

  /* Legacy aliases â€” existing page templates depend on these */
  --green-dark:   var(--green-800);
  --green-light:  var(--green-400);
  --green-bg:     var(--green-50);
  --gray-light:   var(--ink-100);
  --gray-mid:     var(--ink-200);
  --gray-text:    var(--ink-500);
  --white:        var(--ink-50);
  --black:        var(--ink-950);
  --border-color: var(--ink-200);
  --shadow:       0 2px 12px oklch(0 0 0 / 0.08);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Easing â€” Emil Kowalski */
  --ease-out:    cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Radii */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   2. DARK MODE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
html.dark-mode {
  --bg-page:    oklch(0.10 0.01 145);
  --bg-surface: oklch(0.14 0.02 145);
  --bg-header:  oklch(0.12 0.01 145);
  --bg-card:    oklch(0.16 0.02 145);
  --text-main:  oklch(0.93 0.005 145);
  --text-muted: oklch(0.60 0.005 145);
  --border:     oklch(0.26 0.01 145);
  --shadow:     0 2px 12px oklch(0 0 0 / 0.30);

  /* Legacy */
  --white:        var(--bg-card);
  --black:        var(--text-main);
  --gray-light:   var(--bg-card);
  --gray-mid:     var(--border);
  --gray-text:    var(--text-muted);
  --green-bg:     var(--bg-surface);
  --border-color: var(--border);
}

html.dark-mode body        { background: var(--bg-page); color: var(--text-main); }
html.dark-mode .site-header { border-bottom-color: var(--border); background: var(--bg-header); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   3. RESET + BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-lt); }

img { max-width: 100%; height: auto; display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   4. LAYOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 640px) { .container { padding: 0 16px; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   5. HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
}

/* Admin-Bar KompatibilitÃ¤t: Sticky-Header unter der WP Admin-Bar */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media screen and (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

/* Logo als Kreis */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  height: 68px;
  width: 68px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.12);
  padding: 4px;
}

.site-logo span {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Desktop nav â€” zentriert */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active { background: var(--bg-surface); color: var(--accent); }

.main-nav .sale-link { color: oklch(0.50 0.20 25); font-weight: 700; }
.main-nav .sale-link:hover { background: oklch(0.96 0.03 25); color: oklch(0.42 0.20 25); }

/* Header right cluster */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Dark mode toggle */
.dark-mode-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  transition: border-color 0.15s var(--ease-out), background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
  display: flex;
  align-items: center;
  color: var(--text-main);
}

.dark-mode-toggle:hover { border-color: var(--accent-lt); }
.dark-mode-toggle:active { transform: scale(0.94); }
.dark-mode-toggle .icon-moon { display: none; }
.dark-mode-toggle .icon-sun  { display: inline; }
html.dark-mode .dark-mode-toggle .icon-sun  { display: none; }
html.dark-mode .dark-mode-toggle .icon-moon { display: inline; }

/* Consulting button (header) */
.btn-consulting {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  color: var(--accent);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s var(--ease-out), border-color 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.btn-consulting:hover { background: var(--green-100); border-color: var(--accent); }
.btn-consulting:active { transform: scale(0.96); }

/* B2B Login button */
.btn-b2b,
.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  text-decoration: none;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.cart-icon:hover { background: var(--bg-surface); color: var(--accent); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

.btn-login {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border: none !important;
  text-decoration: none !important;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out) !important;
  white-space: nowrap;
  cursor: pointer;
}

.btn-b2b:hover,
.btn-login:hover { background: var(--green-900) !important; color: #fff !important; }

.btn-b2b:active,
.btn-login:active { transform: scale(0.97) !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   6. HAMBURGER + MOBILE NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s;
  flex-shrink: 0;
}

.menu-toggle:hover { border-color: var(--accent); }

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
  transform-origin: center;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  z-index: 99;
  background: var(--bg-header);
  border-left: 1px solid var(--border);
  padding: 16px 12px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s var(--ease-out);
  box-shadow: -8px 0 32px oklch(0 0 0 / 0.12);
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 98;
  background: oklch(0 0 0 / 0.35);
  opacity: 0;
  transition: opacity 0.28s var(--ease-out);
}

.mobile-nav-backdrop.is-open { opacity: 1; }

.mobile-nav a,
.mobile-nav-consulting {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  border: none;
  background: none;
  text-align: left;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
  text-decoration: none;
  gap: 10px;
}

.mobile-nav a:hover,
.mobile-nav-consulting:hover { background: var(--bg-surface); }

.mobile-sale-link { color: oklch(0.50 0.20 25) !important; font-weight: 700 !important; }

.mobile-nav-divider { height: 1px; background: var(--border); margin: 10px 0; }

.mobile-nav-footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.mobile-nav-footer .btn-b2b { flex: 1; justify-content: center !important; }

html.dark-mode .mobile-nav { background: var(--bg-header); border-left-color: var(--border); }
html.dark-mode .mobile-nav a,
html.dark-mode .mobile-nav-consulting { color: var(--text-main); }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .main-nav { display: none; }
  .btn-consulting { display: none; }
  .header-inner { height: 56px; }
  .mobile-nav { top: 56px; }
  .mobile-nav-backdrop { top: 56px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   7. GLOBAL BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--accent);
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
  box-shadow: 0 2px 12px oklch(0 0 0 / 0.15);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px oklch(0 0 0 / 0.22);
  color: var(--accent);
}

.btn-primary:active { transform: scale(0.97); box-shadow: 0 2px 8px oklch(0 0 0 / 0.12); transition-duration: 80ms; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s var(--ease-out), border-color 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); color: #fff; }
.btn-secondary:active { transform: scale(0.97); transition-duration: 80ms; }

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.btn-submit:hover { background: var(--green-900); }
.btn-submit:active { transform: scale(0.98); transition-duration: 80ms; }

.btn-widerruf { background: oklch(0.52 0.18 30); } /* Orange â€” visuell von Kauf-Aktionen getrennt */
.btn-widerruf:hover { background: oklch(0.44 0.18 30); }

.btn-cart {
  width: 100%;
  padding: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.btn-cart:hover { background: var(--green-900); }
.btn-cart:active { transform: scale(0.97); transition-duration: 80ms; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   8. HERO SLIDER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 580px;
}

@media (max-width: 768px) { .hero-slider { height: 520px; } }
@media (max-width: 480px) { .hero-slider { height: 480px; } }

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.65s var(--ease-out);
  pointer-events: none;
}

.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Left-leaning gradient â€” more editorial, less generic */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    oklch(0 0 0 / 0.70) 0%,
    oklch(0 0 0 / 0.45) 50%,
    oklch(0 0 0 / 0.15) 100%
  );
}

/* Social slide: centered */
.hero-slide.hero-centered .hero-slide-overlay {
  background: oklch(0 0 0 / 0.42);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 620px;
}

/* Left-aligned on desktop, centered on mobile */
@media (min-width: 769px) {
  .hero-slide-content { padding-left: 0; }
}

@media (max-width: 768px) {
  .hero-slide { justify-content: center; }
  .hero-slide-content { text-align: center; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-slide-content p { margin-left: auto; margin-right: auto; }
  .hero-slide-overlay {
    background: oklch(0 0 0 / 0.48);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-slide-content h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.hero-slide-content p {
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover { background: rgba(255,255,255,0.22); }
.slider-arrow:active { transform: translateY(-50%) scale(0.92); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

@media (max-width: 480px) {
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
}

/* Progress dots â€” pill style */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease-out), width 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

.slider-dot.active {
  background: #fff;
  width: 24px;
}

/* Social media buttons */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.15s var(--ease-out), transform 0.1s var(--ease-out);
  border: none;
  cursor: pointer;
}

.btn-social svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-social:hover { opacity: 0.88; color: #fff; }
.btn-social:active { transform: scale(0.97); }

.btn-whatsapp  { background: #25D366; }
.btn-telegram  { background: #229ED9; }
.btn-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.btn-signal    { background: #3a76f0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   9. USP BAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.usp-bar {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .usp-grid { grid-template-columns: 1fr; } }

.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}

.usp-item:last-child { border-right: none; }

@media (max-width: 768px) {
  .usp-item:nth-child(2) { border-right: none; }
  .usp-item:nth-child(3) { border-top: 1px solid var(--border); }
  .usp-item { padding: 16px 20px; }
}

@media (max-width: 380px) {
  .usp-item { border-right: none; border-top: 1px solid var(--border); }
  .usp-item:first-child { border-top: none; }
}

.usp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.usp-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.usp-item h3 { font-size: 0.875rem; font-weight: 700; color: var(--text-main); margin-bottom: 2px; line-height: 1.3; }
.usp-item p  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; margin: 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   10. SECTIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section { padding: 72px 0; }

.section-header { margin-bottom: 48px; }

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.65;
}

/* Legacy selectors */
.section-title.green { color: var(--accent); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   11. CATEGORY CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.category-card:hover {
  border-color: var(--accent-lt);
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.08);
}

.category-card .cat-icon { font-size: 2rem; margin-bottom: 10px; line-height: 1; }
.category-card h3 { color: var(--text-main); font-size: 0.875rem; font-weight: 600; line-height: 1.3; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   12. PRODUCT CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.product-card:hover {
  border-color: var(--accent-lt);
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.08);
}

.product-card > a { display: block; overflow: hidden; aspect-ratio: 1; }

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease-out);
}

.product-card:hover img { transform: scale(1.04); }

.product-card .product-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card h3 a { color: inherit; }

.product-card .sku { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }

.product-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  margin-top: auto;
}

.product-card .price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }

/* Sale badge */
.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: oklch(0.52 0.20 25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   13. BRANDS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.brands-section { background: var(--bg-surface); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

@media (max-width: 900px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 380px) { .brands-grid { grid-template-columns: repeat(2, 1fr); } }

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  min-height: 96px;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.brand-card:hover {
  border-color: var(--accent-lt);
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.08);
}

.brand-logo {
  width: 100%;
  max-width: 96px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 10px;
}

.brand-initial {
  width: 60px;
  height: 44px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.brand-name { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-align: center; line-height: 1.3; }

html.dark-mode .brand-initial { background: var(--bg-surface); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   14. LOGIN SECTION (homepage CTA)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.login-section {
  background: var(--green-950);
  padding: 80px 0;
}

html.dark-mode .login-section { background: oklch(0.10 0.05 145); }

.login-box {
  max-width: 440px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 64px oklch(0 0 0 / 0.25);
}

.login-box h2 {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}

.login-box p { color: var(--text-muted); margin-bottom: 28px; font-size: 0.9rem; }

.login-register { text-align: center; margin-top: 16px; font-size: 0.875rem; color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   15. FORM ELEMENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.38 0.14 145 / 0.14);
}

.form-group textarea { resize: vertical; }
.form-group small { display: block; color: var(--text-muted); font-size: 0.8rem; margin-top: 4px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-check label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; cursor: pointer; font-size: 0.875rem; }
.form-check input[type="checkbox"] { width: auto; margin-top: 2px; accent-color: var(--accent); }

.req { color: oklch(0.52 0.20 25); }

html.dark-mode .form-group input,
html.dark-mode .form-group textarea,
html.dark-mode .form-group select { background: var(--bg-card); border-color: var(--border); color: var(--text-main); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   16. FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background: var(--green-950);
  color: rgba(255,255,255,0.72);
  padding: 60px 0 28px;
}

html.dark-mode .site-footer { background: oklch(0.08 0.03 145); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; }

.footer-col h4 {
  color: var(--green-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.62); font-size: 0.875rem; transition: color 0.15s var(--ease-out); }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.15s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.65); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   17. MODALS (consulting + preorder)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.consulting-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: oklch(0 0 0 / 0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.consulting-overlay.active { display: flex; }

.consulting-modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 80px oklch(0 0 0 / 0.28);
  animation: modalIn 0.22s var(--ease-out) both;
}

@media (max-width: 640px) {
  .consulting-modal { padding: 28px 20px; }
  .consulting-overlay { padding: 12px; align-items: flex-end; }
  .consulting-modal { border-bottom-left-radius: 0; border-bottom-right-radius: 0; max-height: 95vh; }
}

@keyframes modalIn {
  from { transform: scale(0.96) translateY(10px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}

.consulting-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.1s var(--ease-out);
  line-height: 1;
}

.consulting-close:hover { background: var(--border); color: var(--text-main); }
.consulting-close:active { transform: scale(0.92); }

.consulting-header { text-align: center; margin-bottom: 28px; }
.consulting-icon { font-size: 2rem; margin-bottom: 10px; }

.consulting-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.consulting-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto;
}

.consulting-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
  transition: border-color 0.15s var(--ease-out);
}

.consulting-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.38 0.14 145 / 0.14); }

.consulting-success { text-align: center; padding: 20px 0 10px; }

.consulting-success-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.consulting-success h3 { color: var(--accent); font-size: 1.2rem; margin-bottom: 8px; font-weight: 800; }
.consulting-success p { color: var(--text-muted); font-size: 0.9rem; }

html.dark-mode .consulting-modal { background: var(--bg-card); }
html.dark-mode .consulting-form select { background: var(--bg-card); border-color: var(--border); color: var(--text-main); }

/* Vorbestellen — Modal-Trigger (Shop-Loop, Benachrichtigung) */
.btn-preorder {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), transform 0.1s var(--ease-out) !important;
  font-family: var(--font);
}

.btn-preorder:hover { background: var(--accent) !important; color: #fff !important; }
.btn-preorder:active { transform: scale(0.97) !important; }

.btn-preorder-single { display: block; width: 100%; font-size: 1rem !important; margin-bottom: 12px; }
.preorder-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }

/* Vorbestellen — Warenkorb-Button (Einzelprodukt, echte WC-Form) */
.btn-preorder-buy {
  display: block;
  width: 100%;
  font-size: 1rem !important;
  margin-bottom: 12px;
  background: transparent !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 20px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.btn-preorder-buy:hover { background: var(--accent) !important; color: #fff !important; }
.btn-preorder-buy:active { transform: scale(0.97); }

/* Vorbestellen — Shop-Loop-Link */
.btn-preorder-loop {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  transition: background 0.18s, color 0.18s;
}
.btn-preorder-loop:hover { background: var(--accent) !important; color: #fff !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   18. STANDALONE PAGE STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Login page */
.login-page {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--green-950) 0%, var(--green-900) 60%, oklch(0.28 0.14 135) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-page-inner { width: 100%; max-width: 420px; }

.login-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 80px oklch(0 0 0 / 0.28);
}

@media (max-width: 480px) { .login-card { padding: 28px 20px; } }

.login-card-logo { text-align: center; margin-bottom: 24px; }
.login-card-logo img { height: 52px; margin: 0 auto; }
.login-card-logo span { font-size: 1.4rem; font-weight: 800; color: var(--accent); }

.login-card h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.login-sub { text-align: center; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 28px; }

.login-alert {
  background: oklch(0.96 0.03 25);
  border: 1px solid oklch(0.78 0.14 25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: oklch(0.45 0.18 25);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.login-remember { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 0.875rem; color: var(--text-muted); }
.login-remember label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 400; }
.login-remember input[type="checkbox"] { accent-color: var(--accent); }
.login-remember a { color: var(--accent); font-weight: 500; }

.login-divider { border-top: 1px solid var(--border); margin: 24px 0; }

.login-register-hint { text-align: center; font-size: 0.875rem; color: var(--text-muted); }
.login-register-hint a { color: var(--accent); font-weight: 600; }

.login-features { display: flex; justify-content: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.login-feature { color: rgba(255,255,255,0.88); font-size: 0.8rem; font-weight: 500; }
.login-feature span { color: #fff; font-weight: 700; }

/* Registration page */
.reg-page { padding-bottom: 80px; }

.reg-hero {
  background: linear-gradient(150deg, var(--green-950) 0%, var(--green-900) 100%);
  color: #fff;
  padding: 56px 0;
  margin-bottom: 56px;
}

.reg-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.025em; }
.reg-hero p  { font-size: 1rem; opacity: 0.88; max-width: 520px; }

.reg-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }

@media (max-width: 768px) { .reg-layout { grid-template-columns: 1fr; } .reg-sidebar { order: -1; } }

.reg-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 24px oklch(0 0 0 / 0.06);
}

@media (max-width: 640px) { .reg-form-wrap { padding: 24px 20px; } }

.reg-form h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 28px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-surface);
  letter-spacing: -0.01em;
}

.reg-form h2:first-child { margin-top: 0; }

.reg-errors {
  background: oklch(0.96 0.03 25);
  border: 1px solid oklch(0.78 0.14 25);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: oklch(0.45 0.18 25);
}

.reg-errors ul { margin: 8px 0 0 16px; }
.reg-errors ul li { margin-bottom: 4px; font-size: 0.875rem; }

.reg-success { text-align: center; padding: 40px 20px; }

.reg-success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.reg-success h2 { color: var(--accent); font-size: 1.5rem; margin-bottom: 12px; font-weight: 800; }
.reg-success p  { color: var(--text-muted); max-width: 420px; margin: 0 auto; line-height: 1.7; }

.reg-login-hint { text-align: center; margin-top: 18px; font-size: 0.875rem; color: var(--text-muted); }

.reg-sidebar { display: flex; flex-direction: column; gap: 20px; }

.reg-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.reg-info-box h3 { color: var(--accent); font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.reg-info-box ul, .reg-info-box ol { padding-left: 4px; list-style: none; }
.reg-info-box ol { counter-reset: step-counter; }

.reg-info-box ol li {
  counter-increment: step-counter;
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.reg-info-box ol li:last-child { border-bottom: none; }

.reg-info-box ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  line-height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  top: 8px;
}

.reg-info-box ul li { padding: 6px 0; font-size: 0.875rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.reg-info-box ul li:last-child { border-bottom: none; }
.reg-contact a { display: block; margin-top: 6px; color: var(--accent); font-weight: 600; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   18. CHECKOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.checkout-page { padding: 48px 0 80px; }
.checkout-header { margin-bottom: 36px; }
.checkout-header h1 { font-size: 1.75rem; font-weight: 800; color: var(--text-main); margin-bottom: 14px; letter-spacing: -0.025em; }

/* Steps */
.checkout-steps { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; }
.step { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.step--active { color: var(--accent); font-weight: 600; }
.step__num {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0;
}
.step--active .step__num { background: var(--accent); color: #fff; }
.step-sep { color: var(--border); }

/* Two-column layout
   WC DOM: form.woocommerce-checkout > #customer_details + #order_review */
.checkout-columns { display: block; }
form.woocommerce-checkout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
form.woocommerce-checkout #customer_details { min-width: 0; grid-column: 1; }
form.woocommerce-checkout #order_review { min-width: 0; grid-column: 2; grid-row: 1 / 3; }
form.woocommerce-checkout #payment { grid-column: 1; }

/* Order review sidebar */
.checkout-columns #order_review_heading,
.woocommerce-checkout #order_review_heading {
  font-size: 1rem; font-weight: 700; color: var(--text-main);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.checkout-columns #order_review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky; top: 24px;
}
.woocommerce-checkout-review-order-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-main); }
.woocommerce-checkout-review-order-table tfoot tr:last-child td,
.woocommerce-checkout-review-order-table tfoot tr:last-child th { border-bottom: none; font-weight: 700; font-size: 1rem; color: var(--accent); }
.woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout-review-order-table tfoot .order-total td { padding-top: 12px; }

/* Formular-Ãœberschriften */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-main);
  margin: 0 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

/* Inputs */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper select,
.woocommerce-checkout .woocommerce-input-wrapper textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  background: var(--bg-card);
  color: var(--text-main);
  width: 100%;
  box-sizing: border-box;
}
.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper select:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
  border-color: var(--accent); outline: none; box-shadow: none;
}

/* Zahlungsarten als Cards */
.woocommerce-checkout #payment {
  background: transparent;
  border: none;
  padding: 0;
}
.woocommerce-checkout #payment .wc_payment_methods { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.woocommerce-checkout #payment .wc_payment_methods li {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease-out);
}
.woocommerce-checkout #payment .wc_payment_methods li.wc_payment_method { margin: 0; }
.woocommerce-checkout #payment .wc_payment_methods li input[type="radio"] { accent-color: var(--accent); margin-right: 10px; }
.woocommerce-checkout #payment .wc_payment_methods li label { font-weight: 600; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.woocommerce-checkout #payment .wc_payment_methods li.payment_method_bacs:has(input:checked),
.woocommerce-checkout #payment .wc_payment_methods li.payment_method_cheque:has(input:checked),
.woocommerce-checkout #payment .wc_payment_methods li:has(input[type="radio"]:checked) {
  border-color: var(--accent);
  background: oklch(from var(--accent) l c h / 0.06);
}
.woocommerce-checkout #payment .payment_box {
  background: transparent; border: none; padding: 8px 0 0 28px;
  font-size: 0.82rem; color: var(--text-muted); margin: 0;
}

/* Place order section */
.woocommerce-checkout #payment #payment_box_heading { display: none; }
.woocommerce-checkout #payment .place-order { margin-top: 12px; padding: 0; }
.woocommerce-checkout #place_order {
  background: var(--accent) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 14px 24px !important;
  width: 100% !important;
  transition: background 0.15s var(--ease-out) !important;
  cursor: pointer !important;
}
.woocommerce-checkout #place_order:hover { background: var(--green-900) !important; }

/* Bestellzusammenfassung Ãœberschrift */
.woocommerce-checkout #order_review_heading {
  font-size: 1rem; font-weight: 700; color: var(--text-main);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

/* Responsive: unter 768px einspaltig */
@media (max-width: 768px) {
  form.woocommerce-checkout { grid-template-columns: 1fr; }
  form.woocommerce-checkout #customer_details { grid-column: 1; }
  form.woocommerce-checkout #order_review { grid-column: 1; grid-row: auto; position: static; }
  form.woocommerce-checkout #payment { grid-column: 1; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   19. CATEGORY / ARCHIVE PAGES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.subcat-section {
  background: var(--bg-surface);
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--border);
}

.subcat-heading {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.subcat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 10px; }

.subcat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.subcat-card:hover { border-color: var(--accent-lt); box-shadow: 0 4px 12px oklch(0 0 0 / 0.08); }

.subcat-logo   { width: 70px; height: 42px; object-fit: contain; margin-bottom: 8px; }

.subcat-initial {
  width: 70px;
  height: 42px;
  background: var(--bg-surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.subcat-name  { font-size: 0.73rem; font-weight: 600; color: var(--text-main); line-height: 1.3; }
.subcat-count { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   20. KATEGORIE KACHELN PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kat-kachel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
  cursor: pointer;
}

.kat-kachel:hover { border-color: var(--accent-lt); box-shadow: 0 4px 16px oklch(0 0 0 / 0.08); }

.kat-kachel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.kat-kachel-title { margin: 0 0 4px; font-size: 0.875rem; font-weight: 700; color: var(--text-main); line-height: 1.3; }
.kat-kachel-count { font-size: 0.75rem; color: var(--text-muted); }
.kat-kachel-sub   { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   21. GOOGLE REVIEWS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.google-reviews-section { background: var(--bg-surface); padding: 48px 0; border-top: 1px solid var(--border); }

.reviews-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   22. DARK MODE â€” component overrides
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
html.dark-mode .main-nav a { color: var(--text-muted); }
html.dark-mode .main-nav a:hover { background: var(--bg-surface); color: var(--accent-lt); }

html.dark-mode .category-card,
html.dark-mode .product-card,
html.dark-mode .brand-card,
html.dark-mode .login-box,
html.dark-mode .reg-form-wrap,
html.dark-mode .reg-info-box,
html.dark-mode .subcat-card,
html.dark-mode .kat-kachel {
  background: var(--bg-card);
  border-color: var(--border);
}

html.dark-mode .brand-initial  { background: var(--bg-surface); }
html.dark-mode .kat-kachel-icon { background: var(--bg-surface); }

html.dark-mode .woocommerce-checkout .woocommerce-input-wrapper input,
html.dark-mode .woocommerce-checkout .woocommerce-input-wrapper select,
html.dark-mode .woocommerce-checkout .woocommerce-input-wrapper textarea {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-main);
}
html.dark-mode .woocommerce-checkout #payment .wc_payment_methods li { background: var(--bg-card); border-color: var(--border); }
html.dark-mode .checkout-columns #order_review { background: var(--bg-card); border-color: var(--border); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   23. PAGE HERO (shared)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
  background: linear-gradient(150deg, var(--green-950) 0%, var(--green-900) 100%);
  color: #fff;
  padding: 56px 0;
  margin-bottom: 0;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 540px;
  line-height: 1.65;
}

.page-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   24. PAGE: SALE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.sale-page { padding-bottom: 80px; }

.sale-filter-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.sale-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sale-count {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sale-count strong {
  color: var(--text-main);
  font-weight: 700;
}

.sale-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sale-sort select {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
  cursor: pointer;
  transition: border-color 0.15s var(--ease-out);
}

.sale-sort select:focus {
  outline: none;
  border-color: var(--accent);
}

.sale-grid-wrap { padding: 40px 0 0; }

.sale-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}

/* Sale card â€” price layout */
.sale-price-wrap { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.sale-price-old  { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.sale-price-new  { font-size: 1.1rem; font-weight: 700; color: oklch(0.50 0.20 25); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   25. PAGE: KALKULATOREN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kalk-page { padding-bottom: 80px; }

.kalk-content { padding: 48px 0 0; }

/* Tab nav */
.calc-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  flex-wrap: wrap;
}

.calc-tab {
  flex: 1;
  min-width: 120px;
  padding: 10px 20px;
  border-radius: calc(var(--radius) - 2px);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  white-space: nowrap;
}

.calc-tab:hover { color: var(--accent); }

.calc-tab.active {
  background: var(--bg-card);
  color: var(--accent);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.calc-tab:active { transform: scale(0.98); transition-duration: 80ms; }

/* Panel */
.calc-panel { display: none; }
.calc-panel.active { display: block; }

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) { .calc-card { padding: 24px 20px; } }

.calc-card h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.calc-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.calc-section-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.strom-quickadd {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.strom-quickadd-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.strom-quickadd .calc-btn-secondary {
  font-size: 0.78rem;
  padding: 4px 10px;
}

.calc-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.calc-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.calc-field input:focus,
.calc-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.38 0.14 145 / 0.14);
}

.calc-btn {
  background: var(--accent);
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.calc-btn:hover { background: var(--green-900); }
.calc-btn:active { transform: scale(0.97); transition-duration: 80ms; }

.calc-btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.calc-btn-secondary:hover { background: var(--accent); color: #fff; }
.calc-btn-secondary:active { transform: scale(0.97); transition-duration: 80ms; }

/* Results */
.calc-result { margin-top: 32px; }

.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.calc-result-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.calc-result-box.highlight {
  background: var(--green-950);
  border-color: transparent;
}

.calc-result-box.highlight .calc-result-label { color: rgba(255,255,255,0.7); }
.calc-result-box.highlight .calc-result-value { color: var(--green-400); }

.calc-result-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.calc-result-value {
  display: block;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.calc-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--bg-surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.strom-lamp-row {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.strom-lamp-result {
  padding: 12px 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
  border: 1px solid var(--border);
}

/* DÃ¼nger-Grid */
.duenger-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.duenger-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}

.duenger-card:hover { border-color: var(--accent-lt); box-shadow: 0 4px 16px oklch(0 0 0 / 0.08); }

.duenger-external { text-decoration: none; color: inherit; cursor: pointer; }

.duenger-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.duenger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  margin-top: auto;
}

.duenger-btn:hover { background: var(--green-900); color: #fff; }
.duenger-btn:active { transform: scale(0.97); transition-duration: 80ms; }

.duenger-pending { opacity: 0.55; }
.duenger-soon { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

html.dark-mode .calc-card,
html.dark-mode .calc-result-box { background: var(--bg-card); border-color: var(--border); }

html.dark-mode .calc-field input,
html.dark-mode .calc-field select { background: var(--bg-card); border-color: var(--border); color: var(--text-main); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   26. SINGLE PRODUCT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.single-product-page { padding-bottom: 80px; }

.single-product-breadcrumb {
  padding: 14px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.single-product-breadcrumb a { color: var(--text-muted); transition: color 0.15s var(--ease-out); }
.single-product-breadcrumb a:hover { color: var(--accent); }
.single-product-breadcrumb span { margin: 0 6px; }

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 0;
  align-items: start;
}

@media (max-width: 768px) {
  .single-product-layout { grid-template-columns: 1fr; gap: 28px; }
}

/* Gallery */
.sp-gallery { position: sticky; top: 80px; }

.sp-main-image {
  aspect-ratio: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.sp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.sp-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sp-thumb {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s var(--ease-out);
  background: var(--bg-surface);
  flex-shrink: 0;
}

.sp-thumb:hover,
.sp-thumb.active { border-color: var(--accent); }

.sp-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* Info */
.sp-info {}

.sp-sku {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sp-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.sp-price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  line-height: 1;
}

.sp-price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sp-stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sp-stock-badge.in-stock {
  background: oklch(0.94 0.05 145);
  color: oklch(0.38 0.14 145);
}

.sp-stock-badge.out-of-stock {
  background: var(--bg-surface);
  color: var(--text-muted);
}

.sp-stock-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.sp-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.sp-short-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sp-qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.sp-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sp-qty-btn {
  width: 40px;
  height: 46px;
  background: var(--bg-surface);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
  font-family: var(--font);
}

.sp-qty-btn:hover { background: var(--bg-card); color: var(--accent); }
.sp-qty-btn:active { transform: scale(0.92); }

.sp-qty-input {
  width: 56px;
  height: 46px;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
}

.sp-qty-input:focus { outline: none; }

.sp-add-to-cart {
  flex: 1;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}

.sp-add-to-cart:hover { background: var(--green-900); }
.sp-add-to-cart:active { transform: scale(0.98); transition-duration: 80ms; }

.sp-login-cta {
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
}

.sp-login-cta p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 12px; }

.sp-meta-table { font-size: 0.85rem; width: 100%; }
.sp-meta-table td { padding: 6px 0; vertical-align: top; }
.sp-meta-table td:first-child { color: var(--text-muted); width: 100px; font-weight: 600; }
.sp-meta-table td:last-child { color: var(--text-main); }

/* Related products */
.sp-related {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.sp-related .section-title { margin-bottom: 28px; }

html.dark-mode .sp-main-image,
html.dark-mode .sp-thumb { background: var(--bg-card); border-color: var(--border); }

html.dark-mode .sp-qty-input { background: var(--bg-card); }

/* WooCommerce add-to-cart overrides on single product page */
.single-product-page .cart {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.single-product-page .cart .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.single-product-page .cart .qty {
  width: 64px;
  height: 46px;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
  padding: 0;
}

.single-product-page .cart .qty:focus { outline: none; }

.single-product-page .cart .single_add_to_cart_button {
  flex: 1;
  padding: 14px 24px;
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  cursor: pointer !important;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.single-product-page .cart .single_add_to_cart_button:hover { background: var(--green-900) !important; }
.single-product-page .cart .single_add_to_cart_button:active { transform: scale(0.98) !important; transition-duration: 80ms !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   27. REDUCED MOTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   28. PRODUKT-BILDER â€” HINTERGRUNDANPASSUNG
   Light Mode: weiÃŸer Container (Lieferantenfotos
   haben weiÃŸen Hintergrund).
   Dark Mode: mix-blend-mode multiply lÃ¤sst weiÃŸe
   BildflÃ¤chen in den dunklen Hintergrund Ã¼bergehen.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Produktkarten â€” Light Mode: weiÃŸer Container */
.product-card > a {
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card img {
  object-fit: contain;
  padding: 8px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Dark Mode: Bildcontainer mit CSS filter â€”
   brightness reduziert den weiÃŸen Hintergrund,
   Produkte bleiben erkennbar */
@media (prefers-color-scheme: dark) {
  .product-card img {
    filter: brightness(0.82) contrast(1.05);
  }
  .product-card > a {
    background: oklch(0.18 0.02 145);
  }
  .woocommerce-product-gallery__image {
    background: oklch(0.18 0.02 145);
  }
  .woocommerce-product-gallery__image img,
  .woocommerce-product-gallery .flex-viewport img {
    filter: brightness(0.82) contrast(1.05);
  }
  td.product-thumbnail img {
    filter: brightness(0.82) contrast(1.05);
    border-radius: var(--radius-sm);
  }
}

/* Light Mode: Single Product Galerie weiÃŸer Hintergrund */
@media (prefers-color-scheme: light) {
  .woocommerce-product-gallery__image {
    background: #fff;
  }
  .woocommerce-product-gallery .flex-control-thumbs li img {
    background: #fff;
    padding: 4px;
    object-fit: contain;
  }
  td.product-thumbnail img {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 4px;
    object-fit: contain;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   29. MY ACCOUNT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.myaccount-hero p { margin-top: 6px; }
.myaccount-wrap { padding-top: 40px; padding-bottom: 72px; }

/* Layout: Sidebar + Content (nur wenn die Navigation existiert; Login-Form fÃ¼r GÃ¤ste bleibt einspaltig) */
.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar-Navigation */
.woocommerce-MyAccount-navigation {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li { margin: 0; }
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
}
.woocommerce-MyAccount-navigation li a:hover {
  background: var(--green-100);
  color: var(--accent);
}
.woocommerce-MyAccount-navigation li.is-active a {
  background: var(--green-100);
  color: var(--accent);
  border-left-color: var(--accent);
}
.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  color: oklch(0.52 0.20 25);
}

/* Content-Karte */
.woocommerce-MyAccount-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  min-width: 0;
}
.woocommerce-MyAccount-content > p { color: var(--text-muted); line-height: 1.6; }
.woocommerce-MyAccount-content mark { background: var(--green-100); color: var(--accent); padding: 0 4px; border-radius: 4px; }
.woocommerce-MyAccount-content a:not(.button):not(.btn-submit):not(.bloom-account-btn) { color: var(--accent); font-weight: 600; }

/* Buttons im Account an Theme angleichen */
.woocommerce-MyAccount-content .woocommerce-button,
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button:not(.bloom-account-btn-ghost) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s var(--ease-out), transform 0.1s var(--ease-out);
}
.woocommerce-MyAccount-content .woocommerce-button:hover,
.woocommerce-MyAccount-content .button:hover,
.woocommerce-MyAccount-content button:not(.bloom-account-btn-ghost):hover { background: var(--green-900); }

/* Widerrufs-Button in der Bestellliste â€” Orange, von Kauf-Aktionen abgegrenzt */
.woocommerce-MyAccount-content .woocommerce-button.widerruf {
  background: oklch(0.52 0.18 30);
  font-size: 0.78rem;
  padding: 6px 12px;
}
.woocommerce-MyAccount-content .woocommerce-button.widerruf:hover { background: oklch(0.44 0.18 30); }
.woocommerce-MyAccount-content .button:active,
.woocommerce-MyAccount-content button:active { transform: scale(0.98); transition-duration: 80ms; }

/* Tabellen (Bestellungen, Bestelldetails) */
.woocommerce-MyAccount-content table.woocommerce-orders-table,
.woocommerce-MyAccount-content table.woocommerce-table--order-details,
.woocommerce-MyAccount-content table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.9rem;
}
.woocommerce-MyAccount-content table th {
  text-align: left;
  background: var(--bg-surface);
  color: var(--text-main);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.woocommerce-MyAccount-content table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.woocommerce-MyAccount-content table tr:last-child td { border-bottom: none; }

/* Adress-Boxen */
.woocommerce-MyAccount-content .woocommerce-Addresses { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 8px; }
.woocommerce-MyAccount-content .woocommerce-Address {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.woocommerce-MyAccount-content .woocommerce-Address address { font-style: normal; color: var(--text-muted); line-height: 1.7; }
.woocommerce-MyAccount-content .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.woocommerce-MyAccount-content .woocommerce-Address-title h3 { font-size: 1rem; }

/* Account-Formulare an Theme-Inputs angleichen */
.woocommerce-MyAccount-content form .woocommerce-form-row label,
.woocommerce-MyAccount-content form label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--text-main); }
.woocommerce-MyAccount-content form input.input-text,
.woocommerce-MyAccount-content form input[type="text"],
.woocommerce-MyAccount-content form input[type="email"],
.woocommerce-MyAccount-content form input[type="tel"],
.woocommerce-MyAccount-content form input[type="password"],
.woocommerce-MyAccount-content form select,
.woocommerce-MyAccount-content form textarea,
.woocommerce-MyAccount-content #bloom_vat_id {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-main);
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
}
.woocommerce-MyAccount-content form input:focus,
.woocommerce-MyAccount-content form select:focus,
.woocommerce-MyAccount-content form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.38 0.14 145 / 0.14);
}
.woocommerce-MyAccount-content .woocommerce-form-row { margin-bottom: 16px; }

/* WC float-basiertes Form-Row-Layout aufheben (verhindert verschobene Felder) */
.woocommerce-MyAccount-content .form-row-first,
.woocommerce-MyAccount-content .form-row-last {
  float: none !important;
  width: 100% !important;
  clear: both;
  padding: 0 !important;
}
/* Passwort-Fieldset stylen */
.woocommerce-MyAccount-content fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 0 16px;
}
.woocommerce-MyAccount-content fieldset legend {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0 8px;
  color: var(--text-main);
}

/* B2B-Infoblock & Account-Card (functions.php â†’ woocommerce_account_dashboard) */
.bloom-account-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 26px;
}
.bloom-b2b-card { border-left: 3px solid var(--accent); }
.bloom-b2b-card-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.bloom-account-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--accent); margin: 0; }
.bloom-account-lead { color: var(--text-muted); line-height: 1.6; margin: 4px 0 16px; }

.bloom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.bloom-badge--active  { background: var(--green-100); color: var(--accent); }
.bloom-badge--pending { background: oklch(0.95 0.08 85); color: oklch(0.48 0.13 70); }

.bloom-b2b-details { display: grid; grid-template-columns: max-content 1fr; gap: 8px 20px; margin: 0 0 18px; }
.bloom-b2b-details dt { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }
.bloom-b2b-details dd { margin: 0; color: var(--text-main); font-weight: 600; font-size: 0.9rem; }

.bloom-b2b-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bloom-account-btn { display: inline-flex; align-items: center; justify-content: center; }
.bloom-account-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.bloom-account-btn-ghost:hover { border-color: var(--accent); color: var(--accent) !important; }

/* Dark Mode */
html.dark-mode .woocommerce-MyAccount-navigation,
html.dark-mode .woocommerce-MyAccount-content { background: var(--bg-card); border-color: var(--border); }
html.dark-mode .woocommerce-MyAccount-navigation li a:hover,
html.dark-mode .woocommerce-MyAccount-navigation li.is-active a { background: oklch(0.24 0.04 145); }
html.dark-mode .woocommerce-MyAccount-content table th { background: var(--bg-surface); }
html.dark-mode .bloom-account-card,
html.dark-mode .woocommerce-MyAccount-content .woocommerce-Address { background: oklch(0.20 0.02 145); border-color: var(--border); }
html.dark-mode .bloom-badge--pending { background: oklch(0.32 0.07 80); color: oklch(0.88 0.10 90); }

/* Mobile */
@media (max-width: 860px) {
  .woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) { grid-template-columns: 1fr; }
  .woocommerce-MyAccount-navigation { position: static; top: auto; }
  .woocommerce-MyAccount-content { padding: 22px; }
  .woocommerce-MyAccount-content .woocommerce-Addresses { grid-template-columns: 1fr; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   30. WUNSCHLISTE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Bild-Wrapper fÃ¼r Herz-Button Overlay */
.bloom-wl-img-wrap {
  position: relative;
  display: block;
}
.bloom-wl-img-wrap > a { display: block; }

/* Herz-Button â€” Produktkarte (Overlay) */
.bloom-wl-btn--card {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg, #fff);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 2;
  color: var(--text-muted, #888);
}
.bloom-wl-btn--card svg {
  width: 17px;
  height: 17px;
  transition: fill 0.18s ease, stroke 0.18s ease;
}
.bloom-wl-btn--card:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 14px oklch(0 0 0 / 0.18);
  color: oklch(0.55 0.22 20);
}
.bloom-wl-btn--card.bloom-wl-active {
  color: oklch(0.55 0.22 20);
}
.bloom-wl-btn--card.bloom-wl-active svg {
  fill: oklch(0.55 0.22 20);
  stroke: oklch(0.55 0.22 20);
}
.bloom-wl-btn--card.bloom-wl-loading {
  opacity: 0.45;
  pointer-events: none;
}

/* Herz-Button â€” Einzelprodukt-Seite */
.bloom-wl-btn--single {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-sm, 6px);
  background: transparent;
  border: 1.5px solid var(--border, #ddd);
  cursor: pointer;
  color: var(--text-muted, #888);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.18s, color 0.18s;
  margin-top: 10px;
  font-family: inherit;
}
.bloom-wl-btn--single::after {
  content: 'Zur Wunschliste';
}
.bloom-wl-btn--single svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  transition: fill 0.18s, stroke 0.18s;
}
.bloom-wl-btn--single:hover {
  border-color: oklch(0.55 0.22 20);
  color: oklch(0.55 0.22 20);
}
.bloom-wl-btn--single.bloom-wl-active {
  border-color: oklch(0.55 0.22 20);
  color: oklch(0.55 0.22 20);
}
.bloom-wl-btn--single.bloom-wl-active::after {
  content: 'Gespeichert âœ“';
}
.bloom-wl-btn--single.bloom-wl-active svg {
  fill: oklch(0.55 0.22 20);
  stroke: oklch(0.55 0.22 20);
}
.bloom-wl-btn--single.bloom-wl-loading {
  opacity: 0.45;
  pointer-events: none;
}

/* Leer-Zustand */
.bloom-wl-empty {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted, #888);
}
.bloom-wl-empty svg {
  display: block;
  margin: 0 auto 20px;
  opacity: 0.35;
}
.bloom-wl-empty p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Dark Mode */
html.dark-mode .bloom-wl-btn--card {
  background: oklch(0.22 0.02 145);
  color: var(--text-muted);
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.4);
}
html.dark-mode .bloom-wl-btn--card:hover,
html.dark-mode .bloom-wl-btn--card.bloom-wl-active { color: oklch(0.72 0.18 20); }
html.dark-mode .bloom-wl-btn--card.bloom-wl-active svg { fill: oklch(0.72 0.18 20); stroke: oklch(0.72 0.18 20); }
html.dark-mode .bloom-wl-btn--single { border-color: var(--border); }
html.dark-mode .bloom-wl-btn--single:hover,
html.dark-mode .bloom-wl-btn--single.bloom-wl-active { border-color: oklch(0.72 0.18 20); color: oklch(0.72 0.18 20); }
html.dark-mode .bloom-wl-btn--single.bloom-wl-active svg { fill: oklch(0.72 0.18 20); stroke: oklch(0.72 0.18 20); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   31. NAV DROPDOWN (Bloom Industry Labs)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-parent {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
  white-space: nowrap;
}
.nav-parent:hover,
.nav-item:hover .nav-parent { background: var(--bg-surface); color: var(--accent); }

.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.6;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg, #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.10);
  min-width: 210px;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex !important;
  align-items: center;
  gap: 9px;
  padding: 9px 11px !important;
  border-radius: var(--radius-sm);
  font-size: 0.84rem !important;
  white-space: nowrap;
  color: var(--text-muted);
}
.nav-dropdown a:hover { background: var(--bg-surface) !important; color: var(--accent) !important; }
.nav-dropdown a svg { flex-shrink: 0; opacity: 0.7; }

html.dark-mode .nav-dropdown {
  background: oklch(0.18 0.02 145);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.4);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   32. MOBILE NAV GRUPPE (Labs)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.mobile-nav-group { width: 100%; }

.mobile-nav-group-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted, #ccc);
  font-family: inherit;
  text-align: left;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav-group-btn:hover { color: var(--accent); background: oklch(0.15 0.03 145 / 0.5); }

.mobile-nav-chevron {
  margin-left: auto;
  transition: transform 0.2s ease;
  opacity: 0.5;
}
.mobile-nav-chevron.is-open { transform: rotate(180deg); opacity: 1; }

.mobile-nav-sub { padding-left: 40px; padding-bottom: 6px; }
.mobile-nav-sub a {
  display: flex;
  padding: 10px 16px !important;
  font-size: 0.87rem;
  color: var(--text-muted, #aaa);
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.mobile-nav-sub a:hover { color: var(--accent); border-left-color: var(--accent); background: oklch(0.15 0.03 145 / 0.5); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   33. BLOG SEKTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.blog-section { padding: 64px 0; background: var(--bg-surface); }

.blog-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.blog-section-header .section-title { margin-bottom: 0; }
.blog-all-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.blog-all-link:hover { text-decoration: underline; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg, #fff);
  border-radius: var(--radius-md, 10px);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
  box-shadow: 0 8px 28px oklch(0 0 0 / 0.10);
  transform: translateY(-2px);
}

.blog-card-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-surface);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.4;
}

.blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card-body h3 a { color: var(--text-main, #111); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-read-more { font-size: 0.84rem; font-weight: 600; color: var(--accent); margin-top: auto; }
.blog-read-more:hover { text-decoration: underline; }

html.dark-mode .blog-section { background: oklch(0.16 0.02 145); }
html.dark-mode .blog-card { background: oklch(0.20 0.02 145); border-color: var(--border); }
html.dark-mode .blog-card-body h3 a { color: var(--text-main); }

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section-header { flex-direction: column; gap: 8px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   34. WHATSAPP BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.whatsapp-banner {
  padding: 0;
  background: linear-gradient(135deg, oklch(0.36 0.15 155), oklch(0.30 0.13 160));
  color: #fff;
}

.whatsapp-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.whatsapp-banner-icon {
  flex-shrink: 0;
  opacity: 0.92;
}

.whatsapp-banner-text { flex: 1; min-width: 200px; }
.whatsapp-banner-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}
.whatsapp-banner-text p {
  font-size: 0.9rem;
  opacity: 0.88;
  margin: 0;
  color: #fff;
}

.whatsapp-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: oklch(0.32 0.13 155);
  border-radius: var(--radius-sm, 6px);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s;
  flex-shrink: 0;
}
.whatsapp-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px oklch(0 0 0 / 0.2);
  color: oklch(0.28 0.13 155);
}
.whatsapp-banner-btn--setup {
  background: oklch(1 0 0 / 0.2);
  color: #fff;
  border: 1.5px dashed oklch(1 0 0 / 0.5);
  font-weight: 500;
  font-size: 0.82rem;
}
.whatsapp-banner-btn--setup:hover { background: oklch(1 0 0 / 0.3); color: #fff; }

@media (max-width: 640px) {
  .whatsapp-banner-inner { justify-content: center; text-align: center; }
  .whatsapp-banner-text { min-width: unset; text-align: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   35. SINGLE POST (Blogartikel)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero */
.single-post-hero {
  padding: 56px 0 44px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.single-post-hero--img {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 72px 0 56px;
}
.single-post-hero--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, oklch(0 0 0 / 0.52), oklch(0 0 0 / 0.68));
}
.single-post-hero--img .container { position: relative; z-index: 1; }
.single-post-hero--img .single-post-title,
.single-post-hero--img .single-post-meta,
.single-post-hero--img .single-post-cats a { color: #fff; }
.single-post-hero--img .single-post-cats a { border-color: oklch(1 0 0 / 0.35); }
.single-post-hero--img .single-post-meta { opacity: 0.82; }

.single-post-cats { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.single-post-cats a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  padding: 3px 12px;
}

.single-post-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-main);
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Layout */
.single-post-wrap { padding: 52px 0 80px; }
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* Artikel-Content */
.single-post-content {
  min-width: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-main);
}
.single-post-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text-main);
}
.single-post-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text-main);
}
.single-post-content p { margin-bottom: 18px; }
.single-post-content ul,
.single-post-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.single-post-content li { margin-bottom: 6px; }
.single-post-content a { color: var(--accent); text-decoration: underline; }
.single-post-content strong { font-weight: 700; }
.single-post-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 16px 0; }

.single-post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.single-post-tags a {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}
.single-post-tags a:hover { color: var(--accent); border-color: var(--accent); }

/* Sidebar */
.single-post-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 20px; }
.single-post-sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 10px);
  padding: 22px;
}
.single-post-sidebar-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.single-post-sidebar-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.single-post-sidebar-card--wa { background: oklch(0.18 0.04 155); border-color: oklch(0.28 0.08 155); }
.single-post-sidebar-card--wa h3,
.single-post-sidebar-card--wa p { color: oklch(0.92 0.06 155); }

.single-post-recent-list { list-style: none; padding: 0; margin: 0; }
.single-post-recent-list li { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 2px; }
.single-post-recent-list li:last-child { border-bottom: none; }
.single-post-recent-list a { font-size: 0.85rem; font-weight: 500; color: var(--text-main); line-height: 1.4; }
.single-post-recent-list a:hover { color: var(--accent); }
.single-post-recent-list span { font-size: 0.75rem; color: var(--text-muted); }

/* Artikel-Navigation */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.single-post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s;
}
.single-post-nav-item:hover { border-color: var(--accent); }
.single-post-nav-item--right { text-align: right; }
.single-post-nav-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.single-post-nav-title { font-size: 0.9rem; font-weight: 600; color: var(--text-main); line-height: 1.4; }

/* Dark Mode */
html.dark-mode .single-post-hero { background: oklch(0.16 0.02 145); }
html.dark-mode .single-post-sidebar-card { background: oklch(0.20 0.02 145); }
html.dark-mode .single-post-nav-item { background: oklch(0.20 0.02 145); }

/* Responsive */
@media (max-width: 900px) {
  .single-post-layout { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; }
}
@media (max-width: 640px) {
  .single-post-nav { grid-template-columns: 1fr; }
  .single-post-nav-item--right { text-align: left; }
  .single-post-wrap { padding: 32px 0 56px; }
}


/* ===========================================
   30. MIETGERAETE - Buchungsseite
=========================================== */

.rental-page { background: var(--bg-page); min-height: 60vh; }

/* Hero */
.rental-hero {
  background: linear-gradient(135deg, var(--green-950) 0%, oklch(0.22 0.08 145) 100%);
  padding: 52px 0 40px;
  text-align: center;
}
.rental-hero-inner { max-width: 640px; margin: 0 auto; }
.rental-hero h1 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 10px; }
.rental-hero p  { color: oklch(0.82 0.06 145); font-size: 1rem; line-height: 1.55; margin: 0; }

.rental-wrap { padding: 32px 0 72px; }

/* Selector bar */
.rental-selector-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.rental-thumb-wrap {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rental-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rental-thumb-ph {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.rental-select-group { flex: 1; }
.rental-selector-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.rental-select-wrap { position: relative; }
.rental-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-page);
  border: 2px solid var(--green-400);
  border-radius: 10px;
  padding: 10px 40px 10px 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.rental-select:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px oklch(0.60 0.18 145 / .18);
}
.rental-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--green-400);
}

/* Price chips */
.rental-price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.price-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 16px;
  min-width: 100px;
  text-align: center;
}
.price-chip .chip-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 3px;
}
.price-chip strong { font-size: 1.05rem; color: var(--green-400); font-weight: 700; }
.price-chip-deposit { border-color: oklch(0.65 0.12 50 / .4); }
.price-chip-deposit strong { color: oklch(0.72 0.14 50); }

/* Cal header row */
.rental-cal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.rental-cal-title { font-size: 1.1rem; font-weight: 700; margin: 0; color: var(--text-main); }

/* Legend */
.rental-legend { display: flex; gap: 12px; flex-wrap: wrap; }
.rleg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.rleg::before {
  content: '';
  width: 11px; height: 11px;
  border-radius: 3px;
  flex-shrink: 0;
}
.rleg-free::before     { background: oklch(0.45 0.15 145 / .3); border: 1.5px solid var(--green-400); }
.rleg-booked::before   { background: oklch(0.55 0.20 27 / .3);  border: 1.5px solid oklch(0.60 0.22 27); }
.rleg-blocked::before  { background: var(--bg-surface); border: 1.5px solid var(--border); }
.rleg-selected::before { background: var(--green-600); }

/* Calendar card */
.rental-calendar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 12px;
}
.rental-calendar { width: 100%; }
.cal-loading { text-align: center; color: var(--text-muted); padding: 48px 0; font-size: 0.88rem; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-month-label { font-weight: 700; font-size: 1.05rem; color: var(--text-main); }
.cal-nav {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--text-main);
  transition: background .15s, color .15s;
  line-height: 1;
}
.cal-nav:hover { background: var(--green-600); border-color: var(--green-600); color: #fff; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-head {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background .12s, color .12s, transform .08s;
  min-height: 38px;
}
.cal-empty   { background: transparent; }
.cal-past    { color: var(--text-muted); opacity: .35; cursor: default; }
.cal-booked  {
  background: oklch(0.55 0.20 27 / .22);
  color: oklch(0.68 0.18 27);
  cursor: default;
  border: 1px solid oklch(0.60 0.22 27 / .3);
}
.cal-blocked {
  background: var(--bg-surface);
  color: var(--text-muted);
  cursor: default;
  opacity: .5;
}
.cal-free { cursor: pointer; color: var(--text-main); }
.cal-free:hover {
  background: oklch(0.45 0.15 145 / .3);
  color: var(--green-400);
  transform: scale(1.1);
}
.cal-sel-start, .cal-sel-end {
  background: var(--green-600) !important;
  color: #fff !important;
  font-weight: 700;
}
.cal-in-range {
  background: oklch(0.45 0.15 145 / .18);
  color: var(--green-400);
  border-radius: 0;
}
.cal-sel-start { border-radius: 7px 0 0 7px; }
.cal-sel-end   { border-radius: 0 7px 7px 0; }
.cal-sel-start.cal-sel-end { border-radius: 7px; }

/* Hint */
.rental-cal-hint { font-size: 0.8rem; color: var(--text-muted); margin: 0 0 16px; text-align: center; }

/* Price preview */
.rental-price-preview {
  background: oklch(0.22 0.06 145 / .3);
  border: 1px solid var(--green-400);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.price-preview-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.price-preview-range { font-size: 0.88rem; color: var(--text-muted); }
.price-preview-days  { font-size: 0.78rem; }
.price-preview-total { font-size: 0.92rem; color: var(--text-main); }
.price-preview-total strong { color: var(--green-400); }
.price-preview-warn  { color: oklch(0.72 0.18 50); font-size: 0.88rem; font-weight: 600; }

/* Form section */
.rental-form-section { margin-top: 12px; }
.rental-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
  max-width: 680px;
  margin: 0 auto;
}
.rental-form-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}
.rental-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group  { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group textarea {
  background: var(--bg-page);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.92rem;
  color: var(--text-main);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px oklch(0.60 0.18 145 / .15);
}
.rental-date-display { background: var(--bg-surface) !important; cursor: default; }
.form-group textarea { resize: vertical; min-height: 72px; }
.form-check label { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: var(--text-muted); font-weight: 400; cursor: pointer; }
.form-check input[type="checkbox"] { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--green-600); flex-shrink: 0; }
.form-check a { color: var(--green-400); }
.req { color: oklch(0.70 0.22 27); }

.rental-hint-box {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: oklch(0.22 0.05 50 / .12);
  border: 1px solid oklch(0.55 0.15 50 / .25);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 0.82rem;
  color: oklch(0.72 0.10 50);
}
.rental-hint-box svg { flex-shrink: 0; margin-top: 1px; }

.rental-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 6px;
}
.rental-reset-btn {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: inherit;
}
.rental-reset-btn:hover { border-color: var(--green-400); color: var(--green-400); }
.rental-submit-btn {
  min-width: 160px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border-radius: 9px;
  padding: 10px 24px;
}
.rental-submit-btn:hover:not(:disabled) { opacity: .9; transform: translateY(-1px); }
.rental-submit-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* Success */
.rental-success-block {
  text-align: center;
  padding: 60px 24px;
  max-width: 520px;
  margin: 0 auto;
}
.rental-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
}
.rental-success-block h3 { font-size: 1.4rem; margin-bottom: 10px; }
.rental-success-block p  { color: var(--text-muted); margin-bottom: 6px; }
.rental-new-btn {
  margin-top: 18px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-main);
  transition: border-color .2s;
}
.rental-new-btn:hover { border-color: var(--green-400); color: var(--green-400); }

/* Empty */
.rental-empty { text-align: center; padding: 72px 24px; }
.rental-empty h2 { font-size: 1.4rem; margin: 14px 0 10px; }
.rental-empty p  { color: var(--text-muted); margin-bottom: 22px; }

/* Responsive */
@media (max-width: 600px) {
  .rental-selector-bar { flex-wrap: wrap; padding: 12px 14px; }
  .rental-thumb-wrap   { width: 54px; height: 54px; }
  .form-row-2          { grid-template-columns: 1fr; }
  .rental-form-card    { padding: 22px 16px; }
  .rental-form-actions { flex-direction: column; align-items: stretch; }
  .rental-reset-btn, .rental-submit-btn { text-align: center; justify-content: center; }
  .rental-price-chips  { gap: 6px; }
  .price-chip          { min-width: 84px; padding: 7px 10px; }
  .rental-cal-header-row { flex-direction: column; align-items: flex-start; }
  .cal-cell            { min-height: 34px; font-size: 0.8rem; }
  .rental-calendar-card { padding: 14px; }
}
@media (max-width: 380px) {
  .cal-cell { min-height: 28px; font-size: 0.72rem; border-radius: 5px; }
  .cal-grid { gap: 2px; }
  .price-chip { min-width: 70px; }
}

/* ═══════════════════════════════════════════════════════
   ENTSORGUNG PAGE
═══════════════════════════════════════════════════════ */

.entsorgung-hero { background: linear-gradient(135deg, oklch(0.16 0.04 145), oklch(0.22 0.06 155)); }

/* Highlight-Box */
.entsorgung-highlight-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: oklch(0.96 0.04 145);
  border: 1.5px solid oklch(0.82 0.10 145);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 56px;
}
html.dark-mode .entsorgung-highlight-box {
  background: oklch(0.20 0.05 145);
  border-color: oklch(0.32 0.09 145);
}
.entsorgung-highlight-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.entsorgung-highlight-box h2 { font-size: 1.2rem; margin-bottom: 8px; }
.entsorgung-highlight-box p  { color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Steps */
.entsorgung-steps { margin-bottom: 56px; }
.section-heading { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; }
.entsorgung-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.entsorgung-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.entsorgung-step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 14px;
}
.entsorgung-step h3 { font-size: 1rem; margin-bottom: 8px; }
.entsorgung-step p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* Pricing table */
.entsorgung-pricing { margin-bottom: 56px; }
.entsorgung-pricing-intro { color: var(--text-muted); margin-bottom: 20px; }
.entsorgung-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.entsorgung-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.entsorgung-table thead { background: var(--bg-surface); }
.entsorgung-table th {
  padding: 13px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.entsorgung-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.entsorgung-table tbody tr:last-child td { border-bottom: none; }
.entsorgung-table tbody tr:hover { background: var(--bg-surface); }
.price-free {
  color: var(--accent);
  font-weight: 700;
}
.entsorgung-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  opacity: 0.7;
}

/* Contact form */
.entsorgung-contact { max-width: 720px; }
.entsorgung-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text-main);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-main);
  font-family: inherit;
  transition: border-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(0.38 0.14 145 / 0.14);
}
.form-field--full { margin-bottom: 20px; }
.entsorgung-error {
  background: oklch(0.96 0.04 25);
  border: 1px solid oklch(0.82 0.12 25);
  color: oklch(0.40 0.18 25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.entsorgung-success {
  text-align: center;
  padding: 48px 24px;
}
.entsorgung-success svg { color: var(--accent); margin-bottom: 16px; }
.entsorgung-success h3 { font-size: 1.3rem; color: var(--accent); margin-bottom: 8px; }
.entsorgung-success p  { color: var(--text-muted); }

@media (max-width: 768px) {
  .entsorgung-highlight-box { flex-direction: column; gap: 16px; }
  .entsorgung-steps-grid    { grid-template-columns: 1fr; }
  .entsorgung-form-grid     { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   VERFÜGBARKEITS-BADGES (bloom-inventory)
═══════════════════════════════════════════════════════ */

.bloom-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.bloom-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 2-Lager-Anzeige ──────────────────────────────────────── */
.bloom-dual-stock {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 4px 0 8px;
}
.bloom-dual-stock--compact {
  gap: 2px;
  margin: 2px 0 6px;
}
.bloom-stock-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bloom-stock-lbl {
  font-size: 0.70rem;
  color: var(--text-muted);
  min-width: 90px;
  flex-shrink: 0;
}
.bloom-dual-stock--compact .bloom-stock-lbl {
  min-width: 78px;
  font-size: 0.68rem;
}
.bloom-stock-val {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.bloom-dual-stock--compact .bloom-stock-val {
  font-size: 0.68rem;
}
.bloom-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Warenkorb-Hinweis */
.bloom-cart-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 2px;
}
