/* Product enquiry form */
.wfl-enquiry-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: transparent;
  padding: 0;
border: 2px solid #BB4D73;
  border-radius: 5px;
}

.wfl-enquiry-form form {
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 3px;
}

.wfl-enquiry-form label {
  display: block;
  margin: 0 0 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  text-align: left;
  color: #1a1a1a;
}

.wfl-enquiry-form input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 0 16px;
  border: 1px solid #c0ccda;
  border-radius: 3px;
  background: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: #1a1a1a;
}

.wfl-enquiry-form input:focus {
  outline: none;
  border-color: #2fa7a0;
  box-shadow: 0 0 0 2px #e0f3f2;
}

.wfl-enquiry-form button {
  padding: 10px 20px;
  border: 0;
  border-radius: 3px;
  background-color: #bb4d73;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.wfl-enquiry-form button:hover,
.wfl-enquiry-form button:focus {
  background-color: #2fa7a0;
  outline: none;
}

/*Modal overlay*/
.wfl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
}

.wfl-modal-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    box-sizing: border-box;
}

.wfl-close-btn {
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #666;
}
