/* ============================================================
   Baltz Widgets – Button
   ============================================================ */

.baltz-button-wrap {
  display: inline-block;
}

.baltz-hero-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #d1d5db;
  background-color: transparent;
  color: #343a69;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.baltz-hero-button .button-text {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.baltz-hero-button .button-icon {
  display: inline-block;
  margin-left: 8px;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.baltz-hero-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #FEA82F;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.baltz-hero-button:hover {
  color: #fff;
  border-color: #FEA82F;
  transform: translateY(-4px);
}

.baltz-hero-button:hover::before {
  width: 100%;
}

.baltz-hero-button:hover .button-icon {
  transform: translateX(5px);
}
