    /* WhatsApp Floating Button Style */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      color: #fff;
    }
    .whatsapp-float,
.whatsapp-float:link,
.whatsapp-float:visited,
.whatsapp-float:hover,
.whatsapp-float:active {
  text-decoration: none !important;
}

    /* small inline validation message styling */
    .field-error {
      color: #b00020;
      font-size: 0.9rem;
      margin-top: 6px;
      display: none;
    }

    .u-form-send-success,
    .u-form-send-error {
      padding: 12px 16px;
      border-radius: 8px;
    }

    .u-form-send-success {
      background: #e6ffef;
      color: #0a6b3a;
      border: 1px solid #b7f0c2;
    }

    .u-form-send-error {
      background: #ffecec;
      color: #8b0000;
      border: 1px solid #f0b7b7;
    }
/* ---------- SUBTLE AD ANIMATION ---------- */

/* Floating animation */
@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
/* KEYVENDORS STYLE HERO */
    .kv-hero {
      background: linear-gradient(135deg, #0b1220, #111827);
      padding: 70px 0;
    }

    .kv-breadcrumb {
      --bs-breadcrumb-divider: "›";
      font-size: 14px;
    }

    .kv-breadcrumb a {
      color: #9ca3af;
      text-decoration: none;
    }

    .kv-breadcrumb .active {
      color: #fff;
    }

    .kv-feature-box {
      background: rgba(255, 255, 255, 0.08);
      padding: 20px;
      border-radius: 10px;
    }

    .kv-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .kv-list li {
      padding-left: 28px;
      position: relative;
      margin-bottom: 10px;
    }

    .kv-list li::before {
      content: "✔";
      color: #22c55e;
      position: absolute;
      left: 0;
    }

    /* Product Card */
    .kv-card {
      background: #fff;
      padding: 20px;
      border-radius: 14px;
    }
    /* Info Cards */
.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}