/* Custom component-level adjustments */

/* Smooth scroll behavior across the sections */
html {
    scroll-behavior: smooth;
}

/* Helper target configuration for radio option selections */
.car-type-label.active-card {
    border-color: var(--color-amber-500, #f59e0b) !important;
    border-width: 2px !important;
    background-color: rgba(254, 243, 199, 0.5) !important; /* amber-50/50 */
}

/* Base Style - Hidden by default for desktop views */
.wa-stylish-btn {
  display: none;
  position: fixed;
  bottom: 80px; /* Moved up slightly from 24px to clear mobile navigation bars */
  right: 24px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25), 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 99999;
  align-items: center;
  gap: 10px;
  -webkit-tap-highlight-color: transparent;
}

/* Text styles inside the pill */
.wa-text {
  color: #ffffff;
  letter-spacing: 0.2px;
}

/* Subtle physical tap effect on mobile screens */
.wa-stylish-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* The Live Pulsing Ring Animation */
.wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 30px;
  z-index: -1;
  animation: wa-ripple 2s infinite ease-out;
  opacity: 0.4;
}

@keyframes wa-ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.15, 1.3);
    opacity: 0;
  }
}

/* Media Query - Activated ONLY for mobile and tablet devices */
@media screen and (max-width: 768px) {
  .wa-stylish-btn {
    display: inline-flex;
  }
