/* Smart CTA Button */
.smart-cta-button {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--primary-gradient, linear-gradient(135deg, #2563EB 0%, #3B82F6 100%));
  color: var(--text-white, #FFFFFF);
  font-size: var(--font-size-base, 16px);
  font-weight: var(--font-weight-semibold, 600);
  border-radius: var(--radius-full, 9999px);
  box-shadow: var(--shadow-xl, 0 20px 25px -5px rgba(0, 0, 0, 0.1));
  text-decoration: none;
  z-index: var(--z-fixed, 1030);
  opacity: 0;
  transform: translateX(-100px);
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.smart-cta-button:hover {
  transform: translateX(0) translateY(-2px);
  box-shadow: var(--shadow-xl, 0 25px 30px -5px rgba(0, 0, 0, 0.15));
}

.smart-cta-button:active {
  transform: translateX(0) scale(0.96);
}

.smart-cta-button.visible {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.smart-cta-button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* RTL Support */
[dir="rtl"] .smart-cta-button {
  left: auto;
  right: 24px;
  transform: translateX(100px);
}

[dir="rtl"] .smart-cta-button.visible {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
  .smart-cta-button {
    bottom: 16px;
    left: 16px;
    padding: 12px 20px;
    font-size: var(--font-size-sm, 14px);
  }
  
  [dir="rtl"] .smart-cta-button {
    left: auto;
    right: 16px;
  }
}
