.as-1c9dc128-wrapper {
    position: relative;
    width: 100%;
}

.as-1c9dc128-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
}

.as-1c9dc128-icon {
    padding: 0 15px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
}

.as-1c9dc128-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.as-1c9dc128-input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    outline: none !important;
    box-shadow: none !important;
    min-width: 0;
}

.as-1c9dc128-clear {
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    padding: 0 15px;
    font-weight: 500;
}

.as-1c9dc128-btn {
    background: linear-gradient(135deg, #007bff, #00bfa5);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.as-1c9dc128-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 191, 165, 0.3);
}

.as-1c9dc128-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.as-1c9dc128-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.as-1c9dc128-item:last-child {
    border-bottom: none;
}

.as-1c9dc128-item:hover {
    background: #f8f9fa;
    color: #007bff;
}

.as-1c9dc128-filters {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.as-1c9dc128-filters-label {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.as-1c9dc128-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.as-1c9dc128-tag {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.as-1c9dc128-tag:hover {
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,123,255,0.1);
}

@media (max-width: 767px) {
    .as-1c9dc128-form {
        flex-wrap: wrap;
        border-radius: 12px;
        padding: 10px;
    }
    
    .as-1c9dc128-icon {
        padding: 0 10px;
    }
    
    .as-1c9dc128-input {
        padding: 10px;
    }
    
    .as-1c9dc128-btn {
        width: 100%;
        margin-top: 10px;
        border-radius: 8px;
    }
}