@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================================================
   NOVApassa / EGGER-Shop Vergleich – Style (7)
   Fixes: saubere Media-Queries, Mobilemenu/Hamburger korrekt
   ========================================================= */

/* Tokens */
:root{
  --nova-green: #019E8D;
  --dark-blue: #414F5A;

  --bg: #ffffff;
  --ink: #0b1220;
  --muted: #5a6678;

  --brand: var(--nova-green);
  --brand-2: var(--dark-blue);

  --card: #ffffff;
  --line: #e7e9ee;
  --soft: #f6f7fa;

  --radius: 18px;
  --radius-sm: 14px;

  --shadow: 0 14px 40px rgba(16,24,40,.10);
  --shadow-soft: 0 10px 28px rgba(16,24,40,.08);

  --wrap: 1120px;
}

/* Base */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg, #fff 0%, #fff 55%, #fbfbfd 100%);
}
a{ color:inherit; }
img{ max-width:100%; display:block; }
button,input,select,textarea{ font:inherit; }

.wrap{ max-width:var(--wrap); margin:0 auto; padding:0 18px; }
.muted{ color:var(--muted); }
.small{ font-size:13px; }
.dot{ opacity:.6; }

.skip{
  position:absolute; left:-999px; top:10px;
  background:var(--ink); color:#fff; padding:10px 12px; border-radius:10px;
}
.skip:focus{ left:10px; z-index:9999; }

