/* =========================================================================
   BBBBB – sommerlich-berlinerisches Neo-Brutalismus-Theme
   ========================================================================= */

:root {
  --ink:    #1c140d;
  --cream:  #fff3da;
  --paper:  #fffaf0;
  --sun:    #ffc83d;
  --orange: #ff7a2f;
  --pink:   #ff4d8d;
  --teal:   #19c2b0;
  --grape:  #7b5cff;
  --lime:   #c2ec4f;
  --border:    3px solid var(--ink);
  --shadow:    5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 520px at 80% -8%, rgba(255,200,61,.55), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(25,194,176,.30), transparent 55%),
    var(--cream);
  background-attachment: fixed;
}

a { color: inherit; }

/* ---- Deko-Bubbles ------------------------------------------------------- */
.bubbles { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bubble {
  position: absolute; border-radius: 50%; opacity: .5;
  border: 3px solid var(--ink);
  animation: float 13s ease-in-out infinite;
}
.b1 { width: 90px;  height: 90px;  background: var(--pink);   top: 18%; left: 6%;  animation-delay: 0s; }
.b2 { width: 50px;  height: 50px;  background: var(--teal);   top: 70%; left: 12%; animation-delay: 2s; }
.b3 { width: 120px; height: 120px; background: var(--sun);    top: 30%; right: 8%; animation-delay: 1s; }
.b4 { width: 40px;  height: 40px;  background: var(--grape);  top: 80%; right: 18%;animation-delay: 3s; }
.b5 { width: 64px;  height: 64px;  background: var(--lime);   top: 55%; right: 4%; animation-delay: 1.5s; }
.b6 { width: 30px;  height: 30px;  background: var(--orange); top: 12%; left: 42%; animation-delay: 2.5s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-26px) rotate(8deg); } }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px; padding: 16px clamp(16px, 4vw, 48px);
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,250,240,.82); backdrop-filter: blur(8px);
  border-bottom: var(--border);
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-logo {
  font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.9rem; letter-spacing: -1px;
  color: var(--ink);
  -webkit-text-stroke: 0;
  background: linear-gradient(90deg, var(--orange), var(--pink), var(--grape));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-sub { font-size: .68rem; font-weight: 500; opacity: .65; margin-top: 3px; }
.nav { display: flex; gap: 8px; flex-wrap: wrap; }
.nav a {
  font-family: "Syne", sans-serif; font-weight: 700; text-decoration: none; font-size: .98rem;
  padding: .42em .9em; border: 2px solid transparent; border-radius: 999px;
}
.nav a:hover { background: var(--paper); border-color: var(--ink); }
.nav a.active { background: var(--sun); border-color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---- Layout ------------------------------------------------------------- */
.container { max-width: 1080px; margin: 0 auto; padding: clamp(20px, 4vw, 44px) clamp(16px, 4vw, 40px) 64px; }
.block { margin-top: 56px; }
.section-title { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.7rem; margin: 0 0 18px; }
.muted { opacity: .65; }
.tag { font-size: 1.12rem; line-height: 1.5; max-width: 60ch; margin: 12px auto 0; }
.tag.warn { color: #b3261e; font-weight: 600; }

.page-head { text-align: center; margin-bottom: 26px; }
.page-head h1, .hero h1 { font-family: "Syne", sans-serif; font-weight: 800; letter-spacing: -1.5px; line-height: 1.02; }
.page-head h1 { font-size: clamp(2rem, 6vw, 3rem); margin: 0; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .45em; cursor: pointer;
  font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.02rem;
  padding: .68em 1.25em; border: var(--border); border-radius: 999px;
  background: var(--paper); color: var(--ink); text-decoration: none;
  box-shadow: var(--shadow-sm); transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: var(--shadow); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--sun); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-ghost { background: var(--paper); }
.btn-block { width: 100%; justify-content: center; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; box-shadow: var(--shadow-sm); }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; text-align: center; padding: 40px 0 12px; }
.hero h1 { font-size: clamp(2.6rem, 9vw, 5rem); margin: 0; }
.hero .dot { color: var(--pink); }
.hero .hl {
  background: var(--lime); padding: 0 .12em; border: var(--border); border-radius: 12px;
  box-shadow: var(--shadow-sm); display: inline-block; transform: rotate(-2deg);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.sticker {
  position: absolute; z-index: 2; font-family: "Syne", sans-serif; font-weight: 800; font-size: .9rem;
  padding: .35em .8em; border: var(--border); border-radius: 999px; box-shadow: var(--shadow-sm);
}
.sticker-1 { top: 6px; right: 8%; background: var(--teal); transform: rotate(-7deg); }
.sticker-2 { top: 78px; left: 6%; background: var(--pink); color: #fff; transform: rotate(8deg); }

/* ---- Stats strip -------------------------------------------------------- */
.stats-strip { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.stat {
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 16px 26px; text-align: center; min-width: 120px;
}
.stat .num { display: block; font-family: "Syne", sans-serif; font-weight: 800; font-size: 2.1rem; line-height: 1; }
.stat .lbl { font-size: .85rem; opacity: .7; }

/* ---- Podium ------------------------------------------------------------- */
.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.podium-card {
  text-decoration: none; color: var(--ink); text-align: center; padding: 20px 12px;
  border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); display: flex;
  flex-direction: column; gap: 4px; align-items: center;
}
.pc-1 { background: var(--sun); } .pc-2 { background: var(--teal); } .pc-3 { background: var(--orange); }
.podium-rank { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.3rem; }
.podium-emoji { font-size: 2.6rem; }
.podium-name { font-weight: 700; }
.podium-score { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.6rem; }
.podium-score small { font-size: .8rem; opacity: .7; }

/* ---- How-it-works ------------------------------------------------------- */
.how { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.how-step {
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 20px; position: relative;
}
.how-num {
  position: absolute; top: -16px; left: -10px; width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--pink); color: #fff; border: var(--border); border-radius: 50%;
  font-family: "Syne", sans-serif; font-weight: 800;
}
.how-step h3 { font-family: "Syne", sans-serif; margin: 6px 0; }
.how-step p { margin: 0; font-size: .95rem; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band {
  text-align: center; background: var(--grape); color: #fff; border: var(--border);
  border-radius: 24px; box-shadow: var(--shadow); padding: 34px;
}
.cta-band h2 { font-family: "Syne", sans-serif; font-size: 1.8rem; margin: 0 0 16px; }

/* ---- Taster bar + filters ---------------------------------------------- */
.taster-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 12px 16px; margin-bottom: 18px;
}
.taster-bar label { font-family: "Syne", sans-serif; font-weight: 700; }
.taster-bar input { flex: 1; min-width: 160px; }
.taster-hint { font-size: .8rem; opacity: .6; }

input[type=text], input[type=email], input[type=password], input[type=number], select {
  font-family: inherit; font-size: 1rem; padding: .55em .7em; border: 2px solid var(--ink);
  border-radius: 10px; background: #fff; color: var(--ink);
}
input:focus, select:focus, .score-btn:focus-visible { outline: 3px solid var(--grape); outline-offset: 1px; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  font-family: "Syne", sans-serif; font-weight: 700; text-decoration: none; font-size: .9rem;
  padding: .4em .9em; border: 2px solid var(--ink); border-radius: 999px; background: var(--paper); color: var(--ink);
}
.chip:hover { background: var(--lime); }
.chip.active { background: var(--ink); color: var(--cream); }
.chip-sm { font-size: .72rem; padding: .2em .6em; pointer-events: none; }
.chip-a { background: var(--sun); } .chip-b { background: var(--teal); }
.chip-c { background: var(--lime); } .chip-d { background: var(--orange); }

/* ---- Flavor cards ------------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 18px; }
.flavor-card {
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px; display: flex; flex-direction: column; gap: 10px;
}
.fc-top { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: start; }
.fc-emoji { font-size: 2.4rem; line-height: 1; }
.fc-name { font-family: "Syne", sans-serif; font-size: 1.25rem; margin: 0 0 4px; }
.fc-avg { text-align: right; }
.avg-val { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.7rem; }
.avg-out { font-size: .8rem; opacity: .6; }
.avg-count { display: block; font-size: .75rem; opacity: .65; }
.fc-desc { margin: 0; font-size: .95rem; }
.fc-pair { margin: 0; font-size: .88rem; opacity: .85; }

.rate { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 8px; border-top: 2px dashed rgba(28,20,13,.2); }
.score { display: flex; flex-wrap: wrap; gap: 6px; }
.score-btn {
  width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: 9px; background: #fff;
  font-family: "Syne", sans-serif; font-weight: 700; cursor: pointer; transition: transform .06s, background .1s;
}
.score-btn:hover { background: var(--lime); }
.score-btn.selected { background: var(--orange); color: #fff; transform: scale(1.08); box-shadow: var(--shadow-sm); }
.note-input { width: 100%; }

/* ---- Add flavor --------------------------------------------------------- */
.add-flavor details { background: var(--paper); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 16px; }
.add-flavor summary { list-style: none; display: inline-flex; }
.add-flavor summary::-webkit-details-marker { display: none; }
.add-form { margin-top: 16px; display: flex; flex-direction: column; gap: 14px; }
.add-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.add-grid label, .upload-name, .review-name, .taster-bar label { display: flex; flex-direction: column; gap: 5px; font-size: .85rem; font-weight: 600; }
.add-wide { grid-column: 1 / -1; }

/* ---- Ranking ------------------------------------------------------------ */
.rank-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 12px; }
.rank-row {
  display: grid; grid-template-columns: 46px 48px 1fr; gap: 12px; align-items: center;
  background: var(--paper); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 14px 16px;
}
.rank-row.unrated { opacity: .6; }
.rank-pos { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.5rem; text-align: center; }
.rank-emoji { font-size: 2rem; }
.rank-line { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.rank-name { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.15rem; }
.rank-score { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.3rem; }
.rank-score small { font-size: .7rem; opacity: .6; }
.rank-bar { height: 12px; background: rgba(28,20,13,.12); border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; margin: 7px 0 5px; }
.rank-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--teal), var(--lime)); transition: width .5s ease; }
.rank-count { font-size: .8rem; opacity: .7; }

/* ---- Upload / Scan ------------------------------------------------------ */
.upload-card {
  max-width: 540px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px;
  background: var(--paper); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px;
}
.dropzone {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; cursor: pointer;
  padding: 28px; border: 3px dashed var(--ink); border-radius: var(--radius); background: #fff;
}
.dropzone input[type=file] { display: none; }
.dz-emoji { font-size: 2.6rem; }
.dz-text { font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.1rem; }
.dz-sub { font-size: .82rem; opacity: .6; }
#preview { max-width: 100%; margin-top: 12px; border: var(--border); border-radius: 12px; }
.info-box {
  max-width: 540px; margin: 22px auto 0; padding: 16px; font-size: .92rem;
  background: var(--sun); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}

/* ---- Scan review -------------------------------------------------------- */
.review-layout { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: 22px; align-items: start; }
.review-photo img { width: 100%; border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.raw-ocr { margin-top: 12px; font-size: .85rem; }
.raw-ocr pre { white-space: pre-wrap; background: var(--paper); border: 2px solid var(--ink); border-radius: 10px; padding: 10px; max-height: 240px; overflow: auto; }
.review-form { background: var(--paper); border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.review-name { margin-bottom: 14px; }
.review-table { width: 100%; border-collapse: collapse; }
.review-table th { font-family: "Syne", sans-serif; text-align: left; padding: 6px; border-bottom: 2px solid var(--ink); }
.review-table td { padding: 6px; border-bottom: 1px solid rgba(28,20,13,.15); }
.review-table tr.hit { background: rgba(194,236,79,.4); }
.rt-name { font-weight: 600; }
.rt-score input { width: 64px; }
.rt-note input { width: 100%; }
.review-actions { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }

/* ---- Print sheet (Bildschirm-Vorschau) --------------------------------- */
.print-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.print-hint { text-align: center; }
.sheet { background: #fff; border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; margin-top: 18px; }
.sheet-head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; border-bottom: 3px solid var(--ink); padding-bottom: 14px; margin-bottom: 16px; }
.sheet-brand { font-family: "Syne", sans-serif; font-weight: 800; font-size: 2rem; letter-spacing: -1px; }
.sheet-sub { font-size: .78rem; opacity: .7; }
.sheet-title { font-family: "Syne", sans-serif; font-weight: 700; font-size: 1.2rem; margin-top: 8px; }
.sheet-fields { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; font-size: .9rem; }
.fill-line { display: inline-block; width: 200px; border-bottom: 2px solid var(--ink); }
.fill-line.short { width: 120px; }
.sheet-qr { text-align: center; font-size: .72rem; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sheet-qr img { border: 2px solid var(--ink); border-radius: 8px; }
.sheet-table { width: 100%; border-collapse: collapse; }
.sheet-table th, .sheet-table td { border: 2px solid var(--ink); padding: 8px 10px; text-align: left; }
.sheet-table th { font-family: "Syne", sans-serif; background: var(--sun); }
.sheet-table .c-num { width: 36px; text-align: center; }
.sheet-table .c-score { width: 92px; text-align: center; }
.sheet-table .c-notes { width: 32%; }
.note-box { display: inline-block; width: 46px; height: 30px; border: 2px solid var(--ink); border-radius: 6px; }
.sheet-foot { font-size: .82rem; opacity: .75; margin-top: 12px; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { text-align: center; padding: 30px 20px 50px; border-top: var(--border); background: rgba(255,250,240,.7); }
.site-footer p { margin: 4px 0; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 720px) {
  .brand-sub { display: none; }
  .podium { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .sticker { display: none; }
  .stat { min-width: 96px; padding: 12px 18px; }
}

/* ---- Auth: Nav + Login-Modal ------------------------------------------- */
.auth-area { display: flex; align-items: center; gap: 8px; }
.auth-link {
  font-family: "Syne", sans-serif; font-weight: 700; cursor: pointer; font-size: .92rem;
  padding: .42em .9em; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--lime); box-shadow: var(--shadow-sm);
}
.auth-link:hover { transform: translate(-1px, -1px); }
.user-chip {
  font-family: "Syne", sans-serif; font-weight: 700; font-size: .88rem; cursor: pointer;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; padding: .35em .8em;
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.user-chip:hover { transform: translate(-1px, -1px); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(28, 20, 13, .55); backdrop-filter: blur(3px); animation: fadein .15s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative; width: 100%; max-width: 380px; background: var(--paper);
  border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 24px; animation: pop .18s ease;
}
@keyframes pop { from { transform: scale(.94); } to { transform: scale(1); } }
.modal h2 { font-family: "Syne", sans-serif; margin: 0 0 4px; font-size: 1.45rem; }
.modal-sub { margin: 0 0 18px; font-size: .9rem; opacity: .75; }
.modal-close {
  position: absolute; top: 8px; right: 12px; border: none; background: none;
  font-size: 1.9rem; line-height: 1; cursor: pointer; color: var(--ink);
}
.modal-foot { margin: 14px 0 0; font-size: .78rem; opacity: .6; text-align: center; }
.btn-google {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  padding: .7em 1em; border: var(--border); border-radius: 999px; background: #fff;
  font-family: "Syne", sans-serif; font-weight: 800; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .08s, box-shadow .08s;
}
.btn-google:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow); }
.btn-google .g {
  display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 2px solid var(--ink); font-family: "Syne", sans-serif; color: #4285F4; font-size: .95rem;
}
.modal-or { display: flex; align-items: center; gap: 10px; margin: 16px 0; opacity: .55; font-size: .82rem; }
.modal-or::before, .modal-or::after { content: ""; flex: 1; height: 2px; background: rgba(28, 20, 13, .25); }
.modal-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.modal-tabs .tab {
  flex: 1; padding: .5em; cursor: pointer; font-family: "Syne", sans-serif; font-weight: 700;
  border: 2px solid var(--ink); border-radius: 999px; background: var(--paper);
}
.modal-tabs .tab.active { background: var(--sun); box-shadow: var(--shadow-sm); }
.auth-form { display: flex; flex-direction: column; gap: 12px; }
.auth-form[hidden] { display: none; }  /* schlaegt .auth-form display:flex */
.auth-form input { width: 100%; padding: .8em .9em; font-size: 1.02rem; }
.auth-error { color: #b3261e; font-weight: 600; font-size: .85rem; margin: 2px 0 0; min-height: 1em; }
.auth-msg { color: var(--teal); font-weight: 600; font-size: .85rem; margin: 2px 0 0; min-height: 1em; }
.auth-msg.error { color: #b3261e; }
.link-btn {
  background: none; border: none; cursor: pointer; align-self: center; padding: 2px;
  color: var(--grape); font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: .85rem; text-decoration: underline;
}
.link-btn:hover { color: var(--pink); }

/* ---- Konto-Modal -------------------------------------------------------- */
.account-modal { max-height: 88vh; overflow-y: auto; }
.acc-form { margin-top: 14px; padding-top: 14px; border-top: 2px dashed rgba(28, 20, 13, .18); }
.acc-label { display: block; font-family: "Syne", sans-serif; font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.acc-badge {
  display: inline-block; font-family: "Syne", sans-serif; font-weight: 700; font-size: .68rem;
  padding: .12em .5em; border: 2px solid var(--ink); border-radius: 999px; margin-left: 4px;
}
.acc-badge.ok { background: var(--lime); }
.acc-badge.warn { background: #ffe0e0; }
.acc-badge.admin { background: var(--sun); }
.btn-danger { background: #b3261e; color: #fff; }
.danger-zone { text-align: center; }
.acc-danger-toggle {
  background: none; border: none; cursor: pointer; text-decoration: underline;
  color: #b3261e; font-family: "Syne", sans-serif; font-weight: 700; font-size: .9rem;
}
.danger-text { font-size: .85rem; color: #b3261e; margin: 8px 0; }

/* ---- Vorschläge --------------------------------------------------------- */
.add-note { font-size: .9rem; opacity: .8; margin: 14px 0 0; }
.suggestions-intro { margin: 0 0 18px; }
.suggestion-card { position: relative; }
.suggestion-card .fc-meta { padding-right: 64px; }
.suggestion-delete {
  position: absolute; top: 8px; right: 10px; width: 28px; height: 28px;
  display: grid; place-items: center; cursor: pointer;
  border: 2px solid var(--ink); border-radius: 50%; background: var(--pink); color: #fff;
  font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.4rem; line-height: 1;
  box-shadow: var(--shadow-sm);
}
.suggestion-delete:hover { transform: translate(-1px, -1px); }
.suggestion-promote {
  position: absolute; top: 8px; right: 44px; width: 28px; height: 28px;
  display: grid; place-items: center; cursor: pointer;
  border: 2px solid var(--ink); border-radius: 50%; background: var(--lime); color: var(--ink);
  font-family: "Syne", sans-serif; font-weight: 800; font-size: 1.4rem; line-height: 1;
  box-shadow: var(--shadow-sm);
}
.suggestion-promote:hover { transform: translate(-1px, -1px); }
.warn-box { background: #ffe0e0; border-color: #b3261e; }
.login-required { text-align: center; align-items: center; gap: 10px; }
.login-required .dz-emoji { font-size: 2.4rem; }

/* ---- E-Mail-Verifikation ----------------------------------------------- */
.verify-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  background: var(--sun); border-bottom: var(--border); padding: 10px 16px;
  font-size: .92rem; font-weight: 600; text-align: center;
}
.verify-btn {
  font-family: "Syne", sans-serif; font-weight: 700; cursor: pointer; font-size: .85rem;
  padding: .35em .8em; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--paper); color: var(--ink); text-decoration: none; box-shadow: var(--shadow-sm);
}
.verify-btn:hover { transform: translate(-1px, -1px); }
.verify-banner.flash-pulse { animation: verifypulse .5s ease 3; }
@keyframes verifypulse { 50% { background: var(--pink); } }
.flash {
  max-width: 60ch; margin: 0 auto 22px; padding: 12px 16px; border: var(--border);
  border-radius: 14px; font-weight: 600; box-shadow: var(--shadow-sm);
}
.flash-ok { background: var(--lime); }
.flash-warn { background: #ffe0e0; border-color: #b3261e; }
.suggestion-by { margin: 0; font-size: .8rem; opacity: .65; }
.vote-btn { margin-top: auto; align-self: flex-start; }
.vote-btn.voted { background: var(--lime); }
