.eabf-booking {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow, 0 8px 24px rgba(15, 23, 42, 0.08));
}

.eabf-header {
  margin-bottom: 16px;
}

.eabf-header h2 {
  margin: 0 0 4px;
  color: var(--primary, #006994);
  font-size: 1.45rem;
  line-height: 1.2;
}

.eabf-header p {
  margin: 0;
  color: var(--text-light, #475569);
  font-weight: 600;
}

.eabf-form {
  display: grid;
  gap: 11px;
}

.eabf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.eabf-form label {
  display: grid;
  gap: 5px;
  color: var(--text, #1e293b);
  font-size: 0.95rem;
  font-weight: 600;
}

.eabf-form input,
.eabf-form textarea {
  width: 100%;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--text, #1e293b);
  background: #fff;
  font: inherit;
  line-height: 1.35;
}

.eabf-form input[readonly] {
  background: #f8fafc;
  color: var(--text-light, #475569);
}

.eabf-form textarea {
  min-height: 82px;
  resize: vertical;
}

.eabf-form input:focus,
.eabf-form textarea:focus {
  outline: 2px solid rgba(0, 105, 148, 0.16);
  border-color: var(--primary, #006994);
}

.eabf-tip {
  margin: -7px 0 0;
  color: var(--text-light, #475569);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
}

.eabf-total {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(0, 105, 148, 0.08);
  color: var(--primary-dark, #004b6e);
  font-weight: 700;
}

.eabf-total:empty {
  display: none;
}

.eabf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  padding: 10px 24px;
  border: 0;
  border-radius: 50px;
  background: var(--primary, #006994);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 105, 148, 0.32);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.eabf-submit:hover,
.eabf-submit:focus {
  background: var(--primary-dark, #004b6e);
  transform: translateY(-1px);
}

.eabf-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.eabf-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 8px;
  min-height: 42px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.eabf-whatsapp-button:hover,
.eabf-whatsapp-button:focus {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

.eabf-whatsapp-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.eabf-response {
  min-height: 20px;
  font-weight: 600;
}

.eabf-response.is-success {
  color: #047857;
}

.eabf-response.is-error {
  color: #b91c1c;
}

@media (max-width: 640px) {
  .eabf-booking {
    padding: 18px;
  }

  .eabf-grid {
    grid-template-columns: 1fr;
  }

  .eabf-submit {
    width: 100%;
  }

  .eabf-whatsapp-button {
    width: 100%;
  }
}
