/* Container for text + button */
.feature-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

/* Animated text */
.feature-text {
  font-size: 17px;
  font-weight: 600;
  background: linear-gradient(90deg, #6a3df5, #5b4bff, #3bb7ff, #b34bff);
  background-size: 300% 300%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textMove 6s ease-in-out infinite;
  white-space: wrap;
}

@keyframes textMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Fujn animated gradient button */
.gradient-nav-btn {
  position: relative;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #6a3df5, #5b4bff, #3bb7ff, #b34bff);
  background-size: 300% 300%;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  animation: navMove 8s ease-in-out infinite;
  overflow: hidden;
}

.gradient-nav-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #9d5bff, #00e5ff, #6a3df5, #00e5ff);
  background-size: 400% 400%;
  opacity: 0.45;
  z-index: 0;
  border-radius: 6px;
  animation: borderMove 4s linear infinite;
}

.gradient-nav-btn span {
  position: relative;
  z-index: 1;
}

.gradient-nav-btn:hover {
  box-shadow: 0 0 12px rgba(123, 61, 245, 0.7),
              0 0 18px rgba(59, 183, 255, 0.5);
  transform: translateY(-1px);
}

@keyframes navMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mobile */
@media (max-width: 600px) {
  .feature-text {
    font-size: 14px;
  }
  .gradient-nav-btn {
    padding: 6px 14px;
    font-size: 13px;
  }
}

/* ==================== FUJN SWAP GRADIENT BUTTON ==================== */

.gradient-nav-btn {
  position: relative;
  display: inline-block;
  padding: 7px 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, #6a3df5, #5b4bff, #3bb7ff, #b34bff);
  background-size: 300% 300%;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  animation: navGradientMove 8s ease-in-out infinite;
  overflow: hidden;
  font-family: inherit; /* ✔ use your website font */
}

.btn-unique-priority span,
.btn-unique-free span {
    color: #ffffff !important;
    font-weight: 700 !important; /* stronger text */
    letter-spacing: 0.02em;
}

/* Common layout for the two buttons container (optional) */
.buttons-row {
  display: inline-flex;
  gap: 16px;              /* space between Priority and Free */
  flex-wrap: wrap;
}

/* Wrapper for spacing between the two buttons */
.fujn-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;               /* space between buttons */
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Base style for both buttons */
.fujn-priority-btn,
.fujn-free-btn {
  position: relative;
  display: inline-block;
  width: 300px;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  background-size: 220% 220%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Warm gradient for Priority */
.fujn-priority-btn {
  background-image: linear-gradient(120deg, #ff9900, #ffd26a, #ff9900);
  animation: fujnGradientWarm 14s ease-in-out infinite;
}

/* Cool gradient for Free */
.fujn-free-btn {
  background-image: linear-gradient(120deg, #02d2d2, #8be8ff, #02d2d2);
  animation: fujnGradientCool 14s ease-in-out infinite;
}

/* Icon inside button */
.fujn-btn-icon {
  margin-left: 8px;
  font-size: 16px;
}

/* Hover and focus glow - same color family as each button */
.fujn-priority-btn:hover,
.fujn-priority-btn:focus {
  box-shadow: 0 0 22px rgba(255, 153, 0, 0.75);
  transform: translateY(-1px);
  outline: none;
}

.fujn-free-btn:hover,
.fujn-free-btn:focus {
  box-shadow: 0 0 22px rgba(2, 210, 210, 0.75);
  transform: translateY(-1px);
  outline: none;
}

/* Remove ugly blue outline when clicking */
.fujn-priority-btn:focus-visible,
.fujn-free-btn:focus-visible,
.fujn-priority-btn:active,
.fujn-free-btn:active {
  outline: none;
  box-shadow: none;
}

/* Slow animated gradients */
@keyframes fujnGradientWarm {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fujnGradientCool {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .fujn-priority-btn,
  .fujn-free-btn {
    width: 100%;
    max-width: 320px;
    font-size: 15px;
    padding: 12px 18px;
  }

  .fujn-btn-row {
    gap: 16px;
  }
}

/* ============================================================
   CONFIRM FASTER - Orange Animated Gradient Button
   Only for the button inside .search-bar with id acc_btn
   ============================================================ */

.search-bar .btn.btn-default.fast-gradient-btn {
  position: relative;
  display: inline-block;
  width: 300px;
  padding: 19px 20px;
  text-align: center;
  border-radius: 8px;
  color: #ffffff !important;
  font-family: Gilroy-Semibold, sans-serif !important;
  font-size: 16px;
  font-weight: 800; /* strong clear text */
  text-decoration: none !important;

  background: linear-gradient(90deg, #ffaa33, #ffcc66, #ffaa33);
  background-size: 300% 300%;
  animation: fastGradientMove 12s ease-in-out infinite; /* slow smooth animation */

  overflow: hidden;
  border: none !important;
  outline: none !important;
}

/* Glow border animation */
.search-bar .btn.btn-default.fast-gradient-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #ffdf99, #ffd36b, #ffdf99);
  background-size: 400% 400%;
  opacity: 0.35;
  z-index: 0;
  border-radius: 8px;
  animation: fastBorderRun 14s linear infinite;
}

.search-bar .btn.btn-default.fast-gradient-btn span {
  position: relative;
  z-index: 1;
}

/* Glow on hover */
.search-bar .btn.btn-default.fast-gradient-btn:hover {
  box-shadow: 0 0 18px rgba(255, 170, 51, 0.85),
              0 0 26px rgba(255, 204, 102, 0.65);
  transform: translateY(-2px);
}

/* Remove focus borders */
.search-bar .btn.btn-default.fast-gradient-btn:focus,
.search-bar .btn.btn-default.fast-gradient-btn:active {
  border: none !important;
  outline: none !important;
  box-shadow: 0 0 18px rgba(255, 170, 51, 0.85),
              0 0 26px rgba(255, 204, 102, 0.65) !important;
}

/* Animations (global) */
@keyframes fastGradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fastBorderRun {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Info icon styling */
.info-icon {
  position: relative;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  margin-left: 6px;
  color: #555;
}

/* Tooltip */
.info-tooltip {
  visibility: hidden;
  opacity: 0;
  width: 240px;
  background: #222;
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  position: absolute;
  z-index: 999;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Tooltip arrow */
.info-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

/* Show tooltip */
.info-icon:hover .info-tooltip,
.info-icon:focus .info-tooltip {
  visibility: visible;
  opacity: 1;
}
