/* ── Feed tab dropdown (kiri) ── */
.fdrop { position: relative }
.fdrop-btn { display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; color: var(--ink); font-size: .92rem; font-weight: 700; font-family: var(--fd); font-style: italic; padding: 4px 2px }
.fdrop-btn svg { width: 16px; height: 16px; color: var(--i3) }
.fdrop-menu { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: var(--w); border: 1px solid var(--b); border-radius: 10px; padding: 4px 0; z-index: 200; min-width: 160px; box-shadow: 0 4px 20px rgba(0,0,0,.1) }
.fdrop-menu.open { display: block }
.fdrop-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; font-size: .82rem; color: var(--i2); cursor: pointer; transition: background .1s; border: none; background: none; width: 100%; text-align: left }
.fdrop-item:hover { background: var(--bs) }
.fdrop-item.on { color: var(--ink); font-weight: 600 }
.fdrop-item.on::after { content: '✓'; color: var(--a); font-size: .8rem }

/* ── Filter dropdown (kanan) ── */
.hflt { position: relative }
.hflt-btn { display: flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; color: var(--i3); font-size: .78rem; font-weight: 500; padding: 4px 8px; border-radius: 7px; transition: color .12s }
.hflt-btn:hover { color: var(--ink) }
.hflt-btn svg { width: 18px; height: 18px }
.hflt-label { font-size: .74rem; color: var(--i3) }
.hflt-label.active { color: var(--a); font-weight: 600 }
.hflt-menu { display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--w); border: 1px solid var(--b); border-radius: 10px; padding: 4px 0; z-index: 200; min-width: 150px; box-shadow: 0 4px 20px rgba(0,0,0,.1) }
.hflt-menu.open { display: block }
.hflt-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; font-size: .8rem; color: var(--i2); cursor: pointer; transition: background .1s; border: none; background: none; width: 100%; text-align: left }
.hflt-item:hover { background: var(--bs) }
.hflt-item.on { color: var(--ink); font-weight: 600 }
.hflt-item.on::after { content: '✓'; color: var(--a); font-size: .8rem }

/* ── FAB button ── */
.fab { width: 48px; height: 48px; border-radius: 50%; background: var(--a); color: #fff; border: none; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.18); cursor: pointer; z-index: 150; transition: background .12s, transform .1s }
.fab:active { transform: scale(.93) }
.fab svg { width: 22px; height: 22px }

/* ── FAB modal ── */
.fab-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); align-items: flex-end; justify-content: center; z-index: 300 }
.fab-modal.open { display: flex }
.fab-modal-box { background: var(--w); border-radius: 18px 18px 0 0; padding: 20px 20px 32px; width: 100%; max-width: 560px; border-top: 1px solid var(--b) }
@media (min-width: 681px) {
  .fab-modal { align-items: center }
  .fab-modal-box { border-radius: 14px; max-width: 420px; padding: 22px }
}
.fab-modal-title { font-family: var(--fd); font-size: .9rem; font-style: italic; color: var(--a); margin-bottom: 12px; text-align: center; opacity: .9 }
.fab-modal-ta { width: 100%; border: 1px solid var(--b); border-radius: 10px; padding: 10px 14px; font-size: .84rem; color: var(--ink); resize: none; outline: none; background: var(--bs); font-family: inherit; line-height: 1.5; min-height: 80px }
.fab-modal-ta:focus { border-color: var(--ab); background: var(--w) }
.fab-modal-foot { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 10px }
.fab-modal-cancel { padding: 6px 14px; background: none; color: var(--i3); border: 1px solid var(--b); border-radius: 99px; font-size: .76rem; cursor: pointer }
.fab-modal-post { padding: 6px 18px; background: var(--a); color: #fff; border: none; border-radius: 99px; font-size: .76rem; font-weight: 600; cursor: pointer }
.fab-modal-post:disabled { opacity: .5; cursor: default }

/* ── FAB speed dial ── */
.fab-dial { position: fixed; bottom: 76px; right: 16px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 8px }
.fab-dial-options { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .2s, transform .2s }
.fab-dial-options.open { opacity: 1; pointer-events: all; transform: translateY(0) }
.fab-dial-opt { display: flex; align-items: center; gap: 8px; background: var(--w); color: var(--ink); border: 1px solid var(--b); border-radius: 99px; padding: 7px 14px 7px 10px; font-size: .78rem; font-weight: 500; cursor: pointer; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.08); font-family: inherit }
.fab-dial-opt:hover { background: var(--bs) }