/* Topbar */
.topbar{
  background:#0f172a;
  color:#dbe2ee;
  font-size:13px;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; gap:14px; flex-wrap:wrap;

}
.topbar__pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  margin-left: 8px;
}
.topbar__meta{ display:flex; align-items:center; gap:10px; flex-wrap:wrap;margin-right: 16px; }
.topbar__link{ color:#eaf1ff; text-decoration:none; }
.topbar__link:hover{ text-decoration:underline; }


/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.brand{ text-decoration:none; display:flex; align-items:center; gap:12px; }
.brand__mark{ display:flex; flex-direction:column; line-height:1; }
.brand__eg{ font-weight:800; letter-spacing:.06em; color:var(--brand); font-size:22px; }
.brand__sub{
  font-weight:700; letter-spacing:.08em; color:var(--brand-2);
  font-size:12px; text-transform:uppercase; margin-top:6px;
}

.nav{ display:flex; gap:18px; align-items:center; }
.nav a{
  text-decoration:none;
  font-weight:600;
  color:#0b1220;
  opacity:.86;
  padding:10px 10px;
  border-radius:12px;
  margin-right: 8px;
}
.nav a:hover{ background:var(--soft); opacity:1; }

.header__actions{ display:flex; align-items:center; gap:12px; }

/* Profile button (wie style 6) */
.cartbtn{
  display:inline-flex; align-items:center; gap:10px;
  background:#0b1220;
  color:#fff;
  border:none;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  box-shadow: 0 8px 24px rgba(15,23,42,.18);
  text-decoration:none;
}
.cartbtn__icon svg{ width:18px; height:18px; fill:#fff; }
.cartbtn__count{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:24px; height:24px; padding:0 8px;
  border-radius:999px;
  background: var(--brand-2);
  font-weight:800;
  font-size:12px;
}

/* Mobile toggle button */
.navtoggle{
  display:none; /* Desktop: AUS */
  border:0;
  background:var(--soft);
  border:1px solid var(--line);
  padding:10px;
  border-radius:999px;
  cursor:pointer;
  margin-right: 16px;   /* Desktop & Mobile konsistent */
}
.navtoggle:hover{ background:#fff; }
.navtoggle svg{ width:22px; height:22px; fill:currentColor; opacity:.9; }

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid transparent;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  user-select:none;
}
.btn--primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 22px rgba(1,158,141,.20);
	border-color: var(--line);
}


.btn--primary:hover{ filter:brightness(1.05); }


.btn--primary_blog{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 22px rgba(1,158,141,.20);
}

.btn--primary_blog:hover{ filter:brightness(1.05); }



.btn--ghost{
  background:#fff;
  border-color:var(--line);
  color:var(--ink);
}
.btn--ghost:hover{ background:var(--soft); }
/* Fallback */
.btn--danger{
  background:#fff;
  border-color: rgba(224,27,36,.30);
  color:#b20b13;
}
.btn--danger:hover{ background: rgba(224,27,36,.07); }

/* Modern */
@supports (background: color-mix(in srgb, black 50%, white)) {
  .btn--danger{
    border-color: color-mix(in srgb, #e01b24 30%, var(--line));
  }
  .btn--danger:hover{
    background: color-mix(in srgb, #e01b24 7%, #fff);
  }
}


/* Ghost buttons for inline actions (Antworten/Melden) */
.reply-button, .report-button, .reply-btn, button.reply-btn{
  all:unset;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:800;
  font-size:13px;
}
.reply-button:hover, .report-button:hover, .reply-btn:hover{ background:var(--soft); }

/* =========================================================
   Hero
   ========================================================= */
.hero{ padding:24px 0 10px; }

@media (max-width: 640px) {
  .hero {
    padding: 17px 0 5px;
  }
}


.hero__grid{
  display:grid;
  grid-template-columns: 2fr 1fr; /* Alt: 1.15fr .85fr */
  gap:16px;
  align-items:stretch;
}
.hero__copy{
  border:1px solid var(--line);
  background:
    radial-gradient(1200px 500px at 20% 0%, rgba(23,138,61,.10), transparent 60%),
    radial-gradient(900px 500px at 70% 30%, rgba(214,37,42,.08), transparent 60%),
    #fff;
  border-radius: var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
}
.hero h1{ margin:0 0 6px; font-size:36px; line-height:1.09; letter-spacing:-0.02em; }
.hero h2{ margin:0 0 10px; font-size:22px; line-height:1.15; }
.hero p{ margin:0; color:var(--muted); font-size:16px; line-height:1.55; max-width:62ch; }
.hero__cta{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }

/* Sections */
.section{ padding:24px 0; }
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom:18px; flex-wrap:wrap;
}
.section__head h2{ margin:0; font-size:28px; }

/* =========================================================
   Filter
   ========================================================= */
.filter-bar{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow-soft);
}

.filter-group{ display:flex; }
.filter-bar input[type="search"],
.filter-bar input[type="text"],
.filter-bar select{
  width:100%;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--soft);
  outline:none;
  font-weight:700;
  font-size:14px;
}
.filter-bar select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:34px;
}
.filter-bar input:focus,
.filter-bar select:focus{
  border-color: color-mix(in srgb, var(--brand) 45%, #fff);
  box-shadow:0 0 0 4px rgba(1,158,141,.16);
  background:#fff;
}


/* =========================================================
   Filter blog (8-Ung media)
   ========================================================= */
.filter-bar_blog{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;

  border-radius:var(--radius);
  padding:14px;

}

.filter-group_blog{ display:flex; }
.filter-bar_blog input[type="search"],
.filter-bar_blog input[type="text"],
.filter-bar_blog select{
  width:100%;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--soft);
  outline:none;
  font-weight:700;
  font-size:14px;
}
.filter-bar_blog select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:34px;
}
.filter-bar_blog input:focus,
.filter-bar_blog select:focus{
  border-color: color-mix(in srgb, var(--brand) 45%, #fff);
  box-shadow:0 0 0 4px rgba(1,158,141,.16);
  background:#fff;
}



/* =========================================================
   Grid + Cards
   ========================================================= */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}

.pcard{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(16,24,40,.08);
  display:flex; flex-direction:column;
  min-height: 0%;
  position:relative;
}

