/* Floating WhatsApp styles */
.no_nggeser{ overflow:hidden;}
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 3; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-button { width: 56px; height: 56px; border-radius: 50%; border: none; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(37,211,102,.35); cursor: pointer; transition: transform .15s ease, box-shadow .2s ease; }
.wa-button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(37,211,102,.45); }
.wa-button i { font-size: 26px; }

/* Dropdown card */
.wa-menu { width: 260px; max-width: calc(100vw - 40px); backdrop-filter: blur(10px); background: linear-gradient(to right, #175ea056 0%, #175ea000 100%); border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.15); overflow: hidden; border: 1px solid rgba(0,0,0,.06); }
.wa-menu.hidden { display: none; }
.wa-menu__header { padding: 10px 12px; font-weight: 700; background: #f6fff9; color: #128C7E; border-bottom: 1px solid rgba(0,0,0,.06); background: linear-gradient(to right, #175ea056 0%, #175ea000 100%); }
.wa-menu__list { list-style: none; padding: 6px; margin: 0; max-height: 50vh; overflow: auto; }
.wa-item { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 8px; cursor: pointer; transition: background .15s ease; }
.wa-item:hover { background-color: var(--primarycolor);
        color: white; }
.wa-item__icon { width: 28px; height: 28px; display: grid; place-items: center; color: white; margin-bottom: 6px; }
.wa-item__text { display: flex; align-items: center; }
.wa-item__text--single { height: 40px; }
.wa-item__label { font-weight: 700; line-height: 1; color: white; }
/* description removed; no styles needed */

/* Small screen tweaks */
@media (max-width: 576px) {
  .wa-float { right: 14px; bottom: 14px; }
  .wa-button { width: 54px; height: 54px; }
}
