/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 10 2026 | 13:14:50 */
/* auto complete search */
/* =========================================
   1. Main Container (Dropdown Box)
   ========================================= */
.ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
    width: 100% !important; /* Override the 800px fixed width */
    max-width: 800px !important; /* Keep it reasonable width on desktop */
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1) !important;
    background: #ffffff !important;
    padding: 0 !important;
    margin-top: 5px !important;
}

/* =========================================
   2. Hide Unwanted Elements (Photo & Price)
   ========================================= */
.pc-autocomplete__product-photo,
.pc-autocomplete__img,
.pc-autocomplete__product-price {
    display: none !important;
}

/* =========================================
   3. List Item Styling
   ========================================= */
.pc-autocomplete--item a {
    padding: 5px 10px !important;
    display: block !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
}

/* Remove border from last item */
.pc-autocomplete--item:last-child a {
    border-bottom: none !important;
}

/* =========================================
   4. Product Title Text
   ========================================= */
.pc-autocomplete__product-title {
    color: #333333 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* =========================================
   5. Hover & Active States
   ========================================= */
.pc-autocomplete--item.ui-state-focus a,
.pc-autocomplete--item a:hover {
    background-color: #f7f7f7 !important;
}

/* Change text color on hover */
.pc-autocomplete--item.ui-state-focus .pc-autocomplete__product-title,
.pc-autocomplete--item a:hover .pc-autocomplete__product-title {
    color: #0073aa !important; /* Brand Blue on Hover */
}

/* Reset default jQuery UI styling */
.ui-menu-item-wrapper.ui-state-active {
    background: #f7f7f7 !important;
    border: none !important;
    margin: 0 !important;
}

/* =========================================
   6. "All Search Results" Link Styling
   ========================================= */
.pc-autocomplete__message a {
    text-align: center !important;
    font-weight: 700 !important;
    color: #555555 !important;
    background: #f9f9f9 !important;
    padding: 12px !important;
    display: block !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
}

.pc-autocomplete__message a:hover {
    background: #eeeeee !important;
    color: #000000 !important;
}

/* =========================================
   7. Mobile Responsiveness
   ========================================= */
@media (max-width: 768px) {
    .ui-menu.ui-widget.ui-widget-content.ui-autocomplete.ui-front {
        max-width: 100% !important; /* Full width on mobile */
        left: 0 !important;
        border-radius: 0 !important;
    }
    
    .pc-autocomplete--item a {
        padding: 5px !important; /* Larger touch targets */
    }
}



