    /* FAB Styles - Updated for Luxury Light Theme */
    #ai-search-fab {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 65px;
      height: 65px;
      background: #ffffff;
      border: 2px solid var(--cog-primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cog-primary-color);
      font-size: 26px;
      cursor: pointer;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    #ai-search-fab:after {
      content: '';
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border: 2px solid var(--cog-primary-color);
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
      animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

    #ai-search-fab:hover {
      transform: translateY(-5px);
      background: var(--cog-primary-color);
      color: #ffffff;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    @keyframes pulse-ring {
      0% {
        transform: scale(0.85);
        opacity: 0.6;
      }

      100% {
        transform: scale(1.3);
        opacity: 0;
      }
    }

    /* Modal Styles - Light Theme */
    .ai-modal-content {
      background: #ffffff;
      color: #333;
      border-radius: 24px;
      border: none;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }

    .modal-title {
      color: #333;
      font-weight: 700;
    }

    .btn-close-white {
      filter: none !important;
    }

    /* Use default dark close button */

    .ai-input {
      background: #f4f7fa !important;
      border: 2px solid #eee !important;
      color: #333 !important;
      padding: 18px 20px 18px 50px;
      border-radius: 16px;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .ai-input:focus {
      border-color: var(--cog-primary-color) !important;
      background: #fff !important;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .search-box-wrapper {
      position: relative;
    }

    .search-icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #aaa;
      font-size: 18px;
    }

    .ai-explanation-bubble {
      background: #fdfaf8;
      border-left: 5px solid var(--cog-primary-color);
      padding: 25px;
      border-radius: 12px;
      font-style: normal;
      line-height: 1.7;
      color: #2c3e50;
      font-size: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    }

    .ai-product-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 25px;
      transition: all 0.3s ease;
      border: 1px solid #f0f0f0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .ai-product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
      border-color: var(--cog-primary-color);
    }

    .ai-product-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .ai-product-info {
      padding: 18px;
      text-align: center;
    }

    .ai-product-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #333;
      height: 45px;
      overflow: hidden;
    }

    .ai-product-price {
      color: var(--cog-primary-color);
      font-weight: 800;
      font-size: 18px;
    }

    #ai-loader p {
      color: var(--cog-primary-color);
      font-weight: 600;
    }
@media(max-width:760px) {
    #ai-search-fab {
    position: fixed;
    bottom: 26px;
    right: 21px;
    width: 50px;
    height: 50px;
    font-size: 22px;
}
}