/* ============================================================
   wf-suite.css — Wedding-Suite-Chrome für ECHTE cms-core-Seiten.
   Bringt die "Suite Bar" (Website|Paper-Switch + globale Aktionen)
   und das lazy Paper-Panel direkt in die gekaufte Hochzeits-Seite.
   Sichtbar nur im Edit-Modus (oder Paper-Modus) → Gäste sehen nichts.
   Klassen sind wf-suite-* geprefixt, um nie mit dem Template zu kollidieren.
   ============================================================ */
.wf-suite-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 60px; z-index: 100000;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 1.3rem; background: #fff; font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 2px 18px rgba(40,36,30,.06), 0 0 1px rgba(40,36,30,.08);
}
.wf-suite-bar.is-hidden { display: none; }
body.wf-suite-barvisible { padding-top: 60px; }

.wf-suite-left { display: flex; align-items: center; gap: .75rem; justify-self: start; }
.wf-suite-logo { display: flex; align-items: center; gap: .5rem; font-size: 20px; font-weight: 500; letter-spacing: -.01em; font-family: 'Playfair Display', serif; }
.wf-suite-logo i { color: #C4727F; font-size: 23px; }
.wf-suite-logo span { color: #444; }
.wf-suite-logo em { color: #C4727F; font-style: italic; font-weight: 400; }
.wf-suite-div { width: 1px; height: 22px; background: #E4E2DD; }
.wf-suite-tool { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: #8a857d; }

.wf-suite-tg { justify-self: center; display: flex; background: #F1EEE9; border-radius: 980px; padding: 4px; box-shadow: inset 0 1px 3px rgba(40,36,30,.06); }
.wf-suite-tg button { display: inline-flex; align-items: center; gap: .5rem; border: none; background: transparent; cursor: pointer; padding: .5rem 1.3rem; border-radius: 980px; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #7a756d; transition: background .2s, color .2s, box-shadow .2s; }
.wf-suite-tg button i { font-size: 16px; }
.wf-suite-tg button.is-active { background: #fff; color: #2b2926; box-shadow: 0 2px 10px rgba(40,36,30,.12); }

.wf-suite-actions { justify-self: end; display: flex; align-items: center; gap: .15rem; }
.wf-suite-act { display: inline-flex; flex-direction: column; align-items: center; gap: 3px; border: none; background: transparent; cursor: pointer; padding: .4rem .55rem; border-radius: 12px; font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #2b2926; transition: background .2s; }
.wf-suite-act i { font-size: 20px; }
.wf-suite-act span { line-height: 1; }
.wf-suite-act:hover { background: #F1EEE9; }

.wf-suite-paper { position: fixed; top: 60px; left: 0; right: 0; bottom: 0; z-index: 99999; background: #FAF8F5; display: none; }
.wf-suite-paper.show { display: block; }
.wf-suite-paper iframe { width: 100%; height: 100%; border: none; display: block; background: #FAF8F5; }
.wf-suite-loader { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: .6rem; background: #FAF8F5; font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #9A958D; }
.wf-suite-loader.hidden { display: none; }
.wf-suite-loader i { font-size: 20px; color: #C4727F; animation: wf-suite-spin 1s linear infinite; }
@keyframes wf-suite-spin { to { transform: rotate(360deg); } }

@media (max-width: 720px) {
  .wf-suite-bar { grid-template-columns: auto 1fr auto; gap: .5rem; padding: 0 .7rem; }
  .wf-suite-tool, .wf-suite-div { display: none; }
  .wf-suite-act span { display: none; }
  .wf-suite-act { padding: .4rem; }
}
