.footer-mini {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  padding: 2rem 1rem 3rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-mini a {
  color: var(--teal);
  text-decoration: none;
}

.footer-mini a:hover {
  text-decoration: underline;
}

.cta-btns {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn-store {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 54px;
  z-index: 1;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-store::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(45deg, #079ba9, #80dde8, #079ba9, #0b4566);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-store:hover::before {
  opacity: 1;
  animation: gradientGlow 2.5s ease infinite;
}

.btn-store:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(7, 155, 169, 0.4);
  background: #fff;
  border-color: transparent;
}

.btn-store:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-store img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
}

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

  50% {
    background-position: 100% 50%;
    opacity: 0.8;
  }

  100% {
    background-position: 0% 50%;
  }
}
