#price-link {
  background-image: url("/assets/images/backgrounds/bg-shopping.webp");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #fff;
}

#price-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 25, 38, 0.85);
  /* Deep blue-tinted overlay for premium feel */
  z-index: -1;
}

.price-btn {
  --ease-premium: cubic-bezier(0.22, 0.61, 0.36, 1);

  border-width: 3px;
  letter-spacing: 0.08em;
  background-color: rgba(255, 255, 255, 0.05);

  transition:
    background-color 0.25s var(--ease-premium),
    border-color 0.25s var(--ease-premium),
    color 0.2s ease-out;

  will-change: background-color, border-color, color;
}

@media (hover: hover) {
  .price-btn {
    transition-property: background-color, border-color, color, transform, box-shadow;
  }

  .price-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 768px) {
  #price-link {
    background-attachment: scroll;
    /* Better performance on mobile */
  }
}