.floating-web-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 99999;

  background: #aa0209; /* matches your theme red */
  color: #ffffff;

  border: none;
  border-radius: 50px; /* more rounded */
  
  padding: 18px 28px; /* bigger size */
  font-size: 18px;    /* larger text */
  font-weight: 700;

  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);

  transition: all 0.2s ease;
}

.web-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 99998;
  padding: 20px;
  box-sizing: border-box;
}

.web-popup-overlay.active {
  display: block;
}

.web-popup-box {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 85vh;
  max-height: 750px;
  margin: 40px auto 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.web-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f4f6;
  padding: 12px 16px;
}

.web-popup-title {
  color: #111827;
  font-size: 15px;
  font-weight: 600;
}

.web-popup-close {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #111827;
}

.web-popup-frame {
  width: 100%;
  height: calc(100% - 53px);
  border: none;
}

body.popup-open {
  overflow: hidden;
}