.df-container h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: center;
}

.df-form {
    max-width: 600px;
    margin: 0 auto;
}

.df-amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.df-amount-option {
    position: relative;
}

.df-amount-options > .df-amount-option:first-child,
.df-amount-options > .df-amount-option:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
}

.df-amount-options > .df-amount-option:first-child label {
   padding: 0; 
}

.df-amount-option input[type="radio"] {
    display: none;
}

.df-amount-option label {
    display: block;
    background-color: #444;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.df-amount-option input[type="radio"]:checked + label,
.df-amount-option input[type="radio"]:checked + label .df-amount-card-top {
    background-color: #b94013;
}

.df-amount-card-top{
  display: block;
  text-align: center;
  padding: 15px;
  background: #444;
  color: #fff;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.5px;
  border-radius: 20px 20px 0 0;
  font-family: 'Poppins';
}

.df-amount-card-bottom{
  display: block;
  text-align: center;
  padding: 5px;
  background: #ead3bf;
  color: #000;
  font-weight: 900;
  font-size: 28px;
  border-radius: 0 0 20px 20px;
}

.df-form-field {
    margin-bottom: 20px;
}

.df-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
}

.df-form-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;

    box-sizing: border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
}

#df-optional_amount_wrap {
    display: none;
}

#df-amount_x:checked ~ #df-optional_amount_wrap {
    display: block;
}

#df-optional_amount {
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins';
}

#df-optional_amount:focus-within {
  border: 1px solid #0b5fff;
  outline: none;
}

.df-divider {
    background-color: #444;
    height: 2px;
    width: 90%;
    margin: 15px auto;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #b94013;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
}

#toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #333;
    background-color: #fff;
    border: #333 1px solid;
    padding: 12px 16px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

#toast.show {
    opacity: 1;
}

.swish-phone-field {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0 10px;
  margin: 0 auto;
}

.swish-prefix {
  white-space: nowrap;
  font-size: 20px;
  font-weight: 600;
  margin-right: 6px;
  color: #333;
}

.swish-phone-field input {
  border: none;
  outline: none;
  flex: 1;
  padding: 15px 6px;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  font-family: var(--wp--preset--font-family--manrope);
}

.swish-phone-field:focus-within {
  border-color: #0b5fff;
}
