.houzez-price {
    color: #a4801c !important;
    font-weight: bold;
    margin: 2px 0;
}


#houzez-live-search {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
  }
  
  #houzez-search-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #cccccc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.08);
  }
  
  /* Hover effect */
  #houzez-search-input:hover {
    border-color: #a6821e;
    box-shadow: 0 0 5px rgba(166,130,30,0.5);
  }
  
  /* Focus effect with blinking border */
  #houzez-search-input:focus {
    border-color: #a6821e;
    animation: blink-border 1s infinite;
  }
  
  /* Blink animation */
  @keyframes blink-border {
    0%   { box-shadow: 0 0 5px rgba(166,130,30,0.2); }
    50%  { box-shadow: 0 0 12px rgba(166,130,30,0.8); }
    100% { box-shadow: 0 0 5px rgba(166,130,30,0.2); }
  }
  
  #houzez-search-results {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .houzez-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .houzez-search-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
  }
  
  .houzez-search-item:hover {
    background: #faf6ee;
  }
  
  .houzez-search-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100%;
  }
  
  .houzez-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 12px;
  }
  
  .houzez-info h4 {
    margin: 0;
    font-size: 14px;
    color: #222;
  }
  
  .houzez-price {
    color: #a6821e;
    font-weight: bold;
    margin: 2px 0;
  }
  
  .houzez-info small {
    font-size: 12px;
    color: #666;
  }
  