.jutc-animated-button {
  /* Defaults – overrides via Elementor panel */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  border: 4px solid greenyellow;
  border-radius: 100px;
  color: greenyellow;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
}

.jutc-animated-button .jutc-arr-1,
.jutc-animated-button .jutc-arr-2 {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: greenyellow;
  transition: all 0.8s cubic-bezier(0.23,1,0.32,1);
  z-index: 2;
}

.jutc-arr-1 { right: 16px; }
.jutc-arr-2 { left: -25%; }

.jutc-animated-button .jutc-text {
  position: relative;
  z-index: 3;
  transform: translateX(-12px);
  transition: transform .8s cubic-bezier(0.23,1,0.32,1);
}

.jutc-animated-button .jutc-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%,-50%);
  transition: all .8s cubic-bezier(0.23,1,0.32,1);
  z-index: 1;
}

.jutc-animated-button:hover {
  color: #212121;
  border-radius: 12px;
  box-shadow: 0 0 0 12px transparent;
}

.jutc-animated-button:hover .jutc-arr-1 { right: -25%; }
.jutc-animated-button:hover .jutc-arr-2 { left: 16px; }
.jutc-animated-button:hover .jutc-text { transform: translateX(12px); }
.jutc-animated-button:hover .jutc-circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.jutc-animated-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 0 4px greenyellow;
}
