.ch-wfp-amount-widget {
  display: flex;
  gap: 12px;
  align-items: center;
}

input[type="number"].ch-wfp-amount-input {
  width: 160px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  border: 2px solid #e0e0e0 !important;
  background-color: #fafafa !important;
  background-image: none !important;
  color: #111827 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  outline: none !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, background-color 0.2s ease !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

input[type="number"].ch-wfp-amount-input::-webkit-inner-spin-button,
input[type="number"].ch-wfp-amount-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].ch-wfp-amount-input:hover {
  border-color: #FFE205 !important;
  background-color: #ffffff !important;
}

input[type="number"].ch-wfp-amount-input:focus {
  border-color: #FFE205 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(255, 226, 5, 0.3), inset 0 1px 2px rgba(0, 0, 0, 0.02) !important;
  transform: translateY(-1px) !important;
}

input[type="number"].ch-wfp-amount-input::placeholder {
  color: #9ca3af !important;
  font-weight: 400 !important;
}

/* Reset any inherited theme styles and apply our own */
button.ch-wfp-button,
button.ch-wfp-button[type="button"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  background-color: #FFE205 !important;
  background-image: none !important;
  color: #000000 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  text-transform: none !important;

  padding: 0 32px !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;

  box-shadow: 0 6px 0 #d0b908 !important;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease !important;
  opacity: 1 !important;
}

button.ch-wfp-button:hover,
button.ch-wfp-button[type="button"]:hover {
  background-color: #ffea4a !important;
  background-image: none !important;
  color: #000000 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 0 #d0b908 !important;
  transform: none !important;
  opacity: 1 !important;
}

button.ch-wfp-button:focus,
button.ch-wfp-button[type="button"]:focus {
  background-color: #ffea4a !important;
  outline: 2px solid rgba(255, 226, 5, 0.5) !important;
  outline-offset: 2px !important;
  box-shadow: 0 6px 0 #d0b908 !important;
}

button.ch-wfp-button:active,
button.ch-wfp-button[type="button"]:active {
  transform: translateY(2px) !important;
  box-shadow: 0 4px 0 #b6a207 !important;
  background-color: #f5d800 !important;
}

button.ch-wfp-button:disabled,
button.ch-wfp-button[type="button"]:disabled {
  opacity: 0.7 !important;
  cursor: default !important;
  box-shadow: none !important;
  transform: none !important;
}

.ch-wfp-toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ch-wfp-toast {
  min-width: 260px;
  max-width: 360px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #111827;
  color: #f9fafb;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
  cursor: pointer;
}

.ch-wfp-toast--error {
  background: #B91C1C;
}

.ch-wfp-toast--success {
  background: #166534;
}

.ch-wfp-toast--info {
  background: #111827;
}
