/* Hide WooCommerce sorting and show X dropdowns on static site */
.woocommerce-ordering,
.form-electro-wc-ppp,
.electro-wc-wppp-select {
    display: none !important;
}

/* Also hide the "Sort by" label if it exists */
.woocommerce-result-count + .woocommerce-ordering,
.shop-control-bar .woocommerce-ordering,
.shop-control-bar form[class*="electro"] {
    display: none !important;
}

/* Navbar search dropdown styles */
.navbar-search {
    position: relative;
}

.navbar-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.navbar-search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.search-result-category {
    font-size: 12px;
    color: #666;
}

.search-result-price {
    font-size: 14px;
    color: #d73763;
    font-weight: 600;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

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

/* Highlight search terms */
.search-highlight {
    background-color: #ffeb3b !important;
    color: #000 !important;
    font-weight: bold;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Search results info */
.search-results-info {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Category suggestions */
.category-suggestions {
    margin-top: 20px;
}

.category-suggestions .button {
    margin: 5px;
    display: inline-block;
} 