/* FiboSearch Dropdown Styles */
  .dgwt-wcas-suggestion[data-type="headline"] {
      background-color: #f5f5f5 !important;
      padding: 10px 15px !important;
      font-weight: 600 !important;
      border-bottom: 2px solid #369AAB !important;
      pointer-events: none !important;
      color: #333 !important;
  }

  /* Search Results Page Styles */
  #serial-search-results {
      margin-bottom: 30px;
      padding: 20px;
      background: #f9f9f9;
      border-radius: 8px;
  }
  
    .dgwt-wcas-search-wrapp .dgwt-wcas-search-input::placeholder {
      color: #F45919 !important;
  }

  .serial-loading {
      text-align: center;
      padding: 20px;
      color: #666;
  }

  .serial-results-title {
      margin: 0 0 20px 0;
      color: #333;
      font-size: 1.5em;
  }

  .serial-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
  }

  .serial-product-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
  }

  .serial-product-card:hover {
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .serial-product-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
  }

  .serial-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .serial-product-info {
      padding: 15px;
  }

  .serial-product-info h4 {
      margin: 0 0 10px 0;
      font-size: 1.1em;
  }

  .serial-product-info h4 a {
      color: #333;
      text-decoration: none;
  }

  .serial-product-info h4 a:hover {
      color: #369AAB;
  }

  .serial-number,
  .serial-date,
  .profile,
  .boat-type,
  .track-length {
      margin: 5px 0;
      color: #666;
      font-size: 0.9em;
  }

  .serial-view-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 16px;
      background: #369AAB;
      color: #fff !important;
      text-decoration: none;
      border-radius: 4px;
      font-size: 0.9em;
  }

  .serial-view-btn:hover {
      background: #2a7a88;
  }

  /* No-product card styles */
  .serial-no-product-info {
      border-left: 4px solid #e67e22;
  }

  .serial-no-product-info h4 {
      color: #333;
  }

  .serial-call-message {
      margin: 10px 0;
      color: #555;
      font-style: italic;
      font-size: 0.9em;
  }

  .serial-call-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 16px;
      background: #e67e22;
      color: #fff !important;
      text-decoration: none;
      border-radius: 4px;
      font-size: 0.9em;
  }

  .serial-call-btn:hover {
      background: #cf6d17;
  }

  .serial-no-results,
  .serial-error {
      padding: 15px;
      text-align: center;
      color: #666;
  }

  .serial-error {
      color: #c00;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .serial-products-grid {
          grid-template-columns: 1fr;
      }
  }