/* ==========================================================================
   LuMatrix — Pricing / CTA card
   Used on Aqara and Epoxy product pages (see sql/002_quick_fixes.sql).
   Add this once to your site's global stylesheet. Matches the existing
   navy/teal design language already used in .lm-card / .lm-about-hero.
   ========================================================================== */

.lm-pricing-cta {
  margin-bottom: 28px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #1f2d3a, #2f536d);
  box-shadow: 0 14px 35px rgba(31, 45, 58, 0.18);
}

.lm-pricing-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px;
}

.lm-pricing-cta-text {
  flex: 1 1 380px;
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.lm-pricing-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #d7f3ff;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lm-pricing-cta-text h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.25;
}

.lm-pricing-cta-text p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #eef8fc;
  max-width: 560px;
}

.lm-pricing-cta-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lm-pricing-cta-text li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  color: #ffffff;
}

.lm-pricing-cta-text li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: #7fe0c1;
  font-weight: bold;
}

.lm-pricing-cta-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
}

.lm-btn-whatsapp,
.lm-btn-call {
  display: inline-block;
  text-align: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.lm-btn-whatsapp {
  background: #25D366;
  color: #08331d;
}
.lm-btn-whatsapp:hover { background: #1ebc59; }

.lm-btn-call {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.lm-btn-call:hover { background: rgba(255, 255, 255, 0.22); }

@media (max-width: 640px) {
  .lm-pricing-cta-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 26px 22px;
  }
  .lm-pricing-cta-actions {
    width: 100%;
  }
}

/* ==========================================================================
   Language switcher + WhatsApp FAB — real site chrome versions
   (kept in the same file as pricing-cta so header.php only needs one extra
   <link> beyond rtl.css)
   ========================================================================== */

.lm-lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgb(51 65 85 / 0.8);
  border-radius: 999px;
  padding: 3px;
}

.lm-lang-btn {
  display: inline-block;
  text-decoration: none;
  color: rgb(203 213 225);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.lm-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.lm-lang-btn.is-active {
  background: #ffffff;
  color: #0f172a;
}

.lm-lang-switcher--mobile {
  margin-top: 14px;
  width: fit-content;
}

.lm-whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px; /* not mirrored in RTL, see rtl.css */
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease;
}
.lm-whatsapp-fab:hover {
  transform: scale(1.06);
}
@media (max-width: 480px) {
  .lm-whatsapp-fab {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
}
