/* Main Wrapper */
.fas-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Input Group */
.fas-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.fas-search-field {
    width: 100%;
    padding: 12px 45px 12px 15px;
    font-size: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.fas-search-field:focus {
    border-color: #007cba;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    outline: none;
}

.fas-search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fas-search-submit:hover {
    background: rgba(0,0,0,0.05);
    color: #333;
}

/* Results Dropdown */
.fas-results-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    overflow: hidden;
}

.fas-results-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
}

.fas-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: background 0.2s;
}

.fas-result-item:hover {
    background: rgba(0,0,0,0.02);
}

.fas-result-item:last-child {
    border-bottom: none;
}

/* Image */
.fas-result-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.fas-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.fas-result-info {
    display: flex;
    flex-direction: column;
}

.fas-result-title {
    font-weight: 600;
    font-size: 14px;
    color: #222;
    margin-bottom: 2px;
}

.fas-result-sku {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.fas-result-price {
    font-size: 13px;
    font-weight: 600;
    color: #007cba;
}

/* States */
.fas-loading, .fas-no-results, .fas-error {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}
