.angie-ajax-search-container {
    position: relative;
    width: 100%;
}

.angie-ajax-search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

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

.angie-ajax-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.angie-ajax-search-results li {
    border-bottom: 1px solid #f1f1f1;
}

.angie-ajax-search-results a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.angie-ajax-search-results a:hover {
    background: #f9f9f9;
}

.angie-search-img,
.angie-search-img-placeholder {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
    flex-shrink: 0;
}

.angie-search-img-placeholder {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtl .angie-search-img,
.rtl .angie-search-img-placeholder {
    margin-right: 0;
    margin-left: 15px;
}

.angie-search-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.angie-search-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.angie-search-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.angie-search-type {
    font-size: 11px;
    color: #888;
    background: #eee;
    padding: 2px 6px;
    border-radius: 10px;
}

.angie-search-price {
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.angie-search-price del {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    margin-right: 5px;
}

.rtl .angie-search-price del {
    margin-right: 0;
    margin-left: 5px;
}

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

.angie-search-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
}

.angie-search-count {
    font-size: 12px;
    color: #666;
}

.angie-search-view-all {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.angie-search-view-all:hover {
    opacity: 0.9;
    color: #fff;
}

.angie-ajax-search-loader {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: angie-spin 1s linear infinite;
}

.rtl .angie-ajax-search-loader {
    right: auto;
    left: 15px;
}

@keyframes angie-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}