.ajec-wa-float-trigger {
  position: fixed;
  bottom: 165px;
  right: 30px;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #25D366;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  -webkit-appearance: none;
}

.ajec-wa-float-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.ajec-wa-float-trigger svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  pointer-events: none;
}

.ajec-wa-float-trigger .ajec-wa-icon-close {
  display: none;
}

.ajec-wa-float-trigger.is-active .ajec-wa-icon-wa {
  display: none;
}

.ajec-wa-float-trigger.is-active .ajec-wa-icon-close {
  display: block;
}

.ajec-wa-float-panel {
  position: fixed;
  bottom: 237px;
  right: 33px;
  z-index: 9999999;
  width: 370px;
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  display: none;
}

.ajec-wa-float-panel.is-open {
  display: block;
}

.ajec-wa-float-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #eee;
}

.ajec-wa-float-panel__title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

.ajec-wa-float-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.15s;
}

.ajec-wa-float-panel__close:hover {
  background: #e0e0e0;
}

.ajec-wa-float-panel__close svg {
  width: 14px;
  height: 14px;
  stroke: #555;
  stroke-width: 2;
  fill: none;
  pointer-events: none;
}

.ajec-wa-float-panel__body {
  padding: 16px 18px 20px;
}

.ajec-wa-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.ajec-wa-field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.ajec-wa-field label {
  display: block;
  margin: 0 0 6px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

.ajec-wa-field input,
.ajec-wa-field textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  background: #fafafa;
  font-size: 15px;
  line-height: 1.4;
  color: #111;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
}

.ajec-wa-field input:focus,
.ajec-wa-field textarea:focus {
  border-color: #25D366;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.ajec-wa-field textarea {
  min-height: 88px;
  resize: vertical;
}

.ajec-wa-field input:-webkit-autofill,
.ajec-wa-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fafafa inset;
  box-shadow: 0 0 0 1000px #fafafa inset;
  -webkit-text-fill-color: #111;
}

.ajec-wa-submit {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: #25D366;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ajec-wa-submit:hover {
  background: #25D366;
  opacity: 0.95;
}

@media (max-width: 480px) {
  .ajec-wa-float-trigger {
    bottom: 157px;
    right: 30px;
  }

  .ajec-wa-float-panel {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 229px;
    max-height: calc(100dvh - 229px - 10px);
    max-height: calc(100svh - 229px - 10px);
    overflow: hidden;
    display: none;
    flex-direction: column;
  }

  .ajec-wa-float-panel.is-open {
    display: flex;
  }

  .ajec-wa-float-panel__header {
    flex-shrink: 0;
    padding: 12px 14px 10px;
  }

  .ajec-wa-float-panel__title {
    font-size: 14px;
  }

  .ajec-wa-float-panel__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 10px 12px 12px;
  }

  .ajec-wa-form {
    gap: 8px;
  }

  .ajec-wa-field label {
    margin: 0 0 3px;
    font-size: 11px;
  }

  .ajec-wa-field input,
  .ajec-wa-field textarea {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 14px;
    border-radius: 6px;
  }

  .ajec-wa-field textarea {
    min-height: 48px;
    max-height: 48px;
    height: 48px;
    resize: none;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .ajec-wa-submit {
    min-height: 40px;
    margin-top: 2px;
    padding: 9px 14px;
    font-size: 14px;
  }
}
