/* Add custom CSS styles below */ 
.esbt-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  z-index: 9999;
  cursor: pointer;
}
.esbt-whatsapp img {
  width: 100%;
  height: 100%;
}


/* ESBT Hero Buttons */
.esbt-hero-buttons {
  display: flex;
  gap: 16px;
  margin: 24px auto 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
}

.esbt-btn {
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* PRIMARY — calm industrial navy */
.esbt-btn-primary {
  background: #1f2a37;
  color: #ffffff;
  border: 1px solid #1f2a37;
}

.esbt-btn-primary:hover {
  background: #111827;
}

/* Mobile */
@media (max-width: 768px) {
  .esbt-hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 16px;
  }
  .esbt-btn {
    width: 100%;
    white-space: normal; /* allow wrap on small screens */
    text-align: center;
  }
}