.whpp-floating{
  position: fixed;
  bottom: var(--whpp-bottom, 18px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--whpp-color, #25D366);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  font-weight: 600;
  line-height: 1;
  user-select: none;
}
.whpp-floating:hover{ color:#fff; opacity:.95; text-decoration:none; }
.whpp-pos-right{ right: var(--whpp-side, 18px); }
.whpp-pos-left{ left: var(--whpp-side, 18px); }
.whpp-icon{
  width: 22px; height: 22px; display:inline-block;
  background: #fff;
  -webkit-mask: url('../img/wa.svg') center/contain no-repeat;
  mask: url('../img/wa.svg') center/contain no-repeat;
}
.whpp-label{ font-size: 14px; }

/* Popup */
.whpp-popup{
  position: fixed;
  bottom: calc(var(--whpp-bottom, 18px) + 64px);
  right: var(--whpp-side, 18px);
  width: 320px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
  overflow: hidden;
  display: none;
  z-index: 9999;
}
.whpp-popup.is-open{ display:block; }
.whpp-popup-header{
  background: #f6f7f8;
  padding: 10px 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.whpp-popup-title{ font-weight: 700; }
.whpp-popup-close{
  border:0; background: transparent; font-size: 22px; line-height:1; cursor:pointer;
}
.whpp-popup-body{ padding: 12px; }
.whpp-dep-list{ display:flex; flex-direction:column; gap:10px; }
.whpp-dep{
  width:100%;
  border: 1px solid #e9ecef;
  background:#fff;
  border-radius: 12px;
  padding: 10px 12px;
  text-align:left;
  cursor:pointer;
}
.whpp-dep:hover{ background:#f8f9fa; }
.whpp-dep-name{ font-weight: 700; }
.whpp-dep-hours{ font-size: 12px; color:#6c757d; margin-top:2px; }

.whpp-product-wrap, .whpp-cart-wrap{ margin-top: 10px; }

/* Mobile tweaks */
@media (max-width: 768px){
  .whpp-floating{ padding: 12px 16px; }
  .whpp-label{ font-size: 15px; }
  .whpp-popup{ right: 12px; bottom: 92px; }
}