.pcard__img{
  height: 196px;
  background-size: cover;
  background-position:center;
  position:relative;
  border-bottom:1px solid var(--line);
}
.pcard__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.badge{
  position:absolute; left:12px; top:12px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius:999px;
  padding:7px 10px;
  font-weight:800;
  font-size:12px;
}

.pcard__body{
  padding:14px 14px 12px;
  row-gap:10px;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* overlay link (card is clickable) */
.full-post-link{
  position:absolute; inset:0;
  z-index:1;
  text-indent:-9999px;
  overflow:hidden;
}

/* ensure meta/actions are always clickable over overlay */
.pcard__meta, .pcard__actions, .vote-bar-container, .kpis{
  position:relative;
  z-index:0;
}

.pcard__title{ margin:0; font-size:16px; line-height:1.25; }
.pdesc{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;

  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}

/* if you use split structure: push meta down */
.pcard__meta{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.pcard__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* KPIs */
.kpis{
  margin-top:0px;
  color:var(--muted);
  font-size:13px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.kpis strong{ color:#0b1220; }

/* CHF im Gutschein */
.kpis2{
  margin-top:10px;
  color:var(--muted);

  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.kpis2 strong{ color:#0b1220; }

/* Vote Bar */
.vote-labels{ display:flex; justify-content:space-between; font-weight:800; font-size:12px; color:var(--muted); }
.vote-bar{
  display:flex; height:30px; width:100%;
  border-radius:999px;
  overflow:hidden;
  background:#ddd;
  border:1px solid var(--line);
}
.vote-yes{
  background: var(--brand);
  color:white;
  font-weight:900;
  text-align:center;
  line-height:30px;
  font-size:12px;
}
.vote-no{
  background: var(--brand-2);
  color:white;
  font-weight:900;
  text-align:center;
  line-height:30px;
  font-size:12px;
}

/* Transformationsbanner */
.transformation-banner{
  display:flex;
  gap:8px;
  padding:0;
  justify-content:flex-start;
  font-weight:800;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.stage{
  padding:6px 10px;
  border-radius:999px;
  opacity:.55;
  background:#e5e7eb;
  color:#0b1220;
  border:1px solid var(--line);
  font-size:12px;
}
.stage.active{ opacity:1; }

/* =========================
   Fallback (für alte Safari)
   ========================= */
.stage.black{ background: rgba(65,79,90,.33); }
.stage.red{ background: rgba(217,79,79,.33); }
.stage.blue{ background: rgba(58,136,181,.33); }
.stage.gold{ background: rgba(1,158,141,.33); }


/* =========================
   Nur moderne Browser mit color-mix Support
   ========================= */
@supports (background: color-mix(in srgb, black 50%, white)) {

  .stage.black{ background: color-mix(in srgb, var(--brand-2) 33%, #fff); }
  .stage.red{ background: color-mix(in srgb, #D94F4F 33%, #fff); }
  .stage.blue{ background: color-mix(in srgb, #3A88B5 33%, #fff); }
  .stage.gold{ background: color-mix(in srgb, var(--brand) 33%, #fff); }

}


/* Voted highlighting */
.pcard.no-vote{ background:#fff; }
/* =========================
   Fallback (für alte Safari)
   ========================= */
.pcard.voted-yes{
  background: rgba(1,158,141,.12);
}

.pcard.voted-no{
  background: rgba(65,79,90,.12);
}


/* =========================
   Nur moderne Browser mit color-mix Support
   ========================= */
@supports (background: color-mix(in srgb, black 50%, white)) {

  .pcard.voted-yes{
    background: color-mix(in srgb, var(--brand) 12%, #fff);
  }

  .pcard.voted-no{
    background: color-mix(in srgb, var(--brand-2) 12%, #fff);
  }

}


/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding:18px 0 40px;
  background:transparent;
}
.footer__inner{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  color:var(--muted);
}
.footer__inner a{ color:inherit; text-decoration:none; }
.footer__inner a:hover{ text-decoration:underline; color: var(--brand); }

/* =========================================================
   Blog Post + Comments basics
   ========================================================= */
.blog_post_container{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.blog_post-image{
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display:block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.blog_post-autor{
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.blog_post-content{
  color:var(--ink);
  font-size:15px;
  line-height:1.65;
}

.blog-vote-group{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.blog-vote-group form{ margin:0; }

/* Like / Dislike / Vote Buttons */
.like-button, .dislike-button,
.blog-vote-yes, .blog-vote-no,
.fav-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background-color .2s ease;
}
.like-button:hover, .dislike-button:hover,
.blog-vote-yes:hover, .blog-vote-no:hover,
.fav-button:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(16,24,40,.10);
}
.like-button, .blog-vote-yes{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 10px 30px rgba(23,138,61,.18);
}
.dislike-button, .blog-vote-no{
  background: var(--brand-2);
  color:#fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.14);
}
.fav-button{
  background:#fff;
  border-color: var(--line);
}
/* =========================
   Fallback (alle Browser)
   ========================= */
.active-like, .active-yes{
  box-shadow: 0 0 0 4px rgba(1,158,141,.56);
}

.active-dislike, .active-no{
  box-shadow: 0 0 0 4px rgba(65,79,90,.56);
}





/* Comment filter form (ONLY here, not global) */
.comment-filter-form{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}
.comment-filter-form label{
  font-weight:800;
  color:var(--muted);
  font-size:13px;
}
.comment-filter-form select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  padding:10px 16px;
  min-width:170px;

  border-radius:999px;
  border:1px solid var(--line);
  background:var(--soft);
  color:var(--ink);

  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.comment-filter-form select:focus{
  outline:none;
  background:#fff;
  border-color: color-mix(in srgb, var(--brand) 45%, #fff);
  box-shadow: 0 0 0 4px rgba(1,158,141,.18);
}

/* Textareas */
textarea,
#comment,
.reply-form textarea{
  width:100%;
  min-height:150px;
  resize: vertical;

  border:1px solid var(--line);
  border-radius: var(--radius);
  background:#fff;

  padding:14px 16px;
  font-size:14px;
  line-height:1.6;

  box-shadow: 0 10px 26px rgba(16,24,40,.06);
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea:focus,
#comment:focus,
.reply-form textarea:focus{
  outline:none;
  border-color: color-mix(in srgb, var(--brand) 45%, #fff);
  box-shadow: 0 0 0 4px rgba(1,158,141,.18);
}

/* Reply submit button */
.reply-form button[type="submit"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid transparent;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  font-size:13px;
  line-height:1;
  cursor:pointer;
  white-space:nowrap;
  box-shadow: 0 10px 26px rgba(1,158,141,.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.reply-form button[type="submit"]:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 34px rgba(1,158,141,.28);
}
.reply-form button[type="submit"]:active{
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(1,158,141,.22);
}

/* Comment cards */
.ja-comment-box, .nein-comment-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding:14px;
}
/* =========================
   Fallback (für alte Safari)
   ========================= */
.ja-comment-box{ background: rgba(1,158,141,.09); }
.nein-comment-box{ background: rgba(65,79,90,.09); }


/* =========================
   Nur moderne Browser mit color-mix Support
   ========================= */
@supports (background: color-mix(in srgb, black 50%, white)) {

  .ja-comment-box{ background: color-mix(in srgb, var(--brand) 9%, #fff); }
  .nein-comment-box{ background: color-mix(in srgb, var(--brand-2) 9%, #fff); }

}

.replies .reply-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}
.hidden-comment, .hidden-reply{
  display:block;
  font-style: italic;
  color: #667085;
  background: #f9fafb;
  padding: 12px;
  border-left: 4px solid var(--line);
  border-radius: 12px;
}

/* =========================================================
   Brand logo helpers / normales logo: width:auto; (im .brand__logo)
   ========================================================= */
.brand--logo{
  display:flex;
  align-items:center;
}
.brand__logo{
  height:42px;
  width:auto;
  display:block;

}
.brand{
  margin-left: 16px;   /* Desktop */
}

/* =========================================================
   Mobile Menü Overlay (global)
   ========================================================= */
.mobilemenu{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.35);
  z-index:9999;
  padding:16px;
}
.mobilemenu__panel{
  background:#fff;
  border-radius:18px;
  max-width:520px;
  margin:0 auto;
  padding:14px;
  box-shadow:0 20px 60px rgba(0,0,0,.20);
}
.mobilemenu__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:4px 6px 10px;
  border-bottom:1px solid rgba(0,0,0,.08);
  margin-bottom:10px;
}
.mobilemenu__close{
  border:0;
  background:transparent;
  padding:10px;
  border-radius:999px;
  cursor:pointer;
}
.mobilemenu__links{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:6px;
}
.mobilemenu__links a{
  text-decoration:none;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
}
.mobilemenu.is-open{ display:block; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }

  /* Navigation im Tablet/Mobile aus */
  .nav{ display:none; }
}

@media (max-width: 820px){
  .navtoggle{ display:inline-flex; align-items:center; justify-content:center; }
}

@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 34px;     white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance; }
  .filter-bar{ grid-template-columns: 1fr; }
	
  .filter-bar_blog{ grid-template-columns: 1fr; }

  .blog-vote-group{ gap:8px; }
  .like-button, .dislike-button, .blog-vote-yes, .blog-vote-no, .fav-button{
    width:100%;
    justify-content:center;
  }

  .brand__logo{ height:42px; }
  .brand{ margin-left: 16px; }
}



/* =========================
   Profil: Tabellen responsive
   ========================= */
.tablewrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width: 820px; /* sorgt dafür, dass Mobile horizontal scrollen kann */
}

.table th, .table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  text-align:left;
  font-size:13px;
  white-space:nowrap; /* damit Spalten nicht wild umbrechen */
}

.table thead th{
  font-weight:900;
  background: var(--soft);
}
.table tbody tr:last-child td{
  border-bottom:none;
}

/* Floating Menu Button – bleibt sichtbar, auch wenn Header verschwindet */
.navtoggle--floating{
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 100000;
  display: none; /* default aus (Desktop) */
}

/* Nur auf Mobile anzeigen */
@media (max-width: 820px){
  .navtoggle--floating{
    display: inline-flex;
    align-items: center;
    justify-content: center;
	  border: 3px rgba(0,0,0,.06);

  }
	
.navtoggle--floating{
  background: rgba(240, 248, 255, 0.55); /* hellblauer Stich (AliceBlue) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);



  box-shadow:
    0 8px 20px rgba(15,23,42,0.12),
    inset 0 1px 0 rgba(255,255,255,0.55);

  border-radius: 999px;
}


	
}
/* Alter Burger im Header: mehr Abstand */
.header .navtoggle{
  margin-right: 28px;
}


.navtoggle--floating:hover,
.navtoggle--floating:active{
  background: rgba(0,0,0,.06);
}
/* Floating Burger ausblenden, wenn Mobile-Menü offen ist */
.mobilemenu.is-open ~ #navToggleFloating{
  display: none !important;
}

.mobilemenu__panel{
  background: rgba(240, 248, 255, 0.75); /* hellblaues Glas, etwas weniger transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(15,23,42,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);

  max-width: 520px;
  margin: 0 auto;
  padding: 14px;
}


/* margin: 0 auto; (für Button eingemittet) */
@media (max-width: 640px) {
  .btn--primary_blog {

    display: flex;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 22px 0;
  }
}

.label-with-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.9em;
  color: #666;
  padding: 0;
}

.info-btn:hover {
  color: #019E8D; /* NOVApassa Grün */
}

.info-box {
  margin-top: 6px;
  padding: 8px 10px;
  background: #f4f8f7;
  border-left: 3px solid #019E8D;
  font-size: 0.85em;
  border-radius: 4px;
}

