.btn-link {
  position: relative;
  font-family: "SVN-Gotham-Book";
  font-size: 1em;
  font-weight: bolder;
  padding: .5em 1.5em;
  color: #159047;
  background-color: #fff600;
  border-radius: 1.5rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: .75rem;
  overflow: hidden; /* để hiệu ứng sáng không tràn */
  transition: all 0.3s ease;
}
.btn-link-box {
  margin-top: 4px;
  position: relative;
  font-family: "SVN-Gotham-Book";
  font-weight: bolder;
  padding: .4em .75em;
  color: #159047;
  background-color: #fff600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: .85rem;
  overflow: hidden; /* để hiệu ứng sáng không tràn */
  transition: all 0.3s ease;
}

/* Vòng tròn chứa mũi tên */
.arrow-circle {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #159047;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 0.9em;
}
.btn-link-box .arrow-circle {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #159047;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 0.55em;
}

/* Hiệu ứng sóng sáng cho vòng tròn */
.arrow-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}
.arrow-circle i{
  font-size: .75rem;
    margin-top: 2px;
}

@keyframes shine {
  0%   { left: -50%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}

/* Hiệu ứng hover toàn button */
.btn-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}
.btn-link-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.btn-link:hover {
  background-color: #159047;
  color: #fff;
}
.btn-link:hover {
  background-color: #159047;
  color: #fff;
}

.btn-link-box:hover::after {
  left: 125%; /* chạy qua khi hover */
}
.btn-link:hover .arrow-circle{
    background: #fff600;
}
.btn-link-box:hover .arrow-circle{
    border: 1px solid  #159047;
}
.btn-link:hover .arrow-circle i{
    color: #159047;
}
.btn-link-box:hover .arrow-circle i{
    color: #fff600;
}

button.btn-link{
  border-radius: 1.5rem !important;
  border: none;
  box-shadow: inset;
}