/* assets/biba-a2hs.css */

.biba-a2hs-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.biba-a2hs-popup-inner {
  background: #ffffff;
  padding: 16px;
  margin: 8px;
  border-radius: 8px 8px 0 0;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.biba-a2hs-popup-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 16px;
}

.biba-a2hs-popup-text {
  font-size: 14px;
  margin-bottom: 12px;
  color: #333333;
}

.biba-a2hs-popup-actions {
  text-align: right;
}

.biba-a2hs-popup-actions button {
  margin-left: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}

.biba-a2hs-btn-add {
  background: #007bff;
  color: #ffffff;
}

.biba-a2hs-btn-add:hover {
  background: #0069d9;
}

.biba-a2hs-btn-later {
  background: #e0e0e0;
  color: #333333;
}

.biba-a2hs-btn-later:hover {
  background: #d0d0d0;
}

/* ডেস্কটপে চাইলে লুকানো */
@media (min-width: 900px) {
  .biba-a2hs-popup {
    display: none;
  }
}