.elementor-1880 .elementor-element.elementor-element-8f619bf{--display:flex;--padding-top:70px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-599b7cc */.payment-form {
  max-width: 520px;
  margin: auto;
  padding: clamp(16px, 4vw, 28px); /* 🔥 responsive padding */
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.5vw, 18px); /* flexible spacing */
}

/* Heading */
.payment-form h2 {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 600;
  margin-bottom: 5px;
}

/* Inputs + Textarea */
.payment-form input,
.payment-form textarea,
.payment-form select {
  padding: clamp(12px, 3vw, 16px); /* 🔥 responsive input padding */
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: clamp(13px, 2.5vw, 15px);
  width: 100%;
  box-sizing: border-box;
}

/* Textarea specific */
.payment-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* SELECT */
.payment-form select {
  height: clamp(44px, 6vw, 52px); /* adaptive height */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #000;
  background-color: #fff;

  /* Custom dropdown arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* Placeholder-like hint */
.payment-form select:invalid {
  color: #999;
}

/* Row (currency + amount) */
.row {
  display: flex;
  gap: clamp(8px, 2vw, 12px);
}

.row select {
  width: 40%;
}

.row input {
  width: 60%;
}

/* Button */
.payment-form button {
  padding: clamp(13px, 3vw, 16px);
  border: none;
  background: #0a0a0a;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(14px, 2.5vw, 16px);
  transition: all 0.25s ease;
}

.payment-form button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Trust note */
.trust-note {
  font-size: clamp(12px, 2.5vw, 13px);
  color: #777;
  text-align: center;
  margin-top: 5px;
}

/* Focus state */
.payment-form input:focus,
.payment-form select:focus,
.payment-form textarea:focus {
  outline: none;
  border-color: #999;
}

/* 🔥 MOBILE FIX */
@media (max-width: 600px) {
  .payment-form {
    padding: 16px;
  }

  .row {
    flex-direction: column;
  }

  .row select,
  .row input {
    width: 100%;
  }
}/* End custom CSS */